@charset "utf-8";
/* ==========================================================================
   nomadsetup.co — stylesheet
   Built to Brand Guide v1.0: ~70% white, 20% ink & mist, 10% lime.
   Lime is reserved for the primary action, progress and the mark.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts — Geist / Geist Mono (Vercel, OFL), self-hosted latin subsets
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/geist-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: 'Geist';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/geist-latin-ext.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: 'Geist Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/geist-mono-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: 'Geist Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/geist-mono-latin-ext.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;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Accent — swap these four to retheme the whole site */
  --accent: #c6f135;
  --accent-hover: #b2dc22;
  --accent-tint: #f1fbd1;
  --accent-deep: #9cc01a;

  /* Ink & neutrals */
  --ink: #101410;
  --ink-soft: #2a302a;
  --ink-dim: #b8bdb3;
  --slate: #4a5147;
  /* Tertiary text. The draft used #8a9087, which is only 3.3:1 on white and
     is not in the Brand Guide palette; darkened to clear WCAG AA (4.9:1). */
  --muted: #6e7469;
  --mist: #f5f6f0;
  --mist-warm: #fafbf5;
  --line: #e3e6db;
  --line-soft: #eef0e8;
  --white: #fff;

  /* Text on accent */
  --on-accent: #101410;
  --on-accent-soft: #2f3a10;
  --on-tint: #3f5a00;

  /* Status */
  --error: #8a2b12;
  --error-bg: #fbeae5;

  /* Radii — 10 / 12 / 18 / 24 */
  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Layout */
  --page: 1180px;
  --nav: 1140px;
  --gutter: 24px;

  /* Glass — used for the nav, the hero mock and the light cards */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-blur: blur(24px) saturate(160%);
  --glass-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 40px -18px rgba(16, 20, 16, 0.25);

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

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease),
    opacity 0.18s var(--ease);
}

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

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

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

::selection {
  background: var(--accent);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 16px;
  color: var(--white);
}

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

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.mono {
  font-family: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* Label — mono 12–13 / +4% / caps */
.eyebrow {
  font-family: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Display — 56–104 / 0.95–1.02 / 600 */
.h-display {
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
}

/* H2 — 32–46 / 1.05 / 600 */
.h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.h2-sm {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
}

/* H3 — 20–24 / 1.2 / 600 */
.h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}

/* Lead — 17–19 / 1.5 / 400 */
.lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--slate);
}

.lead-sm {
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate);
}

.body-sm {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
}

.fineprint {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   5. Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: 96px;
}

.section-band {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* Heading row: title left, supporting copy right */
.head-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.head-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin-bottom: 48px;
}

.head-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto 52px;
}

.stack-14 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}

/* --------------------------------------------------------------------------
   6. Surfaces
   -------------------------------------------------------------------------- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.card {
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-dark {
  background: rgba(16, 20, 16, 0.88);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 40px -18px rgba(16, 20, 16, 0.5);
}
.card-dark .card-note {
  color: var(--ink-dim);
}
.card-dark .card-step {
  color: var(--accent);
}

.card-step {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--slate);
}

.card-note {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
}

/* Blurred accent orbs behind the hero and the band sections */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

