/* =========================================================================
   Elite Media — elitemedia.design
   ========================================================================= */

/* ---------- Fonts (self-hosted: no render-blocking third-party request) --- */

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/instrumentserif-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/instrumentserif-400-latinext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/instrumentserif-400italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/instrumentserif-400italic-latinext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/manrope-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/manrope-var-latinext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ------------------------------------------------------- */

:root {
  --glow: 1;

  --bg: #07080b;
  --ink: #eceef2;
  --ink-95: #f4f6f9;

  --teal: #7fe3e0;
  --teal-lt: #a9f2f0;
  --teal-btn-a: #b6f4f2;
  --teal-btn-b: #63d2cf;
  --teal-dk: #4bb3b0;
  --violet: #8f9bff;
  --violet-dk: #5b64c9;
  --violet-lt: #c3c9ff;

  --sans: Manrope, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --mono: ui-monospace, Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: 1240px;
}

/* ---------- Reset / base ------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: #b7f2f0; }

img { max-width: 100%; display: block; }

h1, h2, h3, p { margin: 0; }

::selection { background: rgba(127, 227, 224, 0.28); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--teal);
  color: var(--bg);
  font: 700 13px/1 var(--sans);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--bg); }

/* ---------- Keyframes ---------------------------------------------------- */

@keyframes em-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -16px, 0); }
}
@keyframes em-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(4%, -6%, 0) scale(1.12); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes em-sheen {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}
@keyframes em-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
@keyframes em-scan {
  0%   { top: -10%; }
  100% { top: 110%; }
}
@keyframes em-spin { to { transform: rotate(360deg); } }
@keyframes em-marq { to { transform: translateX(-50%); } }
@keyframes em-spinner {
  to { transform: rotate(360deg); }
}

/* ---------- Page shell --------------------------------------------------- */

.page {
  position: relative;
  overflow-x: clip;
  background: var(--bg);
}

.page-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
}

.section {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 96px 28px;
}

/* Anchor targets must clear the sticky header, or a nav click parks the
   section heading behind it. */
section[id],
main [id] { scroll-margin-top: 124px; }

@media (max-width: 820px) {
  section[id],
  main [id] { scroll-margin-top: 96px; }
}
@media (max-width: 400px) {
  section[id],
  main [id] { scroll-margin-top: 76px; }
}
.section--narrow { max-width: 1000px; }

.eyebrow {
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-title {
  margin: 18px 0 0;
  max-width: 20ch;
  font: 400 clamp(36px, 4.6vw, 60px)/1.03 var(--serif);
  letter-spacing: -0.02em;
}

.section-lede {
  margin: 0;
  max-width: 36ch;
  font: 400 15.5px/1.65 var(--sans);
  color: rgba(236, 238, 242, 0.58);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 32px;
  justify-content: space-between;
}

.w-24ch { max-width: 24ch; }
.w-34ch { max-width: 34ch; }

/* ---------- Section bands ---------------------------------------------------
   The page was one unbroken dark surface, so every section blurred into the
   next. Alternating bands give the eye a boundary to land on. The tonal shift
   is deliberately small — enough to read as a new chapter, not as a new site. */

.band {
  position: relative;
}
.band--alt {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.018) 0%,
      rgba(255, 255, 255, 0.045) 45%,
      rgba(255, 255, 255, 0.016) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
/* A soft accent bloom at the top edge so the seam reads as designed. */
.band--alt::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 82%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 227, 224, 0.55), transparent);
  pointer-events: none;
}

/* ---------- Section mark ----------------------------------------------------
   A numbered chapter marker. Consistent across every section, so the page
   gains a rhythm the reader can feel without having to read anything. */

.section-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.62);
}
.section-num {
  font: 400 30px/0.8 var(--serif);
  letter-spacing: -0.01em;
  color: var(--teal);
  text-shadow: 0 0 calc(var(--glow) * 26px) rgba(127, 227, 224, 0.45);
}
.section-mark i {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(127, 227, 224, 0.7), rgba(127, 227, 224, 0.05));
  flex: none;
}
/* Centred variant for the pricing header. */
.pricing-head .section-mark { justify-content: center; }

.section-title { margin-top: 22px; }
.pricing-head .section-title { margin: 22px auto 0; }

