/* ============================================================
   AlphaX Networks — shared stylesheet
   Used across: index, plans, coverage, business, about, support
   ============================================================ */

:root {
  --ink:      #0A1628;
  --ink-2:    #14243D;
  --paper:    #F3EEE4;
  --paper-2:  #EAE3D3;
  --line:     #D9D2C3;
  --line-2:   #BFB7A3;
  --muted:    #6B7A8F;
  --signal:   #FF4D1F;
  --signal-2: #FF7A4D;
  --on:       #00B86B;
  --warn:     #E6A80E;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body:    "Space Grotesk", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --radius: 4px;
  --radius-lg: 10px;

  --pad: clamp(20px, 4vw, 56px);
  --gutter: clamp(16px, 3vw, 40px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--signal); color: var(--paper); }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
img, svg { display: block; max-width: 100%; }
input { font: inherit; }

/* ------- primitives ------- */
.wrap { max-width: 1320px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: clamp(48px, 6vw, 96px); padding-bottom: clamp(48px, 6vw, 96px); position: relative; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .muted { color: rgba(243, 238, 228, 0.55); }
.section--ink .hairline { border-color: rgba(243, 238, 228, 0.15); }
.muted { color: var(--muted); }
.hairline { border-top: 1px solid var(--line); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--signal);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 77, 31, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 77, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 31, 0); }
}
@keyframes pulse-on {
  0%   { box-shadow: 0 0 0 0 rgba(0, 184, 107, .5); }
  70%  { box-shadow: 0 0 0 6px rgba(0, 184, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 184, 107, 0); }
}

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
.h1 { font-size: clamp(48px, 8.4vw, 124px); }
.h2 { font-size: clamp(36px, 5.6vw, 80px); }
.h3 { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -0.01em; }
.italic { font-style: italic; }
.mono    { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
.mono-up { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ------- buttons ------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
.btn--primary { background: var(--signal); color: var(--paper); }
.btn--primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: currentColor; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.section--ink .btn--ghost:hover, .slide--ink .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { background: var(--ink); color: var(--paper); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--signal); }
.btn svg { width: 14px; height: 14px; }

/* ------- nav ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 228, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.02em;
}
.logo__img {
  height: 34px;
  width: auto;
  display: block;
  transition: transform .3s ease, opacity .2s ease;
}
.logo:hover .logo__img { transform: scale(1.03); }
@media (max-width: 600px) { .logo__img { height: 30px; } }

/* Footer logo: white version on dark background */
.foot__brand .logo__img { filter: brightness(0) invert(1); }

/* Legacy typographic fallback (kept for any place that still uses it) */
.logo__mark {
  width: 28px; height: 28px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  border-radius: 6px;
  font-family: var(--font-mono); font-weight: 600; font-size: 14px;
}
.logo em { color: var(--signal); font-style: normal; }

.nav__live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 107, 0.08);
  border: 1px solid rgba(0, 184, 107, 0.2);
  font-size: 12px;
}
.nav__live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--on);
  animation: pulse-on 2s infinite;
}
.nav__live-num { font-weight: 600; color: var(--ink); }
.nav__live-lbl { color: var(--muted); }
@media (max-width: 1080px) { .nav__live { display: none; } }

.nav__links { display: flex; gap: 26px; align-items: center; }
.nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--signal);
  transition: right .3s ease;
}
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__links a.is-active { color: var(--signal); }

.nav__cta { display: flex; gap: 10px; align-items: center; }

.nav__burger {
  display: none;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); position: relative; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink); }
.nav__burger span::before { top: -5px; }
.nav__burger span::after  { top: 5px; }

.nav__drawer {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--paper);
  z-index: 30;
  padding: 40px var(--pad);
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
}
.nav__drawer a.is-active { color: var(--signal); font-style: italic; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ------- page header ------- */
.page-head {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(28px, 3.5vw, 52px);
  border-bottom: 1px solid var(--line);
}
.page-head__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
}
@media (max-width: 820px) { .page-head__inner { grid-template-columns: 1fr; } }
.page-head__title { font-size: clamp(48px, 7vw, 100px); margin: 22px 0 18px; }
.page-head__title .italic { color: var(--signal); }
.page-head__sub { font-size: clamp(16px, 1.4vw, 19px); color: #2E3B52; max-width: 50ch; }
.page-head__meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; display: flex; gap: 18px; flex-wrap: wrap; padding-bottom: 6px; }
.page-head__meta b { color: var(--ink); }

