/* ============================================================
   ProSite Growth - Redesign
   Dark-mode primary. Mobile-first. BEM. CSS custom properties.
   ============================================================ */

:root {
  /* Surface */
  --bg: #0E0E10;
  --bg-elev: #0B0B0D;
  --card: #161618;
  --card-2: #1B1B1E;
  --border: #2A2A2D;
  --border-strong: #3A3A3F;

  /* Type */
  --text-primary: #EDE5D2;
  --text-secondary: #B8B0A0;
  --text-tertiary: #6E6A60;

  /* Accent */
  --blue: #0057FF;
  --blue-hover: #1A6BFF;
  --blue-soft: rgba(0, 87, 255, 0.10);
  --blue-glow: rgba(0, 87, 255, 0.22);
  --green: #28C840;

  /* Type families */
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Rhythm */
  --container: 1200px;
  --gutter: 1.5rem;
  --section-y: 7rem;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg: #FBFAF6;
  --bg-elev: #FFFFFF;
  --card: #FFFFFF;
  --card-2: #F4F2EC;
  --border: #E6E2D6;
  --border-strong: #CFC9B8;
  --text-primary: #16161A;
  --text-secondary: #4D4A40;
  --text-tertiary: #8A8579;
  --blue-soft: rgba(0, 87, 255, 0.07);
  --blue-glow: rgba(0, 87, 255, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--blue); color: #fff; }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Type primitives ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text-primary);
  text-wrap: balance;
}
h1 { font-weight: 800; letter-spacing: -0.035em; }

p { text-wrap: pretty; }

.accent { color: var(--blue); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section--tight { padding: calc(var(--section-y) - 2rem) 0; }
.section--alt { background: var(--bg-elev); }
.section__head { max-width: 720px; margin-bottom: 3rem; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 0.9rem 0 1rem;
}
.section__sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 640px;
}
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* Hairline divider used between sections */
.hairline { border-top: 1px solid var(--border); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; }
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 6px 24px -6px var(--blue-glow);
}
.btn--primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 10px 32px -6px var(--blue-glow); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--text-secondary); transform: translateY(-1px); }
.btn--quiet {
  background: var(--card-2);
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--quiet:hover { border-color: var(--blue); color: var(--blue); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.55rem 0.9rem; font-size: 0.82rem; border-radius: 10px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(14, 14, 16, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}
[data-theme="light"] .nav.is-scrolled { background: rgba(251, 250, 246, 0.78); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 40px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 0.98rem;
}
.nav__mark {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.nav__mark-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.nav__mark-svg {
  width: 100%;
  height: 100%;
  display: block;
  color: var(--blue);
}
:root[data-theme="dark"] .nav__mark-img--light,
:root:not([data-theme="dark"]) .nav__mark-img--dark {
  display: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: 0.6rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.18s var(--ease);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 0.5rem; }

.nav__hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-primary);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__hamburger span::before,
.nav__hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav__hamburger span::before { top: -5px; }
.nav__hamburger span::after { top: 5px; }
.nav__hamburger.is-open span { background: transparent; }
.nav__hamburger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__hamburger.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 6rem 1.5rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.42s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.mobile-menu a span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-tertiary); }
.mobile-menu .btn { margin-top: 1.5rem; }

@media (max-width: 880px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__hamburger { display: inline-flex; margin-left: auto; }
  .nav__cta { margin-left: 0; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle at center, var(--blue-glow) 0%, transparent 55%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__capacity {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.8rem 0.4rem 0.6rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}
.hero__capacity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.5);
  animation: pulse 2s var(--ease-out) infinite;
}
.hero__capacity strong { color: var(--text-primary); font-weight: 600; }
.hero__capacity-divider { color: var(--text-tertiary); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(40, 200, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0); }
}

