/* =========================================================
   TenHR landing — editorial / Swiss-modern design system.

   Principles: a calm near-white canvas, near-black ink, ONE
   vibrant accent (teal), monospace micro-labels, hairline
   rules instead of boxed cards, numbered modules, generous
   whitespace, and a single bold dark section for contrast.
   ========================================================= */

:root {
  /* Ink */
  --ink: #0d1117;
  --ink-2: #3a424e;
  --ink-3: #6b7480;
  --ink-4: #9aa1ac;

  /* Surfaces — warm off-white, not cold gray */
  --paper: #ffffff;
  --paper-2: #f6f6f3;
  --paper-3: #efefe9;

  /* Hairlines — warm, low-contrast */
  --line: #e6e5df;
  --line-2: #efeee9;
  --line-dark: rgba(255, 255, 255, .14);

  /* Accent — a single vibrant teal by default. Product pages override
     --accent / --accent-ink on <body> to theme the whole page; --accent-soft
     derives from whatever --accent is set to. */
  --accent: #0f9d8e;
  --accent-ink: #0a6f64;   /* text-safe on white */
  --accent-soft: color-mix(in srgb, var(--accent) 14%, #fff);

  --maxw: 1180px;
  --maxw-narrow: 760px;
  --font: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

svg { display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--maxw-narrow); }

.section { padding: 120px 0; }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }

/* ---------- Editorial primitives ---------- */

/* Monospace micro-label — the signature of this design. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); letter-spacing: -0.03em;
}
.section-head p {
  margin-top: 18px; color: var(--ink-3); font-size: 1.1rem; max-width: 56ch; line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: .92rem; font-weight: 500;
  padding: 11px 18px; border-radius: 9px; border: 1px solid transparent;
  cursor: pointer; transition: background .18s var(--ease), color .18s var(--ease),
    border-color .18s var(--ease), transform .18s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .18s var(--ease); }
.btn-lg { padding: 14px 22px; font-size: .98rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); transform: translateY(-1px); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-secondary:hover svg { transform: translateX(3px); }

.btn-ghost { background: transparent; color: var(--ink-2); padding: 9px 12px; }
.btn-ghost:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 70px; }

.brand { display: inline-flex; align-items: center; font-weight: 600; }
.brand-mark { color: var(--ink); display: inline-flex; }
.brand-name { font-size: 1.22rem; letter-spacing: -0.04em; font-weight: 600; }
.brand-name .b-ten { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.brand-name .b-hr { color: var(--accent-ink); }

.main-nav { display: flex; align-items: center; gap: 30px; margin-left: 10px; }
.main-nav a, .menu-trigger {
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
}
.main-nav > a { transition: color .15s; }
.main-nav > a:hover { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; margin-left: auto;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; padding: 8px 28px 26px; border-bottom: 1px solid var(--line-2); background: #fff; }
.mobile-nav a { padding: 13px 2px; font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--line-2); }
.mobile-nav a.mobile-login { color: var(--accent-ink); }
.mobile-nav .btn { margin-top: 16px; }
.mobile-heading { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-4); padding: 12px 2px 4px; }

/* Product mega-menu */
.has-menu { position: relative; }
.menu-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: inherit; background: none; border: 0; cursor: pointer; padding: 0;
  transition: color .15s;
}
.menu-trigger:hover, .menu-trigger[aria-expanded="true"] { color: var(--ink); }
.menu-trigger svg { transition: transform .2s; }
.menu-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  width: 660px; max-width: calc(100vw - 48px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 60px -24px rgba(13, 17, 23, .25); padding: 10px; z-index: 60;
}
/* Invisible bridge across the gap so the cursor can travel from the trigger
   into the menu without leaving the hover area (otherwise the menu closes). */