/* --------------------------------------------------------------------------
   7. Buttons — one lime button per view
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
    transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}
.btn-ink:hover {
  background: var(--ink-soft);
  color: var(--white);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}
.btn-outline:hover {
  background: var(--mist);
  color: var(--ink);
}

.btn-glass {
  font-weight: 500;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.arrow {
  transition: transform 0.22s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   8. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  padding-inline: 16px;
}

.nav {
  max-width: var(--nav);
  margin: 0 auto;
  padding: 0 12px 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 12px 40px -18px rgba(16, 20, 16, 0.25);
  transition: background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.is-scrolled .nav {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px -20px rgba(16, 20, 16, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand-name {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
}
.nav-links a {
  color: var(--slate);
  padding: 8px 0;
}
.nav-links a:hover,
.nav-links a[aria-current='true'],
.nav-links a.is-open {
  color: var(--ink);
}

.nav-mega-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-chevron {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.nav-mega-toggle[aria-expanded='true'] .nav-chevron {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.nav-login {
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--r-sm);
}
.nav-login:hover {
  background: var(--mist);
}
.nav-cta {
  font-size: 14.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--white);
}
.nav-cta:hover {
  background: var(--ink-soft);
  color: var(--white);
}

/* Burger (mobile) */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mega menu */
.mega-layer {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 70px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.mega {
  pointer-events: auto;
  width: 100%;
  max-width: var(--nav);
  max-height: calc(100vh - 96px);
  overflow: auto;
  border-radius: var(--r-xl);
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  backdrop-filter: blur(30px) saturate(160%);
  box-shadow: 0 30px 80px -30px rgba(16, 20, 16, 0.35),
    0 2px 8px rgba(16, 20, 16, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mega[hidden] {
  display: none;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 20px;
}
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mega-col-title {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mega-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  margin-inline: -12px;
  border-radius: var(--r-md);
  color: var(--ink);
}
.mega-item:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}
.mega-item-name {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.mega-item-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--slate);
}
.mega-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(16, 20, 16, 0.9);
  color: var(--white);
}
.mega-foot-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
}
.dot-accent {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.mega-foot .btn {
  font-size: 14px;
  padding: 9px 14px;
  border-radius: var(--r-sm);
}

/* Mobile panel */
.mobile-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 70px;
  max-height: calc(100vh - 96px);
  overflow: auto;
  border-radius: var(--r-xl);
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  backdrop-filter: blur(30px) saturate(160%);
  box-shadow: 0 30px 80px -30px rgba(16, 20, 16, 0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-panel[hidden] {
  display: none;
}
.mobile-links {
  display: flex;
  flex-direction: column;
}
.mobile-links a {
  padding: 12px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  border-bottom: 1px solid var(--line);
}
.mobile-services summary {
  padding: 12px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-services summary::-webkit-details-marker {
  display: none;
}
.mobile-services summary::after {
  content: '+';
  font-weight: 400;
  color: var(--slate);
}
.mobile-services[open] summary::after {
  content: '–';
}
.mobile-sub {
  display: flex;
  flex-direction: column;
  padding: 8px 0 12px;
}
.mobile-sub a {
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--slate);
}
.mobile-actions {
  display: grid;
  gap: 8px;
}
.mobile-actions .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: -72px;
  padding-top: 72px;
}
.hero-orb-1 {
  left: -10%;
  top: -10%;
  width: 48vw;
  height: 48vw;
  max-width: 640px;
  max-height: 640px;
  background: radial-gradient(
    circle,
    var(--accent-tint) 0%,
    rgba(241, 251, 209, 0) 70%
  );
}
.hero-orb-2 {
  right: -8%;
  top: 10%;
  width: 40vw;
  height: 40vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(
    circle,
    var(--accent) 0%,
    rgba(198, 241, 53, 0) 68%
  );
  opacity: 0.45;
  filter: blur(20px);
}
.hero-orb-3 {
  left: 35%;
  top: 55%;
  width: 30vw;
  height: 30vw;
  max-width: 420px;
  max-height: 420px;
  background: radial-gradient(circle, #e9f4ff 0%, rgba(233, 244, 255, 0) 70%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  gap: 56px;
  align-items: center;
  padding-block: 88px 64px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 560px;
}
.hero-copy .lead {
  max-width: 500px;
}

.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge-line .dot-accent {
  border: 1px solid var(--accent-deep);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13.5px;
  color: var(--slate);
}

/* Product mock */
.mock-wrap {
  position: relative;
  min-width: 0;
}
.mock-glow {
  position: absolute;
  inset: -6% -4% 8% -4%;
  background: radial-gradient(
    ellipse at 60% 40%,
    var(--accent-tint) 0%,
    rgba(238, 251, 194, 0) 65%
  );
  z-index: 0;
  pointer-events: none;
}
.mock {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 60px -30px rgba(16, 20, 16, 0.28), 0 2px 6px rgba(16, 20, 16, 0.04);
  overflow: hidden;
}
.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(16, 20, 16, 0.06);
}
.mock-head-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mock-label {
  font-size: 12px;
  color: var(--slate);
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.mock-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--on-tint);
  flex: none;
}
.mock-pill-dark {
  background: var(--ink);
  color: var(--accent);
}
.mock-progress {
  padding: 6px 20px 0;
}
.mock-track {
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--line-soft);
  overflow: hidden;
}
.mock-bar {
  width: 71%;
  height: 100%;
  background: var(--accent);
  border-radius: var(--r-pill);
  transform-origin: left center;
}
.mock-rows {
  display: flex;
  flex-direction: column;
  padding: 14px 8px 64px;
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
  border-radius: var(--r-sm);
  transition: background-color 0.18s var(--ease);
}
.mock-row:hover {
  background: var(--mist);
}
.mock-row-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.mock-row-name {
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-row-status {
  font-size: 12.5px;
  font-weight: 500;
  flex: none;
}

.step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}
.step-done .step-dot {
  background: var(--ink);
  color: var(--accent);
  border-color: var(--ink);
}
.step-done .mock-row-status {
  color: var(--slate);
}
.step-active .step-dot {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent-deep);
}
.step-active .mock-row-status {
  color: var(--on-tint);
}
.step-todo .step-dot {
  background: var(--white);
  color: var(--muted);
  border-color: #d5d9cc;
}
.step-todo .mock-row-status {
  color: var(--muted);
}