/* ------- hero slider ------- */
.hero-slider {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  /* dedicated bottom band for controls — content never extends into here */
  padding-bottom: clamp(72px, 8vw, 96px);
}
.slides {
  position: relative;
  min-height: clamp(580px, 68vh, 700px);
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(36px, 4.5vw, 64px) var(--pad);
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s;
  pointer-events: none;
}
.slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 2; }
@media (max-width: 880px) {
  .hero-slider { padding-bottom: clamp(76px, 14vw, 96px); }
  .slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
    padding: 28px var(--pad);
    align-items: start;
  }
  .slides { min-height: clamp(760px, 96vh, 920px); }
}

.slide__content { max-width: 600px; min-width: 0; }
.slide__content .eyebrow { margin-bottom: 20px; }
.slide__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144;
  margin-bottom: 18px;
}
.slide__title em { font-style: italic; color: var(--signal); display: block; }
.slide__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: #35465C;
  max-width: 52ch;
  margin-bottom: 26px;
  line-height: 1.55;
}
.slide__ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.slide__art {
  position: relative;
  aspect-ratio: 3 / 2;
  max-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 24px 48px -24px rgba(10, 22, 40, 0.4),
    0 0 0 1px rgba(10, 22, 40, 0.16);
  align-self: center;
  width: 100%;
}
@media (max-width: 880px) {
  .slide__art { max-height: 300px; aspect-ratio: 16 / 10; }
}
.slide__art img, .slide__art svg {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
}
.slide__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.4) 0%, transparent 32%);
  pointer-events: none;
}
.slide__stamp {
  position: absolute; left: 18px; bottom: 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--paper); z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
}
.slide__stamp::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal); box-shadow: 0 0 0 2px var(--paper);
}

/* slider controls — live in .hero-slider's reserved bottom band, never overlap slide content */
.slider__dots {
  position: absolute;
  left: var(--pad);
  bottom: clamp(28px, 3.5vw, 40px);
  z-index: 10;
  display: flex; gap: 8px;
}
.slider__dot {
  width: 24px; height: 4px;
  border-radius: 4px;
  background: rgba(10,22,40,.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, width .3s ease;
}
.slider__dot:hover { background: rgba(10,22,40,.4); }
.slider__dot.is-active { background: var(--signal); width: 40px; }

.slider__controls {
  position: absolute;
  right: var(--pad);
  bottom: clamp(22px, 3vw, 32px);
  z-index: 10;
  display: flex; align-items: center; gap: 12px;
}
.slider__count {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.slider__count b { color: var(--signal); font-weight: 500; }
.slider__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.slider__arrow:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.slider__arrow svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .slider__controls { bottom: 20px; right: 18px; gap: 8px; }
  .slider__arrow { width: 40px; height: 40px; }
  .slider__count { display: none; }
  .slider__dots { left: 18px; bottom: 26px; }
  .slider__dot { width: 20px; }
  .slider__dot.is-active { width: 32px; }
}

/* ink-slide control adjustments (slide 3 uses dark bg) */
.hero-slider.is-ink .slider__dot { background: rgba(243,238,228,.2); }
.hero-slider.is-ink .slider__dot:hover { background: rgba(243,238,228,.4); }
.hero-slider.is-ink .slider__dot.is-active { background: var(--signal); }
.hero-slider.is-ink .slider__count { color: var(--paper); }
.hero-slider.is-ink .slider__arrow { background: transparent; border-color: rgba(243,238,228,.3); color: var(--paper); }
.hero-slider.is-ink .slider__arrow:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* dark slide variant */
.slide--ink { background: var(--ink); color: var(--paper); }
.slide--ink .slide__sub { color: rgba(243,238,228,.75); }
.slide--ink .slide__title em { color: var(--signal); }
.slide.is-active.slide--ink { background-color: transparent; }
.hero-slider .slide--ink {
  /* not a separate background — handled by sibling layer below */
}
.hero-slider__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--paper);
  transition: background .9s ease;
}
.hero-slider.is-ink .hero-slider__bg { background: var(--ink); }