/* Progressive enhancement: page content must never rely on JS/IntersectionObserver
   to become visible. Motion is optional; headlines, CTAs and forms are not. */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Header / nav ------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 20px 0;
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, rgba(127, 227, 224, 0), var(--teal) 40%, var(--violet));
  box-shadow: 0 0 calc(var(--glow) * 16px) rgba(127, 227, 224, 0.8);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 9px 9px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(11, 13, 18, 0.66);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    0 24px 60px -34px rgba(0, 0, 0, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.4s, background 0.4s, border-color 0.4s;
}
.nav.is-scrolled {
  background: rgba(9, 10, 14, 0.86);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 70px -30px rgba(0, 0, 0, 0.98),
    0 0 calc(var(--glow) * 50px) rgba(127, 227, 224, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
}
.brand:hover { color: inherit; }

.brand-mark {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--teal-lt), var(--teal) 32%, var(--violet) 78%, var(--violet-dk));
  box-shadow:
    0 0 calc(var(--glow) * 26px) rgba(127, 227, 224, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.65);
  flex: none;
}
.brand-mark i {
  position: absolute;
  left: 7px;
  height: 3px;
  border-radius: 2px;
  background: rgba(7, 8, 11, 0.82);
}
.brand-mark i:nth-child(1) { top: 8px;    width: 14px; }
.brand-mark i:nth-child(2) { top: 14.5px; width: 9px; }
.brand-mark i:nth-child(3) { top: 21px;   width: 14px; }

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-name {
  font: 400 18px/1 var(--serif);
  letter-spacing: 0.005em;
  color: var(--ink-95);
}
.brand-domain {
  font: 600 8.5px/1 var(--mono);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(127, 227, 224, 0.75);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-left: auto;
  font: 600 13px/1 var(--sans);
}
.nav-link {
  padding: 9px 14px;
  border-radius: 12px;
  color: rgba(236, 238, 242, 0.6);
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav-link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}
.nav-link.is-active {
  color: #07080b;
  background: rgba(127, 227, 224, 0.9);
  box-shadow: 0 0 calc(var(--glow) * 26px) rgba(127, 227, 224, 0.35);
}
.nav-link.is-active:hover { color: #07080b; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px 11px 18px;
  border-radius: 14px;
  font: 700 13px/1 var(--sans);
  color: #07080b;
  background: linear-gradient(180deg, var(--teal-btn-a), var(--teal-btn-b));
  box-shadow:
    0 14px 30px -14px rgba(127, 227, 224, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-cta:hover {
  color: #07080b;
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px -14px rgba(127, 227, 224, 0.9),
    0 0 calc(var(--glow) * 44px) rgba(127, 227, 224, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.nav-cta span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: rgba(7, 8, 11, 0.16);
  font: 700 12px/1 var(--sans);
}

/* ---------- Hero --------------------------------------------------------- */

.hero {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 96px 28px 40px;
}

.hero-orb {
  position: absolute;
  top: -140px;
  left: 22%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(127, 227, 224, 0.2), rgba(143, 155, 255, 0.13) 42%, transparent 68%);
  filter: blur(18px);
  animation: em-drift 18s ease-in-out infinite;
  will-change: transform;
}
.hero-orb--b {
  top: 180px;
  left: auto;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(143, 155, 255, 0.16), transparent 65%);
  filter: blur(24px);
  animation: em-drift 24s ease-in-out infinite reverse;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(120% 90% at 55% 30%, #000 20%, transparent 76%);
  mask-image: radial-gradient(120% 90% at 55% 30%, #000 20%, transparent 76%);
}

.badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font: 600 11.5px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.72);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 calc(var(--glow) * 14px) var(--teal);
  animation: em-pulse 2.4s ease-in-out infinite;
  flex: none;
}

.hero-title {
  position: relative;
  margin: 26px 0 0;
  max-width: 15ch;
  font: 400 clamp(52px, 8.2vw, 108px)/0.94 var(--serif);
  letter-spacing: -0.025em;
  text-wrap: balance;
  transition-duration: 1s;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, #ffffff, var(--teal-lt) 38%, #9aa6ff 72%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  position: relative;
  margin: 26px 0 0;
  max-width: 54ch;
  font: 400 18.5px/1.62 var(--sans);
  color: rgba(236, 238, 242, 0.66);
  text-wrap: pretty;
  transition-duration: 1s;
}

.hero-actions {
  position: relative;
  margin: 38px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  transition-duration: 1s;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  padding: 16px 28px;
  border-radius: 999px;
  font: 700 15px/1 var(--sans);
  color: #07080b;
  background: linear-gradient(180deg, var(--teal-btn-a), var(--teal-btn-b));
  box-shadow:
    0 18px 50px -18px rgba(127, 227, 224, 0.7),
    0 0 calc(var(--glow) * 40px) rgba(127, 227, 224, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.btn-primary:hover {
  color: #07080b;
  transform: translateY(-2px);
  box-shadow:
    0 26px 70px -18px rgba(127, 227, 224, 0.85),
    0 0 calc(var(--glow) * 70px) rgba(127, 227, 224, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.btn-sheen {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: em-sheen 4.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-ghost {
  padding: 16px 26px;
  border-radius: 999px;
  font: 600 15px/1 var(--sans);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.btn-ghost:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.hero-note {
  font: 500 13px/1.5 var(--sans);
  color: rgba(236, 238, 242, 0.42);
}

/* ---------- Browser mock + compare slider -------------------------------- */

.showcase {
  position: relative;
  margin: 64px 0 0;
  perspective: 1600px;
  transition-duration: 1.1s;
}

.browser-shell {
  position: relative;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03) 40%, rgba(127, 227, 224, 0.22));
  box-shadow:
    0 60px 120px -40px rgba(0, 0, 0, 0.9),
    0 0 calc(var(--glow) * 90px) rgba(127, 227, 224, 0.12);
  animation: em-float 9s ease-in-out infinite;
}
.browser {
  border-radius: 19px;
  overflow: hidden;
  background: linear-gradient(180deg, #0c0e13, #090a0e);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3f4b;
}
.browser-url {
  flex: 1;
  max-width: 340px;
  margin-left: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font: 500 11.5px/1 var(--mono);
  color: rgba(236, 238, 242, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  font: 600 10.5px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.browser-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: em-pulse 2s ease-in-out infinite;
}

.compare {
  position: relative;
  height: clamp(392px, 42vw, 470px);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

/* -- "Before": dated template -- */
.old-site {
  position: absolute;
  inset: 0;
  background: #f2f1ee;
  padding: 22px 26px;
  font-family: 'Times New Roman', Times, serif;
  color: #2b2b2b;
}
.old-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 2px solid #9a1b1b;
  padding-bottom: 8px;
}
.old-title { font: bold 22px/1 'Times New Roman', serif; color: #9a1b1b; }
.old-since { font: 12px/1 'Times New Roman', serif; color: #555; }
.old-nav {
  display: flex;
  gap: 10px;
  margin: 10px 0 14px;
  font: 12px/1 'Times New Roman', serif;
  color: #00309c;
  text-decoration: underline;
}
.old-body {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 18px;
}
.old-body p { font: 13px/1.35 'Times New Roman', serif; margin: 0 0 8px; }
.old-body p:last-child { margin: 0; }
.old-phone { font-weight: bold; }
.old-side { display: flex; flex-direction: column; gap: 10px; }
.old-clipart {
  height: 74px;
  background: repeating-linear-gradient(45deg, #dcdcd6, #dcdcd6 6px, #cfcfc8 6px, #cfcfc8 12px);
  border: 1px solid #b9b9b2;
  display: grid;
  place-items: center;
  font: 10px/1 var(--mono);
  color: #6b6b64;
}
.old-counter {
  padding: 6px;
  border: 1px solid #b9b9b2;
  background: #e8e7e2;
  font: 10px/1.3 'Times New Roman', serif;
  color: #5a5a54;
}
.old-stamp {
  position: absolute;
  left: 26px;
  bottom: 18px;
  font: 10.5px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b8b84;
}

/* -- "After": the rebuild -- */
.new-site {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(165deg, #0a0c11, #0e1118 55%, #0a0c11);
  padding: 20px 30px;
  overflow: hidden;
}
.new-glow {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 227, 224, 0.22), transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}

/* nav */
.new-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.new-logo {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(150deg, var(--teal), var(--violet));
  box-shadow: 0 0 18px rgba(127, 227, 224, 0.6);
  flex: none;
}
.new-name {
  font: 700 14px/1 var(--sans);
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
}
.new-links {
  display: flex;
  gap: 18px;
  margin-left: 14px;
  font: 500 12px/1 var(--sans);
  color: rgba(236, 238, 242, 0.55);
}
.new-phone {
  margin-left: auto;
  font: 600 12.5px/1 var(--mono);
  letter-spacing: 0.02em;
  color: rgba(236, 238, 242, 0.72);
  white-space: nowrap;
}
.new-book {
  padding: 9px 16px;
  border-radius: 999px;
  font: 700 12px/1 var(--sans);
  color: #07080b;
  background: linear-gradient(180deg, var(--teal-btn-a), var(--teal-btn-b));
  box-shadow: 0 0 26px rgba(127, 227, 224, 0.45);
  white-space: nowrap;
  flex: none;
}

/* hero row */
.new-main {
  position: relative;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 215px) minmax(190px, 250px);
  gap: 26px;
  align-items: start;
}
.new-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(127, 227, 224, 0.28);
  background: rgba(127, 227, 224, 0.08);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-lt);
}
.new-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}
.new-h1 {
  max-width: 17ch;
  font: 400 clamp(26px, 3.2vw, 42px)/1.04 var(--serif);
  letter-spacing: -0.02em;
  color: #fff;
}
.new-p {
  max-width: 34ch;
  font: 400 13px/1.55 var(--sans);
  color: rgba(236, 238, 242, 0.6);
}
.new-actions {
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.new-btn {
  padding: 11px 18px;
  border-radius: 11px;
  font: 700 12.5px/1 var(--sans);
  color: #07080b;
  background: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(255, 255, 255, 0.35);
}
.new-btn--ghost {
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

/* review card — fills the gutter and carries the social proof */
.new-review {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.new-stars {
  font: 12px/1 var(--sans);
  letter-spacing: 2px;
  color: var(--teal);
}
.new-review p {
  font: 500 12px/1.5 var(--sans);
  color: rgba(236, 238, 242, 0.72);
}
.new-by {
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.4);
}

/* booking card */
.new-card {
  padding: 13px;
  border-radius: 16px;
  border: 1px solid rgba(127, 227, 224, 0.28);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 26px 50px -30px rgba(0, 0, 0, 0.9),
    0 0 calc(var(--glow) * 40px) rgba(127, 227, 224, 0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.new-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font: 600 10.5px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.55);
}
.new-card-head span { color: var(--teal); }
.new-rows {
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.new-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  font: 600 11.5px/1 var(--sans);
  color: rgba(236, 238, 242, 0.8);
}
.new-row span { color: rgba(236, 238, 242, 0.45); }
.new-confirm {
  margin: 10px 0 0;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font: 700 12px/1 var(--sans);
  color: #07080b;
  background: linear-gradient(180deg, var(--teal-btn-a), var(--teal-btn-b));
  box-shadow: 0 0 calc(var(--glow) * 26px) rgba(127, 227, 224, 0.4);
}

/* services strip */
.new-services {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.new-services > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}
.new-services > div:first-child {
  border-left: 0;
  padding-left: 0;
}
.new-services b {
  font: 600 12.5px/1.2 var(--sans);
  color: rgba(236, 238, 242, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.new-services span {
  font: 500 11px/1.2 var(--sans);
  color: rgba(236, 238, 242, 0.42);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* footer row */
.new-foot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.new-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}
.new-chips span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  font: 600 11px/1 var(--sans);
  color: rgba(236, 238, 242, 0.72);
  white-space: nowrap;
}
.new-stamp {
  margin-left: auto;
  font: 10.5px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(127, 227, 224, 0.75);
  white-space: nowrap;
}

/* -- Drag handle -- */
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--teal) 12%, var(--teal) 88%, transparent);
  box-shadow: 0 0 calc(var(--glow) * 26px) rgba(127, 227, 224, 0.8);
  pointer-events: none;
}
.compare-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(7, 8, 11, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(127, 227, 224, 0.6);
  box-shadow: 0 0 calc(var(--glow) * 34px) rgba(127, 227, 224, 0.5);
  display: grid;
  place-items: center;
  font: 600 11px/1 var(--mono);
  color: var(--teal);
}

/* -- Stat pills under the mock -- */
.stat-row {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.stat {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 calc(var(--glow) * 30px) rgba(127, 227, 224, 0.08);
}
.stat--violet { box-shadow: 0 0 calc(var(--glow) * 30px) rgba(143, 155, 255, 0.1); }
.stat-num {
  font: 400 26px/1 var(--serif);
  color: var(--teal-lt);
  min-width: 38px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.stat-num--wide { min-width: 52px; }
.stat-num--violet { color: var(--violet-lt); }
.stat-label {
  font: 600 10.5px/1.3 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.45);
}

.compare-hint {
  margin: 16px 0 0;
  text-align: center;
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.38);
}

/* ---------- Marquee ------------------------------------------------------ */

.marquee {
  position: relative;
  margin: 56px 0 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: em-marq 34s linear infinite;
}
.marquee-group {
  display: flex;
  gap: 52px;
  padding-right: 52px;
  font: 500 13px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.45);
}
.marquee-group b { color: var(--teal); font-weight: inherit; }

/* ---------- Services ----------------------------------------------------- */

.services-grid {
  margin: 52px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  transition:
    opacity 0.9s var(--ease),
    transform 0.4s var(--ease),
    border-color 0.4s,
    box-shadow 0.4s;
}
.card.is-visible:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 227, 224, 0.4);
  box-shadow: 0 0 calc(var(--glow) * 50px) rgba(127, 227, 224, 0.16);
}
.card--violet.is-visible:hover {
  border-color: rgba(143, 155, 255, 0.4);
  box-shadow: 0 0 calc(var(--glow) * 50px) rgba(143, 155, 255, 0.16);
}
.card h3 {
  margin: 20px 0 0;
  font: 600 18.5px/1.2 var(--sans);
  letter-spacing: -0.015em;
}
.card p {
  margin: 10px 0 0;
  font: 400 14px/1.62 var(--sans);
  color: rgba(236, 238, 242, 0.58);
}

.card--core,
.card--ai {
  grid-column: span 2;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.9);
}
.card--core {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}
.card--core.is-visible:hover {
  transform: none;
  border-color: rgba(127, 227, 224, 0.4);
  box-shadow:
    0 50px 90px -50px rgba(0, 0, 0, 0.95),
    0 0 calc(var(--glow) * 60px) rgba(127, 227, 224, 0.14);
}
.card--ai {
  padding: 30px;
  background: linear-gradient(150deg, rgba(143, 155, 255, 0.1), rgba(255, 255, 255, 0.02));
}
.card--ai.is-visible:hover {
  transform: none;
  border-color: rgba(143, 155, 255, 0.42);
  box-shadow:
    0 40px 80px -50px rgba(0, 0, 0, 0.9),
    0 0 calc(var(--glow) * 60px) rgba(143, 155, 255, 0.16);
}

.card-glow {
  position: absolute;
  top: -90px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 227, 224, 0.18), transparent 65%);
  filter: blur(6px);
  pointer-events: none;
}

