:root {
  --site-primary: #003b79;
  --site-primary-dark: #12304f;
  --site-accent: #aa3234;
  --site-bg: #fbf8f7;
  --site-surface: #ffffff;
  --site-line: #d8dde4;
  --site-muted: #5d6c7c;
  --site-ink: #1d2937;
  --site-wrap: 1180px;
  --site-radius: 4px;
  --font-main: "Titillium Web", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--site-ink);
  background: var(--site-bg);
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.48;
  overflow-x: hidden;
}

.preview-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 8px 16px;
  background: #17202a;
  color: #fff;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: #fff;
  border: 2px solid var(--site-primary);
  border-radius: var(--site-radius);
  padding: 10px 14px;
  color: var(--site-primary-dark);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: min(calc(100vw - 32px), var(--site-wrap));
  margin: 0 auto;
}

.site-header {
  background: var(--site-bg);
  border-bottom: 1px solid var(--site-line);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-block {
  display: grid;
  gap: 2px;
}

.brand-mark {
  display: inline-flex;
  width: min(360px, 82vw);
  text-decoration: none;
}

.domain-logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: #31506f;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--site-accent);
}

.menu-toggle {
  position: fixed;
  top: 16px;
  right: 12px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 10px 12px;
  color: var(--site-primary-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (min-width: 841px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
.menu-toggle__icon {
  border-top: 2px solid currentColor;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
}

.menu-toggle__icon::before {
  top: 5px;
}

.menu-toggle__icon::after {
  top: 12px;
}

.hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 59, 121, 0.92), rgba(18, 48, 79, 0.82)),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.24), transparent 35%),
    var(--site-primary-dark);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 45%;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-8deg);
  z-index: -1;
}

.hero__inner {
  min-height: 500px;
  display: grid;
  align-items: center;
  padding: 0;
}

.hero-slider {
  grid-template-columns: 1fr;
}

.hero-slide {
  position: relative;
  min-width: 0;
  max-width: none;
  min-height: 500px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 37, 77, 0.88) 0%, rgba(0, 37, 77, 0.76) 42%, rgba(0, 37, 77, 0.28) 100%),
    var(--hero-bg),
    linear-gradient(90deg, var(--site-primary-dark), var(--site-primary));
  background-position: center top;
  background-size: cover;
  overflow: hidden;
  padding: clamp(54px, 8vw, 96px) 0;
}

.hero-slide__inner {
  display: flex;
  align-items: center;
}

.hero-slide:not(.is-active) {
  display: none;
}

.hero-slide__copy {
  max-width: 780px;
}

.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-control {
  width: 48px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--site-radius);
  background: rgba(7, 29, 53, 0.46);
  backdrop-filter: blur(8px);
  color: #fff;
  font: 1.55rem/1 var(--font-main);
  font-weight: 800;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.hero-control:hover,
.hero-control:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(170, 50, 52, 0.88);
  outline: none;
  transform: translateX(0);
}

.hero-control--prev {
  margin-left: 18px;
}

.hero-control--next {
  margin-right: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--site-radius);
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  white-space: normal;
}

.btn-primary {
  background: var(--site-accent);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--site-primary-dark);
}

.content-band {
  padding: 44px 0;
}

.compact-hero {
  background: linear-gradient(135deg, var(--site-primary), var(--site-primary-dark));
  color: #fff;
  padding: 42px 0 46px;
}

.compact-hero h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.compact-hero p {
  max-width: 780px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.boxed-layout {
  max-width: var(--site-wrap);
}

.section-intro {
  max-width: 820px;
  margin-bottom: 22px;
}

.section-intro h2 {
  margin: 0 0 8px;
  color: var(--site-accent);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.03em;
}

.section-intro p {
  margin: 0;
  color: var(--site-muted);
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.card {
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 26px;
  box-shadow: 0 12px 28px rgba(18, 48, 79, 0.06);
}

.content-card h2,
.content-card h3,
.side-card h2 {
  color: var(--site-accent);
  letter-spacing: -0.025em;
}

.content-card p:first-child {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fbf8f7;
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--site-primary-dark);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--site-line);
  padding: 0 18px 18px;
  color: var(--site-muted);
}

