@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src:
    url("../fonts/InterVariable.woff2") format("woff2"),
    url("../fonts/InterVariable.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src:
    url("../fonts/InterVariable-Italic.woff2") format("woff2"),
    url("../fonts/InterVariable-Italic.ttf") format("truetype");
}

/* ============================================================
   Pace App — main.css
   ============================================================ */

:root {
    --bg-main:        #071015;
    --bg-section:     #0B151C;
    --bg-elevated:    #0E1A22;
    --card-bg:        rgba(14, 26, 34, 0.78);
    --card-border:    rgba(255, 255, 255, 0.08);
    --card-border-strong: rgba(255, 255, 255, 0.14);
    --text-main:      #F4F7F6;
    --text-muted:     #8B969C;
    --text-dim:       #5F6B72;
    --green:          #31D991;
    --green-bright:   #2EE3A0;
    --green-soft:     rgba(49, 217, 145, 0.16);
    --green-glow:     rgba(49, 217, 145, 0.35);
    --orange:         #FF7A45;
    --orange-bright:  #FF8A5A;
    --orange-soft:    rgba(255, 122, 69, 0.16);
    --blue:           #6CA8FF;
    --line-soft:      rgba(255, 255, 255, 0.12);
    --line-softer:    rgba(255, 255, 255, 0.06);
    --shadow-card:    0 30px 60px -30px rgba(0, 0, 0, 0.6);
    --shadow-glow:    0 20px 50px -20px rgba(49, 217, 145, 0.3);
    --radius-sm:      12px;
    --radius-md:      18px;
    --radius-lg:      24px;
    --radius-pill:    999px;
    --container:      1360px;
    --space-section:  80px;

    --font-sans: "Inter", "SF Pro Display", "Helvetica Neue", system-ui, -apple-system, sans-serif;
    --font-mono: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--green); }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; color: var(--text-main); }

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

.site { min-height: 100vh; display: flex; flex-direction: column; }
.site__main { flex: 1 0 auto; }

.page-wrapper.pace-page {
    position: relative;
    background:
        radial-gradient(80% 70% at 50% -10%, rgba(49, 217, 145, 0.06) 0%, transparent 65%),
        radial-gradient(60% 50% at 100% 0%, rgba(108, 168, 255, 0.04) 0%, transparent 60%),
        var(--bg-main);
}

/* Eyebrow / tags / section heads */
.pace-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}
.pace-eyebrow--green { color: var(--green); }
.pace-eyebrow--muted { color: var(--text-muted); }

.pace-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
}
.pace-tag--green  { color: var(--green);  background: var(--green-soft);  border-color: rgba(49, 217, 145, 0.35); }
.pace-tag--orange { color: var(--orange); background: var(--orange-soft); border-color: rgba(255, 122, 69, 0.35); }

.pace-section-head {
    text-align: center;
    margin: 0 auto 44px;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.pace-section-title {
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
}
.pace-section-title--left { text-align: left; }
.pace-section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 580px;
}

/* Header */
.pace-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0;
    transition: backdrop-filter .3s ease, background .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}
.pace-header.is-scrolled {
    background: rgba(7, 16, 21, 0.78);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom-color: var(--line-softer);
}
.pace-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pace-header__logo img { height: 28px; width: auto; }
.pace-logo {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.04em;
    color: var(--text-main);
    line-height: 1;
}
.pace-logo__a { color: var(--green); }

.pace-header__menu { display: flex; align-items: center; gap: 32px; }
.pace-header__menu a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color .2s ease;
}
.pace-header__menu a:hover { color: var(--text-main); }
.pace-header__menu a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--green);
    transition: width .25s ease;
}
.pace-header__menu a:hover::after { width: 100%; }

.pace-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    background: var(--green);
    color: #07171F !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 20px -8px var(--green-glow);
    transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
}
.pace-header__cta:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px -10px var(--green-glow);
}
.pace-header__cta svg { width: 16px; height: 16px; }

.pace-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--card-border);
    width: 42px; height: 42px;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
}
.pace-nav-toggle .nav-toggle__line {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--text-main);
    transition: transform .2s ease, opacity .2s ease;
}

.pace-header__mobile {
    display: none;
    padding: 16px 28px 28px;
    background: rgba(7, 16, 21, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-softer);
}
.pace-header__mobile.is-open { display: block; }
.pace-header__mobile .pace-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}
.pace-header__cta--mobile { display: inline-flex; width: 100%; justify-content: center; }

/* Contact Form 7 — shared scope so hero and footer forms match */
.pace-page .wpcf7 { margin: 0; padding: 0; }
.pace-page .wpcf7 .hidden-fields-container,
.pace-page .wpcf7-form fieldset.hidden-fields-container {
    border: 0; margin: 0; padding: 0; display: contents;
}
.pace-page .wpcf7-form > br,
.pace-page .wpcf7-form p > br { display: none; }

.pace-page .wpcf7-form {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 6px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-pill);
    padding: 6px;
    max-width: 480px;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.pace-page .wpcf7-form:focus-within {
    border-color: rgba(49, 217, 145, 0.4);
    box-shadow: 0 0 0 4px rgba(49, 217, 145, 0.12);
}
.pace-page .wpcf7-form > p {
    margin: 0;
    flex: 1 1 100%;
    display: flex;
    align-items: stretch;
    gap: 6px;
}
.pace-page .wpcf7-form .wpcf7-form-control-wrap { flex: 1; display: flex; min-width: 0; }
.pace-page .wpcf7-form .wpcf7-form-control-wrap > * { flex: 1; }
.pace-page .wpcf7-form input[type="email"],
.pace-page .wpcf7-form input[type="text"] {
    flex: 1;
    background: transparent;
    border: 0; outline: none;
    color: var(--text-main);
    font-size: 15px;
    padding: 14px 18px;
    min-width: 0; width: 100%;
    font-family: inherit;
}
.pace-page .wpcf7-form input::placeholder { color: var(--text-dim); }

.pace-page .wpcf7-form input[type="submit"],
.pace-page .wpcf7-form button[type="submit"],
.pace-page .wpcf7-form .wpcf7-submit {
    flex: 0 0 auto;
    background: var(--green);
    color: #06141B;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 12px 26px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .25s ease;
    box-shadow: 0 8px 22px -10px var(--green-glow);
    font-family: inherit;
    line-height: 1.2;
    white-space: nowrap;
}
.pace-page .wpcf7-form input[type="submit"]:hover,
.pace-page .wpcf7-form button[type="submit"]:hover,
.pace-page .wpcf7-form .wpcf7-submit:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
}

.pace-page .wpcf7-spinner {
    width: 0; height: 24px;
    margin: 0;
    background: none;
    align-self: center;
    transition: width .15s ease, margin-left .15s ease;
}
.pace-page .wpcf7-form.submitting .wpcf7-spinner {
    width: 24px;
    margin-left: 8px;
    border: 2px solid rgba(255,255,255,0.18);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: pace-spin .8s linear infinite;
}
.pace-page .wpcf7-form.submitting .wpcf7-spinner::before { content: none; }
@keyframes pace-spin { to { transform: rotate(360deg); } }

.pace-page .wpcf7-response-output,
.pace-page .wpcf7 form .wpcf7-response-output {
    flex: 1 1 100%;
    margin: 10px 6px 4px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 13px;
}
.pace-page .wpcf7-form[data-status="sent"] .wpcf7-response-output,
.pace-page .wpcf7 form.sent .wpcf7-response-output {
    color: var(--green);
    border-color: rgba(49, 217, 145, 0.35);
    background: var(--green-soft);
}
.pace-page .wpcf7-form[data-status="invalid"] .wpcf7-response-output,
.pace-page .wpcf7-form[data-status="failed"] .wpcf7-response-output,
.pace-page .wpcf7-form[data-status="mail_failed"] .wpcf7-response-output {
    color: var(--orange);
    border-color: rgba(255, 122, 69, 0.35);
    background: var(--orange-soft);
}
.pace-page .wpcf7-not-valid-tip {
    color: var(--orange); font-size: 12px;
    margin-top: 6px; padding: 0 10px;
}
.pace-page .wpcf7-form-control.wpcf7-not-valid { color: var(--orange); }
.pace-page .screen-reader-response {
    position: absolute !important;
    left: -10000px; top: auto;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Trust notes */
.pace-trust { display: flex; flex-wrap: wrap; gap: 18px; margin: 22px 0 0; }
.pace-trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 13px; }
.pace-trust svg { width: 14px; height: 14px; color: var(--green); }