/* ------- marquee ------- */
.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(243,238,228,.15);
  border-bottom: 1px solid rgba(243,238,228,.15);
  padding: 26px 0;
  gap: 60px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 60px;
  flex-shrink: 0;
  min-width: 100%;
  animation: scroll 42s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-style: italic;
  display: inline-flex; align-items: center; gap: 36px;
  white-space: nowrap;
  color: var(--paper);
}
.marquee__item::after {
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--on);
  box-shadow: 0 0 0 4px rgba(0, 184, 107, 0.15);
}
@keyframes scroll {
  to { transform: translateX(calc(-100% - 60px)); }
}

/* ------- section head ------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(28px, 3.5vw, 52px);
}
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; } }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head__sub { max-width: 52ch; color: var(--muted); font-size: clamp(15px, 1.2vw, 17px); }
.section--ink .section-head__sub { color: rgba(243,238,228,.7); }

/* ------- plans-top (tight header for plans page) ------- */
.plans-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}
@media (max-width: 820px) {
  .plans-top { grid-template-columns: 1fr; align-items: start; }
}
.plans-top .eyebrow { margin-bottom: 14px; }
.plans-top__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(32px, 4.6vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.plans-top__title .italic { font-style: italic; color: var(--signal); }
.plans-top__meta {
  display: flex; gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 4px;
}
.plans-top__meta b { color: var(--ink); font-weight: 500; }

/* ------- plans ------- */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
@media (max-width: 1100px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .plans { grid-template-columns: 1fr; } }

.plan {
  padding: 32px 26px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: background .3s ease;
}
@media (max-width: 1100px) {
  .plan:nth-child(2n) { border-right: none; }
  .plan:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .plan { border-right: none; border-bottom: 1px solid var(--line); }
  .plan:nth-child(2n) { border-right: none; }
  .plan:last-child { border-bottom: none; }
}
.plan:last-child { border-right: none; }
.plan:hover { background: var(--paper-2); }

.plan--featured { background: var(--ink); color: var(--paper); }
.plan--featured:hover { background: var(--ink-2); }
.plan--featured .plan__name { color: var(--signal); }
.plan--featured .plan__speed-unit { color: rgba(243,238,228,.5); }
.plan--featured .plan__desc { color: rgba(243,238,228,.75); }
.plan--featured .plan__price-alt { color: rgba(243,238,228,.55); }
.plan--featured .plan__list li { border-color: rgba(243,238,228,.15); }
.plan--featured .plan__list li::before { color: var(--signal); }

.plan__flag {
  position: absolute; top: 0; right: 32px;
  background: var(--signal); color: var(--paper);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 0 0 4px 4px;
}
.plan__name {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--signal);
}
.plan__speed {
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.9; letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 8px;
}
.plan__speed-unit { font-family: var(--font-body); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: var(--muted); }
.plan__desc { font-size: 15px; color: #2E3B52; }
.plan__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 6px;
}
.plan__price small { font-size: 14px; font-family: var(--font-body); font-weight: 500; color: var(--muted); }
.plan__price-alt { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.plan__list { list-style: none; }
.plan__list li {
  padding: 12px 0; border-top: 1px solid var(--line);
  font-size: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.plan__list li::before { content: "+"; color: var(--signal); font-weight: 600; }
.plan .btn { align-self: stretch; justify-content: center; margin-top: auto; }
.plan--featured .btn--ghost { color: var(--paper); border-color: var(--paper); }

/* ------- why-strip (5 reasons) ------- */
.why {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
@media (max-width: 1000px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .why { grid-template-columns: 1fr; } }
.why__item {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  transition: background .25s ease;
}
.why__item:last-child { border-right: none; }
.why__item:hover { background: var(--paper-2); }
@media (max-width: 1000px) {
  .why__item:nth-child(2n) { border-right: none; }
  .why__item:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .why__item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .why__item:last-child { border-bottom: none; }
}
.why__num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  color: var(--signal);
}
.why__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.1;
}
.why__body { font-size: 13px; color: var(--muted); }

/* ------- offers ------- */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
@media (max-width: 920px) { .offers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .offers { grid-template-columns: 1fr; } }
.offer {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: background .3s ease;
  overflow: hidden;
}
.offer:hover { background: var(--paper-2); }
@media (min-width: 921px) {
  .offer:nth-child(3n) { border-right: none; }
  .offer:nth-last-child(-n+3) { border-bottom: none; }
}
@media (max-width: 920px) and (min-width: 561px) {
  .offer:nth-child(2n) { border-right: none; }
  .offer:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .offer { border-right: none; }
  .offer:last-child { border-bottom: none; }
}
.offer__big {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--signal);
}
.offer__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.1;
}
.offer__sw {
  display: inline-block; margin-top: -2px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.offer__body { font-size: 14px; color: #2E3B52; max-width: 36ch; margin-top: auto; }
.offer__tag {
  align-self: flex-start; margin-top: 4px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ------- how-it-works ------- */
.how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(243,238,228,.15);
}
@media (max-width: 900px) { .how { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .how { grid-template-columns: 1fr; } }
.step {
  padding: 32px 28px;
  border-right: 1px solid rgba(243,238,228,.15);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 260px;
}
@media (max-width: 900px) {
  .step:nth-child(2n) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid rgba(243,238,228,.15); }
}
@media (max-width: 520px) {
  .step { border-right: none; border-bottom: 1px solid rgba(243,238,228,.15); }
  .step:last-child { border-bottom: none; }
}
.step:last-child { border-right: none; }
.step__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--signal); }
.step__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-style: italic; font-weight: 400;
  letter-spacing: -0.01em; line-height: 1.05;
}
.step__body { font-size: 14px; color: rgba(243,238,228,.7); max-width: 32ch; margin-top: auto; }