.mega-menu::after {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.menu-item { display: flex; gap: 13px; align-items: flex-start; padding: 13px 14px; border-radius: 10px; transition: background .15s; }
.menu-item:hover { background: var(--paper-2); }
.menu-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; background: var(--paper-2); color: var(--ink); border: 1px solid var(--line-2); }
.menu-item:hover .menu-ico { color: var(--accent-ink); border-color: var(--accent); }
.menu-name { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); }
.menu-desc { display: block; font-size: .81rem; color: var(--ink-3); margin-top: 1px; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; padding: 96px 0 72px; border-bottom: 1px solid var(--line-2); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -120px; width: 620px; height: 620px;
  background: radial-gradient(circle, var(--accent-soft), transparent 62%); opacity: .8; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: -0.045em; margin-bottom: 24px;
}
.hero-sub { font-size: 1.2rem; color: var(--ink-3); max-width: 40ch; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 34px; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .78rem; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-3); }
.hero-points svg { color: var(--accent); }

/* Hero mock — restyled clean, hairline + one accent */
.hero-visual { position: relative; }
.mock-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 30px 60px -34px rgba(13, 17, 23, .3); }
.mock-main { overflow: hidden; }
.mock-head { display: flex; align-items: center; gap: 6px; padding: 13px 16px; border-bottom: 1px solid var(--line-2); }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.mock-title { margin-left: 10px; font-family: var(--mono); font-size: .74rem; color: var(--ink-4); }
.mock-body { padding: 22px; }
.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 22px; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; }
.mock-stat { padding: 14px 16px; border-right: 1px solid var(--line-2); }
.mock-stat:last-child { border-right: 0; }
.mock-stat-num { display: block; font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; }
.mock-stat-label { font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-4); margin-top: 2px; }
.mock-bars { display: flex; align-items: flex-end; gap: 9px; height: 88px; margin-bottom: 22px; }
.mock-bars span { flex: 1; border-radius: 4px 4px 0 0; background: var(--paper-3); }
.mock-bars span:nth-child(6) { background: var(--accent); }
.mock-list { display: flex; flex-direction: column; gap: 12px; }
.mock-line { display: flex; align-items: center; gap: 12px; }
.mock-avatar { width: 24px; height: 24px; border-radius: 50%; flex: none; background: var(--paper-3); }
.mock-bar { height: 7px; border-radius: 4px; background: var(--paper-3); }
.mock-bar.w70 { width: 70%; } .mock-bar.w55 { width: 55%; } .mock-bar.w80 { width: 80%; }
.mock-tag { margin-left: auto; font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-3); }
.mock-tag.green { color: var(--accent-ink); }

.mock-float {
  position: absolute; left: -22px; bottom: 32px;
  display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 13px;
}
.mock-float-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 600; }
.mock-float-label { display: block; font-family: var(--mono); font-size: .66rem; text-transform: uppercase; color: var(--ink-4); }
.mock-float-value { display: block; font-weight: 600; font-size: .9rem; color: var(--accent-ink); }

/* Trust strip */
.trust-strip { position: relative; z-index: 1; margin-top: 80px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 36px; }
.trust-strip > span { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-4); }
.trust-logos { display: flex; flex-wrap: wrap; gap: 10px 32px; }
.trust-logos span { font-weight: 600; font-size: 1.05rem; color: var(--ink-4); letter-spacing: -0.01em; }

/* ---------- Features (hairline grid, numbered) ---------- */
.features { background: var(--paper); }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  counter-reset: feat;
}
.feature {
  position: relative; background: var(--paper); padding: 36px 32px 40px;
  counter-increment: feat; transition: background .2s var(--ease);
}
.feature::before {
  content: "0" counter(feat);
  font-family: var(--mono); font-size: .8rem; color: var(--ink-4); letter-spacing: .04em;
}
.feature-icon { margin: 18px 0 18px; color: var(--ink); width: auto; height: auto; background: none !important; display: block; }
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.18rem; letter-spacing: -0.02em; margin-bottom: 9px; display: flex; align-items: center; gap: 8px; }
.feature p { color: var(--ink-3); font-size: .96rem; line-height: 1.6; }
.feature-arrow { color: var(--accent); opacity: 0; transform: translateX(-4px); transition: opacity .18s, transform .18s; font-weight: 400; }
.feature-link { display: block; }
.feature-link:hover { background: var(--paper-2); }
.feature-link:hover .feature-icon { color: var(--accent-ink); }
.feature-link:hover .feature-arrow { opacity: 1; transform: translateX(0); }