/* HERO */
.pace-hero { position: relative; overflow: hidden; padding: 48px 0 72px; }
.pace-hero__glow {
    position: absolute;
    inset: -20% -20% auto;
    height: 80%;
    background:
        radial-gradient(50% 50% at 30% 40%, rgba(49, 217, 145, 0.18) 0%, transparent 60%),
        radial-gradient(50% 50% at 70% 30%, rgba(255, 122, 69, 0.10) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(20px);
    opacity: 0.85;
}
.pace-dots { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pace-dots span {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    animation: paceFloat 14s ease-in-out infinite;
}
.pace-dots span:nth-child(1)  { top:  8%; left:  4%; animation-delay: -0.0s; }
.pace-dots span:nth-child(2)  { top: 14%; left: 22%; animation-delay: -1.5s; }
.pace-dots span:nth-child(3)  { top: 36%; left:  9%; animation-delay: -3.0s; }
.pace-dots span:nth-child(4)  { top: 52%; left: 18%; animation-delay: -4.5s; }
.pace-dots span:nth-child(5)  { top: 24%; left: 38%; animation-delay: -6.0s; }
.pace-dots span:nth-child(6)  { top: 68%; left: 11%; animation-delay: -7.5s; }
.pace-dots span:nth-child(7)  { top: 80%; left: 30%; animation-delay: -9.0s; }
.pace-dots span:nth-child(8)  { top:  6%; left: 56%; animation-delay: -10.5s; }
.pace-dots span:nth-child(9)  { top: 18%; left: 74%; animation-delay: -12.0s; }
.pace-dots span:nth-child(10) { top: 34%; left: 88%; animation-delay: -1.0s; }
.pace-dots span:nth-child(11) { top: 50%; left: 78%; animation-delay: -2.0s; }
.pace-dots span:nth-child(12) { top: 64%; left: 92%; animation-delay: -3.5s; }
.pace-dots span:nth-child(13) { top: 78%; left: 60%; animation-delay: -5.0s; }
.pace-dots span:nth-child(14) { top: 30%; left: 50%; animation-delay: -6.5s; }
.pace-dots span:nth-child(15) { top: 88%; left: 46%; animation-delay: -8.0s; }
.pace-dots span:nth-child(16) { top: 90%; left: 84%; animation-delay: -9.5s; }
.pace-dots span:nth-child(17) { top: 12%; left: 95%; animation-delay: -11.0s; }
.pace-dots span:nth-child(18) { top: 46%; left:  2%; animation-delay: -12.5s; }
.pace-dots span:nth-child(n+19) { display: none; }
@keyframes paceFloat {
    0%, 100% { transform: translateY(0); opacity: .3; }
    50%      { transform: translateY(-22px); opacity: .85; }
}

.pace-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: start;
}
.pace-hero__content { max-width: 600px; align-self: start; }
.pace-hero__title {
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.05;
    margin: 18px 0 22px;
    letter-spacing: -0.03em;
}
.pace-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}
.pace-hero__visual { position: relative; display: grid; gap: 24px; }

/* Timeline visual */
.pace-timeline {
    position: relative;
    width: 100%;
    aspect-ratio: 560 / 360;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(60% 60% at 50% 50%, rgba(49, 217, 145, 0.08) 0%, transparent 70%),
        var(--card-bg);
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.pace-timeline__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pace-timeline__path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2.2s ease;
}
.pace-timeline.is-animated .pace-timeline__path { stroke-dashoffset: 0; }

.pace-timeline__dot {
    opacity: 0;
    transform-origin: center;
    transform: scale(0);
    transition: opacity .4s ease, transform .5s cubic-bezier(.34,1.56,.64,1);
}
.pace-timeline.is-animated .pace-timeline__dot--start { opacity: 1; transform: scale(1); transition-delay: .4s; }
.pace-timeline.is-animated .pace-timeline__dot--mid   { opacity: 1; transform: scale(1); transition-delay: 1.2s; }
.pace-timeline.is-animated .pace-timeline__dot--end   { opacity: 1; transform: scale(1); transition-delay: 2.0s; }

.pace-timeline__label {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    background: rgba(7, 16, 21, 0.85);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s ease, transform .5s ease;
}
.pace-timeline.is-animated .pace-timeline__label { opacity: 1; transform: translateY(0); }
.pace-timeline.is-animated .pace-timeline__label--start  { transition-delay: 0.5s; }
.pace-timeline.is-animated .pace-timeline__label--goal   { transition-delay: 1.3s; }
.pace-timeline.is-animated .pace-timeline__label--future { transition-delay: 2.1s; }
.pace-timeline__label--start  { left: 4%;  bottom: 22%; }
.pace-timeline__label--goal   { left: 48%; top: 12%; transform: translate(-50%, 8px); }
.pace-timeline.is-animated .pace-timeline__label--goal { transform: translate(-50%, 0); }
.pace-timeline__label--future { right: 4%; bottom: 12%; }
.pace-timeline__pin { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); }
.pace-timeline__pin--green  { background: var(--green);  box-shadow: 0 0 12px var(--green-glow); }
.pace-timeline__pin--orange { background: var(--orange); box-shadow: 0 0 12px rgba(255, 122, 69, 0.5); }