.card-kicker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-kicker span {
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.5);
}

.card--core h3 {
  position: relative;
  margin: 22px 0 0;
  font: 600 26px/1.15 var(--sans);
  letter-spacing: -0.02em;
}
.card--core p {
  position: relative;
  margin: 14px 0 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(236, 238, 242, 0.62);
}

.icon-sq {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--teal), var(--teal-dk));
  box-shadow: 0 0 calc(var(--glow) * 26px) rgba(127, 227, 224, 0.55);
  flex: none;
}
.icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--violet);
  box-shadow: 0 0 calc(var(--glow) * 20px) rgba(143, 155, 255, 0.5);
}
.icon-diamond {
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  background: linear-gradient(150deg, var(--teal), var(--teal-dk));
  box-shadow: 0 0 calc(var(--glow) * 20px) rgba(127, 227, 224, 0.5);
}
.icon-rounded {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--violet), var(--violet-dk));
  box-shadow: 0 0 calc(var(--glow) * 20px) rgba(143, 155, 255, 0.5);
}
.icon-blob {
  width: 26px;
  height: 26px;
  border-radius: 7px 7px 13px 13px;
  background: linear-gradient(150deg, var(--teal), var(--violet));
  box-shadow: 0 0 calc(var(--glow) * 20px) rgba(127, 227, 224, 0.5);
}
.icon-conic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--teal), var(--violet), var(--teal));
  box-shadow: 0 0 calc(var(--glow) * 24px) rgba(143, 155, 255, 0.55);
  animation: em-spin 7s linear infinite;
  flex: none;
}