/* ------- included ------- */
.incl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) { .incl { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .incl { grid-template-columns: 1fr; } }
.incl__item {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.incl__item:nth-child(3n) { border-right: none; }
.incl__item:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 860px) {
  .incl__item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .incl__item:nth-child(3n) { border-right: 1px solid var(--line); }
  .incl__item:nth-child(2n) { border-right: none; }
  .incl__item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .incl__item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
  .incl__item { border-right: none; }
  .incl__item:last-child { border-bottom: none; }
}
.incl__icon { width: 36px; height: 36px; color: var(--signal); }
.incl__title { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; }
.incl__body { font-size: 14px; color: var(--muted); max-width: 34ch; }

/* ------- coverage ------- */
.cov { background: var(--ink); color: var(--paper); padding-top: clamp(60px, 8vw, 120px); padding-bottom: clamp(60px, 8vw, 120px); position: relative; overflow: hidden; }
.cov__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 920px) { .cov__grid { grid-template-columns: 1fr; } }
.cov__areas { list-style: none; column-count: 2; column-gap: 32px; margin-top: 24px; }
.cov__areas li {
  padding: 12px 0;
  border-top: 1px solid rgba(243,238,228,.15);
  display: flex; justify-content: space-between;
  break-inside: avoid; font-size: 15px;
}
.cov__areas li:last-child { border-bottom: 1px solid rgba(243,238,228,.15); }
.cov__areas .on { color: var(--on); font-family: var(--font-mono); font-size: 11px; display: inline-flex; align-items: center; gap: 6px; }
.cov__areas .on::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--on); }
.cov__areas .soon { color: rgba(243,238,228,.45); font-family: var(--font-mono); font-size: 11px; }