.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue) 0%, #5A8CFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  color: var(--text-secondary);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.hero__sub strong { color: var(--text-primary); font-weight: 500; }
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-bottom: 2.25rem;
}
.hero__proof span { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); }
.hero__proof span::before {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--blue);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* Preview modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 1rem 2rem;
  overflow-y: auto;
}
.modal.is-open {
  display: flex;
}
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: modal-pop 200ms ease-out;
}
@keyframes modal-pop {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: color 140ms ease, border-color 140ms ease;
}
.modal__close:hover {
  color: var(--text-primary);
  border-color: var(--text-tertiary);
}
.modal__close svg {
  width: 1rem;
  height: 1rem;
}
.modal__title {
  margin: 0.5rem 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.modal__sub {
  margin: 0 0 1.4rem;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
body.no-scroll {
  overflow: hidden;
}

/* Hero browser-mock visual */
.hero__visual {
  position: relative;
  perspective: 1200px;
}
.hero__devices {
  width: 100%;
  height: auto;
  display: block;
  /* Transparent PNG/WebP — devices float on the page bg, no card frame */
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(0, 87, 255, 0.08));
}
.browser {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.02) inset;
  transform: rotate(0.6deg);
}
.browser__chrome {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  background: var(--card-2);
  border-bottom: 1px solid var(--border);
}
.browser__dots { display: inline-flex; gap: 6px; }
.browser__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.browser__url {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.browser__url svg { width: 11px; height: 11px; color: var(--green); }
.browser__body { aspect-ratio: 16 / 11; background: #000; position: relative; overflow: hidden; }
.browser__body img { width: 100%; height: 100%; object-fit: cover; }

/* Floating cards on top of browser */
.hero__pill {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.6);
  animation: floatY 5.5s ease-in-out infinite;
}
.hero__pill--lead {
  top: 14%;
  right: -28px;
}
.hero__pill--speed {
  bottom: 12%;
  left: -32px;
  animation-delay: 1.2s;
}
.hero__pill-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero__pill-icon svg { width: 14px; height: 14px; }
.hero__pill strong { color: var(--text-primary); font-weight: 600; display: block; font-size: 0.82rem; }
.hero__pill span { color: var(--text-tertiary); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

@media (max-width: 980px) {
  .hero { padding: 7rem 0 4rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero__pill--lead { right: -10px; }
  .hero__pill--speed { left: -10px; }
}
@media (max-width: 600px) {
  .hero__pill { display: none; }
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust {
  padding: 2.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}
.trust__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-secondary);
  font-size: 0.86rem;
}
.trust__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.trust__icon svg { width: 18px; height: 18px; }
.trust__item strong { color: var(--text-primary); font-weight: 600; }
.trust__sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }

@media (max-width: 920px) {
  .trust__row { justify-content: center; gap: 1.25rem 2rem; }
  .trust__sep { display: none; }
}

/* ============================================================
   ICP qualifier
   ============================================================ */
.icp__title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  max-width: 880px;
  margin: 0 auto 2.75rem;
  text-align: center;
  line-height: 1.2;
}
.icp__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}
.icp__col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.9rem;
  position: relative;
}
.icp__col-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.icp__col--yes .icp__col-label { color: var(--blue); }
.icp__col--no  .icp__col-label { color: var(--text-tertiary); }
.icp__col-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.icp__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.icp__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.icp__list svg { width: 16px; height: 16px; margin-top: 0.18rem; }
.icp__col--yes .icp__list svg { color: var(--blue); }
.icp__col--no  .icp__list svg { color: var(--text-tertiary); }

@media (max-width: 760px) {
  .icp__columns { grid-template-columns: 1fr; }
}

/* ============================================================
   Funnel education (sticky split)
   ============================================================ */
.funnel-edu__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.funnel-edu__cards { display: grid; gap: 1.5rem; }
.funnel-edu__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.1rem 1.85rem;
  position: relative;
  transition: border-color 0.25s var(--ease);
}
.funnel-edu__card:hover { border-color: var(--border-strong); }
.funnel-edu__num {
  position: absolute;
  top: -0.85rem;
  left: 1.6rem;
  background: var(--bg);
  padding: 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.section--alt .funnel-edu__num { background: var(--bg-elev); }
.funnel-edu__card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.funnel-edu__card h3 .accent { color: var(--blue); }
.funnel-edu__card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.funnel-edu__card p:last-child { margin-bottom: 0; }
.funnel-edu__card strong { color: var(--text-primary); font-weight: 600; }
.funnel-edu__quote {
  display: block;
  border-left: 2px solid var(--blue);
  padding: 0.4rem 0.9rem;
  margin: 0.85rem 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.funnel-edu__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-tertiary);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin: 0.4rem 0.4rem 0.4rem 0;
}
.funnel-edu__stat strong { color: var(--blue); font-weight: 600; }

/* Funnel visual (sticky right column) */
.funnel-edu__visual {
  position: sticky;
  top: 7rem;
}
.funnel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
}
.funnel__head {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: center;
}
.funnel__head::before, .funnel__head::after { content: ""; flex: 1; height: 1px; background: var(--border); max-width: 40px; }