/* Floating notification */
.toast {
  position: absolute;
  z-index: 2;
  left: -14px;
  bottom: -22px;
  background: rgba(16, 20, 16, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -20px rgba(16, 20, 16, 0.5);
}
.toast-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  flex: none;
}
.toast-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.toast-title {
  font-size: 13.5px;
  font-weight: 600;
}
.toast-sub {
  font-size: 12px;
  color: var(--ink-dim);
}

/* --------------------------------------------------------------------------
   10. Trust bar
   -------------------------------------------------------------------------- */
.trust {
  padding: 8px 0 72px;
}
.trust-inner {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}
.trust-label {
  font-size: 13px;
  color: var(--slate);
  flex: none;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--slate);
}
.trust-logos span {
  padding: 9px 16px;
  border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   11. How it works
   -------------------------------------------------------------------------- */
.how-orb {
  left: 10%;
  bottom: -20%;
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(
    circle,
    var(--accent) 0%,
    rgba(198, 241, 53, 0) 65%
  );
  opacity: 0.5;
  filter: blur(30px);
}

/* --------------------------------------------------------------------------
   12. What's included — hairline grid
   -------------------------------------------------------------------------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.tile {
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
  color: var(--ink);
}
.tile:hover {
  background: var(--mist-warm);
  color: var(--ink);
}
.tile-tag {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
}
.tile-name {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.tile-name .arrow {
  color: var(--muted);
}
.tile:hover .arrow {
  transform: translateX(3px);
}
.tile-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
}

/* --------------------------------------------------------------------------
   13. Pricing
   -------------------------------------------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 16px;
  align-items: stretch;
}
.plan {
  position: relative;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}
.plan-popular {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.plan-flag {
  position: absolute;
  top: -13px;
  left: 28px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--ink);
  border: 1px solid var(--accent-deep);
}
.plan-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.plan-tagline,
.plan-unit {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--slate);
}
.plan-popular .plan-tagline,
.plan-popular .plan-unit {
  color: var(--ink-dim);
}
.plan-price-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.plan-renewal {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--slate);
}
.plan-renewal strong {
  font-weight: 600;
  color: var(--ink);
}
.plan-popular .plan-renewal {
  color: var(--ink-dim);
}
.plan-popular .plan-renewal strong {
  color: var(--white);
}
.plan-price {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan-unit {
  font-size: 14px;
}
.plan .btn {
  width: 100%;
  font-size: 15px;
  padding: 13px 18px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
}
.plan-popular .plan-features {
  border-top-color: var(--ink-soft);
}
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.45;
}
.plan-features {
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-top: 22px;
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: none;
  margin-top: 1px;
  background: var(--accent-tint);
  color: var(--on-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.plan-popular .check {
  background: var(--accent);
  color: var(--ink);
}
.price-note {
  margin: 28px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--slate);
  max-width: 620px;
}

/* --------------------------------------------------------------------------
   14. Compare table
   -------------------------------------------------------------------------- */
/* The table is wider than a phone. Say so, and fade the cut edge. */
.compare-shell {
  position: relative;
}
.compare-hint {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-fade {
  display: none;
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 1px;
  width: 44px;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--white));
  pointer-events: none;
}