.cov__viz {
  aspect-ratio: 1;
  position: relative;
  border: 1px solid rgba(243,238,228,.15);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,77,31,.08), transparent 60%),
    linear-gradient(to right, rgba(243,238,228,.05) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(to bottom, rgba(243,238,228,.05) 1px, transparent 1px) 0 0 / 40px 40px;
  overflow: hidden;
}
.node {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--signal);
  transform: translate(-50%, -50%);
}
.node::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid var(--signal);
  opacity: 0.5;
  animation: nodepulse 2.4s ease-out infinite;
}
@keyframes nodepulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}
.node.on { background: var(--on); }
.node.on::before { border-color: var(--on); }
.node-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(243,238,228,.7);
  transform: translate(-50%, 0);
  margin-top: 14px;
  white-space: nowrap;
}

/* ------- coverage check input ------- */
.cov-form {
  display: flex; gap: 10px;
  padding: 8px 8px 8px 20px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  max-width: 540px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cov-form:focus-within { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(10, 22, 40, 0.06); }
.cov-form input {
  flex: 1; border: none; background: transparent;
  color: var(--ink); font-size: 15px; min-width: 0;
}
.cov-form input::placeholder { color: var(--muted); }
.cov-form input:focus { outline: none; }
.cov-form .btn--primary { padding: 12px 18px; }
.coverage-result {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(0, 184, 107, 0.08);
  border: 1px solid rgba(0, 184, 107, 0.25);
  color: var(--ink);
  font-size: 14px;
  display: none;
}
.coverage-result.show { display: block; animation: slidein .4s ease; }
.coverage-result.miss { background: rgba(255, 77, 31, 0.08); border-color: rgba(255, 77, 31, 0.25); }
.coverage-result b { color: var(--on); }
.coverage-result.miss b { color: var(--signal); }
@keyframes slidein {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ------- business card ------- */
.biz { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (max-width: 880px) { .biz { grid-template-columns: 1fr; } }
.biz__card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--ink); color: var(--paper);
  padding: 32px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.biz__card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,77,31,.25), transparent 40%),
    linear-gradient(to right, rgba(243,238,228,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(243,238,228,.06) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  pointer-events: none;
}
.biz__card > * { position: relative; }
.biz__card .mono-up { color: var(--signal); }
.biz__card-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.85; letter-spacing: -0.04em;
  font-style: italic; color: var(--paper);
}
.biz__card-num span { color: var(--signal); font-style: normal; }
.biz__card-foot { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.biz__card-foot p { font-size: 13px; color: rgba(243,238,228,.7); max-width: 22ch; }
.biz__features { list-style: none; margin-top: 28px; }
.biz__features li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: center;
}
.biz__features li:last-child { border-bottom: 1px solid var(--line); }
.biz__features span:first-child { font-family: var(--font-mono); color: var(--signal); font-size: 12px; }
.biz__features b { display: block; font-weight: 600; }
.biz__features small { color: var(--muted); font-size: 13px; }

/* ------- testimonials ------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 22px;
  background: var(--paper);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(10, 22, 40, 0.15); border-color: var(--ink); }
.quote__mark { font-family: var(--font-display); font-size: 60px; line-height: 0.6; color: var(--signal); font-style: italic; }
.quote__body { font-family: var(--font-display); font-size: 20px; line-height: 1.35; letter-spacing: -0.005em; }
.quote__foot { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); }
.quote__who b { display: block; font-size: 14px; }
.quote__who small { color: var(--muted); font-size: 12px; font-family: var(--font-mono); }
.quote__stars { color: var(--signal); letter-spacing: 2px; }

/* ------- FAQ ------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }
details.faq { border-top: 1px solid var(--line); padding: 22px 0; }
details.faq:last-of-type { border-bottom: 1px solid var(--line); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: var(--font-mono); font-weight: 400; font-size: 28px;
  color: var(--signal);
  flex-shrink: 0;
  transition: transform .3s ease;
}
details.faq[open] summary::after { content: "−"; }
details.faq p {
  margin-top: 16px;
  font-size: 16px; color: #2E3B52;
  max-width: 64ch; line-height: 1.55;
}

/* ------- team cards ------- */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
@media (max-width: 820px) { .team { grid-template-columns: 1fr; } }
.team__card {
  display: grid; grid-template-columns: 180px 1fr; gap: 28px;
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  align-items: start;
  transition: background .3s ease;
}
@media (max-width: 820px) { .team__card { border-right: none; border-bottom: 1px solid var(--line); } .team__card:last-child { border-bottom: none; } }
@media (max-width: 560px) { .team__card { grid-template-columns: 1fr; } }
.team__card:last-child { border-right: none; }
.team__card:hover { background: var(--paper-2); }
.team__avatar {
  width: 140px; height: 180px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 48px; font-style: italic; letter-spacing: -0.02em;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  isolation: isolate;
}
.team__avatar img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
}
.team__avatar::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 77, 31, .2), transparent 55%),
    linear-gradient(to top, rgba(10, 22, 40, .35) 0%, transparent 30%);
  pointer-events: none;
  z-index: 2;
}