.pace-decision {
    position: absolute;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    display: flex; flex-direction: column; gap: 2px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease;
    min-width: 140px;
}
.pace-timeline.is-animated .pace-decision {
    opacity: 1;
    transform: translateY(0);
    animation: paceDecisionFloat 7s ease-in-out infinite;
}
.pace-decision--p1 { top: 14%;  left: 28%; transition-delay: 2.6s; animation-delay: 0s; }
.pace-decision--p2 { top: 38%;  right: 6%; transition-delay: 2.9s; animation-delay: -1.8s; }
.pace-decision--p3 { bottom: 8%; left: 30%; transition-delay: 3.2s; animation-delay: -3.4s; }
.pace-decision--p4 { top: 4%;   right: 22%; transition-delay: 3.5s; animation-delay: -5.1s; }
.pace-decision__label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.02em; }
.pace-decision__value { font-size: 15px; font-weight: 700; }
.pace-decision--positive .pace-decision__value { color: var(--green); }
.pace-decision--negative .pace-decision__value { color: var(--orange); }
.pace-decision--positive { border-color: rgba(49, 217, 145, 0.28); }
.pace-decision--negative { border-color: rgba(255, 122, 69, 0.28); }
@keyframes paceDecisionFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* Summary dashboard card */
.pace-summary {
    background: linear-gradient(180deg, rgba(14, 26, 34, 0.92) 0%, rgba(11, 21, 28, 0.92) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px 26px 22px;
    box-shadow: var(--shadow-card);
    display: flex; flex-direction: column; gap: 14px;
}
.pace-summary__head { display: flex; justify-content: center; }
.pace-summary__status {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.18em;
    color: var(--orange); font-weight: 600;
}
.pace-summary__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 14px var(--orange);
    animation: pacePulse 2.4s ease-in-out infinite;
}
@keyframes pacePulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%      { transform: scale(1.3); opacity: 0.6; }
}
.pace-summary__big { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-top: 6px; }
.pace-summary__years {
    font-size: clamp(56px, 7vw, 84px); font-weight: 800;
    color: var(--orange); line-height: 1;
    letter-spacing: -0.04em; font-variant-numeric: tabular-nums;
}
.pace-summary__years-unit { font-size: 22px; font-weight: 700; color: var(--orange); letter-spacing: -0.02em; }
.pace-summary__sub, .pace-summary__hit { text-align: center; color: var(--text-muted); font-size: 13px; }
.pace-summary__hit { color: var(--text-main); }
.pace-summary__bar {
    position: relative; height: 6px;
    background: rgba(255, 122, 69, 0.16);
    border-radius: var(--radius-pill);
    margin-top: 4px;
}
.pace-summary__bar-fill {
    position: absolute; left: 0; top: 0;
    height: 100%; width: 70%;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(255, 122, 69, 0.4) 100%);
    border-radius: var(--radius-pill);
}
.pace-summary__bar-marker {
    position: absolute; top: 50%;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px var(--green-glow);
}
.pace-summary__bar-marker--end { background: var(--orange); box-shadow: 0 0 12px rgba(255, 122, 69, 0.6); }
.pace-summary__bar-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-top: 6px; }
.pace-summary__bar-goal   { color: var(--green); font-weight: 600; }
.pace-summary__bar-future { color: var(--orange); font-weight: 600; }
.pace-summary__divider { height: 1px; background: var(--line-softer); margin: 12px 0 4px; }
.pace-summary__row {
    display: flex; align-items: center;
    gap: 12px; padding: 10px 0;
    border-top: 1px solid var(--line-softer);
}
.pace-summary__row:first-of-type { border-top: 0; }
.pace-summary__row-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    flex: 0 0 36px;
}
.pace-summary__row-icon svg { width: 16px; height: 16px; }
.pace-summary__row-icon--orange { color: var(--orange); background: var(--orange-soft); }
.pace-summary__row-icon--green  { color: var(--green);  background: var(--green-soft); }
.pace-summary__row-main { font-weight: 700; }
.pace-summary__row-main--orange { color: var(--orange); }
.pace-summary__row-text { display: flex; flex-direction: column; flex: 1; }
.pace-summary__row-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.02em; }
.pace-summary__row-text strong { color: var(--text-main); font-size: 15px; font-weight: 700; }
.pace-summary__row-value { font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums; }
.pace-summary__row-value--orange { color: var(--orange); }
.pace-summary__row-value--green  { color: var(--green); }

/* SPLIT FUTURE */
.pace-split { padding: var(--space-section) 0; background: var(--bg-main); position: relative; }
.pace-split__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.pace-split__panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    display: flex; flex-direction: column; gap: 18px;
    position: relative; overflow: hidden;
    min-height: 380px;
    box-shadow: var(--shadow-card);
}
.pace-split__panel--orange::before,
.pace-split__panel--green::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(80% 80% at 50% 100%, var(--orange-soft) 0%, transparent 70%);
    pointer-events: none;
}
.pace-split__panel--green::before { background: radial-gradient(80% 80% at 50% 0%, var(--green-soft) 0%, transparent 70%); }
.pace-split__panel header { position: relative; z-index: 1; }
.pace-split__panel h3 { font-size: 22px; margin-top: 14px; line-height: 1.25; max-width: 240px; }
.pace-split__svg { position: relative; z-index: 1; flex: 1; width: 100%; min-height: 160px; }
.pace-split__line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1.8s ease;
}
.pace-split__panel.is-revealed .pace-split__line { stroke-dashoffset: 0; }
.pace-split__markers {
    display: flex; justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed var(--line-soft);
    color: var(--text-muted); font-size: 12px;
    position: relative; z-index: 1;
}
.pace-split__markers strong { color: var(--text-main); font-weight: 600; }
.pace-split__age { font-weight: 800; margin-left: 4px; font-variant-numeric: tabular-nums; }
.pace-split__age--orange { color: var(--orange); }
.pace-split__age--green  { color: var(--green); }
.pace-split__divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, var(--line-soft) 50%, transparent);
    position: relative;
}
.pace-split__divider-dot {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--text-main);
    box-shadow: 0 0 0 6px rgba(255,255,255,0.04);
}

/* FUTURE RECEIPT */
.pace-receipt { padding: var(--space-section) 0; background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-section) 100%); }
.pace-receipt__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.pace-receipt__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px 28px 24px;
    box-shadow: var(--shadow-card);
    position: relative; overflow: hidden;
}
.pace-receipt__card::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(70% 70% at 0% 0%, rgba(49,217,145,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.pace-receipt__card-head {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 22px; position: relative; z-index: 1;
}
.pace-receipt__card-title { font-size: 22px; font-weight: 700; color: var(--text-main); }
.pace-receipt__card-meta { font-size: 11px; letter-spacing: 0.18em; color: var(--text-muted); }
.pace-receipt__rows { display: flex; flex-direction: column; margin: 0; padding: 0; position: relative; z-index: 1; }
.pace-receipt__row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line-softer);
    opacity: 0; transform: translateX(-10px);
    transition: opacity .5s ease, transform .5s ease;
}
.pace-receipt__row:last-child { border-bottom: 0; }
.pace-receipt__row.is-visible { opacity: 1; transform: translateX(0); }
.pace-receipt__row-label { color: var(--text-muted); font-size: 15px; }
.pace-receipt__row-value {
    font-family: var(--font-mono);
    font-weight: 700; font-size: 15px;
    font-variant-numeric: tabular-nums;
}
.pace-receipt__row--positive .pace-receipt__row-value { color: var(--green); }
.pace-receipt__row--negative .pace-receipt__row-value { color: var(--orange); }
.pace-receipt__net {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--green-soft);
    border: 1px solid rgba(49,217,145, 0.28);
    position: relative; z-index: 1;
}
.pace-receipt__net span { color: var(--text-main); font-weight: 600; letter-spacing: 0.02em; }
.pace-receipt__net strong {
    color: var(--green); font-size: 22px; font-weight: 800;
    letter-spacing: -0.01em; font-variant-numeric: tabular-nums;
}
.pace-weekly {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px 24px 20px;
    box-shadow: var(--shadow-card);
    display: flex; flex-direction: column; gap: 12px;
}
.pace-weekly__title { font-size: 20px; font-weight: 700; margin-top: 4px; }
.pace-weekly__text { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.pace-weekly__chart {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    align-items: end;
    padding-top: 16px;
    height: 140px;
    border-top: 1px solid var(--line-softer);
}
.pace-weekly__bar-wrap {
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    gap: 8px; height: 100%;
}
.pace-weekly__bar {
    width: 100%;
    border-radius: 6px 6px 2px 2px;
    background: var(--green-soft);
    transition: height 1.1s cubic-bezier(.22, 1, .36, 1);
    height: 0;
    --bar-height: 50%;
}
.pace-weekly__bar--positive { background: linear-gradient(180deg, var(--green) 0%, rgba(49,217,145,0.3) 100%); }
.pace-weekly__bar--negative { background: linear-gradient(180deg, var(--orange) 0%, rgba(255,122,69,0.3) 100%); }
.pace-weekly__chart.is-animated .pace-weekly__bar { height: var(--bar-height); }
.pace-weekly__bar-label { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   NET WORTH PREVIEW
   Two-column card: accounts ledger on the left, projection chart
   + milestones on the right. Pure visual mockup — no inputs.
   ============================================================ */
.pace-networth {
    position: relative;
    padding: var(--space-section) 0;
    background: var(--bg-main);
    overflow: hidden;
}
.pace-networth__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.pace-networth__bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 70%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(49, 217, 145, 0.08) 0%, transparent 70%);
    filter: blur(40px);
}
.pace-networth__eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(49, 217, 145, 0.55);
    animation: heroBlogDotPulse 2.2s ease-out infinite;
    margin-right: 4px;
    vertical-align: middle;
}
.pace-networth__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 24px;
    align-items: stretch;
}
.pace-networth__panel {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px 26px 22px;
    overflow: hidden;
}
.pace-networth__panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 12px;
}
.pace-networth__panel-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-main);
}
.pace-networth__panel-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}
.pace-networth__panel-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(49, 217, 145, 0.55);
}

