/* ---------------------------------------------------------------------------
   OffLoad AI — American Heritage Trade Co.
   Refined, warm, classical. EB Garamond throughout. Cream backgrounds.
   --------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
    /* Brand */
    --navy: #1F3D52;
    --navy-deep: #15293A;
    --navy-soft: #335A75;
    --coral: #B7423B;
    --coral-deep: #913028;
    --gold: #7A6228;

    /* Paper system — warm, never gray */
    --cream: #F5EEDF;
    --cream-deep: #ECE2CC;
    --cream-light: #FAF5E9;
    --paper: #FCFAF4;
    --paper-edge: #DDD2BB;

    --ink: #2C2925;
    --ink-soft: #5C544A;
    --ink-faint: #6E665A;
    --rule: #D9CDB4;
    --rule-faint: #E8DEC9;

    /* Type */
    --font-display: "EB Garamond", "Adobe Garamond Pro", Garamond, "Times New Roman", serif;
    --font-body: "EB Garamond", Garamond, Georgia, serif;
    --font-label: "EB Garamond", Garamond, serif;
    --font-ui: "Geist", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "Geist Mono", "JetBrains Mono", "SF Mono", Menlo, monospace;

    /* Layout */
    --container-max: 1180px;
    --container-narrow: 880px;
    --container-pad: clamp(20px, 4vw, 56px);
    --section-pad: clamp(72px, 9vw, 128px);

    --ease: cubic-bezier(0.2, 0.65, 0.2, 1);

    /* Soft neumorphic depth — letterpress, not Dribbble.
       Warm shadow (paper grain) below-right + cream highlight above-left. */
    --shadow-raised:
        6px 8px 20px rgba(82, 56, 22, 0.07),
        -3px -4px 12px rgba(255, 250, 238, 0.85),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    --shadow-raised-hover:
        10px 14px 32px rgba(82, 56, 22, 0.10),
        -4px -6px 16px rgba(255, 250, 238, 0.95),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --shadow-raised-soft:
        3px 4px 12px rgba(82, 56, 22, 0.05),
        -2px -2px 8px rgba(255, 250, 238, 0.7);
    --shadow-pressed:
        inset 4px 5px 12px rgba(82, 56, 22, 0.08),
        inset -2px -3px 8px rgba(255, 250, 238, 0.6);
    --shadow-inset:
        inset 3px 4px 10px rgba(82, 56, 22, 0.06),
        inset -1px -1px 4px rgba(255, 250, 238, 0.5);
    --shadow-emboss:
        2px 3px 5px rgba(82, 56, 22, 0.10),
        -1px -1px 2px rgba(255, 250, 238, 0.6);
    --shadow-navy-raised:
        6px 8px 20px rgba(15, 28, 40, 0.25),
        -2px -3px 10px rgba(75, 105, 130, 0.18);
    --shadow-coral-raised:
        4px 6px 16px rgba(140, 50, 45, 0.22),
        -1px -2px 6px rgba(220, 140, 130, 0.18);

    /* Conversion / glassmorphism palette */
    --sage: #5C7E5A;
    --sage-soft: #D8E3D5;
    --sage-deep: #44613F;

    --glass-bg: rgba(252, 250, 244, 0.55);
    --glass-bg-strong: rgba(252, 250, 244, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow:
        0 24px 60px -20px rgba(31, 61, 82, 0.22),
        0 6px 20px -8px rgba(31, 61, 82, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    background: var(--cream);
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
    text-rendering: optimizeLegibility;
}

/* Cross-link pills for cities <-> industries landing pages */
.cross-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.cross-links a {
    display: inline-block;
    padding: 10px 18px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-ui, "Geist", system-ui, sans-serif);
    font-size: 13px;
    letter-spacing: 0.02em;
    transition: all 200ms ease;
}
.cross-links a:hover {
    background: var(--coral);
    color: var(--cream-light);
    border-color: var(--coral);
    transform: translateY(-1px);
}
.cross-links a:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
}

/* Accessibility: skip-to-content link, visible only on keyboard focus */
.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--navy);
    color: var(--cream);
    font-family: var(--font-ui, "Geist", system-ui, sans-serif);
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    transition: top 150ms ease-out;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 12px;
    outline: 2px solid var(--coral);
    outline-offset: 2px;
}

/* Accessibility: visible focus indicator for keyboard users on all interactive elements */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
    border-radius: 2px;
}
/* Suppress focus ring for mouse-only clicks (modern browsers honor :focus-visible automatically) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Screen-reader-only helper for visually-hidden labels */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

::selection {
    background: var(--navy);
    color: var(--cream-light);
}

hr { border: none; }

/* ---------------------------------------------------------------------------
   Layout primitives
   --------------------------------------------------------------------------- */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
    position: relative;
}

.section--paper { background: var(--paper); }
.section--cream-deep { background: var(--cream-deep); }
.section--navy { background: var(--navy); color: var(--cream-light); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--cream-light); }

.rule {
    height: 1px;
    background: var(--rule);
}

/* Decorative center ornament */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--coral);
    margin: 0 auto;
}

.ornament::before, .ornament::after {
    content: "";
    height: 1px;
    flex: 0 0 56px;
    background: currentColor;
}

.ornament__mark {
    font-size: 11px;
    letter-spacing: 0.3em;
}

/* ---------------------------------------------------------------------------
   Type — refined, smaller, more humane
   --------------------------------------------------------------------------- */

.eyebrow {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--coral);
    display: inline-block;
}

.eyebrow--ink { color: var(--ink-soft); }
.eyebrow--cream { color: var(--cream); opacity: 0.75; }

h1, .h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.6vw, 60px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.012em;
    color: var(--ink);
}

h2, .h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.008em;
    color: var(--ink);
}

h3, .h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 26px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--ink);
}

h4, .h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
}

.lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 60ch;
    font-weight: 400;
}

.body { font-size: 17px; line-height: 1.65; color: var(--ink); }
.body p + p { margin-top: 1em; }

em, .accent-italic {
    font-style: italic;
    color: var(--coral);
    font-weight: 500;
}

.coral { color: var(--coral); }
.navy { color: var(--navy); }
.gold { color: var(--gold); }

/* Refined small-caps label */
.label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-soft);
}

/* Old-style numerals headline */
.numeral {
    font-family: var(--font-display);
    font-feature-settings: "onum" 1, "lnum" 0;
    font-weight: 500;
}

/* ---------------------------------------------------------------------------
   Buttons — restrained, classical
   --------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid var(--paper-edge);
    background: var(--paper);
    color: var(--ink);
    border-radius: 6px;
    transition: all 250ms var(--ease);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    box-shadow: var(--shadow-raised-soft);
}

.btn:hover {
    background: var(--cream-light);
    color: var(--coral);
    border-color: var(--paper-edge);
    transform: translateY(-1px);
    box-shadow: var(--shadow-raised);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-pressed);
}

.btn-primary {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--cream-light);
    box-shadow: var(--shadow-navy-raised);
}
.btn-primary:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--cream-light);
}

.btn-coral {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--cream-light);
    box-shadow: var(--shadow-coral-raised);
}
.btn-coral:hover {
    background: var(--coral-deep);
    border-color: var(--coral-deep);
    color: var(--cream-light);
}

.btn-cream {
    background: var(--cream-light);
    border-color: var(--paper-edge);
    color: var(--ink);
    box-shadow: var(--shadow-raised-soft);
}
.btn-cream:hover { background: var(--paper); }

.btn-outline-cream {
    border-color: rgba(245, 238, 223, 0.4);
    color: var(--cream-light);
    background: transparent;
    box-shadow: none;
}
.btn-outline-cream:hover {
    background: rgba(245, 238, 223, 0.08);
    color: var(--cream-light);
    border-color: rgba(245, 238, 223, 0.7);
    box-shadow: none;
}

.link {
    color: var(--coral);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    font-style: italic;
}
.link:hover { color: var(--coral-deep); }

/* ---------------------------------------------------------------------------
   Navigation — classical, prominent logo
   --------------------------------------------------------------------------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 238, 223, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
}

.nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 24px;
}

.nav__logo {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__logo img {
    height: 40px;
    width: auto;
}

.nav__links {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 36px;
    justify-self: start;
}

.nav__cta-wrap {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: end;
}

.nav__link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 200ms var(--ease);
    position: relative;
    padding-bottom: 2px;
}

.nav__link:hover { color: var(--coral); }

.nav__link.active {
    color: var(--coral);
    border-bottom: 1px solid var(--coral);
}

.nav__cta {
    padding: 9px 20px;
    font-size: 11px;
    letter-spacing: 0.22em;
}

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 5px;
    padding: 16px 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.nav__toggle span {
    height: 1px;
    background: var(--ink);
    transition: all 200ms var(--ease);
}

@media (max-width: 980px) {
    .nav__inner { grid-template-columns: auto 1fr auto; }
    .nav__links { display: none; grid-column: 1; }
    .nav__logo { justify-self: start; grid-column: 2; justify-content: flex-start; }
    .nav__logo img { height: 32px; }
    .nav__cta-wrap { gap: 12px; }
    .nav__cta { display: none; }
    .nav__toggle { display: flex; }
    .nav__links.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--cream);
        padding: 16px var(--container-pad) 24px;
        border-bottom: 1px solid var(--rule);
    }
    .nav__links.is-open .nav__link {
        padding: 16px 0;
        width: 100%;
        border-bottom: 1px solid var(--rule-faint);
    }
}

/* ---------------------------------------------------------------------------
   Hero — centered, refined, magazine-style
   --------------------------------------------------------------------------- */