.tags {
  position: relative;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font: 600 12px/1 var(--sans);
  color: rgba(236, 238, 242, 0.68);
}

.ai-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 227, 224, 0.7), transparent);
  animation: em-scan 6s linear infinite;
  pointer-events: none;
}
.ai-body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.ai-copy { max-width: 44ch; }
.ai-copy h3 {
  margin: 20px 0 0;
  font: 600 22px/1.2 var(--sans);
  letter-spacing: -0.02em;
}
.ai-copy p {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(236, 238, 242, 0.6);
}
.ai-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
}
.bubble-in {
  padding: 12px 14px;
  border-radius: 12px 12px 12px 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font: 500 13px/1.4 var(--sans);
  color: rgba(236, 238, 242, 0.75);
}
.bubble-out {
  align-self: flex-end;
  padding: 12px 14px;
  border-radius: 12px 12px 4px 12px;
  background: linear-gradient(180deg, rgba(127, 227, 224, 0.9), rgba(99, 210, 207, 0.85));
  color: #07080b;
  font: 600 13px/1.4 var(--sans);
  box-shadow: 0 0 calc(var(--glow) * 28px) rgba(127, 227, 224, 0.35);
}
.bubble-meta {
  align-self: flex-end;
  font: 600 10.5px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(127, 227, 224, 0.7);
}