/* Ledger panel */
.pace-networth__group {
    margin-bottom: 14px;
}
.pace-networth__group-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0 6px;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 6px;
}
.pace-networth__group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.pace-networth__group-total {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.02em;
}
.pace-networth__group-total--neg { color: var(--orange); }

.pace-networth__rows {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.pace-networth__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.pace-networth__row:last-child { border-bottom: 0; }
.pace-networth__row-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 14px;
}
.pace-networth__row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.pace-networth__row-icon svg {
    width: 14px;
    height: 14px;
}
.pace-networth__row-icon--green  { color: var(--green);  background: rgba(49, 217, 145, 0.10); border-color: rgba(49, 217, 145, 0.20); }
.pace-networth__row-icon--blue   { color: var(--blue, #6CA8FF);   background: rgba(108, 168, 255, 0.12); border-color: rgba(108, 168, 255, 0.22); }
.pace-networth__row-icon--orange { color: var(--orange); background: rgba(255, 122, 69, 0.12); border-color: rgba(255, 122, 69, 0.22); }
.pace-networth__row-value {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.02em;
}
.pace-networth__row-value--neg { color: var(--orange); }

.pace-networth__total {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.pace-networth__total-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.pace-networth__total-value {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.01em;
}

/* Chart panel */
.pace-networth__chart {
    margin: 4px 0 18px;
}
.pace-networth__chart-svg {
    width: 100%;
    height: 220px;
    display: block;
}
.pace-networth__chart-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: paceNetworthDraw 1.6s ease-out 0.2s forwards;
}
.pace-networth__chart-dot {
    transform-origin: center;
    transform-box: fill-box;
    opacity: 0;
    animation: paceNetworthDotIn 0.4s cubic-bezier(.22,1,.36,1) forwards;
}
.pace-networth__chart-dot:nth-of-type(2) { animation-delay: 1.0s; }
.pace-networth__chart-dot:nth-of-type(4) { animation-delay: 1.4s; }
.pace-networth__chart-dot:nth-of-type(6) { animation-delay: 1.8s; }
@keyframes paceNetworthDraw { to { stroke-dashoffset: 0; } }
@keyframes paceNetworthDotIn {
    from { opacity: 0; transform: scale(0.4); }
    to   { opacity: 1; transform: scale(1); }
}
.pace-networth__chart-axis {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
}

.pace-networth__milestones {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--card-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.pace-networth__milestone {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pace-networth__milestone-marker {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 10px;
    margin-top: 4px;
    box-shadow: 0 0 12px currentColor;
}
.pace-networth__milestone-marker--soon { background: var(--green);  color: rgba(49, 217, 145, 0.6); }
.pace-networth__milestone-marker--mid  { background: var(--green);  color: rgba(49, 217, 145, 0.5); }
.pace-networth__milestone-marker--far  { background: var(--green-bright, #5FE2A8); color: rgba(95, 226, 168, 0.55); }
.pace-networth__milestone-target {
    display: block;
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.pace-networth__milestone-when {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 2px;
}

/* ============================================================
   SIMULATOR
   Live what-if calculator. Three sliders on the left, animated
   result on the right. Slider track styled cross-browser via
   ::-webkit-slider-runnable-track and ::-moz-range-track, with
   the green fill driven by an inline `--pace-fill` CSS variable
   that the JS keeps in sync with the thumb position.
   ============================================================ */
.pace-simulator {
    position: relative;
    padding: var(--space-section) 0;
    background: var(--bg-section);
    overflow: hidden;
}
.pace-simulator__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.pace-simulator__bg-glow {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(49, 217, 145, 0.10) 0%, transparent 70%);
    filter: blur(40px);
}
.pace-simulator__eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(49, 217, 145, 0.55);
    animation: heroBlogDotPulse 2.2s ease-out infinite;
    margin-right: 4px;
    vertical-align: middle;
}
.pace-simulator__card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px 32px 28px;
    overflow: hidden;
}
.pace-simulator__controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pace-simulator__control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pace-simulator__control-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.pace-simulator__control-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.pace-simulator__control-value {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.01em;
}
.pace-simulator__control-foot {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

/* Range slider — cross-browser custom styling */
.pace-simulator__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 28px;
    background: transparent;
    cursor: pointer;
    margin: 0;
    --pace-fill: 50%;
}
.pace-simulator__slider:focus { outline: none; }
.pace-simulator__slider:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(49, 217, 145, 0.25);
}
.pace-simulator__slider:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(49, 217, 145, 0.25);
}

/* WebKit / Blink */
.pace-simulator__slider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--green) 0%,
        var(--green) var(--pace-fill),
        rgba(255, 255, 255, 0.08) var(--pace-fill),
        rgba(255, 255, 255, 0.08) 100%
    );
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.pace-simulator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid #06141B;
    margin-top: -8px;
    cursor: grab;
    box-shadow: 0 4px 14px -2px rgba(49, 217, 145, 0.5);
    transition: transform .15s ease, box-shadow .25s ease;
}
.pace-simulator__slider:hover::-webkit-slider-thumb {
    transform: scale(1.08);
}
.pace-simulator__slider:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.1);
}

/* Firefox */
.pace-simulator__slider::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}
.pace-simulator__slider::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--green);
}
.pace-simulator__slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid #06141B;
    cursor: grab;
    box-shadow: 0 4px 14px -2px rgba(49, 217, 145, 0.5);
    transition: transform .15s ease;
}
.pace-simulator__slider:hover::-moz-range-thumb { transform: scale(1.08); }

/* Result panel */
.pace-simulator__result {
    background:
        radial-gradient(closest-side, rgba(49, 217, 145, 0.10) 0%, transparent 80%),
        rgba(7, 16, 21, 0.55);
    border: 1px solid rgba(49, 217, 145, 0.22);
    border-radius: 18px;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    box-shadow:
        0 24px 60px -30px rgba(49, 217, 145, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pace-simulator__result-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.pace-simulator__result-value {
    font-family: var(--font-mono);
    font-size: clamp(60px, 9vw, 96px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(180deg, #F4F7F6 0%, #B6C2C7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}
.pace-simulator__result-delta {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    transition: color .25s ease, background .25s ease;
    min-height: 22px;
}
.pace-simulator__result-delta--good {
    color: var(--green);
    background: rgba(49, 217, 145, 0.10);
}
.pace-simulator__result-delta--bad {
    color: var(--orange);
    background: rgba(255, 122, 69, 0.10);
}
.pace-simulator__result-foot {
    color: var(--text-dim);
    font-size: 11px;
    letter-spacing: 0.04em;
    margin-top: 4px;
}

/* Responsive — collapse to single column, then mobile polish */
@media (max-width: 992px) {
    .pace-networth__grid { grid-template-columns: 1fr; gap: 18px; }
    .pace-simulator__card { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px 24px; }
}
@media (max-width: 768px) {
    .pace-networth__panel { padding: 22px 20px 20px; }
    .pace-networth__chart-svg { height: 180px; }
    .pace-networth__milestones { grid-template-columns: 1fr; gap: 10px; padding-top: 14px; }
    .pace-networth__total-value { font-size: 19px; }

    .pace-simulator__card { padding: 22px 18px 22px; }
    .pace-simulator__controls { gap: 18px; }
    .pace-simulator__control-value { font-size: 14px; }
    .pace-simulator__result { padding: 22px 18px 18px; }
}
@media (max-width: 480px) {
    .pace-networth__row-label { font-size: 13px; }
    .pace-networth__row-value,
    .pace-networth__group-total { font-size: 13px; }
}

/* FEATURES */
.pace-features { padding: var(--space-section) 0; background: var(--bg-section); }
.pace-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pace-feature {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px 26px;
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column; gap: 14px;
    min-height: 220px;
}
.pace-feature:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-strong);
    box-shadow: 0 30px 60px -30px rgba(49, 217, 145, 0.2);
}
.pace-feature__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--green);
    background: var(--green-soft);
    transform: scale(0.85);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.pace-feature.is-revealed .pace-feature__icon { transform: scale(1); }
.pace-feature__icon img { width: 24px; height: 24px; }
.pace-feature__icon svg { width: 22px; height: 22px; }
.pace-feature__icon--orange { color: var(--orange); background: var(--orange-soft); }
.pace-feature__icon--blue   { color: var(--blue);   background: rgba(108, 168, 255, 0.14); }
.pace-feature__title { font-size: 20px; font-weight: 700; line-height: 1.25; }
.pace-feature__text { color: var(--text-muted); font-size: 15px; line-height: 1.55; }

/* ============================================================
   FOUNDING MEMBER PERKS — waitlist incentive block.
   Sits between Features and Trust. Three perk cards on a soft
   green-tinted backdrop, plus a panel with scarcity copy, a
   progress meter, and a CTA back to the hero waitlist form.
   ============================================================ */
.pace-founding {
    position: relative;
    padding: var(--space-section) 0;
    background: var(--bg-main);
    overflow: hidden;
}
.pace-founding__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.pace-founding__bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 70%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(49, 217, 145, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.9;
}
.pace-founding__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(60% 60% at 50% 40%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000 0%, transparent 80%);
    opacity: 0.6;
}
.pace-founding__head { position: relative; z-index: 1; }
.pace-founding__eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(49, 217, 145, 0.55);
    animation: heroBlogDotPulse 2.2s ease-out infinite;
}