.legal-data {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 8px 16px;
  margin: 18px 0;
  padding: 18px;
  background: #fbf8f7;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
}

.legal-data dt {
  color: var(--site-primary-dark);
  font-weight: 700;
}

.legal-data dd {
  margin: 0;
  color: var(--site-muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 18px;
}

.value-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--site-primary-dark);
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.95rem;
}

.launch-grid,
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.launch-card,
.article-card {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(18, 48, 79, 0.06);
}

.launch-card h2,
.article-card h3 {
  margin: 0 0 10px;
  color: var(--site-primary-dark);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.launch-card p,
.article-card p {
  margin: 0 0 16px;
  color: var(--site-muted);
}

.launch-card a,
.article-card a {
  color: inherit;
  text-decoration: none;
}

.launch-card > a {
  color: var(--site-accent);
  font-weight: 800;
}

.commercial-band {
  padding: 28px 0 60px;
  background:
    linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
}

.commercial-band__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 22px;
}

.commercial-media {
  min-height: 410px;
  margin: 0;
  border-radius: var(--site-radius);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(18, 48, 79, 0.12);
}

.commercial-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.commercial-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 18px 44px rgba(18, 48, 79, 0.08);
}

.commercial-kicker {
  margin: 0 0 10px;
  color: var(--site-accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.commercial-panel h2 {
  margin: 0;
  color: var(--site-primary-dark);
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.commercial-panel p {
  margin: 16px 0 0;
  color: var(--site-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.commercial-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.commercial-proof-grid div {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #f8fbfd;
  padding: 14px;
}

.commercial-proof-grid strong,
.commercial-proof-grid span {
  display: block;
}

.commercial-proof-grid strong {
  color: var(--site-primary-dark);
  font-size: 1.05rem;
}

.commercial-proof-grid span {
  margin-top: 6px;
  color: var(--site-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.article-card span,
.article-meta {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--site-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-strip {
  background: var(--site-accent);
  color: #fff;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
}

.cta-strip h2 {
  margin: 0 0 6px;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  letter-spacing: -0.03em;
}

.cta-strip p,
.section-action {
  margin: 0;
}

.article-launch {
  background: #fff;
}

.archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: start;
}

.article-list {
  display: grid;
  gap: 16px;
}

.article-list .article-card {
  padding: 24px;
}

.category-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--site-line);
  padding-bottom: 12px;
}

.category-list a {
  color: var(--site-primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.category-list span {
  color: var(--site-muted);
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--site-radius);
  margin-bottom: 22px;
}

.article-purchase-cta {
  margin-top: 34px;
  border: 1px solid rgba(170, 50, 52, 0.24);
  border-radius: var(--site-radius);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 59, 121, 0.07), rgba(170, 50, 52, 0.08)),
    #fff;
}

.article-purchase-cta .eyebrow {
  color: var(--site-accent);
}

.article-purchase-cta h2 {
  max-width: 820px;
  margin: 0 0 10px;
  color: var(--site-primary-dark);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.article-purchase-cta p {
  max-width: 860px;
  color: var(--site-muted);
}

.article-purchase-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.purchase-hero {
  background:
    linear-gradient(120deg, rgba(0, 59, 121, 0.94), rgba(18, 48, 79, 0.9)),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 34%),
    var(--site-primary-dark);
  color: #fff;
}

.purchase-hero__inner {
  padding: 58px 0 64px;
}

.purchase-hero h1 {
  max-width: 920px;
  margin: 12px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.purchase-hero p:not(.eyebrow) {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.purchase-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 24px;
  align-items: start;
}

.purchase-main {
  display: grid;
  gap: 18px;
}

.purchase-story > span,
.purchase-faq h2 {
  color: var(--site-accent);
}

.purchase-story h2 {
  max-width: 820px;
  margin: 8px 0 12px;
  color: var(--site-primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.purchase-example {
  margin-top: 20px;
  border-left: 4px solid var(--site-accent);
  border-radius: var(--site-radius);
  background: #fbf8f7;
  padding: 16px 18px;
}

.purchase-example p {
  margin-bottom: 0;
}

.purchase-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.purchase-benefits article,
.purchase-plan,
.purchase-account-ok {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 18px;
}

.purchase-benefits strong {
  display: block;
  color: var(--site-primary-dark);
  font-size: 1.08rem;
}

.purchase-benefits p {
  margin: 8px 0 0;
  color: var(--site-muted);
}

.purchase-faq {
  display: grid;
  gap: 10px;
}

.purchase-faq h2 {
  margin: 0 0 4px;
}

.purchase-faq details {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fbf8f7;
}

.purchase-faq summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--site-primary-dark);
  font-weight: 800;
}

.purchase-faq p {
  margin: 0;
  border-top: 1px solid var(--site-line);
  padding: 0 16px 16px;
  color: var(--site-muted);
}

.purchase-box {
  position: sticky;
  top: 18px;
}

.price-ribbon {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: var(--site-radius);
  background: #fff1f1;
  padding: 7px 10px;
  color: var(--site-accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.purchase-box h2 {
  margin: 0 0 8px;
  color: var(--site-primary-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.purchase-plans,
.purchase-form-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.purchase-plan {
  position: relative;
  display: grid;
  gap: 6px;
  cursor: pointer;
}

.purchase-plan input {
  position: absolute;
  top: 18px;
  right: 18px;
}

.purchase-plan.is-recommended {
  border-color: rgba(170, 50, 52, 0.5);
  box-shadow: 0 12px 28px rgba(170, 50, 52, 0.08);
}

.plan-badge {
  justify-self: start;
  border-radius: var(--site-radius);
  background: var(--site-accent);
  padding: 4px 8px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.purchase-plan strong {
  max-width: calc(100% - 34px);
  color: var(--site-primary-dark);
}

.purchase-plan em {
  color: var(--site-primary);
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.purchase-plan small,
.purchase-plan span,
.secure-note,
.login-link,
.purchase-account-ok span {
  color: var(--site-muted);
}

.purchase-form-grid label {
  display: grid;
  gap: 6px;
  color: var(--site-primary-dark);
  font-weight: 800;
}

.purchase-form-grid input {
  width: 100%;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 12px;
  font: inherit;
}

.purchase-box button {
  width: 100%;
}

.purchase-box .error,
.purchase-box .notice {
  border-radius: var(--site-radius);
  padding: 10px 12px;
}

.purchase-box .error {
  background: #fee2e2;
  color: #991b1b;
}

.purchase-box .notice {
  background: #fff7ed;
  color: #9a3412;
}

.secure-note {
  margin: 10px 0 0;
  font-size: 0.94rem;
}

.login-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 800;
}

.public-loading {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(23, 32, 42, 0.42);
}

.public-loading[hidden] {
  display: none;
}

.public-loading > div {
  display: grid;
  gap: 4px;
  width: min(calc(100% - 32px), 360px);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 22px;
  color: var(--site-primary-dark);
  text-align: center;
  box-shadow: 0 18px 42px rgba(18, 48, 79, 0.22);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 24px;
  align-items: start;
}

.lead-card {
  position: sticky;
  top: 18px;
}

.lead-card h2 {
  margin: 0 0 8px;
  color: var(--site-primary-dark);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
}

.lead-card form,
.lead-card label {
  display: grid;
  gap: 8px;
}

.lead-card form {
  margin-top: 18px;
}

.lead-card label {
  color: var(--site-primary-dark);
  font-weight: 800;
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  width: 100%;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 12px;
  font: inherit;
}

.lead-card textarea {
  resize: vertical;
}

.lead-card button {
  width: 100%;
}

.lead-card .error,
.lead-card .notice {
  border-radius: var(--site-radius);
  padding: 10px 12px;
}

.lead-card .error {
  background: #fee2e2;
  color: #991b1b;
}

.lead-card .notice {
  background: #ecfdf5;
  color: #065f46;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
}

.pagination span {
  background: var(--site-primary);
  color: #fff;
}

.empty-state {
  margin: 0;
  color: var(--site-muted);
}

.accessibility-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.accessibility-widget summary {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: var(--site-radius);
  background: var(--site-primary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(18, 48, 79, 0.22);
}

.accessibility-widget div {
  position: absolute;
  right: 0;
  bottom: 56px;
  display: grid;
  gap: 8px;
  width: 190px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 48, 79, 0.16);
}

.accessibility-widget button {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 8px 10px;
  color: var(--site-primary-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.a11y-large-text body {
  font-size: 21px;
}

.a11y-contrast body {
  background: #fff;
  color: #000;
}

.a11y-readable body {
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 28;
  width: min(calc(100% - 32px), 920px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--site-ink);
  box-shadow: 0 16px 42px rgba(18, 48, 79, 0.18);
  transform: translateX(-50%);
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar strong {
  display: block;
  margin-bottom: 4px;
  color: var(--site-primary-dark);
}

.cookie-bar p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.95rem;
}

.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-bar a,
.cookie-bar button {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 9px 12px;
  background: #fff;
  color: var(--site-primary-dark);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.cookie-bar button[data-cookie-choice="accept"] {
  border-color: var(--site-primary);
  background: var(--site-primary);
  color: #fff;
}

.site-footer {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--site-primary-dark), #071d35);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.site-footer strong {
  display: block;
  color: #fff;
}

.site-footer .footer-company {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 840px) {
  .site-header__inner {
    position: relative;
    min-height: 72px;
    align-items: center;
    gap: 12px;
  }

  .brand-block {
    min-width: 0;
  }

  .brand-mark {
    width: min(260px, 64vw);
  }

  .menu-toggle {
    position: fixed;
    top: 16px;
    right: 12px;
    z-index: 40;
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    z-index: 25;
    display: grid;
    gap: 0;
    border: 1px solid var(--site-line);
    border-radius: var(--site-radius);
    background: #fff;
    box-shadow: 0 18px 42px rgba(18, 48, 79, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: block;
    border-bottom: 1px solid var(--site-line);
    padding: 14px 16px;
    color: var(--site-primary-dark);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-grid,
  .value-grid,
  .article-purchase-cta ul,
  .purchase-grid,
  .purchase-benefits,
  .lead-layout,
  .launch-grid,
  .article-card-grid,
  .commercial-band__inner,
  .commercial-proof-grid,
  .archive-grid,
  .legal-data {
    grid-template-columns: 1fr;
  }

  .cta-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-bar {
    grid-template-columns: 1fr;
    bottom: 12px;
  }

  .cookie-bar__actions {
    justify-content: flex-start;
  }

  .hero__inner {
    min-height: 320px;
  }

  .hero-slide {
    min-height: 470px;
    background:
      linear-gradient(180deg, rgba(0, 37, 77, 0.9) 0%, rgba(0, 37, 77, 0.78) 62%, rgba(0, 37, 77, 0.42) 100%),
      var(--hero-bg),
      linear-gradient(90deg, var(--site-primary-dark), var(--site-primary));
    background-position: center top;
    background-size: cover;
    padding: 34px 0 94px;
  }

  .hero-controls {
    inset: auto 0 18px;
    justify-content: center;
    gap: 10px;
  }

  .commercial-band {
    padding: 20px 0 42px;
  }

  .commercial-media,
  .commercial-media img {
    min-height: 260px;
  }

  .purchase-box {
    position: static;
  }

  .lead-card {
    position: static;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 2.9rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero-control {
    width: 40px;
    height: 58px;
    font-size: 1.25rem;
  }

  .hero-control--prev {
    margin-left: 0;
  }

  .hero-control--next {
    margin-right: 0;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(calc(100vw - 24px), var(--site-wrap));
  }

  .brand-mark {
    width: min(220px, 58vw);
  }

  .menu-toggle {
    flex: 0 0 auto;
    gap: 0;
    padding: 10px;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero-slide__copy,
  .hero h1,
  .hero__lead,
  .hero__actions {
    max-width: min(calc(100vw - 24px), 340px);
  }

  .hero__actions,
  .article-purchase-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .preview-banner {
    padding-inline: 12px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .btn {
    width: 100%;
  }

  .cookie-bar {
    width: min(calc(100vw - 24px), 360px);
    max-height: calc(100vh - 24px);
    overflow: auto;
  }

  .cookie-bar__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-bar a,
  .cookie-bar button {
    width: 100%;
    text-align: center;
  }
}