/* ---------- Process ------------------------------------------------------ */

.process-grid {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 46px 26px;
}
.step { position: relative; }
.step-rail {
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 calc(var(--glow) * 22px) rgba(127, 227, 224, 0.9);
  flex: none;
}
.step-dot--violet {
  background: var(--violet);
  box-shadow: 0 0 calc(var(--glow) * 22px) rgba(143, 155, 255, 0.9);
}
.step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(127, 227, 224, 0.6), rgba(255, 255, 255, 0.06));
}
.step-num {
  margin: 22px 0 0;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.16em;
  color: rgba(236, 238, 242, 0.4);
}
.step h3 {
  margin: 12px 0 0;
  font: 600 19px/1.2 var(--sans);
  letter-spacing: -0.015em;
}
.step p {
  margin: 10px 0 0;
  max-width: 30ch;
  font: 400 14px/1.62 var(--sans);
  color: rgba(236, 238, 242, 0.56);
}

/* ---------- Work --------------------------------------------------------- */

.work-grid {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.work-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.022);
  box-shadow: 0 40px 80px -55px rgba(0, 0, 0, 0.95);
  transition:
    opacity 0.9s var(--ease),
    transform 0.45s var(--ease),
    border-color 0.45s,
    box-shadow 0.45s;
}
.work-card.is-visible:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 227, 224, 0.35);
  box-shadow:
    0 50px 90px -50px rgba(0, 0, 0, 0.95),
    0 0 calc(var(--glow) * 60px) rgba(127, 227, 224, 0.14);
}
.work-card--violet.is-visible:hover {
  border-color: rgba(143, 155, 255, 0.35);
  box-shadow:
    0 50px 90px -50px rgba(0, 0, 0, 0.95),
    0 0 calc(var(--glow) * 60px) rgba(143, 155, 255, 0.14);
}
.work-shot {
  position: relative;
  height: 210px;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.045) 10px,
    rgba(255, 255, 255, 0.012) 10px,
    rgba(255, 255, 255, 0.012) 20px
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
/* Drop a real screenshot in and it covers the placeholder automatically.
   Hidden until it actually loads, so a missing file shows the placeholder
   rather than a broken-image icon. */
.work-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.work-shot img.is-loaded { opacity: 1; }
.work-shot-label {
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.6);
  font: 500 10.5px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.5);
  text-align: center;
}
.work-meta { padding: 22px 24px 24px; }
.work-cat {
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(127, 227, 224, 0.75);
}
.work-cat--violet { color: rgba(143, 155, 255, 0.8); }
.work-meta h3 {
  margin: 12px 0 0;
  font: 600 18px/1.25 var(--sans);
  letter-spacing: -0.015em;
}
.work-meta p {
  margin: 10px 0 0;
  font: 400 13.5px/1.6 var(--sans);
  color: rgba(236, 238, 242, 0.55);
}

.proof {
  margin: 22px 0 0;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}
.proof-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-start;
}
.proof-head { max-width: 26ch; }
.proof-head div {
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.5);
}
.proof-head h3 {
  margin: 14px 0 0;
  font: 400 26px/1.15 var(--serif);
  letter-spacing: -0.015em;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  flex: 1;
  min-width: 280px;
}
.proof-grid div > div {
  font: 600 13.5px/1.3 var(--sans);
  color: var(--ink);
}
.proof-grid p {
  margin: 8px 0 0;
  font: 400 13px/1.55 var(--sans);
  color: rgba(236, 238, 242, 0.52);
}

/* ---------- Pricing ------------------------------------------------------ */

.pricing-head { text-align: center; }
.pricing-head .section-title { margin: 18px auto 0; }
.pricing-head .section-lede {
  margin: 20px auto 0;
  max-width: 58ch;
}

.pricing-grid {
  margin: 52px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.022);
  transition:
    opacity 0.9s var(--ease),
    transform 0.45s var(--ease),
    border-color 0.45s,
    box-shadow 0.45s;
}
.plan.is-visible:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 227, 224, 0.35);
  box-shadow:
    0 40px 80px -50px rgba(0, 0, 0, 0.95),
    0 0 calc(var(--glow) * 50px) rgba(127, 227, 224, 0.14);
}
.plan--violet.is-visible:hover {
  border-color: rgba(143, 155, 255, 0.35);
  box-shadow:
    0 40px 80px -50px rgba(0, 0, 0, 0.95),
    0 0 calc(var(--glow) * 50px) rgba(143, 155, 255, 0.14);
}