/* Perk cards grid */
.pace-founding__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}
.pace-founding__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 26px 26px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.pace-founding__card::before {
    /* Accent line on the left, slides in on hover */
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.pace-founding__card--orange::before { background: var(--orange); }
.pace-founding__card:hover {
    border-color: rgba(49, 217, 145, 0.30);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    background: rgba(14, 26, 34, 0.85);
}
.pace-founding__card--orange:hover {
    border-color: rgba(255, 122, 69, 0.30);
}
.pace-founding__card:hover::before { transform: scaleY(1); }

.pace-founding__index {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.08em;
}
.pace-founding__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: rgba(49, 217, 145, 0.10);
    border: 1px solid rgba(49, 217, 145, 0.22);
}
.pace-founding__icon--orange {
    color: var(--orange);
    background: rgba(255, 122, 69, 0.10);
    border-color: rgba(255, 122, 69, 0.25);
}
.pace-founding__icon svg { width: 24px; height: 24px; }

.pace-founding__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.012em;
    margin: 4px 0 0;
}
.pace-founding__text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

/* Bottom panel — scarcity copy + meter + CTA */
.pace-founding__panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(49, 217, 145, 0.05) 0%, rgba(14, 26, 34, 0) 100%);
    background-color: var(--card-bg);
    border: 1px solid rgba(49, 217, 145, 0.22);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    overflow: hidden;
}
.pace-founding__panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.pace-founding__panel-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 380px;
    min-width: 0;
}
.pace-founding__panel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 2px;
}
.pace-founding__panel-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(49, 217, 145, 0.55);
}
.pace-founding__panel-headline {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.012em;
    line-height: 1.3;
    margin: 0;
}
.pace-founding__panel-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* CTA — primary pill */
.pace-founding__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--green);
    color: #06141B;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 12px 28px -14px rgba(49, 217, 145, 0.5);
    transition: background .25s ease, transform .2s ease, gap .25s ease, box-shadow .25s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}
.pace-founding__cta:hover {
    background: var(--green-bright, #5FE2A8);
    transform: translateY(-1px);
    gap: 14px;
    box-shadow: 0 18px 36px -14px rgba(49, 217, 145, 0.55);
}
.pace-founding__cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.pace-founding__cta:hover .pace-founding__cta-arrow {
    transform: translateX(4px);
}

/* Progress meter */
.pace-founding__meter {
    margin-top: 4px;
}
.pace-founding__meter-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
}
.pace-founding__meter-fill {
    display: block;
    height: 100%;
    width: var(--pace-fill, 0%);
    background: linear-gradient(90deg, var(--green) 0%, var(--green-bright, #5FE2A8) 100%);
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(49, 217, 145, 0.55);
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}
.pace-founding__meter-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 600;
}
.pace-founding__meter-counter {
    font-family: var(--font-mono);
    letter-spacing: 0.10em;
    color: var(--text-muted);
}
.pace-founding__meter-counter strong {
    color: var(--green);
    font-weight: 700;
}

.pace-founding__cta-note {
    margin: 14px 0 0;
    text-align: center;
    color: var(--text-dim);
    font-size: 12px;
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 992px) {
    .pace-founding__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pace-founding__grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
    .pace-founding__card { padding: 24px 20px 22px; }
    .pace-founding__title { font-size: 17px; }
    .pace-founding__text { font-size: 14.5px; }
    .pace-founding__panel { padding: 22px 20px 20px; }
    .pace-founding__panel-row { gap: 16px; margin-bottom: 16px; }
    .pace-founding__panel-headline { font-size: 17px; }
    .pace-founding__cta { width: 100%; justify-content: center; padding: 14px 18px; }
    .pace-founding__bg-grid { background-size: 32px 32px; }

    /* Meter — clearly detached from the green CTA on narrow screens:
       darker, thicker track inside its own outlined card, with a
       generous top gap so it never visually merges with the button. */
    .pace-founding__meter {
        margin-top: 22px;
        padding: 14px 14px 12px;
        background: rgba(7, 16, 21, 0.55);
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 14px;
    }
    .pace-founding__meter-track {
        height: 9px;
        background: rgba(0, 0, 0, 0.45);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.06),
            inset 0 1px 2px rgba(0, 0, 0, 0.35);
    }
    .pace-founding__meter-fill {
        box-shadow:
            0 0 14px rgba(49, 217, 145, 0.65),
            inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    }
    .pace-founding__meter-labels {
        margin-top: 10px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }
}

/* JOURNAL preview */
.pace-journal { padding: var(--space-section) 0; background: var(--bg-main); }
.pace-journal__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.pace-journal__head .pace-section-title {
    margin-top: 12px;
    font-size: clamp(28px, 3.6vw, 44px);
    max-width: 620px;
}
.pace-journal__view-all {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green); font-weight: 600; font-size: 14px;
    padding: 10px 18px;
    border: 1px solid rgba(49,217,145, 0.28);
    border-radius: var(--radius-pill);
    background: var(--green-soft);
    transition: background .2s ease, transform .2s ease;
}
.pace-journal__view-all:hover { background: rgba(49,217,145, 0.22); transform: translateY(-1px); color: var(--green); }
.pace-journal__view-all svg { width: 14px; height: 14px; }
.pace-journal__grid { grid-template-columns: repeat(3, 1fr); }
.pace-journal__empty { color: var(--text-muted); text-align: center; padding: 40px 0; }