.compare {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-inner {
  min-width: 680px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.compare-row:last-child {
  border-bottom: 0;
}
.compare-head {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
}
.compare-head > div {
  padding: 16px 20px;
  color: var(--slate);
}
.compare-head .compare-us {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-tint);
  color: var(--ink);
}
.compare-row > div {
  padding: 16px 20px;
  color: var(--slate);
}
.compare-row .compare-label {
  font-weight: 500;
  color: var(--ink);
}
.compare-row .compare-us {
  font-weight: 500;
  color: var(--ink);
  background: #fafdf0;
}

/* --------------------------------------------------------------------------
   15. Testimonials
   -------------------------------------------------------------------------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 16px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.quote blockquote {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--on-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex: none;
}
.quote-who {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.quote-name {
  font-size: 14.5px;
  font-weight: 600;
}
.quote-role {
  font-size: 13px;
  color: var(--slate);
}

/* --------------------------------------------------------------------------
   16. CTA band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 32px;
  align-items: center;
}
.cta-ring {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 80px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.cta-blob {
  position: absolute;
  left: -60px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.cta-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--ink);
}
.cta-copy p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--on-accent-soft);
  max-width: 460px;
}
.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 32px 28px;
  padding-block: 56px 40px;
}
@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 28px;
  }
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-about p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
  max-width: 34ch;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col-title {
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--slate);
}
.footer-col a:hover {
  color: var(--ink);
}
.footer-legal {
  padding-block: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-legal p {
  max-width: 900px;
}

.footer-slim {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-block: 40px;
}

/* --------------------------------------------------------------------------
   18. Service page
   -------------------------------------------------------------------------- */
.svc-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 56px;
  align-items: center;
  padding-block: 80px 64px;
}
.svc-orb-1 {
  right: -8%;
  top: 0;
  width: 42vw;
  height: 42vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(
    circle,
    var(--accent) 0%,
    rgba(198, 241, 53, 0) 68%
  );
  opacity: 0.4;
  filter: blur(24px);
}
.svc-orb-2 {
  left: -6%;
  top: 30%;
  width: 34vw;
  height: 34vw;
  max-width: 460px;
  max-height: 460px;
  background: radial-gradient(circle, #e9f4ff 0%, rgba(233, 244, 255, 0) 70%);
}
.svc-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 580px;
}
.svc-copy h1 {
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.svc-copy .lead {
  font-size: 18.5px;
  max-width: 520px;
}
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
}
.crumbs a {
  color: var(--slate);
}
.crumbs a:hover {
  color: var(--ink);
}
.crumbs .sep {
  color: var(--ink-dim);
}
.crumbs .mono {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.plan-tags-label {
  font-size: 13px;
  color: var(--slate);
  margin-right: 4px;
}
.plan-tag {
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--accent);
}
.plan-tag-off {
  background: var(--mist);
  color: var(--muted);
  text-decoration: line-through;
}

.doc-rows {
  display: flex;
  flex-direction: column;
  padding: 8px;
}
.doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
  border-radius: var(--r-sm);
  transition: background-color 0.18s var(--ease);
}
.doc-row:hover {
  background: rgba(255, 255, 255, 0.7);
}
.doc-k {
  font-size: 13.5px;
  color: var(--slate);
}
.doc-v {
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Geist Mono', ui-monospace, monospace;
  text-align: right;
}
.mock-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid rgba(16, 20, 16, 0.06);
}
.mock-foot-note {
  font-size: 12.5px;
  color: var(--slate);
}
.mock-foot .btn-ink {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 9px;
}