.plan-name {
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.5);
}
.plan-price {
  margin: 16px 0 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.plan-price b {
  font: 400 46px/1 var(--serif);
  color: #fff;
}
.plan-price span {
  font: 500 13px/1.3 var(--sans);
  color: rgba(236, 238, 242, 0.5);
}
.plan-mrr {
  margin: 14px 0 0;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  font: 600 12px/1 var(--sans);
  color: rgba(236, 238, 242, 0.72);
}
.plan-mrr i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  flex: none;
}
.plan-mrr i.violet {
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
}
.plan-mrr em {
  font-style: normal;
  color: rgba(236, 238, 242, 0.45);
}
.plan-features {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font: 500 13.5px/1.45 var(--sans);
  color: rgba(236, 238, 242, 0.74);
}
.plan-features div { display: flex; gap: 10px; }
.plan-features i {
  font-style: normal;
  color: var(--teal);
  flex: none;
}
.plan-features i.violet { color: var(--violet); }
.plan-fine {
  margin: 20px 0 0;
  font: 400 12px/1.55 var(--sans);
  color: rgba(236, 238, 242, 0.42);
}
.plan-cta {
  /* Equal-height cards share a CTA baseline regardless of copy length. */
  margin: auto 0 0;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 13px;
  font: 700 13.5px/1 var(--sans);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.plan-cta:hover {
  color: var(--ink);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

/* Featured plan: gradient border wrapper */
.plan--featured {
  padding: 1px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(127, 227, 224, 0.85), rgba(143, 155, 255, 0.5) 45%, rgba(255, 255, 255, 0.06));
  box-shadow:
    0 50px 100px -50px rgba(0, 0, 0, 0.95),
    0 0 calc(var(--glow) * 80px) rgba(127, 227, 224, 0.18);
}
.plan--featured.is-visible:hover {
  transform: none;
  box-shadow:
    0 50px 100px -50px rgba(0, 0, 0, 0.95),
    0 0 calc(var(--glow) * 90px) rgba(127, 227, 224, 0.24);
}
.plan-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 23px;
  background: linear-gradient(170deg, #0d1016, #090a0e);
}
.plan-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(127, 227, 224, 0.22), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}
.plan-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan--featured .plan-name { color: var(--teal); }
.plan-badge {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(127, 227, 224, 0.14);
  border: 1px solid rgba(127, 227, 224, 0.35);
  font: 700 10.5px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-lt);
  white-space: nowrap;
}
/* Keeps the upfront card's price on the same vertical rhythm without a second badge. */
.plan-badge--spacer { visibility: hidden; }
.plan--upfront .plan-price b { font-size: 58px; }
.plan--featured .plan-price,
.plan--featured .plan-mrr,
.plan--featured .plan-features,
.plan--featured .plan-fine,
.plan--featured .plan-cta { position: relative; }
.plan--featured .plan-price { margin: 16px 0 0; gap: 10px; }
.plan--featured .plan-price b { font-size: 58px; }
.plan--featured .plan-mrr {
  border-color: rgba(127, 227, 224, 0.3);
  background: rgba(127, 227, 224, 0.1);
  color: var(--teal-lt);
}
.plan--featured .plan-features { color: rgba(236, 238, 242, 0.84); }
.plan--featured .plan-fine { color: rgba(236, 238, 242, 0.45); }
.plan--featured .plan-cta {
  padding: 15px;
  border-radius: 14px;
  border: 0;
  font-size: 14.5px;
  color: #07080b;
  background: linear-gradient(180deg, var(--teal-btn-a), var(--teal-btn-b));
  box-shadow: 0 18px 44px -18px rgba(127, 227, 224, 0.75);
}
.plan--featured .plan-cta:hover {
  color: #07080b;
  transform: translateY(-2px);
  box-shadow:
    0 26px 60px -18px rgba(127, 227, 224, 0.9),
    0 0 calc(var(--glow) * 60px) rgba(127, 227, 224, 0.45);
}

.pricing-fine {
  margin: 40px 0 0;
  text-align: center;
  font: 500 13px/1.6 var(--sans);
  color: rgba(236, 238, 242, 0.42);
  transform: translateY(20px);
}

/* --- Two ways to pay --- */

.pay-grid {
  margin: 46px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* --- What's included --- */

.included {
  margin: 44px 0 0;
  padding: 38px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}
.included-head { max-width: 62ch; }
.included-head h3 {
  margin: 16px 0 0;
  font: 400 clamp(24px, 2.6vw, 32px)/1.15 var(--serif);
  letter-spacing: -0.015em;
}
.included-head p {
  margin: 12px 0 0;
  font: 400 14.5px/1.65 var(--sans);
  color: rgba(236, 238, 242, 0.55);
}

.included-grid {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
}
.included-grid > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 18px;
  border-left: 1px solid rgba(127, 227, 224, 0.28);
}
.included-grid b {
  font: 600 14px/1.35 var(--sans);
  color: var(--ink);
}
.included-grid span {
  font: 400 13.5px/1.6 var(--sans);
  color: rgba(236, 238, 242, 0.52);
}

/* --- Add-on pricing note --- */

.addon-note {
  position: relative;
  margin: 40px auto 0;
  max-width: 78ch;
  padding: 22px 26px;
  border-radius: 16px;
  border: 1px solid rgba(143, 155, 255, 0.22);
  background: linear-gradient(150deg, rgba(143, 155, 255, 0.07), rgba(255, 255, 255, 0.014));
  font: 400 14px/1.7 var(--sans);
  color: rgba(236, 238, 242, 0.6);
  text-align: center;
}
.addon-note a {
  color: var(--teal);
  white-space: nowrap;
}

/* ---------- FAQ ---------------------------------------------------------- */

.faq-head h2 {
  margin: 22px 0 38px;
  font: 400 clamp(34px, 4.2vw, 52px)/1.05 var(--serif);
  letter-spacing: -0.02em;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.022);
  transition: border-color 0.35s, background 0.35s;
}
.faq-item:hover {
  border-color: rgba(127, 227, 224, 0.32);
  background: rgba(255, 255, 255, 0.045);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 22px 24px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font: 600 16.5px/1.35 var(--sans);
  letter-spacing: -0.01em;
}
.faq-q h3 {
  margin: 0;
  flex: 1;
  font: inherit;
  color: inherit;
}
.faq-sign {
  font: 400 22px/1 var(--sans);
  color: var(--teal);
  flex: none;
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s;
}
.faq-item.is-open .faq-a { opacity: 1; }
.faq-a p {
  margin: 0;
  padding: 0 24px;
  max-width: 66ch;
  font: 400 14.5px/1.68 var(--sans);
  color: rgba(236, 238, 242, 0.6);
}
/* Answers can run to several paragraphs. */
.faq-a p + p { margin-top: 13px; }
.faq-a p:last-child { padding-bottom: 22px; }