/* FINAL CTA */
.pace-final {
    position: relative;
    padding: var(--space-section) 0 56px;
    background: linear-gradient(180deg, var(--bg-main) 0%, #050B10 100%);
    overflow: hidden;
}
.pace-final__bg { position: absolute; inset: 0; pointer-events: none; }
.pace-final__bg svg { width: 100%; height: 100%; opacity: 0.35; }
.pace-final__line {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    transition: stroke-dashoffset 2.2s ease;
}
.pace-final.is-revealed .pace-final__line { stroke-dashoffset: 0; }
.pace-final__goal { transform-origin: center; animation: paceGoalPulse 2.4s ease-in-out infinite; }
@keyframes paceGoalPulse {
    0%, 100% { opacity: 0.7; r: 12; }
    50%      { opacity: 1;   r: 16; }
}
.pace-final__container {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.pace-final__title {
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.05;
    margin: 14px 0 18px;
    letter-spacing: -0.025em;
}
.pace-final__title h2 { font-size: inherit; line-height: inherit; font-weight: inherit; margin: 0; }
.pace-final__text { color: var(--text-muted); font-size: 18px; line-height: 1.6; max-width: 500px; }
.pace-final__text p { margin: 0; }
.pace-final__trust { display: flex; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
.pace-final__trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 13px; }
.pace-final__trust svg { width: 14px; height: 14px; color: var(--green); }
.pace-final__waitlist {
    position: relative; margin-top: 14px;
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--text-muted); font-size: 13px; cursor: default;
}
.pace-final__waitlist .contact__waitlist-trigger { display: inline-flex; align-items: center; gap: 8px; }
.pace-final__waitlist .contact__waitlist-icon { width: 16px; height: 16px; }
.pace-final__waitlist .contact__waitlist-tooltip {
    display: none;
    position: absolute; bottom: calc(100% + 10px); left: 0;
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    color: var(--text-main); font-size: 13px;
    min-width: 220px;
    box-shadow: var(--shadow-card);
}
.pace-final__waitlist:hover .contact__waitlist-tooltip { display: block; }

/* SEO / DISCLAIMER */
.pace-disclaimer {
    position: relative;
    padding: 56px 0 64px;
    background: linear-gradient(180deg, #050B10 0%, #040A0F 100%);
    color: var(--text-muted);
    overflow: hidden;
}
.pace-disclaimer__line {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: min(90%, var(--container));
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(49, 217, 145, 0.08) 20%,
        rgba(49, 217, 145, 0.45) 50%,
        rgba(49, 217, 145, 0.08) 80%,
        transparent 100%);
    transition: transform 1.6s cubic-bezier(.22, 1, .36, 1) .15s;
}
.pace-disclaimer.is-revealed .pace-disclaimer__line { transform: translateX(-50%) scaleX(1); }
.pace-disclaimer::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, -40%);
    width: 60%; height: 200px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(49, 217, 145, 0.10) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 1.4s ease .3s;
}
.pace-disclaimer.is-revealed::before { opacity: 1; }
.pace-disclaimer__container { position: relative; z-index: 1; }
.pace-disclaimer__head {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 10px;
    margin-bottom: 36px;
}
.pace-disclaimer__title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}
.pace-disclaimer__body {
    columns: 2;
    column-gap: 56px;
    max-width: 1080px;
    margin: 0 auto;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
}
.pace-disclaimer__paragraph {
    break-inside: avoid;
    margin: 0 0 16px;
    transition-delay: calc(var(--pace-step, 0) * 0.08s);
}
.pace-disclaimer__paragraph:last-child { margin-bottom: 0; }
.pace-disclaimer__paragraph a {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(49, 217, 145, 0.4);
    transition: color .2s ease, text-decoration-color .2s ease;
}
.pace-disclaimer__paragraph a:hover { color: var(--green); text-decoration-color: var(--green); }
@media (max-width: 768px) {
    .pace-disclaimer { padding: 56px 0 64px; }
    .pace-disclaimer__body { columns: 1; column-gap: 0; }
    .pace-disclaimer__head { margin-bottom: 26px; }
}

.pace-footer__tagline {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 320px;
}

/* FOOTER */
.pace-footer {
    background: #050B10;
    border-top: 1px solid var(--line-softer);
    padding: 56px 0 32px;
    color: var(--text-muted);
}
.pace-footer__top {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line-softer);
}
.pace-footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.pace-footer__logo { max-height: 32px; width: auto; }
.pace-footer__logo-text { font-size: 32px; }
.pace-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.pace-footer__menu { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.pace-footer__menu a { color: var(--text-muted); font-size: 14px; transition: color .2s ease; }
.pace-footer__menu a:hover { color: var(--green); }
.pace-footer__socials { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.pace-footer__social-text { font-size: 13px; color: var(--text-dim); }
.pace-footer__social-icons { display: flex; gap: 10px; }
.pace-footer__social {
    width: 38px; height: 38px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}
.pace-footer__social img { width: 16px; height: 16px; }
.pace-footer__social:hover { border-color: var(--green); color: var(--green); background: var(--green-soft); }
.pace-footer__bottom {
    display: flex; justify-content: space-between;
    align-items: center; padding-top: 22px;
    flex-wrap: wrap; gap: 14px;
}
.pace-footer__copy, .pace-footer__email { font-size: 12px; color: var(--text-dim); margin: 0; }
.pace-footer__email a { color: var(--text-muted); text-decoration: underline; }
.pace-footer__email a:hover { color: var(--green); }

/* Blog / single post / 404 */

/* ============================================================
   Blog hero — editorial masthead.
   Centered eyebrow with pulsing dot + article count, big title,
   subtitle, and a refined toolbar with eyebrow + filter pills.
   ============================================================ */
.hero--blog {
    position: relative;
    padding: 96px 0 56px;
    background:
        radial-gradient(60% 70% at 50% 0%, rgba(49,217,145,0.10) 0%, transparent 70%),
        var(--bg-main);
    overflow: hidden;
}
.hero--blog::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--card-border-strong, rgba(255,255,255,0.14)) 50%,
        transparent 100%
    );
    pointer-events: none;
}
.hero--blog .hero__inner--blog {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* Eyebrow chip with green pulsing dot + article count */
.hero__blog-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 12px;
    background: rgba(49, 217, 145, 0.06);
    border: 1px solid rgba(49, 217, 145, 0.22);
    border-radius: var(--radius-pill);
    color: var(--green);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.hero__blog-label-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(49, 217, 145, 0.55);
    animation: heroBlogDotPulse 2.2s ease-out infinite;
    flex: 0 0 7px;
}
.hero__blog-label-text { font-weight: 700; }
.hero__blog-label-divider {
    width: 1px;
    height: 10px;
    background: rgba(49, 217, 145, 0.35);
}
.hero__blog-label-count {
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.14em;
}
@keyframes heroBlogDotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(49, 217, 145, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(49, 217, 145, 0); }
    100% { box-shadow: 0 0 0 0 rgba(49, 217, 145, 0); }
}

.hero--blog .hero__title,
.hero--blog .hero__title--blog {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 4px 0 0;
    color: var(--text-main);
    font-weight: 700;
}
.hero--blog .hero__subtitle,
.hero--blog .hero__subtitle--blog {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.55;
    max-width: 560px;
    margin: 0;
}

/* Toolbar: small eyebrow + filter pills row */
.hero__blog-toolbar {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.hero__blog-toolbar-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim, #5F6B72);
    font-weight: 600;
    position: relative;
    padding: 0 20px;
}
.hero__blog-toolbar-eyebrow::before,
.hero__blog-toolbar-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.hero__blog-toolbar-eyebrow::before { right: 100%; }
.hero__blog-toolbar-eyebrow::after  { left: 100%; }

/* Tab-bar filters — no container, just text on a shared baseline.
   Active filter is marked by a glowing green segment of that
   baseline; hover shows a softer half-width preview. */