/* Team feature image — group photo */
.team-feature {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow:
    0 24px 48px -24px rgba(10, 22, 40, 0.4),
    0 0 0 1px rgba(243, 238, 228, .08);
}
.team-feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-feature::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .5) 0%, transparent 35%);
  pointer-events: none;
}
.team-feature__cap {
  position: absolute;
  left: 20px; bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.team-feature__cap::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal); box-shadow: 0 0 0 2px var(--paper);
}
.team__name { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); line-height: 1; letter-spacing: -0.02em; font-weight: 500; margin: 8px 0 14px; }
.team__bio { font-size: 15px; color: #2E3B52; max-width: 42ch; margin-bottom: 18px; }
.team__links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.team__links a {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink);
  border-bottom: 1px dashed var(--line-2);
  padding-bottom: 2px; display: inline-block;
  transition: color .2s ease, border-color .2s ease;
}
.team__links a:hover { color: var(--signal); border-color: var(--signal); }

/* ------- final CTA ------- */
.final {
  background: var(--ink); color: var(--paper);
  padding: clamp(56px, 7.5vw, 104px) 0;
  position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,77,31,.18), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(0,184,107,.08), transparent 50%);
  pointer-events: none;
}
.final__inner { position: relative; text-align: center; max-width: 18ch; margin: 0 auto; }
.final .h1 { font-size: clamp(56px, 10vw, 140px); }
.final .h1 .italic { color: var(--signal); display: inline-block; }
.final__cta { margin-top: 44px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.final__phone { margin-top: 28px; font-family: var(--font-mono); color: rgba(243,238,228,.65); font-size: 13px; letter-spacing: 0.08em; }
.final__phone a { color: var(--paper); border-bottom: 1px dashed rgba(243,238,228,.4); padding-bottom: 2px; }
.final__phone a:hover { border-color: var(--signal); }

/* ------- footer ------- */
.foot {
  background: var(--ink); color: rgba(243,238,228,.7);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(243,238,228,.08);
}
.foot__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--gutter); }
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; margin-bottom: 20px; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
.foot h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); margin-bottom: 16px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot a { font-size: 14px; }
.foot a:hover { color: var(--paper); }
.foot__brand .logo__mark { background: var(--paper); color: var(--ink); }
.foot__brand .logo { color: var(--paper); }
.foot__brand p { margin-top: 16px; font-size: 14px; max-width: 32ch; }
.foot__brand .socials { margin-top: 22px; display: flex; gap: 10px; }
.foot__brand .socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(243,238,228,.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.foot__brand .socials a:hover { background: var(--signal); border-color: var(--signal); color: var(--paper); }
.foot__brand .socials svg { width: 14px; height: 14px; }
.foot__bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(243,238,228,.08);
  display: flex; justify-content: space-between;
  gap: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  flex-wrap: wrap;
}

/* ------- grid overflow safety net -------
   CSS Grid defaults grid items to min-content size, which can overflow
   the column when text is long. Setting min-width: 0 lets grids shrink
   items down properly so nothing breaks out of its column.
*/
.plans > *,
.offers > *,
.why > *,
.channels > *,
.how > *,
.incl > *,
.quotes > *,
.team > *,
.values > *,
.trouble > *,
.foot__grid > * { min-width: 0; }