.split-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 40px;
  align-items: start;
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.bullet {
  background: var(--white);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bullet-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.bullet-t {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.bullet-d {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--mist);
  padding: clamp(28px, 4vw, 48px);
}
.panel-orb {
  right: -10%;
  bottom: -40%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    var(--accent) 0%,
    rgba(198, 241, 53, 0) 65%
  );
  opacity: 0.5;
  filter: blur(30px);
}
.panel-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}
.step-card {
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 40px -18px rgba(16, 20, 16, 0.2);
}
.step-card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.step-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.faq-q {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.faq-a {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 62ch;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 12px;
}
.related {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}
.related:hover {
  background: var(--mist-warm);
  color: var(--ink);
}
.related-tag {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.related-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.related-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--slate);
}

/* --------------------------------------------------------------------------
   19. Founder dashboard preview
   -------------------------------------------------------------------------- */
.dash-stage {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--mist);
  padding: clamp(16px, 3vw, 40px);
  overflow: hidden;
}
.dash-orb {
  right: -12%;
  top: -30%;
  width: 46%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    var(--accent) 0%,
    rgba(198, 241, 53, 0) 65%
  );
  opacity: 0.45;
  filter: blur(30px);
}

.dash {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -34px rgba(16, 20, 16, 0.35),
    0 2px 6px rgba(16, 20, 16, 0.04);
  overflow: hidden;
}

/* Top bar */
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.dash-top-id {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.dash-top-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.dash-top-meta {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.dash-top-pill {
  flex: none;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--accent);
}

/* Sidebar + main */
.dash-body {
  display: grid;
  grid-template-columns: 186px 1fr;
}
.dash-side {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: #fbfcf8;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate);
}
.dash-nav-item.is-active {
  background: var(--ink);
  color: var(--white);
}
.dash-nav-badge {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-main {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  /* Cards keep their natural height — stretching the short one leaves a
     hollow bottom inside the card, which reads as a rendering fault. */
  align-items: start;
}
.dash-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
/* Health leads, so it takes the full width of the panel. */
.dash-health {
  grid-column: 1 / -1;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.dash-health .dash-card-title {
  color: var(--white);
}
.dash-health .dash-card-note {
  color: var(--ink-dim);
}

.dash-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.dash-card-title {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.dash-card-note {
  font-size: 12px;
  color: var(--muted);
}
.dash-card-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--on-tint);
}

/* Health checks */
.dash-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 14px 20px;
}
.dash-check {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.dash-check-label {
  font-size: 11.5px;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-check-value {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}
.dash-check-dot {
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.dash-health-note {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-dim);
}

/* Banking meter + stepper */
.dash-meter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-meter-track {
  flex: 1;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--line-soft);
  overflow: hidden;
}
.dash-meter-bar {
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--accent);
  transform-origin: left center;
}
.dash-meter-caption {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  flex: none;
}
.dash-steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.dash-step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--slate);
}
.dash-step-dot {
  width: 13px;
  height: 13px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
}
.dash-step.is-done .dash-step-dot {
  background: var(--ink);
  border-color: var(--ink);
}
.dash-step.is-active .dash-step-dot {
  background: var(--accent);
  border-color: var(--accent-deep);
}
.dash-step.is-done .dash-step-label {
  color: var(--ink);
}
.dash-step-note {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--muted);
  flex: none;
}