.hero {
    padding-top: clamp(72px, 10vw, 128px);
    padding-bottom: clamp(72px, 10vw, 128px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero__crest {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--paper);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow-raised);
}

.hero__est {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 32px;
}

.hero__est-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--coral);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero__est-rule::before, .hero__est-rule::after {
    content: "";
    height: 1px;
    width: 48px;
    background: currentColor;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: var(--ink);
    max-width: 18ch;
    margin: 0 auto;
}

.hero__title em {
    color: var(--coral);
    font-weight: 500;
}

.hero__sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 28px auto 0;
}

.hero__ctas {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__detail-rule {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
    flex-wrap: wrap;
}

.hero__detail-rule span { display: inline-flex; align-items: center; gap: 10px; }
.hero__detail-rule span::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--coral);
    border-radius: 50%;
}

/* ---------------------------------------------------------------------------
   Section header — centered, refined, ornament
   --------------------------------------------------------------------------- */

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(56px, 7vw, 88px);
}

.section-head__ornament {
    color: var(--coral);
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-head__ornament::before, .section-head__ornament::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
}

.section-head__title {
    margin-bottom: 20px;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}

.section-head__title em {
    color: var(--coral);
    font-style: italic;
    font-weight: 500;
}

.section-head__lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0 auto;
    font-style: italic;
    font-weight: 400;
}

.section-head--left {
    text-align: left;
    max-width: none;
    margin-left: 0;
}
.section-head--left .section-head__title { margin-left: 0; }
.section-head--left .section-head__ornament::before { content: ""; }

/* ---------------------------------------------------------------------------
   Marquee — small caps, ornament separators
   --------------------------------------------------------------------------- */

.strip {
    background: var(--cream-deep);
    color: var(--ink);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.strip__track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: scroll-x 48s linear infinite;
    width: max-content;
}

.strip__item {
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
}

.strip__item::after {
    content: "✦";
    color: var(--coral);
    font-size: 11px;
    margin-left: 64px;
}

@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------------------
   Cost / problem block — narrow, classical
   --------------------------------------------------------------------------- */

.cost-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cost-block__cell {
    padding: 44px 32px;
    text-align: center;
    background: var(--paper);
    border-radius: 12px;
    box-shadow: var(--shadow-raised);
    transition: all 300ms var(--ease);
}
.cost-block__cell:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-raised-hover);
}

.cost-block__num {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.4vw, 56px);
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 12px;
    font-feature-settings: "onum" 1;
}

.cost-block__num em {
    font-style: italic;
    color: var(--coral);
    font-weight: 500;
}

.cost-block__label {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
    font-weight: 500;
}

.cost-block__cell p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 28ch;
    margin: 0 auto;
    font-style: italic;
}

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

/* ---------------------------------------------------------------------------
   Approach — magazine-style four columns
   --------------------------------------------------------------------------- */

.approach {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px clamp(20px, 3vw, 48px);
}

.approach__cell { text-align: center; }

.approach__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 32px;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 16px;
    font-feature-settings: "onum" 1;
}

.approach__rule {
    width: 32px;
    height: 1px;
    background: var(--coral);
    margin: 0 auto 20px;
}

.approach__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 12px;
}

.approach__cell p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 28ch;
    margin: 0 auto;
}

@media (max-width: 880px) { .approach { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
@media (max-width: 540px) { .approach { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   Tiers — classical pricing cards
   --------------------------------------------------------------------------- */

.tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 12px;
    padding: 44px 36px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    transition: all 300ms var(--ease);
    box-shadow: var(--shadow-raised);
}

.tier:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised-hover);
}

.tier--featured {
    background: var(--navy);
    color: var(--cream-light);
    border: 2px solid var(--coral);
    box-shadow: var(--shadow-navy-raised);
    transform: translateY(-10px);
    z-index: 2;
}
.tier--featured:hover {
    transform: translateY(-13px);
    box-shadow:
        10px 14px 32px rgba(15, 28, 40, 0.32),
        -3px -4px 12px rgba(75, 105, 130, 0.22);
}
@media (max-width: 880px) {
    .tier--featured { transform: none; }
    .tier--featured:hover { transform: translateY(-3px); }
}
.tier--featured .tier__price,
.tier--featured .tier__name { color: var(--cream-light); }
.tier--featured .tier__caption,
.tier--featured .tier__retainer,
.tier--featured .tier__price-label,
.tier--featured .tier__list-item { color: rgba(245, 238, 223, 0.85); }
.tier--featured .tier__list-item::before { color: var(--coral); }
.tier--featured .tier__divider { background: rgba(245, 238, 223, 0.2); }

.tier__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: var(--cream-light);
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 5px 14px;
}

.tier__name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
}

.tier__caption {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 28px;
}

.tier__price {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    font-feature-settings: "onum" 1;
}

.tier__price .currency {
    font-size: 0.45em;
    vertical-align: 0.4em;
    margin-right: 4px;
    color: var(--ink-soft);
}

.tier--featured .tier__price .currency { color: rgba(245, 238, 223, 0.6); }

.tier__price-label {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 6px;
}

.tier__retainer {
    margin-top: 14px;
    font-size: 14px;
    color: var(--ink-soft);
    font-style: italic;
}
.tier__retainer strong {
    font-style: normal;
    color: var(--ink);
    font-weight: 600;
}
.tier--featured .tier__retainer strong { color: var(--cream-light); }

.tier__divider {
    height: 1px;
    background: var(--rule);
    margin: 28px 0 24px;
}

.tier__list {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
    text-align: left;
}

.tier__list-item {
    padding: 8px 0 8px 22px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    position: relative;
}

.tier__list-item::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-size: 11px;
    top: 11px;
}

.tier .btn { width: 100%; justify-content: center; }

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

/* ---------------------------------------------------------------------------
   Case study
   --------------------------------------------------------------------------- */

.case {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
}

.case__visual {
    background: var(--navy);
    color: var(--cream-light);
    padding: 56px 44px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--shadow-navy-raised);
}

.case__visual-meta {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 238, 223, 0.7);
    margin-bottom: 36px;
    text-align: center;
}

.case__visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: center;
}

.case__visual-stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
    font-feature-settings: "onum" 1;
}

.case__visual-stat-num em { color: var(--coral); font-weight: 500; }

.case__visual-stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(245, 238, 223, 0.75);
    line-height: 1.4;
    font-style: italic;
}

.case__visual-divider {
    height: 1px;
    background: rgba(245, 238, 223, 0.18);
    margin: 32px 0;
}

.case__intro {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 28px;
    font-weight: 500;
    font-style: italic;
}

.case__intro em {
    color: var(--coral);
}

.case__list {
    list-style: none;
    border-top: 1px solid var(--rule);
}

.case__list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: baseline;
}

.case__list-name {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--coral);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
}

.case__list-desc {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.55;
}