/* ---------- CTA / lead form ---------------------------------------------- */

.cta-section {
  position: relative;
  max-width: var(--shell);
  margin: 104px auto 0;
  padding: 0 28px 120px;
}
.cta-frame {
  position: relative;
  overflow: hidden;
  padding: 1px;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(127, 227, 224, 0.6), rgba(143, 155, 255, 0.35) 50%, rgba(255, 255, 255, 0.06));
  box-shadow:
    0 60px 130px -60px rgba(0, 0, 0, 0.95),
    0 0 calc(var(--glow) * 110px) rgba(127, 227, 224, 0.14);
  transition-duration: 1s;
}
.cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 27px;
  background: radial-gradient(120% 140% at 50% 0%, #101521, #08090d 62%);
  padding: clamp(44px, 6vw, 84px) clamp(28px, 5vw, 72px);
}
.cta-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(127, 227, 224, 0.22), rgba(143, 155, 255, 0.12) 45%, transparent 70%);
  filter: blur(14px);
  animation: em-drift 20s ease-in-out infinite;
  pointer-events: none;
}
.cta-body {
  position: relative;
  max-width: 780px;
}
.cta-title {
  margin: 0;
  font: 400 clamp(38px, 5.6vw, 72px)/1.02 var(--serif);
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.cta-title em {
  font-style: italic;
  color: var(--teal-lt);
}
.cta-lede {
  margin: 22px 0 0;
  max-width: 52ch;
  font: 400 17px/1.65 var(--sans);
  color: rgba(236, 238, 242, 0.66);
}

.lead-form {
  margin: 34px 0 0;
  max-width: 620px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font: 600 10.5px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.5);
}
.field label span { color: rgba(236, 238, 242, 0.3); }
.field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font: 500 14.5px/1.2 var(--sans);
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field input::placeholder { color: rgba(236, 238, 242, 0.3); }
.field input:hover { border-color: rgba(255, 255, 255, 0.2); }
.field input:focus {
  outline: none;
  border-color: rgba(127, 227, 224, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 calc(var(--glow) * 30px) rgba(127, 227, 224, 0.18);
}
.field input[aria-invalid='true'] {
  border-color: rgba(255, 138, 138, 0.65);
}
.field-error {
  font: 500 11.5px/1.3 var(--sans);
  color: #ff9d9d;
  min-height: 0;
}

/* Honeypot — hidden from humans, catches naive bots. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: 700 14.5px/1 var(--sans);
  color: #07080b;
  background: linear-gradient(180deg, var(--teal-btn-a), var(--teal-btn-b));
  box-shadow:
    0 14px 36px -14px rgba(127, 227, 224, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, opacity 0.3s;
}
.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 22px 52px -14px rgba(127, 227, 224, 0.9),
    0 0 calc(var(--glow) * 50px) rgba(127, 227, 224, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: progress;
}
.form-submit .spinner {
  display: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(7, 8, 11, 0.25);
  border-top-color: #07080b;
  animation: em-spinner 0.7s linear infinite;
}
.form-submit.is-busy .spinner { display: block; }

.form-note {
  font: 500 13px/1.5 var(--sans);
  color: rgba(236, 238, 242, 0.42);
}
.form-note a { color: rgba(236, 238, 242, 0.62); }
.form-note a:hover { color: var(--ink); }

.form-status {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  font: 500 14px/1.55 var(--sans);
  display: none;
}
.form-status.is-shown { display: block; }
.form-status.is-ok {
  border: 1px solid rgba(127, 227, 224, 0.4);
  background: rgba(127, 227, 224, 0.1);
  color: var(--teal-lt);
}
.form-status.is-err {
  border: 1px solid rgba(255, 138, 138, 0.4);
  background: rgba(255, 138, 138, 0.08);
  color: #ffb4b4;
}

/* ---------- Footer ------------------------------------------------------- */

.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.012);
}
.footer-grid {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 54px 28px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-brand { max-width: 34ch; }
.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  box-shadow:
    0 0 calc(var(--glow) * 22px) rgba(127, 227, 224, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}
.footer-brand .brand-mark i { left: 6.5px; }
.footer-brand .brand-mark i:nth-child(1) { top: 7.5px;  width: 13px; }
.footer-brand .brand-mark i:nth-child(2) { top: 13.5px; width: 8px; }
.footer-brand .brand-mark i:nth-child(3) { top: 19.5px; width: 13px; }
.footer-brand .brand-name { font-size: 17px; }
.footer-brand .brand-domain { color: rgba(127, 227, 224, 0.7); }
.footer-about {
  max-width: 32ch;
  margin: 18px 0 0;
  font: 400 13.5px/1.65 var(--sans);
  color: rgba(236, 238, 242, 0.45);
}
.footer-origin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 8px 14px 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(127, 227, 224, 0.24);
  background: rgba(127, 227, 224, 0.07);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-lt);
  white-space: nowrap;
}
.footer-origin svg { flex: none; opacity: 0.85; }