/* Filing rows */
.dash-rows {
  display: flex;
  flex-direction: column;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
}
.dash-row:first-child {
  border-top: 0;
  padding-top: 0;
}
.dash-row-main {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.dash-row-name {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-row-meta {
  font-size: 11.5px;
  color: var(--muted);
}
.dash-row-status {
  flex: none;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--mist);
  color: var(--slate);
}
.dash-row.is-done .dash-row-status {
  background: var(--ink);
  color: var(--accent);
}
.dash-row.is-soon .dash-row-status {
  background: var(--accent-tint);
  color: var(--on-tint);
}

/* Address + mail */
.dash-address {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--slate);
}
.dash-mails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.dash-mail {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.dash-mail-from {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--mist);
  color: var(--slate);
  white-space: nowrap;
}
.dash-mail-subject {
  font-size: 12.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-mail-when {
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
}

/* Documents */
.dash-docs {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.dash-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.dash-doc-icon {
  flex: none;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dash-doc-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.dash-doc-name {
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-doc-meta {
  font-size: 11px;
  color: var(--muted);
}

/* Supporting points under the panel */
.dash-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 28px 32px;
  margin-top: 40px;
}
.dash-point {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}
.dash-point-label {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.dash-point-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
}

@media (max-width: 900px) {
  .dash-side {
    display: none;
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .dash-main {
    grid-template-columns: 1fr;
  }
  .dash-top-meta {
    font-size: 10.5px;
  }
}

/* --------------------------------------------------------------------------
   20. Company pages — about / contact / privacy / terms
   -------------------------------------------------------------------------- */
.page-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  padding-block: 80px 8px;
}
.page-hero-inner h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.prose {
  max-width: 720px;
  padding-block: 40px 0;
}
.prose p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 18px;
}
.prose-h2 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 44px 0 14px;
}
.prose > *:first-child {
  margin-top: 0;
}
.prose-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prose-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--slate);
}
.prose-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  border: 1px solid var(--accent-deep);
}

/* Placeholder text that must be replaced before the page is published. */
mark.todo {
  background: var(--error-bg);
  color: var(--error);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.92em;
  padding: 1px 6px;
  border-radius: 5px;
}

.notice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  margin-bottom: 36px;
  border-radius: var(--r-lg);
  background: var(--error-bg);
  border: 1px solid rgba(138, 43, 18, 0.18);
}
.notice p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--error);
}
.notice-tag {
  align-self: flex-start;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--error);
  color: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 8px 0 18px;
}
.value {
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.value-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.value-text {
  margin: 0 !important;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin: 8px 0 18px;
}
.contact-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4px 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-label {
  grid-row: span 2;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}
.contact-value {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.contact-note {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
}
@media (max-width: 660px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .contact-label {
    grid-row: auto;
    padding-top: 0;
  }
}

/* --------------------------------------------------------------------------
   21. 404
   -------------------------------------------------------------------------- */
.nf {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
}
.nf-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
  padding-block: 96px;
}
.nf-code {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--slate);
}

/* --------------------------------------------------------------------------
   22. Motion — JS-gated so nothing is hidden without GSAP
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
}
.js [data-hero-el] {
  opacity: 0;
}
.js .mock-bar,
.js [data-fill] {
  transform: scaleX(0);
}

/* --------------------------------------------------------------------------
   23. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .nav-links,
  .nav-login {
    display: none;
  }
  .burger {
    display: flex;
  }
  .compare-head,
  .compare-row {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
  }
  .compare-hint,
  .compare-fade {
    display: flex;
  }
  .section {
    padding-block: 68px;
  }
  .hero-inner {
    padding-block: 56px 48px;
    gap: 44px;
  }
  .svc-hero-inner {
    padding-block: 48px;
    gap: 44px;
  }
  .head-split,
  .head-stack {
    margin-bottom: 36px;
  }
  .trust {
    padding-bottom: 56px;
  }
  .cta-actions {
    justify-content: flex-start;
  }
  .toast {
    left: 8px;
    bottom: -18px;
    padding: 10px 12px;
  }
  .mock-rows {
    padding-bottom: 52px;
  }
  .footer-grid {
    padding-block: 44px 32px;
    gap: 32px;
  }
  .card {
    padding: 24px;
  }
  .plan {
    padding: 28px 24px;
  }
}

@media (max-width: 420px) {
  .nav {
    padding-left: 16px;
  }
  .brand-name {
    font-size: 18px;
  }
  .nav-cta {
    padding: 9px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal],
  .js [data-hero-el] {
    opacity: 1;
  }
  .js .mock-bar,
  .js [data-fill] {
    transform: none;
  }
}

@media print {
  .site-header,
  .orb,
  .cta,
  .toast {
    display: none !important;
  }
  /* Nothing may stay hidden on paper waiting for a scroll that never comes. */
  .js [data-reveal],
  .js [data-reveal] > *,
  .js [data-hero-el],
  .js [data-fill] {
    opacity: 1 !important;
    transform: none !important;
  }
  body {
    color: #000;
  }
}