@media (max-width: 980px) {
    .case { grid-template-columns: 1fr; }
    .case__list li { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------------------------------------------------------------------------
   CTA band — refined navy with cream type
   --------------------------------------------------------------------------- */

.cta-band {
    background: var(--navy);
    color: var(--cream-light);
    padding: clamp(72px, 9vw, 120px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band h2 {
    color: var(--cream-light);
    margin-bottom: 24px;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-band h2 em {
    color: var(--coral);
    font-weight: 500;
}

.cta-band p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(245, 238, 223, 0.8);
    max-width: 56ch;
    margin: 0 auto 36px;
    font-style: italic;
}

.cta-band__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer {
    background: var(--navy-deep);
    color: rgba(245, 238, 223, 0.75);
    padding: 64px 0 32px;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 238, 223, 0.1);
}

.footer__brand img { width: 160px; margin-bottom: 16px; }
.footer__slogan {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 19px;
    font-weight: 500;
    color: var(--coral);
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.005em;
}
.footer__tagline {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(245, 238, 223, 0.55);
    max-width: 36ch;
    font-style: italic;
}

.footer__col-title {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 238, 223, 0.5);
    margin-bottom: 18px;
    font-weight: 500;
}

.footer__list { list-style: none; display: grid; gap: 10px; }
.footer__list a {
    font-size: 14px;
    color: rgba(245, 238, 223, 0.8);
    transition: color 200ms var(--ease);
}
.footer__list a:hover { color: var(--coral); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 238, 223, 0.45);
}

.footer__bottom .accent { color: var(--coral); }

@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) {
    .footer__top { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------------------------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------------------------- */

.js-anim .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js-anim .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js-anim .reveal { opacity: 1; transform: none; transition: none; }

    /* Disable all ambient + decorative animations for users who prefer reduced motion */
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        animation-delay: 0ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    /* Ambient looping animations: stop dead rather than snap to a frame */
    .mesh-blob,
    .orb,
    .mockup-card,
    .comp-arrow svg,
    .strip__track,
    .live-pulse,
    .typing-dots,
    .mockup-notif {
        animation: none !important;
        transform: none !important;
    }
}

/* ---------------------------------------------------------------------------
   Page header (sub pages) — refined editorial
   --------------------------------------------------------------------------- */

.page-header {
    padding-top: clamp(64px, 8vw, 112px);
    padding-bottom: clamp(40px, 6vw, 72px);
    text-align: center;
    border-bottom: 1px solid var(--rule);
}

.page-header__eyebrow {
    margin-bottom: 20px;
}

.page-header h1 {
    max-width: 22ch;
    margin: 0 auto 24px;
}

.page-header h1 em { color: var(--coral); font-weight: 500; }

.page-tagline {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.9vw, 22px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--coral);
    text-align: center;
    margin: -8px auto 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.page-tagline::before,
.page-tagline::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--coral);
    opacity: 0.5;
}

.page-header__lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 0 auto;
    font-style: italic;
}

/* ---------------------------------------------------------------------------
   Discovery phases
   --------------------------------------------------------------------------- */

.phases {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--rule);
}

.phase {
    padding: 56px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 100px minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: start;
}

.phase__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    color: var(--coral);
    font-feature-settings: "onum" 1;
}

.phase__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 14px;
}

.phase__time {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--coral);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
    font-weight: 500;
}

.phase__body p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.phase__detail {
    background: var(--cream);
    padding: 28px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: var(--shadow-inset);
}
.phase__detail strong {
    display: block;
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 14px;
    font-weight: 500;
}
.phase__detail ul { list-style: none; }
.phase__detail li {
    padding: 6px 0 6px 16px;
    position: relative;
    color: var(--ink);
}
.phase__detail li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-size: 10px;
    top: 8px;
}

@media (max-width: 880px) {
    .phase {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
    .phase__num { font-size: 48px; margin-bottom: 12px; }
}

/* ---------------------------------------------------------------------------
   Workflows — refined catalog
   --------------------------------------------------------------------------- */

.workflows {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.workflow {
    background: var(--paper);
    padding: 32px 28px;
    transition: all 250ms var(--ease);
    border-radius: 10px;
    box-shadow: var(--shadow-raised-soft);
}
.workflow:hover {
    background: var(--cream-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-raised);
}

.workflow__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--coral);
    margin-bottom: 14px;
    font-feature-settings: "onum" 1;
    display: block;
}

.workflow__title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.25;
}

.workflow p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    font-style: italic;
}

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

/* ---------------------------------------------------------------------------
   Report card
   --------------------------------------------------------------------------- */

.report-card {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 14px;
    padding: clamp(36px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    box-shadow: var(--shadow-raised);
}

.report-card__sections {
    list-style: none;
    counter-reset: rc;
}
.report-card__sections li {
    counter-increment: rc;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    align-items: baseline;
}
.report-card__sections li:last-child { border-bottom: none; }
.report-card__sections li::before {
    content: counter(rc, decimal-leading-zero);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    color: var(--coral);
    font-feature-settings: "onum" 1;
}
.report-card__sections li strong,
.report-card__sections li span {
    grid-column: 2;
}
.report-card__sections li strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}
.report-card__sections li span {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    font-style: italic;
}

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

/* ---------------------------------------------------------------------------
   Founder block
   --------------------------------------------------------------------------- */

.founder {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.founder__card {
    background: var(--paper);
    padding: 40px 36px;
    border: 1px solid var(--paper-edge);
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-raised);
}

.founder__crest {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 14px;
    padding: 8px;
    box-shadow: var(--shadow-inset);
}

.founder__name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}

.founder__role {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 15px;
    color: var(--coral);
    margin-bottom: 28px;
}

.founder__facts {
    list-style: none;
    border-top: 1px solid var(--rule);
    text-align: left;
}
.founder__facts li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: baseline;
}
.founder__facts li:last-child { border-bottom: none; }
.founder__facts li span:first-child {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--ink-soft);
    text-transform: uppercase;
    font-weight: 500;
}
.founder__facts li span:last-child {
    font-size: 14px;
    color: var(--ink);
    text-align: right;
}

.founder__body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 18px;
}
.founder__body p:first-child {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ink);
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
}

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

/* ---------------------------------------------------------------------------
   Contact form
   --------------------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.contact-info { padding-top: 8px; }
.contact-info__row {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
}
.contact-info__label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--ink-soft);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 500;
}
.contact-info__value {
    font-size: 18px;
    color: var(--ink);
}
.contact-info__value a:hover { color: var(--coral); }

.form {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 14px;
    padding: clamp(28px, 4vw, 44px);
    display: grid;
    gap: 20px;
    box-shadow: var(--shadow-raised);
}

.form__row { display: grid; gap: 8px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form__label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    color: var(--ink);
    font-family: var(--font-body);
    transition: all 200ms var(--ease);
    box-shadow: var(--shadow-inset);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: var(--shadow-inset), 0 0 0 3px rgba(183, 66, 59, 0.1);
}

.form__textarea { min-height: 120px; resize: vertical; line-height: 1.5; }

.form__radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form__radio {
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid var(--paper-edge);
    border-radius: 8px;
    cursor: pointer;
    transition: all 200ms var(--ease);
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    box-shadow: var(--shadow-raised-soft);
}
.form__radio:hover {
    background: var(--paper);
    transform: translateY(-1px);
    box-shadow: var(--shadow-raised);
}
.form__radio input { position: absolute; opacity: 0; }
.form__radio:has(input:checked) {
    border-color: var(--coral);
    background: var(--paper);
    box-shadow: var(--shadow-pressed);
    transform: none;
}
.form__radio:has(input:checked) span { color: var(--coral); font-weight: 600; }

@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form__row--2 { grid-template-columns: 1fr; }
    .form__radio-group { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Calculator / Quick Audit
   --------------------------------------------------------------------------- */

.calc-page { background: var(--cream); }

.calc {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 72px) var(--container-pad);
}

.calc__intro {
    text-align: center;
    margin-bottom: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.calc__intro h1 { margin-bottom: 18px; }
.calc__intro h1 em { color: var(--coral); font-weight: 500; }

.calc__header {
    margin-bottom: 28px;
}

.calc__progress-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.calc__progress-meta strong { color: var(--coral); font-weight: 600; }

.calc__progress {
    height: 1px;
    background: var(--rule);
    overflow: hidden;
}
.calc__progress-bar {
    height: 4px;
    background: var(--coral);
    width: 0%;
    transition: width 400ms var(--ease);
    margin-top: -1.5px;
}

.calc__panel {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 16px;
    padding: clamp(32px, 5vw, 64px);
    min-height: 460px;
    display: grid;
    align-content: start;
    box-shadow: var(--shadow-raised);
}

.calc__step { display: none; }
.calc__step.is-active { display: grid; gap: 28px; }

.calc__step-num {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--coral);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
}