/* Hero slider safety — prevent any flex/grid child blowing out */
.slide > *,
.slide__content > * { min-width: 0; }

/* ------- reveal on scroll ------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ------- floating WhatsApp ------- */
.wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 50;
  display: inline-flex; align-items: center; gap: 0;
  background: #25D366; color: #fff;
  border-radius: 999px;
  padding: 0; height: 56px;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.4), 0 4px 12px -4px rgba(10, 22, 40, 0.2), 0 0 0 4px rgba(37, 211, 102, 0.15);
  transition: padding .3s ease, transform .3s ease;
  overflow: hidden; white-space: nowrap;
}
.wa::before {
  content: ""; width: 56px; height: 56px;
  background-color: #25D366;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'><path d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 2.1.55 4.15 1.6 5.96L2 22l4.27-1.12a9.92 9.92 0 0 0 5.77 1.83h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.91-7.02A9.86 9.86 0 0 0 12.04 2zm0 18.13h-.01a8.2 8.2 0 0 1-4.19-1.15l-.3-.18-3.11.82.83-3.04-.2-.31a8.22 8.22 0 0 1-1.26-4.36c0-4.54 3.7-8.24 8.24-8.24a8.2 8.2 0 0 1 5.83 2.42 8.18 8.18 0 0 1 2.41 5.83c0 4.54-3.7 8.24-8.24 8.24zm4.52-6.16c-.25-.12-1.46-.72-1.69-.8-.23-.08-.39-.13-.56.13-.16.25-.64.8-.79.97-.14.16-.29.18-.54.06-.25-.12-1.05-.39-2-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.02-.39.11-.51.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.56-1.34-.77-1.84-.2-.48-.4-.41-.56-.42h-.48c-.16 0-.43.06-.66.31-.22.25-.86.85-.86 2.07 0 1.22.89 2.39 1.01 2.56.12.16 1.74 2.66 4.21 3.73.59.25 1.05.4 1.41.51.59.19 1.13.16 1.55.1.47-.07 1.46-.6 1.66-1.17.2-.58.2-1.07.14-1.17-.06-.1-.22-.16-.47-.28z'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 28px;
  flex-shrink: 0;
}
.wa__label {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  max-width: 0; opacity: 0;
  transition: max-width .3s ease, opacity .3s ease, padding .3s ease;
}
.wa:hover { padding-right: 18px; transform: translateY(-2px); }
.wa:hover .wa__label { max-width: 180px; opacity: 1; padding: 0 4px; }
.wa::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa { right: 16px; bottom: 16px; height: 52px; }
  .wa::before { width: 52px; height: 52px; background-size: 26px; }
}

/* ------- activity feed (home only) ------- */
.activity {
  margin-top: 32px;
  display: flex; gap: 18px; align-items: center;
  max-width: 640px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.activity__label {
  flex-shrink: 0; color: var(--on);
  display: inline-flex; align-items: center; gap: 8px;
}
.activity__label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--on); animation: pulse-on 2s infinite; }
.activity__track {
  flex: 1; overflow: hidden;
  height: 20px; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.activity__item {
  position: absolute;
  white-space: nowrap;
  font-size: 13px; color: var(--muted);
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  width: 100%;
}
.activity__item em { font-family: var(--font-mono); font-size: 11px; font-style: normal; color: var(--signal); letter-spacing: 0.06em; }
.activity__item b { color: var(--ink); }
.activity__item.in { opacity: 1; transform: none; }
.activity__item.out { opacity: 0; transform: translateY(-20px); }

/* ------- mid-page coverage CTA ------- */
.cta-strip {
  background: var(--signal); color: var(--paper);
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative; overflow: hidden;
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 720px) { .cta-strip__inner { grid-template-columns: 1fr; text-align: left; } }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.02em; line-height: 1; }
.cta-strip h2 em { font-style: italic; color: var(--ink); display: block; }
.cta-strip p { margin-top: 14px; max-width: 50ch; color: rgba(243,238,228,.92); }
.cta-strip__btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 720px) { .cta-strip__btns { justify-content: flex-start; } }