/* Stacked-rectangles version */
.funnel--rects .funnel__stage {
  background: transparent;
  border: 1.5px solid var(--blue);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  transition: background 0.4s var(--ease);
}
.funnel--rects .funnel__stage--1 { width: 100%; }
.funnel--rects .funnel__stage--2 { width: 80%; }
.funnel--rects .funnel__stage--3 { width: 62%; }
.funnel--rects .funnel__stage.is-active { background: var(--blue-soft); }
.funnel--rects .funnel__num {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.7rem; height: 1.7rem;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.78rem;
  border: 3px solid var(--card);
}
.funnel--rects .funnel__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.funnel--rects .funnel__head-line {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.funnel--rects .funnel__arrow {
  display: flex;
  justify-content: center;
  margin: 0.6rem 0;
  color: var(--blue);
  opacity: 0.7;
}
.funnel--rects .funnel__arrow svg { width: 14px; height: 14px; }

/* Trapezoidal SVG version */
.funnel--svg { padding: 1rem; }
.funnel--svg svg { width: 100%; height: auto; display: block; }
.funnel__svg-stage { transition: opacity 0.35s var(--ease); }
.funnel__svg-stage.is-dim { opacity: 0.32; }

/* Toggle pill on the funnel */
.funnel__toggle {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
}
.funnel__toggle button {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.funnel__toggle button.is-active {
  background: var(--card-2);
  color: var(--text-primary);
}
.funnel__toggle-row { display: flex; justify-content: center; }

@media (max-width: 980px) {
  .funnel-edu__split { grid-template-columns: 1fr; gap: 2.5rem; }
  .funnel-edu__visual { position: static; max-width: 480px; margin: 0 auto; order: -1; }
}

/* ============================================================
   Three options
   ============================================================ */
.options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.option {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.85rem 1.85rem;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.option:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.option__num {
  position: absolute;
  top: -1px;
  left: 1.5rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: 0 0 8px 8px;
}
.option__title {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.option__title small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.option__what, .option__why {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}
.option__why { margin-bottom: 0; }
.option strong { color: var(--text-primary); font-weight: 600; }
.options__bridge {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-secondary);
  padding-top: 0.5rem;
}
.options__bridge strong { color: var(--text-primary); font-weight: 600; }
.options__bridge .accent { color: var(--blue); font-weight: 600; }

@media (max-width: 920px) { .options__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Templates gallery
   ============================================================ */
.templates__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.tpl {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tpl:hover { border-color: var(--blue); transform: translateY(-4px); }
.tpl__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.7rem;
  background: var(--card-2);
  border-bottom: 1px solid var(--border);
}
.tpl__dots { display: inline-flex; gap: 4px; }
.tpl__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.tpl__url {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-tertiary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tpl__preview {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}
.tpl__preview img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tpl:hover .tpl__preview img { transform: scale(1.05); }
.tpl__body {
  padding: 0.95rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.tpl__name { font-size: 1rem; font-weight: 600; }
.tpl__niche {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: -0.7rem;
}
.tpl__actions { display: flex; gap: 0.5rem; margin-top: auto; }
.tpl__actions .btn { flex: 1; padding: 0.55rem 0.5rem; font-size: 0.78rem; }

@media (max-width: 1050px) { .templates__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .templates__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Testimonials
   ============================================================ */
.tmnl__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.tmnl {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
}
.tmnl__quote {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  flex: 1;
}
.tmnl__quote::before {
  content: "“";
  font-family: var(--font-sans);
  font-size: 2.4rem;
  line-height: 0;
  color: var(--blue);
  vertical-align: -0.2em;
  margin-right: 0.2rem;
}
.tmnl__person { display: flex; align-items: center; gap: 0.8rem; }
.tmnl__photo {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card-2);
  border: 1px solid var(--border);
  object-fit: cover;
}
.tmnl__name { font-size: 0.9rem; font-weight: 500; color: var(--text-primary); }
.tmnl__role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-tertiary); letter-spacing: 0.04em; }

@media (max-width: 880px) { .tmnl__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Pricing
   ============================================================ */
.pricing__wrap { display: grid; place-items: center; }
.pricing {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 65%);
  pointer-events: none;
}
.pricing__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
}
.pricing__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.pricing__pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
}
.pricing__amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 1;
  margin-bottom: 0.4rem;
  position: relative;
}
.pricing__amount-cur { font-size: 1.4rem; font-weight: 600; color: var(--text-tertiary); }
.pricing__amount-suffix {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0;
}
.pricing__line {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  position: relative;
}
.pricing__divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.pricing__list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.pricing__list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: var(--text-secondary);
  align-items: start;
  line-height: 1.5;
}
.pricing__list svg { width: 14px; height: 14px; color: var(--blue); margin-top: 0.22rem; }
.pricing__note {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 1.25rem;
}