.calc__question {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
    max-width: 24ch;
}

.calc__hint {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 56ch;
    font-style: italic;
    margin-top: -12px;
}

.calc__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.calc__option {
    background: var(--cream);
    border: 1px solid var(--paper-edge);
    border-radius: 8px;
    padding: 16px 22px;
    text-align: left;
    cursor: pointer;
    transition: all 200ms var(--ease);
    font-size: 16px;
    color: var(--ink);
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: var(--shadow-raised-soft);
}

.calc__option:hover {
    background: var(--paper);
    transform: translateY(-1px);
    box-shadow: var(--shadow-raised);
    color: var(--coral);
}

.calc__option.is-selected {
    border-color: var(--coral);
    background: var(--paper);
    color: var(--coral);
    font-weight: 500;
    box-shadow: var(--shadow-pressed);
    transform: none;
}

.calc__option.is-selected::after { content: "✦"; color: var(--coral); }

.calc__select {
    width: 100%;
    padding: 16px 18px;
    background: var(--cream);
    border: 1px solid var(--paper-edge);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231F3D52' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
    max-width: 480px;
    box-shadow: var(--shadow-inset);
}
.calc__select:focus { outline: none; border-color: var(--coral); }

.calc__slider {
    display: grid;
    gap: 14px;
    max-width: 560px;
}

.calc__slider-readout {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.calc__slider-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;
    line-height: 1;
    color: var(--coral);
    font-feature-settings: "onum" 1;
}

.calc__slider-unit {
    font-family: var(--font-label);
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
}

.calc__slider input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 2px;
    background: var(--rule);
    outline: none;
}
.calc__slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--coral);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--paper);
    box-shadow: 0 2px 6px rgba(183, 66, 59, 0.3);
}
.calc__slider input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--coral);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--paper);
}

.calc__slider-scale {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-label);
    font-size: 10px;
    color: var(--ink-faint);
    letter-spacing: 0.18em;
}

.calc__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
}

.calc__back {
    color: var(--ink-soft);
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
}
.calc__back:hover { color: var(--ink); }
.calc__back[disabled] { opacity: 0.3; pointer-events: none; }

.calc__live {
    background: var(--cream);
    color: var(--ink);
    padding: 20px 24px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-inset);
}
.calc__live-label {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
}
.calc__live-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: var(--coral);
    font-feature-settings: "onum" 1;
}

/* Results */
.calc__results { display: none; }
.calc__results.is-active { display: grid; gap: 28px; }

.calc__results-head {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 28px;
    text-align: center;
}

.calc__big-stat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: center;
}

@media (max-width: 720px) { .calc__big-stat { grid-template-columns: 1fr; } }

.calc__big-stat-label {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.calc__big-stat-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.4vw, 80px);
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    font-feature-settings: "onum" 1;
}
.calc__big-stat-num .currency {
    font-size: 0.45em;
    vertical-align: 0.4em;
    color: var(--ink-soft);
    margin-right: 4px;
}
.calc__big-stat-num em { color: var(--coral); font-weight: 500; }

.calc__big-stat-cap {
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 8px;
    font-style: italic;
}

.calc__breakdown {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}
.calc__breakdown-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 18px 26px;
    align-items: baseline;
    gap: 20px;
    border-bottom: 1px solid var(--rule-faint);
    background: var(--paper);
}
.calc__breakdown-row:last-child { border-bottom: none; }
.calc__breakdown-row--total {
    background: var(--navy);
    color: var(--cream-light);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.calc__breakdown-label {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.4;
}
.calc__breakdown-row--total .calc__breakdown-label { color: var(--cream-light); }
.calc__breakdown-label small {
    display: block;
    font-family: var(--font-label);
    font-size: 10px;
    color: var(--ink-faint);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
}
.calc__breakdown-row--total .calc__breakdown-label small { color: rgba(245, 238, 223, 0.55); }

.calc__breakdown-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    font-feature-settings: "onum" 1;
}
.calc__breakdown-row--total .calc__breakdown-num { color: var(--cream-light); font-size: 30px; }

.calc__rec {
    background: var(--navy);
    color: var(--cream-light);
    padding: clamp(32px, 4vw, 48px);
    text-align: center;
    border-radius: 14px;
    box-shadow: var(--shadow-navy-raised);
}
.calc__rec-label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 238, 223, 0.65);
    margin-bottom: 14px;
    font-weight: 500;
}
.calc__rec-name {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 18px;
    font-feature-settings: "onum" 1;
}
.calc__rec-name em { color: var(--coral); font-weight: 500; }

.calc__rec-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(245, 238, 223, 0.85);
    max-width: 56ch;
    margin: 0 auto 28px;
    font-style: italic;
}

.calc__rec-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.calc__assumptions {
    background: var(--cream);
    padding: 24px 28px;
    border-radius: 10px;
    box-shadow: var(--shadow-inset);
}
.calc__assumptions summary {
    cursor: pointer;
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}
.calc__assumptions summary::-webkit-details-marker { display: none; }
.calc__assumptions summary::after { content: "+"; color: var(--coral); font-size: 18px; transition: transform 200ms var(--ease); }
.calc__assumptions[open] summary::after { transform: rotate(45deg); }
.calc__assumptions[open] summary { margin-bottom: 16px; }

.calc__assumptions ul { list-style: none; display: grid; gap: 8px; }
.calc__assumptions li {
    font-size: 14px;
    color: var(--ink-soft);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    font-style: italic;
}
.calc__assumptions li::before { content: "✦"; position: absolute; left: 0; color: var(--coral); font-style: normal; }

@media (max-width: 880px) {
    .calc__nav { flex-direction: column-reverse; gap: 12px; align-items: stretch; }
    .calc__nav .btn { width: 100%; justify-content: center; }
    .calc__panel { min-height: 0; }
}

/* Lead capture */
.lead-form {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 14px;
    padding: clamp(28px, 4vw, 44px);
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow-raised);
}

.lead-form__head {
    text-align: center;
    margin-bottom: 8px;
}
.lead-form__head h3 { margin-bottom: 6px; }
.lead-form__head p {
    font-size: 14px;
    color: var(--ink-soft);
    font-style: italic;
}

.lead-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 720px) { .lead-form__row { grid-template-columns: 1fr; } }

.lead-form input {
    width: 100%;
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    color: var(--ink);
    font-family: var(--font-body);
    transition: all 200ms var(--ease);
    box-shadow: var(--shadow-inset);
}
.lead-form input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: var(--shadow-inset), 0 0 0 3px rgba(183, 66, 59, 0.1);
}

.lead-form button { width: 100%; justify-content: center; margin-top: 8px; }

.lead-form__note {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.2em;
    text-align: center;
    margin-top: 4px;
    text-transform: uppercase;
}

/* ===========================================================================
   CONVERSION-FOCUSED HOMEPAGE
   Comparison hero · glassmorphism · animated counters · sticky storytelling
   =========================================================================== */

/* Floating gradient orbs — backdrop for glassmorphism to register against */
.orb-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}

.orb--coral { background: var(--coral); width: 480px; height: 480px; top: -180px; right: -120px; opacity: 0.35; animation: orb-drift-1 22s ease-in-out infinite; }
.orb--navy { background: var(--navy); width: 540px; height: 540px; bottom: -240px; left: -160px; opacity: 0.28; animation: orb-drift-2 26s ease-in-out infinite; }
.orb--gold { background: var(--gold); width: 380px; height: 380px; top: 40%; left: 35%; opacity: 0.22; animation: orb-drift-3 30s ease-in-out infinite; }

@keyframes orb-drift-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, 60px) scale(1.08); } }
@keyframes orb-drift-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px, -40px) scale(1.05); } }
@keyframes orb-drift-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,-50px) scale(0.95); } }

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

.comp-hero {
    position: relative;
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 80% 0%, rgba(183, 66, 59, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(31, 61, 82, 0.10) 0%, transparent 60%),
        var(--cream);
}

.comp-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.comp-hero__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.comp-hero__pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid var(--glass-border);
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 24px;
    box-shadow: var(--shadow-raised-soft);
}
.comp-hero__pretitle::before { content: "★"; color: var(--coral); }