.hero__blog-filters {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}
.hero__blog-filters::before {
    /* Shared baseline that the active marker sits on. */
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.hero__blog-filter {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    padding: 12px 22px 14px;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .2s ease;
    white-space: nowrap;
    font-family: inherit;
}
.hero__blog-filter::after {
    /* The sliding underline indicator. */
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -1px;
    height: 2px;
    background: var(--green, #31D991);
    box-shadow: 0 0 12px rgba(49, 217, 145, 0.55);
    border-radius: 2px;
    transition: left .35s cubic-bezier(.22, 1, .36, 1),
                right .35s cubic-bezier(.22, 1, .36, 1),
                opacity .25s ease;
    opacity: 0;
}
.hero__blog-filter:hover { color: var(--text-main, #F4F7F6); }
.hero__blog-filter:hover::after {
    left: 28%;
    right: 28%;
    opacity: 0.5;
    background: rgba(49, 217, 145, 0.6);
    box-shadow: none;
}
.hero__blog-filter:focus-visible {
    outline: 2px solid var(--green, #31D991);
    outline-offset: 4px;
    border-radius: 4px;
}
.hero__blog-filter.is-active {
    color: var(--text-main, #F4F7F6);
}
.hero__blog-filter.is-active::after {
    left: 0;
    right: 0;
    opacity: 1;
}
.hero__blog-filter-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}
/* Mono "01 / 02" counter next to each name — green on the active tab. */
.hero__blog-filter-count {
    font-family: var(--font-mono, "SF Mono", Menlo, monospace);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-dim, #5F6B72);
    line-height: 1;
    padding: 3px 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    transition: color .2s ease, background .2s ease;
}
.hero__blog-filter:hover .hero__blog-filter-count {
    color: var(--text-muted, #8B969C);
    background: rgba(255, 255, 255, 0.06);
}
.hero__blog-filter.is-active .hero__blog-filter-count {
    color: var(--green, #31D991);
    background: rgba(49, 217, 145, 0.10);
}

/* ============================================================
   Blog list grid + editorial card.
   Image with floating index + category chip; content has a meta
   strip (date · read-time), title, excerpt, and a CTA pinned to
   the bottom that extends on hover.
   ============================================================ */
.blog-list { padding: 80px 0 100px; background: var(--bg-main); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .3s ease, transform .3s ease,
                box-shadow .3s ease, background .3s ease;
}
.blog-card::before {
    /* Subtle green accent line that slides in from the left on hover. */
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--green, #31D991);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    z-index: 2;
    pointer-events: none;
}
.blog-card:hover {
    border-color: rgba(49, 217, 145, 0.30);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    background: rgba(14, 26, 34, 0.85);
}
.blog-card:hover::before { transform: scaleY(1); }
.blog-card:focus-within {
    border-color: rgba(49, 217, 145, 0.45);
}

/* Image wrapper — taller crop, with a soft gradient mask at the
   bottom so the meta strip feels connected to it. */
.blog-card__image-link {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--card-border);
}
.blog-card__image-link::after {
    /* Soft fade into the card background to remove the hard image edge. */
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 26, 34, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: .9;
}
.blog-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.blog-card:hover .blog-card__image { transform: scale(1.06); }
.blog-card__image--placeholder {
    background: linear-gradient(135deg, rgba(49,217,145,0.10), rgba(255,122,69,0.10));
}

/* Category chip on the image bottom-left */
.blog-card__category-chip {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px 5px 9px;
    background: rgba(7, 16, 21, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    color: var(--text-main, #F4F7F6);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.blog-card__category-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green, #31D991);
    box-shadow: 0 0 8px rgba(49, 217, 145, 0.55);
    flex: 0 0 6px;
}

/* Content area */
.blog-card__content {
    padding: 22px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.blog-card__top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Meta strip — date · read time, mono / uppercase */
.blog-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim, #5F6B72);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}
.blog-card__date {
    margin: 0;
    font-family: var(--font-mono, "SF Mono", Menlo, monospace);
    color: var(--text-muted, #8B969C);
    letter-spacing: 0.14em;
}
.blog-card__meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}
.blog-card__read-time { letter-spacing: 0.14em; }

/* Title + excerpt */
.blog-card__title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.012em;
    margin: 0;
}
.blog-card__title a {
    color: var(--text-main);
    transition: color .2s ease;
    background-image: linear-gradient(var(--green, #31D991), var(--green, #31D991));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size .35s cubic-bezier(.22, 1, .36, 1), color .2s ease;
}
.blog-card:hover .blog-card__title a { color: var(--text-main); background-size: 100% 1px; }
.blog-card__title a:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; border-radius: 2px; }
.blog-card__excerpt {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA pinned to bottom — arrow extends on hover */
.blog-card__cta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    color: var(--green, #31D991);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: gap .25s ease, color .2s ease;
}
.blog-card__cta-arrow {
    width: 14px;
    height: 14px;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.blog-card:hover .blog-card__cta,
.blog-card__cta:hover { color: var(--green-bright, #5FE2A8); gap: 12px; }
.blog-card:hover .blog-card__cta-arrow,
.blog-card__cta:hover .blog-card__cta-arrow { transform: translateX(4px); }
.blog-card__cta:focus-visible {
    outline: 2px solid var(--green, #31D991);
    outline-offset: 4px;
    border-radius: 2px;
}

.pace-article { position: relative; }
.pace-article__category {
    position: absolute; top: 14px; left: 14px;
    padding: 6px 12px;
    background: rgba(7, 16, 21, 0.78);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green); font-weight: 600;
}
.pace-article__cta {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green); font-weight: 600; font-size: 13px;
    margin-top: 4px;
    transition: gap .2s ease;
}
.pace-article__cta svg { width: 14px; height: 14px; transition: transform .2s ease; }
.pace-article__cta:hover { color: var(--green-bright); gap: 10px; }
.pace-article__cta:hover svg { transform: translateX(2px); }

/* ============================================================
   Blog pagination — refined pill with arrow chips at the ends.
   ============================================================ */
.blog-pagination {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.blog-pagination__list {
    list-style: none;
    margin: 0;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(14, 26, 34, 0.6);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-pill);
    box-shadow: 0 18px 40px -28px rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.blog-pagination__item { display: inline-flex; }
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-mono, "SF Mono", Menlo, monospace);
    letter-spacing: 0.04em;
    transition: background .2s ease, color .2s ease,
                box-shadow .25s ease, transform .2s ease;
    text-decoration: none;
}
.blog-pagination .page-numbers:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}
.blog-pagination .page-numbers.current {
    background: var(--green);
    color: #06141B;
    font-weight: 700;
    box-shadow: 0 8px 22px -10px rgba(49, 217, 145, 0.5);
}
.blog-pagination .page-numbers.dots {
    color: var(--text-dim, #5F6B72);
    cursor: default;
    background: transparent;
    letter-spacing: 0.18em;
    pointer-events: none;
}
/* Prev / next live inside the pill but feel like dedicated arrow keys */
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    width: 38px;
    min-width: 38px;
    padding: 0;
    font-size: 15px;
    color: var(--text-main, #F4F7F6);
    background: rgba(255, 255, 255, 0.04);
}
.blog-pagination a.page-numbers.prev:hover,
.blog-pagination a.page-numbers.next:hover {
    color: var(--green);
    background: rgba(49, 217, 145, 0.10);
    transform: translateY(-1px);
}
.blog-pagination span.page-numbers.prev,
.blog-pagination span.page-numbers.next {
    opacity: 0.35;
    cursor: not-allowed;
    background: transparent;
}
/* Add a small breathing gap between arrow chips and numbers */
.blog-pagination__item.is-prev { margin-right: 4px; }
.blog-pagination__item.is-next { margin-left: 4px; }

.blog-list__empty {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 0;
    font-size: 15px;
}

/* ============================================================
   Single post — editorial redesign.
   Same dark palette + green accent, restructured to feel like
   a magazine page: back-link, category eyebrow with pulsing
   dot, big title, mono meta strip, featured image with chip,
   sidebar TOC with vertical green track + numbered items, and
   refined share chips.
   ============================================================ */
.single-post-page {
    padding: 56px 0 100px;
    background: var(--bg-main);
}

/* Header block */
.single-post__hero {
    max-width: 960px;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.single-post__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 8px 14px 8px 12px;
    background: rgba(14, 26, 34, 0.6);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, gap .25s ease,
                background .2s ease, transform .2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.single-post__back-arrow {
    width: 14px;
    height: 14px;
    transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.single-post__back:hover {
    color: var(--green);
    border-color: rgba(49, 217, 145, 0.35);
    background: rgba(49, 217, 145, 0.06);
    gap: 10px;
    transform: translateX(-1px);
}
.single-post__back:hover .single-post__back-arrow { transform: translateX(-3px); }

/* Eyebrow with pulsing green dot — same vocabulary as blog hero */
.single-post__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 7px 14px 7px 12px;
    background: rgba(49, 217, 145, 0.06);
    border: 1px solid rgba(49, 217, 145, 0.22);
    border-radius: var(--radius-pill);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.single-post__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(49, 217, 145, 0.55);
    animation: heroBlogDotPulse 2.2s ease-out infinite;
    flex: 0 0 7px;
}
.single-post__eyebrow-text { font-weight: 700; }

/* Title */
.single-post__title {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 6px 0 0;
    color: var(--text-main);
    max-width: 920px;
    font-weight: 700;
}

/* Meta strip — mono date · read · words */
.single-post__meta-row {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}
.single-post__meta-item {
    font-family: var(--font-mono, "SF Mono", Menlo, monospace);
    letter-spacing: 0.14em;
}
.single-post__meta-item--date { color: var(--text-main, #F4F7F6); }
.single-post__meta-item--words { color: var(--text-dim, #5F6B72); }
.single-post__meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

/* Featured image with chip overlay + bottom gradient fade */
.single-post__featured {
    position: relative;
    margin: 0 0 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: rgba(255,255,255,0.02);
    box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}
.single-post__featured::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 35%;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 16, 21, 0.5) 100%);
    pointer-events: none;
}
.single-post__featured-image { width: 100%; height: auto; display: block; }
.single-post__featured-chip {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px 6px 10px;
    background: rgba(7, 16, 21, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    color: var(--text-main, #F4F7F6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.single-post__featured-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(49, 217, 145, 0.6);
    flex: 0 0 6px;
}

/* Layout */
.single-post__layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}
.single-post__sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ============================================================
   TOC — vertical green track with sliding marker + numbered items
   ============================================================ */
.single-post__toc {
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 0;
}
.single-post__toc-title,
.single-post__share-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin: 0 0 16px;
    padding: 0;
}
.single-post__toc-title-dot,
.single-post__share-title-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(49, 217, 145, 0.55);
    flex: 0 0 6px;
}
.single-post__toc-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}
.single-post__toc-item {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.single-post__toc-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 8px 9px 0;
    color: var(--text-muted, #8B969C);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s ease, transform .25s ease;
    position: relative;
}
.single-post__toc-link::before {
    /* Sliding green marker on the vertical track */
    content: "";
    position: absolute;
    left: -19px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 2px;
    height: 22px;
    border-radius: 999px;
    background: var(--green, #31D991);
    box-shadow: 0 0 10px rgba(49, 217, 145, 0.55);
    transform-origin: center;
    transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .25s ease;
    opacity: 0;
}
.single-post__toc-link:hover {
    color: var(--text-main, #F4F7F6);
    transform: translateX(2px);
}
.single-post__toc-link.is-active {
    color: var(--text-main, #F4F7F6);
}
.single-post__toc-link.is-active::before {
    transform: translateY(-50%) scaleY(1);
    opacity: 1;
}
.single-post__toc-num {
    flex: 0 0 24px;
    font-family: var(--font-mono, "SF Mono", Menlo, monospace);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim, #5F6B72);
    letter-spacing: 0.06em;
    padding-top: 2px;
    transition: color .2s ease;
}
.single-post__toc-link.is-active .single-post__toc-num,
.single-post__toc-link:hover .single-post__toc-num {
    color: var(--green, #31D991);
}
.single-post__toc-text {
    flex: 1;
    overflow-wrap: anywhere;
}

/* ============================================================
   Share block — refined square chips, gentle green glow on hover
   ============================================================ */
.single-post__share {
    background: transparent;
    border: 0;
    padding: 18px 0 0;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.single-post__share-links {
    display: flex;
    gap: 8px;
    align-items: center;
}
.single-post__share-link,
.single-post__share-web {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s ease, background .25s ease,
                transform .2s ease, box-shadow .25s ease;
    cursor: pointer;
    padding: 0;
}
.single-post__share-link img,
.single-post__share-web img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(0.85);
    transition: filter .25s ease, transform .25s ease;
}
.single-post__share-link:hover,
.single-post__share-web:hover {
    border-color: rgba(49, 217, 145, 0.45);
    background: rgba(49, 217, 145, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -16px rgba(49, 217, 145, 0.4);
}
.single-post__share-link:hover img,
.single-post__share-web:hover img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(70%)
            saturate(389%) hue-rotate(96deg) brightness(95%) contrast(90%);
    transform: scale(1.06);
}
.single-post__share-link:focus-visible,
.single-post__share-web:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.single-post__content { color: var(--text-main); font-size: 17px; line-height: 1.8; max-width: 760px; }
.single-post__content > * + * { margin-top: 20px; }
.single-post__content h2 { font-size: 28px; margin-top: 48px; margin-bottom: 12px; color: var(--text-main); line-height: 1.2; }
.single-post__content h3 { font-size: 22px; margin-top: 36px; margin-bottom: 10px; color: var(--text-main); }
.single-post__content p { color: var(--text-main); }
.single-post__content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.single-post__content a:hover { color: var(--green-bright); }
.single-post__content blockquote {
    border-left: 3px solid var(--green);
    padding: 8px 22px;
    margin: 32px 0;
    color: var(--text-muted);
    font-size: 18px;
    font-style: italic;
    background: var(--green-soft);
    border-radius: 0 12px 12px 0;
}
.single-post__content ul,
.single-post__content ol { padding-left: 22px; }
.single-post__content ul { list-style: disc; }
.single-post__content ol { list-style: decimal; }
.single-post__content li { color: var(--text-main); margin: 8px 0; }
.single-post__content img,
.single-post__content figure {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 28px 0;
    border: 1px solid var(--card-border);
}
.single-post__content code {
    font-family: var(--font-mono);
    font-size: 0.92em;
    background: rgba(255,255,255,0.06);
    padding: 2px 8px;
    border-radius: 6px;
    color: var(--green);
}
.single-post__content pre {
    background: var(--bg-section);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    overflow-x: auto;
    color: var(--text-main);
}
/* ============================================================
   "Keep reading" — related-posts head + grid.
   Cards inside use the redesigned .blog-card from the blog page.
   ============================================================ */
.single-post__more {
    padding: 96px 0 80px;
    background: var(--bg-section);
    border-top: 1px solid var(--line-softer);
    position: relative;
}
.single-post__more::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(49, 217, 145, 0.25) 50%,
        transparent 100%
    );
    pointer-events: none;
}
.single-post__more-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}
.single-post__more-head-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.single-post__more-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
}
.single-post__more-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(49, 217, 145, 0.55);
}
.single-post__more-title {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-main);
    font-weight: 700;
    margin: 0;
}
.single-post__more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px 10px 18px;
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-pill);
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s ease, border-color .25s ease,
                background .25s ease, gap .25s ease, transform .2s ease;
}
.single-post__more-link-arrow {
    width: 14px;
    height: 14px;
    transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.single-post__more-link:hover {
    color: var(--green-bright, #5FE2A8);
    border-color: rgba(49, 217, 145, 0.45);
    background: rgba(49, 217, 145, 0.06);
    gap: 12px;
}
.single-post__more-link:hover .single-post__more-link-arrow {
    transform: translateX(4px);
}

/* 404 */
.site__main--404 { padding: 120px 0; background: var(--bg-main); }
.error-404 { text-align: center; max-width: 460px; margin: 0 auto; }
.error-404__title {
    font-size: clamp(96px, 16vw, 180px);
    line-height: 1; margin-bottom: 16px;
    color: var(--green);
    letter-spacing: -0.06em;
}
.error-404__text { color: var(--text-muted); font-size: 18px; margin: 6px 0; }
.error-404__link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px;
    padding: 12px 24px;
    background: var(--green);
    color: #06141B !important;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: transform .2s ease;
}
.error-404__link:hover { transform: translateY(-2px); }

/* Helpers */
.contact__waitlist { position: relative; }
.contact__waitlist-tooltip {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    color: var(--text-muted);
    font-size: 13px;
}
.d-none { display: none !important; }
.d-block { display: block; }
.hero__form { max-width: 480px; }