/* ============================================================
   Process
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-strong) 8%, var(--border-strong) 92%, transparent 100%);
}
.process__step { padding: 0 1rem; position: relative; }
.process__step-num {
  width: 52px; height: 52px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  color: var(--blue);
  font-family: var(--font-mono);
  font-weight: 600;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.process__step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.35rem; }
.process__step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 880px) {
  .process__steps { grid-template-columns: 1fr; gap: 1.25rem; }
  .process__steps::before { display: none; }
  .process__step { padding-left: 0; display: grid; grid-template-columns: 52px 1fr; gap: 1rem; align-items: start; }
  .process__step-num { margin-bottom: 0; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.5rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s var(--ease);
}
.faq__q:hover { color: var(--blue); }
.faq__plus {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
  color: var(--text-tertiary);
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.faq__plus::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__q { color: var(--blue); }
.faq__item.is-open .faq__plus { color: var(--blue); }
.faq__item.is-open .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq__a-inner {
  padding: 0 0.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 720px;
}

/* ============================================================
   Final CTA + form
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 70%;
  background: radial-gradient(ellipse at center top, var(--blue-glow), transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.cta__title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 0.9rem 0 1rem;
}
.cta__sub { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; }
.cta__bullets {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.cta__bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.cta__bullets svg { width: 16px; height: 16px; color: var(--blue); margin-top: 0.18rem; }

.form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
}
.form__field { display: grid; gap: 0.4rem; }
.form__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.form__input, .form__select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.form__input::placeholder { color: var(--text-tertiary); }
.form__input:focus, .form__select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.form__select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E6A60' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; cursor: pointer; }
.form__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.form__trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.form__trust span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
.form__success {
  display: none;
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}
.form.is-success .form__field,
.form.is-success .form__cta,
.form.is-success .form__trust { display: none; }
.form.is-success .form__success { display: block; }
.form__success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
}
.form__success-icon svg { width: 28px; height: 28px; }
.form__success h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.4rem; }
.form__success p { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.55; }

@media (max-width: 920px) {
  .cta__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: var(--bg-elev);
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand { font-weight: 700; letter-spacing: -0.02em; font-size: 1rem; margin-bottom: 0.75rem; display: inline-flex; align-items: center; gap: 0.55rem; }
.footer__about { color: var(--text-tertiary); font-size: 0.88rem; line-height: 1.6; max-width: 320px; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: grid; gap: 0.65rem; }
.footer__col a { color: var(--text-secondary); font-size: 0.9rem; transition: color 0.18s var(--ease); }
.footer__col a:hover { color: var(--text-primary); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-tertiary);
}
.footer__status { display: inline-flex; align-items: center; gap: 0.45rem; }
.footer__status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(40, 200, 64, 0.6);
}

@media (max-width: 880px) { .footer__cols { grid-template-columns: 1fr 1fr; } .footer__col--brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer__cols { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   Theme toggle (subtle, top-right)
   ============================================================ */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-grid;
  place-items: center;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.theme-toggle:hover { color: var(--text-primary); border-color: var(--border-strong); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ============================================================
   Utility
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.no-scroll { overflow: hidden; }


/* ============================================================
   Template placeholder tile + testimonial placeholder
   ============================================================ */
.tpl__preview--placeholder {
  position: relative;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(0, 87, 255, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #14141a 0%, #0c0c10 100%);
  overflow: hidden;
}
.tpl__preview--placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 60%, #000 0%, transparent 75%);
}
.tpl__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 1.2rem 1.25rem;
  gap: 0.4rem;
}
.tpl__placeholder-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.tpl__placeholder-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}
.tpl__placeholder-arrow {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  transition: transform 0.3s var(--ease), color 0.2s var(--ease);
}
.tpl:hover .tpl__placeholder-arrow { transform: translateX(4px); color: var(--blue); }

/* Testimonial honesty card */
.tmnl__placeholder-wrap {
  display: flex;
  justify-content: center;
}
.tmnl-placeholder {
  position: relative;
  max-width: 760px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--blue);
  border-radius: 14px;
  padding: 2.4rem 2.4rem 2.2rem;
  overflow: hidden;
}
.tmnl-placeholder::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 240px;
  background: radial-gradient(80% 100% at 100% 0%, rgba(0, 87, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.tmnl-placeholder__mark {
  position: absolute;
  top: -0.5rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.18;
  pointer-events: none;
}
.tmnl-placeholder__line {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0 0 0.9rem;
  text-wrap: pretty;
  position: relative;
}
.tmnl-placeholder__sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  max-width: 56ch;
  text-wrap: pretty;
  position: relative;
}
@media (max-width: 720px) {
  .tmnl-placeholder { padding: 1.8rem 1.4rem 1.6rem; }
  .tmnl-placeholder__line { font-size: 1.2rem; }
  .tmnl-placeholder__mark { font-size: 4rem; top: -0.2rem; }
}


/* Textarea + optional label tag */
.form__textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-sans);
  line-height: 1.5;
}
.form__optional {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  margin-left: 0.4rem;
  text-transform: lowercase;
}
@media (max-width: 720px) {
  .form__cta { width: 100%; }
}