.comp-hero__title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.4vw, 76px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin-bottom: 20px;
}
.comp-hero__title em { color: var(--coral); font-weight: 500; }

.comp-hero__sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 0 auto;
}

.comp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 48px;
}

.comp-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 32px;
    width: 48px;
}
.comp-arrow svg { width: 28px; height: 28px; animation: arrow-pulse 2s ease-in-out infinite; }
@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(6px); opacity: 1; }
}

.comp-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 28px 28px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.comp-card--before {
    background: linear-gradient(135deg, rgba(252, 240, 235, 0.7) 0%, rgba(248, 220, 215, 0.55) 100%);
}

.comp-card--after {
    background: linear-gradient(135deg, rgba(245, 250, 240, 0.7) 0%, rgba(225, 240, 220, 0.55) 100%);
}

.comp-card__corner {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-soft);
    opacity: 0.7;
}

.comp-card__time {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}

.comp-card--before .comp-card__time { color: var(--coral-deep); }
.comp-card--after .comp-card__time { color: var(--sage-deep); }

.comp-card__heading {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 24px;
    font-weight: 500;
}

.comp-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.comp-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 15px;
    color: var(--ink);
    line-height: 1.3;
    box-shadow: 0 2px 8px rgba(31, 61, 82, 0.04);
    transition: transform 250ms var(--ease);
}

.comp-list li:hover { transform: translateX(2px); }

.comp-list--before li { color: var(--ink); }

.comp-pill {
    flex: 0 0 auto;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.comp-pill--bad {
    background: rgba(183, 66, 59, 0.14);
    color: var(--coral-deep);
}

.comp-pill--good {
    background: rgba(92, 126, 90, 0.16);
    color: var(--sage-deep);
}

.comp-pill--good::before {
    content: "✓ ";
    font-size: 11px;
}

.comp-totals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.comp-total {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.comp-total::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--coral), transparent);
    opacity: 0.6;
}

.comp-total__num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
    font-feature-settings: "onum" 1;
    letter-spacing: -0.01em;
}
.comp-total__num em { color: var(--coral); font-weight: 500; }

.comp-total__label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}

.comp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.btn-lg {
    padding: 18px 32px;
    font-size: 14px;
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--ink-soft);
    box-shadow: none;
    padding: 14px 12px;
    text-decoration: underline;
    text-decoration-color: var(--rule);
    text-underline-offset: 4px;
}
.btn-ghost:hover {
    background: transparent;
    color: var(--coral);
    text-decoration-color: var(--coral);
    transform: none;
    box-shadow: none;
}

@media (max-width: 980px) {
    .comp-grid { grid-template-columns: 1fr; }
    .comp-arrow { transform: rotate(90deg); width: 100%; height: 32px; }
    .comp-totals { grid-template-columns: 1fr; }
}

/* ---------- Trust Bar (under hero) ---------- */

.trust-bar {
    background: var(--paper);
    border-top: 1px solid var(--rule-faint);
    border-bottom: 1px solid var(--rule-faint);
    padding: 24px 0;
}

.trust-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}

.trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-bar__icon {
    color: var(--sage-deep);
    font-size: 14px;
}

@media (max-width: 720px) {
    .trust-bar__inner { justify-content: center; }
}

/* ---------- Stats showcase ---------- */

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all 350ms var(--ease);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 32px 70px -20px rgba(31, 61, 82, 0.28),
        0 10px 24px -8px rgba(31, 61, 82, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card__num {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 88px);
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-feature-settings: "onum" 1;
}
.stat-card__num em { color: var(--coral); font-weight: 500; }
.stat-card__num .currency { font-size: 0.5em; vertical-align: 0.4em; color: var(--ink-soft); margin-right: 4px; }

.stat-card__label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    margin-bottom: 12px;
}

.stat-card__caption {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    font-style: italic;
    max-width: 28ch;
    margin: 0 auto;
}

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

/* ---------- Sticky scroll storytelling ---------- */

.sticky-story {
    position: relative;
    padding: clamp(72px, 10vw, 144px) 0;
}

.sticky-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}

.sticky-story__sticky {
    position: sticky;
    top: 120px;
}

.sticky-story__pretitle {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
    font-weight: 500;
}

.sticky-story__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 20px;
}
.sticky-story__title em { color: var(--coral); font-weight: 500; }

.sticky-story__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.sticky-story__steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sticky-story__step {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 28px;
    box-shadow: var(--glass-shadow);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    transition: all 350ms var(--ease);
}

.sticky-story__step:hover { transform: translateY(-2px); }

.sticky-story__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 40px;
    color: var(--coral);
    line-height: 1;
    font-feature-settings: "onum" 1;
}

.sticky-story__step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.2;
}

.sticky-story__step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
}

@media (max-width: 880px) {
    .sticky-story__grid { grid-template-columns: 1fr; }
    .sticky-story__sticky { position: static; }
}

/* ---------- Vs comparison matrix ---------- */

.matrix {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 36px);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.matrix__table {
    width: 100%;
    border-collapse: collapse;
}

.matrix__table th,
.matrix__table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(31, 61, 82, 0.08);
    vertical-align: middle;
}

.matrix__table th {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    background: transparent;
}

.matrix__table th:first-child { width: 24%; }

.matrix__table tr:last-child td { border-bottom: none; }

.matrix__feature {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
}

.matrix__cell {
    font-size: 14px;
    color: var(--ink-soft);
    text-align: center;
}

.matrix__cell--us {
    color: var(--coral-deep);
    font-weight: 600;
    background: rgba(183, 66, 59, 0.05);
}

.matrix__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.matrix__x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(31, 61, 82, 0.1);
    color: var(--ink-faint);
    font-size: 12px;
    font-weight: 700;
}

.matrix__col-us {
    background: linear-gradient(180deg, rgba(183, 66, 59, 0.05), rgba(183, 66, 59, 0.02));
}

@media (max-width: 720px) {
    .matrix__table th, .matrix__table td { padding: 12px 8px; font-size: 13px; }
    .matrix__feature { font-size: 14px; }
}

/* ---------- Trust signals grid ---------- */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-raised-soft);
    transition: all 300ms var(--ease);
}

.trust-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-raised);
}

.trust-card__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    color: var(--coral);
    background: rgba(183, 66, 59, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card__icon svg { width: 22px; height: 22px; }

.trust-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
    font-style: italic;
}

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

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

.faq {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 14px;
    box-shadow: var(--shadow-raised-soft);
    overflow: hidden;
    transition: box-shadow 250ms var(--ease);
}

.faq-item:hover { box-shadow: var(--shadow-raised); }

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    color: var(--coral);
    font-size: 22px;
    line-height: 1;
    transition: transform 250ms var(--ease);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(183, 66, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__body {
    padding: 0 28px 24px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
}
.faq-item__body p + p { margin-top: 12px; }

/* ---------- Final CTA ---------- */

.final-cta {
    position: relative;
    padding: clamp(80px, 10vw, 144px) 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(183, 66, 59, 0.20) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(31, 61, 82, 0.85) 0%, transparent 60%),
        var(--navy);
    color: var(--cream-light);
    overflow: hidden;
    text-align: center;
}

.final-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    position: relative;
    z-index: 1;
}

.final-cta__pretitle {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    font-weight: 500;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.4vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--cream-light);
    margin-bottom: 24px;
    letter-spacing: -0.012em;
}
.final-cta h2 em { color: var(--coral); font-weight: 500; }

.final-cta p {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(245, 238, 223, 0.82);
    margin-bottom: 36px;
    font-style: italic;
}

.final-cta__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta__ps {
    margin-top: 32px;
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(245, 238, 223, 0.55);
    font-weight: 500;
}

/* Counter animations */
.counter { display: inline-block; }

/* ===========================================================================
   AGENTS GRID  ·  90-DAY PROMISE
   =========================================================================== */

.agents-section {
    position: relative;
    overflow: hidden;
}

.agents-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.agents-section__bg .mesh-blob { opacity: 0.16; }