.footer-head {
  font: 600 10.5px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.38);
}
.footer-links {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font: 500 13.5px/1 var(--sans);
}
.footer-links a { color: rgba(236, 238, 242, 0.62); }
.footer-links a:hover { color: var(--ink); }
.footer-contact {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font: 500 13.5px/1.4 var(--sans);
  color: rgba(236, 238, 242, 0.62);
}
.footer-contact a.mail { color: var(--teal); }
.footer-contact a.mail:hover { color: #b7f2f0; }
.footer-contact a:not(.mail) { color: rgba(236, 238, 242, 0.62); }
.footer-contact a:not(.mail):hover { color: var(--ink); }
.footer-contact span { color: rgba(236, 238, 242, 0.4); }
.footer-cta {
  margin: 18px 0 0;
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 12px;
  font: 700 12.5px/1 var(--sans);
  color: #07080b;
  background: linear-gradient(180deg, var(--teal-btn-a), var(--teal-btn-b));
  box-shadow: 0 12px 28px -14px rgba(127, 227, 224, 0.7);
  transition: transform 0.3s var(--ease);
}
.footer-cta:hover { color: #07080b; transform: translateY(-1px); }
.footer-bottom {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 20px 28px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font: 500 12px/1 var(--sans);
  color: rgba(236, 238, 242, 0.34);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--ink); }
.footer-bottom > span:last-child { display: flex; gap: 20px; }

/* ---------- Responsive --------------------------------------------------- */

@media (max-width: 1100px) {
  /* The compare panel shrinks faster than its content; drop the services
     strip before it can collide with the hero block. */
  .new-services { display: none; }
}

@media (max-width: 980px) {
  /* Wide service cards stop spanning once the grid collapses. */
  .card--core,
  .card--ai { grid-column: auto; }
}

@media (max-width: 820px) {
  .nav {
    padding: 10px 10px 10px 14px;
    gap: 10px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 2px;
    /* Without this they wrap to a second row and the sticky header eats a
       quarter of a small phone screen. Scroll sideways instead. */
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link { padding: 8px 11px; white-space: nowrap; }
  .nav-cta { margin-left: auto; }

  /* Show the section links on arrival for wayfinding, then collapse them once
     the visitor starts scrolling so the sticky bar stops covering content.
     The brand and the CTA — the only two things that need to persist — stay. */
  .nav {
    transition: box-shadow .4s, background .4s, border-color .4s, padding .35s var(--ease);
  }
  .nav.is-scrolled { padding-top: 8px; padding-bottom: 8px; }
  .nav.is-scrolled .nav-links {
    display: none;
  }

  .section { padding: 72px 22px; }
  .hero { padding: 64px 22px 32px; }
  .cta-section { margin-top: 84px; padding: 0 22px 90px; }
  .footer-grid { padding: 44px 22px 20px; }
  .footer-bottom { padding: 20px 22px 36px; }

  .new-main { grid-template-columns: minmax(0, 1fr); }
  .new-card,
  .new-review { display: none; }
  .new-links { display: none; }

  .stat-row { gap: 10px; }
}

/* Below ~400px the brand and the CTA no longer fit on one line, which pushes
   the CTA onto its own row and makes the sticky header taller again. */
@media (max-width: 400px) {
  .site-header { padding: 10px 12px 0; }
  .nav { padding: 8px 8px 8px 12px; gap: 8px; }
  .brand-mark { width: 28px; height: 28px; border-radius: 10px; }
  .brand-mark i:nth-child(1) { top: 7px;  width: 12px; }
  .brand-mark i:nth-child(2) { top: 12.5px; width: 8px; }
  .brand-mark i:nth-child(3) { top: 18px; width: 12px; }
  .brand-name { font-size: 16px; }
  .brand-domain { letter-spacing: 0.18em; font-size: 8px; }
  .nav-cta { padding: 10px 14px; font-size: 12.5px; }
  .nav-cta span { display: none; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(42px, 12vw, 62px); }
  .hero-sub { font-size: 16.5px; }
  .hero-actions { gap: 12px; }
  .btn-primary,
  .btn-ghost { width: 100%; text-align: center; }
  .hero-note { width: 100%; }

  .compare { height: 340px; }
  .old-body { grid-template-columns: 1fr; }
  .old-side { display: none; }
  .new-site { padding: 16px 18px; gap: 14px; }
  .new-phone { display: none; }
  .new-chips span:nth-child(n + 3) { display: none; }
  .new-stamp { display: none; }

  .stat { flex: 1; min-width: 148px; }

  .field-grid { grid-template-columns: minmax(0, 1fr); }
  .form-submit { width: 100%; justify-content: center; }

  .card--core,
  .card--ai { padding: 26px; }
  .proof { padding: 24px; }
  .plan,
  .plan-inner { padding: 26px; }
}

/* ---------- Reduced motion ----------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-canvas { display: none; }
  .btn-sheen { display: none; }
  .ai-scan { display: none; }
  .marquee-track { animation: none; }
  .browser-shell { animation: none; }
}

/* ---------- Simple content page (privacy) -------------------------------- */

.legal {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px 110px;
}
.legal h1 {
  font: 400 clamp(36px, 5vw, 56px)/1.05 var(--serif);
  letter-spacing: -0.02em;
}
.legal .updated {
  margin: 16px 0 0;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 238, 242, 0.4);
}
.legal h2 {
  margin: 46px 0 0;
  font: 600 19px/1.3 var(--sans);
  letter-spacing: -0.015em;
}
.legal p,
.legal li {
  font: 400 15.5px/1.7 var(--sans);
  color: rgba(236, 238, 242, 0.66);
}
.legal p { margin: 14px 0 0; }
.legal ul {
  margin: 14px 0 0;
  padding-left: 20px;
}
.legal li { margin: 8px 0 0; }
.legal .back {
  display: inline-block;
  margin: 54px 0 0;
  font: 600 13.5px/1 var(--sans);
}
.legal .note {
  margin: 34px 0 0;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
}