/* ---------- Spotlight ---------- */
.spotlight { background: var(--paper-2); }
.spotlight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.spotlight-row + .spotlight-row { margin-top: 100px; }
.spotlight-row.reverse .spotlight-copy { order: 2; }
.spotlight-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.spotlight-copy p { color: var(--ink-3); font-size: 1.08rem; line-height: 1.6; margin-bottom: 22px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.check-list li { position: relative; padding: 13px 0 13px 30px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: .98rem; }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 16px; height: 16px; background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7.5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7.5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.text-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-family: var(--mono); font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; color: var(--accent-ink); transition: gap .18s var(--ease); }
.text-link:hover { gap: 12px; }

/* Panels (mocks in spotlights / product hero) */
.spotlight-visual { display: flex; justify-content: center; }
.panel { width: 100%; max-width: 430px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 50px -30px rgba(13,17,23,.28); padding: 22px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.panel-title { font-weight: 600; font-size: .98rem; }
.panel-pill { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; padding: 4px 10px; border-radius: 6px; background: var(--paper-2); color: var(--ink-3); border: 1px solid var(--line-2); }
.panel-pill.ok { background: var(--accent-soft); color: var(--accent-ink); border-color: transparent; }

.panel-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; }
.tile { display: flex; align-items: center; gap: 11px; padding: 16px 14px; background: #fff; font-size: .88rem; font-weight: 500; }
.tile-ico { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: .95rem; flex: none; background: var(--paper-2); color: var(--ink); border: 1px solid var(--line-2); }

.panel-rows { display: flex; flex-direction: column; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; }
.panel-row { display: flex; align-items: center; gap: 12px; padding: 13px 14px; background: #fff; }
.row-ico { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; background: var(--paper-2); color: var(--ink); border: 1px solid var(--line-2); }
.row-label { font-size: .9rem; font-weight: 500; }
.row-tag { margin-left: auto; font-family: var(--mono); font-size: .72rem; color: var(--ink-3); white-space: nowrap; }

.pay-rows { display: flex; flex-direction: column; margin-bottom: 18px; }
.pay-row { display: flex; justify-content: space-between; padding: 14px 2px; border-top: 1px solid var(--line-2); font-size: .94rem; }
.pay-row:first-child { border-top: 0; }
.pay-row .pay-name { color: var(--ink-3); }
.pay-row .pay-val { font-family: var(--mono); font-weight: 500; }
.pay-row.total .pay-name { color: var(--ink); font-weight: 600; }
.pay-row.total .pay-val { color: var(--accent-ink); font-weight: 600; }
.pay-btn { width: 100%; background: var(--ink); color: #fff; border: 0; border-radius: 9px; padding: 12px; font-family: inherit; font-weight: 500; font-size: .9rem; cursor: default; }

/* ---------- Why (the bold dark section) ---------- */
.why { background: var(--ink); color: #fff; }
.why .eyebrow { color: var(--ink-4); }
.why .section-head h2 { color: #fff; }
.why .section-head p { color: var(--ink-4); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: 16px; overflow: hidden; }
.why-card { background: var(--ink); padding: 30px 26px 34px; }
.why-ico { width: 40px; height: 40px; display: grid; place-items: center; color: var(--accent); margin-bottom: 18px; }
.why-card h3 { font-size: 1.08rem; margin-bottom: 9px; color: #fff; }
.why-card p { color: var(--ink-4); font-size: .92rem; line-height: 1.6; }

.stats-band { margin-top: 1px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-top: 0; border-radius: 0 0 16px 16px; overflow: hidden; }
.stats-band .stat { background: var(--ink); padding: 30px 26px; }
.stat-num { display: block; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; letter-spacing: -0.03em; color: #fff; }
.stat-label { display: block; font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-4); margin-top: 6px; }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.price-card { position: relative; background: var(--paper); padding: 38px 32px; display: flex; flex-direction: column; }
.price-card.featured { background: var(--paper-2); }
.price-badge { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-ink); margin-bottom: 14px; display: inline-block; }
.price-tier { font-size: 1.15rem; font-weight: 600; }
.price-tier-sub { color: var(--ink-3); font-size: .9rem; margin-top: 3px; }
.price { margin: 22px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price-amt { font-size: 2.6rem; font-weight: 600; letter-spacing: -0.04em; }
.price-per { color: var(--ink-3); font-size: .88rem; }
.price-note { font-family: var(--mono); font-size: .74rem; color: var(--ink-4); margin-bottom: 26px; }
/* Plan feature lists: no dividers, roomy spacing, filled teal check badges. */
.price-card .check-list { margin: 4px 0 30px; gap: 14px; }
.price-card .check-list li {
  position: relative; display: flex; align-items: center; min-height: 20px;
  padding: 0 0 0 30px; border: 0; font-size: .93rem; color: var(--ink-2);
}
.price-card .check-list li:last-child { border: 0; }
.price-card .check-list li::before {
  top: 50%; left: 0; transform: translateY(-50%);
  width: 19px; height: 19px; border-radius: 0;
  -webkit-mask: none; mask: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230f9d8e'/%3E%3Cpath d='M5.6 10.4l2.8 2.8 6-6.6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.price-card .btn { margin-top: auto; }

/* ---------- Contact ---------- */
.contact { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.contact-copy > p { color: var(--ink-3); font-size: 1.08rem; line-height: 1.6; }
.contact-points { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 0; }
.contact-points li { font-size: .96rem; color: var(--ink-3); padding: 16px 0; border-top: 1px solid var(--line); }
.contact-points li:last-child { border-bottom: 1px solid var(--line); }
.contact-points a { color: var(--accent-ink); font-weight: 500; }
.contact-points a:hover { text-decoration: underline; }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 32px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-3); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--ink);
  padding: 12px 13px; border: 1px solid var(--line); border-radius: 9px; background: var(--paper);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }
.form-status { margin-top: 16px; font-size: .92rem; font-weight: 500; text-align: center; min-height: 1.2em; }
.form-status.ok { color: var(--accent-ink); }
.form-status.err { color: #c0392b; }
.form-fineprint { margin-top: 14px; font-size: .8rem; color: var(--ink-4); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--ink-4); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand-mark, .footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name .b-hr { color: var(--accent); }
.footer-brand p { margin-top: 16px; font-size: .92rem; color: var(--ink-4); max-width: 28ch; }
.footer-col h4 { color: #fff; font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: .92rem; color: var(--ink-4); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; font-family: var(--mono); font-size: .76rem; color: var(--ink-4); }
.footer-legal a:hover { color: #fff; }

/* =========================================================
   Product pages
   ========================================================= */
.prod-hero { position: relative; padding: 84px 0 80px; border-bottom: 1px solid var(--line-2); overflow: hidden; }
.prod-hero::before {
  content: ""; position: absolute; top: -160px; right: -100px; width: 540px; height: 540px;
  background: radial-gradient(circle, var(--accent-soft), transparent 62%); opacity: .75; pointer-events: none;
}
/* Oversized ghosted module icon — a distinct silhouette per product. */
.prod-hero-watermark { position: absolute; top: -70px; right: -50px; z-index: 0; color: var(--accent); opacity: .07; pointer-events: none; }
.prod-hero-watermark svg { width: 460px; height: 460px; stroke-width: 1; }
.prod-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.prod-hero-copy h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.04; letter-spacing: -0.04em; margin-bottom: 20px; }
.prod-hero-visual { display: flex; justify-content: center; }

.hero-stats { list-style: none; display: flex; flex-wrap: wrap; gap: 0; margin-top: 40px; border-top: 1px solid var(--line); }
.hero-stats li { display: flex; flex-direction: column; gap: 4px; padding: 18px 28px 0 0; margin-right: 28px; }
.hero-stat-num { font-size: 1.7rem; font-weight: 600; letter-spacing: -0.03em; color: var(--accent-ink); }
.hero-stat-label { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .02em; color: var(--ink-3); max-width: 20ch; }

/* Steps */
.steps { background: var(--paper); }
.steps-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.step { background: var(--paper); padding: 36px 32px 40px; }
.step-num { font-family: var(--mono); font-size: .82rem; color: var(--accent-ink); letter-spacing: .04em; display: block; margin-bottom: 20px; }
.step h3 { font-size: 1.12rem; margin-bottom: 9px; }
.step p { color: var(--ink-3); font-size: .96rem; line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--paper-2); }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 4px; font-weight: 500; font-size: 1.08rem; letter-spacing: -0.01em; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq-mark { position: relative; width: 15px; height: 15px; flex: none; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: var(--accent); transition: transform .2s var(--ease), opacity .2s; }
.faq-mark::before { top: 7px; left: 0; width: 15px; height: 1.5px; }
.faq-mark::after { top: 0; left: 6.75px; width: 1.5px; height: 15px; }
.faq[open] .faq-mark::after { transform: scaleY(0); opacity: 0; }
.faq-body { padding: 0 4px 26px; color: var(--ink-3); font-size: 1rem; line-height: 1.65; max-width: 60ch; }

/* Related */
.related { background: var(--paper); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.related-card { display: flex; flex-direction: column; gap: 8px; background: var(--paper); padding: 32px; transition: background .2s var(--ease); }
.related-card:hover { background: var(--paper-2); }
.related-card .feature-icon { margin: 0 0 10px; color: var(--ink); }
.related-card:hover .feature-icon { color: var(--accent-ink); }
.related-card:hover .related-arrow { opacity: 1; transform: translateX(0); }
.related-name { font-weight: 600; font-size: 1.08rem; letter-spacing: -0.02em; }
.related-arrow { color: var(--accent); opacity: 0; transform: translateX(-4px); transition: opacity .18s, transform .18s; }
.related-desc { font-size: .9rem; color: var(--ink-3); }

/* CTA band (now a clean dark band) */
.cta-band-section { padding: 0 0 120px; background: var(--paper); }
.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; background: var(--ink); border-radius: 18px; padding: 52px 52px; color: #fff; }
.cta-band h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); letter-spacing: -0.03em; }
.cta-band p { color: var(--ink-4); margin-top: 8px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-on-grad { background: var(--accent); color: #fff; }
.btn-on-grad:hover { background: #16b3a2; transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: #fff; border: 1px solid var(--line-dark); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.5); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .section { padding: 80px 0; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
  .mega-menu { display: none !important; }

  .hero { padding: 64px 0 56px; }
  .hero-grid, .prod-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual, .prod-hero-visual { max-width: 480px; }
  .hero-sub { max-width: none; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-row, .spotlight-row.reverse .spotlight-copy { grid-template-columns: 1fr; order: 0; }
  .spotlight-row { gap: 36px; }
  .spotlight-row + .spotlight-row { margin-top: 56px; }
  .why-grid, .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band { border-radius: 0 0 16px 16px; }
  .price-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band { padding: 40px 32px; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .feature-grid, .why-grid, .stats-band { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mock-float { left: 0; bottom: 16px; }
  .hero-stats li { padding-right: 20px; margin-right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