.agents-section__inner {
    position: relative;
    z-index: 1;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

@media (max-width: 980px) { .agents-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .agents-grid { grid-template-columns: 1fr; } }

.agents-grid__category {
    grid-column: 1 / -1;
    text-align: center;
    padding: 16px 0 4px;
}
.agents-grid__category:first-child { padding-top: 0; }
.agents-grid__category-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.agents-grid__category-label::before,
.agents-grid__category-label::after {
    content: "";
    display: inline-block;
    width: 36px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.agent-card {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 16px;
    padding: 32px 28px 28px;
    box-shadow: var(--shadow-raised-soft);
    transition: all 300ms var(--ease);
    position: relative;
    overflow: hidden;
}

.agent-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised);
}

.agent-card__icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    color: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: var(--shadow-inset);
}

.agent-card__icon svg { width: 22px; height: 22px; }
.agent-card__icon--coral { color: var(--coral); }

/* High-contrast icon for the custom card — navy bg, cream-light glyph */
.agent-card__icon--custom {
    width: 72px;
    height: 72px;
    background: var(--coral);
    color: var(--cream-light);
    box-shadow:
        4px 6px 16px rgba(140, 50, 45, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}
.agent-card__icon--custom svg { width: 34px; height: 34px; }

.agent-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 10px;
}
.agent-card__title em { color: var(--coral); font-style: italic; font-weight: 500; }

.agent-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.agent-card--custom {
    background: linear-gradient(135deg, rgba(252, 250, 244, 1) 0%, rgba(248, 220, 215, 0.35) 100%);
    border-color: var(--coral);
    box-shadow:
        4px 6px 16px rgba(140, 50, 45, 0.16),
        -1px -2px 6px rgba(220, 140, 130, 0.14);
    /* Span the full grid width — sits as a banner row below the 3×3 of standard agents */
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "icon desc";
    column-gap: 28px;
    row-gap: 6px;
    align-items: center;
    padding: 36px clamp(28px, 4vw, 48px);
}

.agent-card--custom .agent-card__icon {
    grid-area: icon;
    align-self: center;
    margin-bottom: 0;
}

.agent-card--custom .agent-card__title {
    grid-area: title;
    font-size: clamp(22px, 2.4vw, 28px);
    margin-bottom: 0;
    align-self: end;
}

.agent-card--custom .agent-card__desc {
    grid-area: desc;
    font-size: 15px;
    max-width: 80ch;
    align-self: start;
}

@media (max-width: 580px) {
    .agent-card--custom {
        grid-template-columns: 1fr;
        grid-template-areas:
            "icon"
            "title"
            "desc";
        text-align: center;
    }
    .agent-card--custom .agent-card__icon { justify-self: center; margin-bottom: 4px; }
    .agent-card--custom .agent-card__title { align-self: auto; }
    .agent-card--custom .agent-card__desc { align-self: auto; margin: 0 auto; }
}
.agent-card--custom:hover {
    box-shadow:
        10px 14px 32px rgba(140, 50, 45, 0.22),
        -3px -4px 12px rgba(220, 140, 130, 0.18);
}

.agent-card__badge {
    position: absolute;
    top: -10px;
    right: 22px;
    background: var(--coral);
    color: var(--cream-light);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}

/* Voice agent callout (below the grid) */
.agents-voice-callout {
    background: var(--navy);
    color: var(--cream-light);
    border-radius: 18px;
    padding: clamp(28px, 4vw, 48px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    box-shadow: var(--shadow-navy-raised);
    position: relative;
    overflow: hidden;
}

.agents-voice-callout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--coral);
}

.agents-voice-callout__icon {
    width: 72px;
    height: 72px;
    background: rgba(245, 238, 223, 0.10);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.agents-voice-callout__icon svg { width: 32px; height: 32px; }

.agents-voice-callout__eyebrow {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 10px;
}

.agents-voice-callout h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--cream-light);
    margin-bottom: 12px;
}
.agents-voice-callout h3 em { color: var(--coral); font-style: italic; font-weight: 500; }

.agents-voice-callout p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 238, 223, 0.85);
    margin-bottom: 18px;
    max-width: 64ch;
}

.agents-voice-callout .btn {
    background: var(--cream-light);
    color: var(--ink);
    border-color: var(--cream-light);
}
.agents-voice-callout .btn:hover {
    background: var(--paper);
    color: var(--coral);
    border-color: var(--paper);
}

@media (max-width: 780px) {
    .agents-voice-callout { grid-template-columns: 1fr; text-align: center; }
    .agents-voice-callout__icon { margin: 0 auto; }
    .agents-voice-callout p { margin-left: auto; margin-right: auto; }
}

/* ---------- 90-Day / 50% Promise section ---------- */

.promise-section {
    background:
        linear-gradient(180deg, rgba(252, 250, 244, 0) 0%, rgba(236, 226, 204, 0.5) 100%),
        var(--cream);
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 128px) 0;
}

.promise-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(183, 66, 59, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.promise-section__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    text-align: center;
}

.promise-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: clamp(40px, 5vw, 56px);
}

.promise-stat {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
    box-shadow: var(--glass-shadow);
    text-align: center;
}

.promise-stat__num {
    font-family: var(--font-display);
    font-size: clamp(56px, 7.5vw, 96px);
    font-weight: 500;
    line-height: 1;
    color: var(--coral);
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    font-feature-settings: "onum" 1;
}

.promise-stat__label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.4;
    color: var(--ink);
    max-width: 24ch;
    margin: 0 auto;
}

.promise-footnote {
    margin-top: 32px;
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}

@media (max-width: 720px) { .promise-stats { grid-template-columns: 1fr; } }

/* ===========================================================================
   STICKY MOBILE CALL BUTTON
   =========================================================================== */

.mobile-call-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--coral);
    color: var(--cream-light);
    text-decoration: none;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    text-align: center;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
    transition: background 200ms var(--ease);
}

.mobile-call-cta:hover,
.mobile-call-cta:active {
    background: var(--coral-deep);
    color: var(--cream-light);
}

.mobile-call-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 880px) {
    .mobile-call-cta { display: inline-flex; }
    /* Reserve space at the bottom of every page so the sticky CTA doesn't cover content */
    body { padding-bottom: 64px; }
}

/* ===========================================================================
   STRIPE-INSPIRED ADDITIONS
   Mesh gradient hero · floating product mockup · tabbed demo · logo strip
   =========================================================================== */

/* ---------- Refined mesh gradient hero ---------- */

.mesh-hero {
    position: relative;
    padding-top: clamp(48px, 6vw, 88px);
    padding-bottom: clamp(72px, 9vw, 128px);
    overflow: hidden;
    background: var(--cream);
}

.mesh-hero__mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
}

.mesh-blob--1 { background: var(--coral); width: 620px; height: 620px; top: -200px; right: -100px; opacity: 0.42; animation: mesh-1 28s ease-in-out infinite; }
.mesh-blob--2 { background: var(--navy); width: 560px; height: 560px; bottom: -180px; left: -180px; opacity: 0.35; animation: mesh-2 32s ease-in-out infinite; }
.mesh-blob--3 { background: var(--gold); width: 460px; height: 460px; top: 30%; left: 22%; opacity: 0.32; animation: mesh-3 38s ease-in-out infinite; }
.mesh-blob--4 { background: var(--sage); width: 420px; height: 420px; bottom: 20%; right: 28%; opacity: 0.20; animation: mesh-4 42s ease-in-out infinite; }
.mesh-blob--5 { background: var(--coral); width: 360px; height: 360px; top: 60%; left: 60%; opacity: 0.18; animation: mesh-5 26s ease-in-out infinite; }

@keyframes mesh-1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-60px, 80px) scale(1.1); } 66% { transform: translate(40px, -40px) scale(0.95); } }
@keyframes mesh-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px, -60px) scale(1.08); } }
@keyframes mesh-3 { 0%,100% { transform: translate(0,0) scale(1); } 40% { transform: translate(-50px,-70px) scale(0.92); } 80% { transform: translate(60px, 40px) scale(1.05); } }
@keyframes mesh-4 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px, 50px) scale(1.1); } }
@keyframes mesh-5 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-60px) scale(1.05); } }

.mesh-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mesh-hero__head {
    text-align: center;
    width: 100%;
    max-width: 760px;
}

.mesh-hero__pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid var(--glass-border);
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 28px;
    box-shadow: var(--shadow-raised-soft);
    font-weight: 500;
}
.mesh-hero__pretitle::before { content: "★"; color: var(--coral); }

.mesh-hero__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 6.2vw, 84px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.014em;
    color: var(--ink);
    margin-bottom: 24px;
    overflow-wrap: break-word;
}
.mesh-hero__title em { color: var(--coral); font-weight: 500; }

.mesh-hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 30px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--coral);
    margin: 18px 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.mesh-hero__tagline::before,
.mesh-hero__tagline::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--coral);
    opacity: 0.5;
}

@media (max-width: 980px) {
    .mesh-hero__tagline { justify-content: center; }
}

.mesh-hero__sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 52ch;
    margin: 0 auto 32px;
}

.mesh-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.mesh-hero__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    font-weight: 500;
}

.mesh-hero__signals span { display: inline-flex; align-items: center; gap: 6px; }
.mesh-hero__signals svg {
    width: 14px;
    height: 14px;
    color: var(--sage-deep);
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .mesh-hero__inner { grid-template-columns: 1fr; }
    .mesh-hero__head { text-align: center; }
    .mesh-hero__pretitle { margin-left: auto; margin-right: auto; }
    .mesh-hero__sub { margin-left: auto; margin-right: auto; }
    .mesh-hero__ctas, .mesh-hero__signals { justify-content: center; }
}

/* ---------- Floating product mockup ---------- */

.mockup-stage {
    position: relative;
    perspective: 2000px;
    min-height: 540px;
}

.mockup-card {
    background: rgba(252, 250, 244, 0.78);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 24px;
    box-shadow:
        0 30px 80px -20px rgba(31, 61, 82, 0.35),
        0 12px 30px -10px rgba(31, 61, 82, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transform: rotateY(-6deg) rotateX(4deg);
    transform-style: preserve-3d;
    animation: mockup-float 8s ease-in-out infinite;
    will-change: transform;
}

@keyframes mockup-float {
    0%, 100% { transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-6deg) rotateX(4deg) translateY(-8px); }
}

.mockup-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(31, 61, 82, 0.08);
    margin-bottom: 16px;
}

.mockup-card__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.mockup-card__brand-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(183, 66, 59, 0.18);
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(183, 66, 59, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(183, 66, 59, 0.05); }
}

.mockup-card__time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-soft);
    font-feature-settings: "tnum" 1;
}

.mockup-card__caller {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: rgba(31, 61, 82, 0.04);
    border-radius: 10px;
}

.mockup-card__caller-label {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
    margin-bottom: 4px;
}

.mockup-card__caller-name {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.mockup-card__caller-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ink-soft);
}

.mockup-transcript {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    min-height: 140px;
}

.mockup-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-family: var(--font-ui);
    font-size: 13px;
    line-height: 1.45;
}

.mockup-msg--caller {
    align-self: flex-start;
    background: rgba(31, 61, 82, 0.06);
    color: var(--ink);
    border-bottom-left-radius: 4px;
}

.mockup-msg--ai {
    align-self: flex-end;
    background: var(--navy);
    color: var(--cream-light);
    border-bottom-right-radius: 4px;
}

.mockup-msg--typing {
    background: var(--navy);
    align-self: flex-end;
    padding: 12px 16px;
    border-bottom-right-radius: 4px;
}

.mockup-msg--typing::after {
    content: "● ● ●";
    color: var(--cream-light);
    font-size: 10px;
    letter-spacing: 4px;
    animation: typing-dots 1.4s ease-in-out infinite;
}

@keyframes typing-dots {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.mockup-card__action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(92, 126, 90, 0.10);
    border: 1px solid rgba(92, 126, 90, 0.25);
    border-radius: 10px;
    color: var(--sage-deep);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
}

.mockup-card__action-icon {
    width: 20px;
    height: 20px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Floating notification chips around the mockup */
.mockup-notif {
    position: absolute;
    background: rgba(252, 250, 244, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow:
        0 20px 50px -15px rgba(31, 61, 82, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: notif-float 6s ease-in-out infinite;
}

.mockup-notif__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--coral);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}
.mockup-notif--review .mockup-notif__icon { background: var(--gold); }
.mockup-notif--invoice .mockup-notif__icon { background: var(--sage); }

.mockup-notif__strong {
    font-weight: 600;
    color: var(--ink);
    display: block;
    line-height: 1.2;
}
.mockup-notif__sub {
    color: var(--ink-soft);
    font-size: 11px;
    line-height: 1.2;
}

.mockup-notif--1 {
    top: 30px;
    right: -40px;
    animation-delay: 0s;
}
.mockup-notif--2 {
    bottom: 80px;
    left: -50px;
    animation-delay: 2s;
}
.mockup-notif--3 {
    bottom: -20px;
    right: 40px;
    animation-delay: 4s;
}

@keyframes notif-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
    .mockup-stage { min-height: auto; }
    .mockup-card { transform: none; animation: none; max-width: 440px; margin: 0 auto; }
    .mockup-notif { display: none; }
}

/* ---------- Logo strip ---------- */

.logo-strip {
    padding: 48px 0;
    border-top: 1px solid var(--rule-faint);
    border-bottom: 1px solid var(--rule-faint);
    background: var(--paper);
}

.logo-strip__head {
    text-align: center;
    margin-bottom: 32px;
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}
.logo-strip__head em { color: var(--coral); font-style: italic; font-weight: 600; letter-spacing: 0; text-transform: none; font-family: var(--font-display); font-size: 14px; }

.logo-strip__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 32px 48px;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--ink-soft);
    opacity: 0.7;
    transition: all 250ms var(--ease);
    white-space: nowrap;
}
.logo-mark:hover { opacity: 1; color: var(--ink); }
.logo-mark__sub {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 2px;
    display: block;
    text-align: center;
    font-weight: 500;
}

.logo-mark--ornate {
    font-style: italic;
}

/* ---------- Tabbed feature explorer ---------- */

.tabs-section {
    padding: clamp(72px, 9vw, 128px) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.tabs-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.tabs-section__bg .mesh-blob { opacity: 0.15; }

.tabs-section__inner {
    position: relative;
    z-index: 1;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 56px;
    padding: 6px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: var(--shadow-raised-soft);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tab {
    padding: 12px 22px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 250ms var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tab__icon { width: 16px; height: 16px; opacity: 0.6; }

.tab:hover { color: var(--ink); }
.tab.is-active {
    background: var(--paper);
    color: var(--coral);
    box-shadow: var(--shadow-raised-soft);
}
.tab.is-active .tab__icon { opacity: 1; }

.tab-panel { display: none; }
.tab-panel.is-active { display: grid; }

.tab-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    animation: tab-fade-in 400ms var(--ease);
}

@keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel__copy h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin-bottom: 18px;
}
.tab-panel__copy h3 em { color: var(--coral); font-weight: 500; }

.tab-panel__copy p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.tab-panel__list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.tab-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
}

.tab-panel__list svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--sage-deep);
    margin-top: 2px;
}

.tab-panel__visual {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 18px;
    padding: 28px;
    box-shadow:
        0 24px 60px -16px rgba(31, 61, 82, 0.18),
        0 8px 20px -8px rgba(31, 61, 82, 0.10);
    position: relative;
    overflow: hidden;
}

.tab-panel__visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: var(--cream-deep);
    border-bottom: 1px solid var(--rule-faint);
}
.tab-panel__visual::after {
    content: "● ● ●";
    position: absolute;
    top: 8px;
    left: 14px;
    color: var(--ink-faint);
    font-size: 8px;
    letter-spacing: 4px;
    opacity: 0.6;
}

.tab-panel__visual-inner {
    margin-top: 32px;
    padding-top: 8px;
}

.tab-panel__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.tab-metric {
    background: var(--cream);
    border-radius: 12px;
    padding: 16px 18px;
}

.tab-metric__num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    font-feature-settings: "onum" 1;
    margin-bottom: 4px;
}
.tab-metric__num em { color: var(--coral); font-weight: 500; }

.tab-metric__label {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}

.tab-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-feed__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--cream);
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--ink);
}

.tab-feed__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}
.tab-feed__icon--coral { background: var(--coral); }
.tab-feed__icon--gold { background: var(--gold); }

.tab-feed__strong { font-weight: 600; }

.tab-feed__time {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-faint);
}

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

/* ---------- Founder pull-quote ---------- */

.founder-pull-section {
    padding: clamp(72px, 9vw, 128px) 0;
    background: var(--paper);
    position: relative;
    overflow: hidden;
}

.founder-pull-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.3;
}

.founder-pull {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
}

.founder-pull__mark {
    font-family: var(--font-display);
    font-size: clamp(96px, 12vw, 160px);
    line-height: 0.8;
    color: var(--coral);
    opacity: 0.4;
    margin-bottom: -32px;
    user-select: none;
    font-style: italic;
    font-weight: 500;
    display: block;
}

.founder-pull p {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: var(--ink);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 36px;
}

.founder-pull p em {
    color: var(--coral);
    font-style: italic;
    font-weight: 500;
}

.founder-pull__cite {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 12px 14px;
    background: var(--cream);
    border: 1px solid var(--paper-edge);
    border-radius: 999px;
    box-shadow: var(--shadow-raised-soft);
}

.founder-pull__cite img {
    width: 32px;
    height: 32px;
    background: var(--paper);
    border-radius: 50%;
    padding: 6px;
    box-shadow: var(--shadow-inset);
}

.founder-pull__cite-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

.founder-pull__cite-role {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.2;
    font-weight: 500;
    margin-top: 2px;
}

.founder-pull__cite-text {
    text-align: left;
}

/* ---------- Mockup activity feed (replaces Sarah call) ---------- */

.mockup-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    min-height: 196px;
}

.mockup-feed__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(31, 61, 82, 0.04);
    border-radius: 10px;
    transition: transform 250ms var(--ease);
}

.mockup-feed__row:hover { transform: translateX(2px); }

.mockup-feed__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.mockup-feed__icon--coral { background: var(--coral); }
.mockup-feed__icon--gold { background: var(--gold); }
.mockup-feed__icon--navy { background: var(--navy); }

.mockup-feed__body {
    flex: 1;
    min-width: 0;
}

.mockup-feed__title {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 1px;
}

.mockup-feed__sub {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--ink-soft);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mockup-feed__time {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-faint);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---------- Hero compare-card (Weekly Admin → Automated) ---------- */

/* Reduce mockup tilt for the compare-card so list items are easier to read */
.mockup-card.mockup-card--compare {
    transform: rotateY(-3deg) rotateX(2deg);
    padding: 20px 22px;
    animation: mockup-float-soft 9s ease-in-out infinite;
}

@keyframes mockup-float-soft {
    0%, 100% { transform: rotateY(-3deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-3deg) rotateX(2deg) translateY(-6px); }
}

.compare-section {
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.compare-section--before {
    background: linear-gradient(135deg, rgba(252, 240, 235, 0.65) 0%, rgba(248, 220, 215, 0.5) 100%);
    border: 1px solid rgba(183, 66, 59, 0.15);
}

.compare-section--after {
    background: linear-gradient(135deg, rgba(245, 250, 240, 0.65) 0%, rgba(225, 240, 220, 0.5) 100%);
    border: 1px solid rgba(92, 126, 90, 0.18);
}

.compare-section__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(31, 61, 82, 0.08);
    margin-bottom: 10px;
}

.compare-section__label {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.compare-section--before .compare-section__label { color: var(--coral-deep); }
.compare-section--after .compare-section__label { color: var(--sage-deep); }

.compare-section__sub {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.compare-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
}

.compare-list__task {
    color: var(--ink);
    font-weight: 500;
}

.compare-list__hrs {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--coral-deep);
    font-weight: 600;
    white-space: nowrap;
}

.compare-list--done .compare-list__task {
    color: var(--ink-soft);
    text-decoration: line-through;
    text-decoration-color: rgba(92, 126, 90, 0.4);
    text-decoration-thickness: 1px;
}

.compare-list__check {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    background: rgba(92, 126, 90, 0.16);
    color: var(--sage-deep);
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.compare-list__check::before {
    content: "✓";
    font-size: 10px;
}

.compare-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.compare-total--bad {
    background: rgba(183, 66, 59, 0.10);
    color: var(--coral-deep);
}

.compare-total--good {
    background: rgba(92, 126, 90, 0.14);
    color: var(--sage-deep);
}

.compare-total__num {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
    font-feature-settings: "onum" 1;
}

.compare-total__num em {
    font-style: normal;
    font-weight: 600;
}

.compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    margin: -4px 0 -4px;
}

.compare-divider svg {
    width: 18px;
    height: 18px;
    color: var(--coral);
    animation: arrow-pulse-soft 2.4s ease-in-out infinite;
}

@keyframes arrow-pulse-soft {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50% { transform: translateY(3px); opacity: 1; }
}

@media (max-width: 980px) {
    .mockup-card.mockup-card--compare {
        transform: none;
        animation: none;
    }
}

/* ---------- Discovery page · Sample Report mockup ---------- */

.sample-report {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 18px;
    box-shadow: var(--shadow-raised);
    padding: clamp(28px, 4vw, 48px);
    max-width: 560px;
    position: relative;
    overflow: hidden;
}

.sample-report::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--coral), var(--gold));
}

.sample-report__corner {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
}

.sample-report__head {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
}

.sample-report__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.sample-report__brand img {
    width: 32px;
    height: 32px;
    background: var(--cream);
    border-radius: 8px;
    padding: 5px;
    box-shadow: var(--shadow-inset);
}
.sample-report__brand-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.sample-report__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.15;
    letter-spacing: -0.012em;
}

.sample-report__meta {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--ink-soft);
    font-style: italic;
}

.sample-report__sections {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
    counter-reset: sr;
}

.sample-report__section {
    counter-increment: sr;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: start;
}

.sample-report__section::before {
    content: counter(sr, decimal-leading-zero);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--coral);
    font-weight: 500;
    font-feature-settings: "onum" 1;
    padding-top: 1px;
}

.sample-report__section-title {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 4px;
}

.sample-report__section-body {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--ink);
    line-height: 1.45;
}
.sample-report__section-body em {
    color: var(--coral);
    font-style: italic;
    font-weight: 500;
}

.sample-report__footer {
    padding: 20px 24px;
    background: var(--navy);
    color: var(--cream-light);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sample-report__footer-label {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(245, 238, 223, 0.65);
    font-weight: 500;
    margin-bottom: 2px;
}

.sample-report__footer-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    color: var(--cream-light);
    font-feature-settings: "onum" 1;
}
.sample-report__footer-num em {
    color: var(--coral);
    font-style: italic;
    font-weight: 500;
}

.sample-report__footer-side {
    text-align: right;
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(245, 238, 223, 0.7);
    line-height: 1.4;
    font-style: italic;
}

/* Container for the report-card area on discovery page */
.report-card--mockup {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
}

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

/* ---------- Voice Add-On section ---------- */

.voice-addon {
    background:
        linear-gradient(135deg, rgba(31, 61, 82, 0.04), rgba(183, 66, 59, 0.04)),
        var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 18px;
    padding: clamp(40px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-raised);
}

@media (max-width: 760px) {
    .voice-addon {
        grid-template-columns: minmax(0, 1fr);
        padding: clamp(28px, 6vw, 40px);
    }
    .voice-addon h3 {
        font-size: clamp(24px, 6.4vw, 32px);
        overflow-wrap: break-word;
    }
}

.voice-addon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--coral);
}

.voice-addon__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(183, 66, 59, 0.12);
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral-deep);
    font-weight: 600;
    margin-bottom: 16px;
}

.voice-addon h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin-bottom: 16px;
}
.voice-addon h3 em { color: var(--coral); font-weight: 500; }

.voice-addon__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 24px;
    max-width: 56ch;
    font-style: italic;
}

.voice-addon__list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}
.voice-addon__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
}
.voice-addon__list svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--sage-deep);
    margin-top: 2px;
}

.voice-addon__note {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--ink-soft);
    font-style: italic;
    margin-top: 16px;
}

.voice-addon__pricing {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-inset);
}

.voice-addon__price-label {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    margin-bottom: 12px;
}

.voice-addon__price {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 6px;
    font-feature-settings: "onum" 1;
}
.voice-addon__price .currency {
    font-size: 0.5em;
    vertical-align: 0.4em;
    color: var(--ink-soft);
    margin-right: 4px;
}

.voice-addon__price-meta {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--ink-soft);
    font-style: italic;
    margin-bottom: 20px;
}

.voice-addon__retainer {
    padding: 12px 16px;
    background: var(--paper);
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 8px;
}
.voice-addon__retainer strong {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
}
.voice-addon__retainer-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--coral);
    margin-right: 4px;
    font-feature-settings: "onum" 1;
}

.voice-addon__pricing .btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

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

