/* =========================================================================
   FinePrint — Brand Stylesheet
   Reference: FinePrint Website Blueprint v1.0
   ========================================================================= */

:root {
    /* Palette — cool, minimalist. One accent (gold). Everything else neutral grey. */
    --ink: #0A0A0B;        /* near-black, cool */
    --ink-2: #18181B;      /* dark grey */
    --ink-3: #27272A;      /* medium grey */
    --cream: #FAFAFA;      /* cool off-white */
    --gold: #C9A84C;       /* the only accent */
    --gold-light: #E0C580;
    --rust: #B5451B;       /* danger only */
    --forest: #2D4A3E;     /* success only */
    --stone: #71717A;      /* cool grey replaces brown */
    --paper: #F4F4F5;      /* cool light grey */
    --line: #E4E4E7;       /* hairline divider */
    --red: #C0392B;
    --amber: #D4841A;
    --green: #1E7A4A;
    --blue: #1A5F8C;

    /* Type */
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Syne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "DM Mono", "SF Mono", Menlo, Consolas, monospace;

    /* Spacing */
    --container: 1200px;
    --gutter: clamp(20px, 4vw, 48px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--mono);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
}

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

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

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

/* ----- Layout primitives ----- */
.wrap {
    width: 100%;
    max-width: var(--container);
    padding: 0 var(--gutter);
    margin: 0 auto;
}

.section {
    padding: clamp(60px, 9vw, 120px) 0;
}

.section--dark {
    background: var(--ink);
    color: var(--cream);
}

.section--paper {
    background: var(--paper);
}

/* ----- Typography ----- */
h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 0.4em;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(48px, 7vw, 80px);
}

h2 {
    font-size: clamp(34px, 4.5vw, 48px);
    font-weight: 700;
}

h3 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
}

h4 {
    font-size: 18px;
    font-weight: 700;
}

p {
    margin: 0 0 1em;
}

.eyebrow {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 24px;
    display: inline-block;
}

.lead {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.6;
    color: var(--stone);
    max-width: 56ch;
}

.section--dark .lead {
    color: rgba(250, 250, 250, 0.66);
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 0;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--gold);
    color: var(--ink);
}

.btn--primary:hover {
    background: var(--gold-light);
}

.btn--secondary {
    background: transparent;
    color: var(--cream);
    border-color: rgba(250, 250, 250, 0.5);
}

.btn--secondary:hover {
    border-color: var(--cream);
}

.btn--outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn--outline:hover {
    background: var(--ink);
    color: var(--cream);
}

.btn--danger {
    background: var(--rust);
    color: #fff;
}

.btn--ghost {
    padding: 12px 20px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    border-color: rgba(113, 113, 122, 0.5);
    color: var(--stone);
}

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

.btn--large {
    padding: 22px 44px;
    font-size: 15px;
}

/* ----- Navigation ----- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(19, 17, 14, 0.94);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    color: var(--cream);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__mark {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
}

.footer__brand {
    text-transform: uppercase;
}

.brand__sub {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.32em;
    color: var(--stone);
    text-transform: uppercase;
    margin-top: 6px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.75);
    transition: color 0.2s;
    position: relative;
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--gold);
}

.nav__star {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 6px 12px;
}

.nav__hamburger {
    display: none;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav__hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
}

.nav.is-open .nav__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__hamburger span:nth-child(2) {
    opacity: 0;
}

.nav.is-open .nav__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ----- Hero ----- */
.hero {
    background: var(--ink);
    color: var(--cream);
    padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 12vw, 160px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.08), transparent 60%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
}

.hero__oss {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(201, 168, 76, 0.6);
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 7px 16px;
    margin-bottom: 32px;
}

.hero__oss::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.18);
}

.hero h1 {
    color: var(--cream);
    margin-bottom: 24px;
}

.hero h1 .accent {
    color: var(--gold);
    font-style: italic;
}

.hero__sub {
    font-size: clamp(17px, 1.6vw, 20px);
    color: rgba(250, 250, 250, 0.7);
    max-width: 52ch;
    margin-bottom: 40px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero__meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--stone);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--sans);
    font-weight: 700;
}

.hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__meta span::before {
    content: "✓";
    color: var(--gold);
}

/* Terminal */
.terminal {
    background: #060608;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(201, 168, 76, 0.06);
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.7;
}

.terminal__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #1A1714;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.terminal__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3531;
}

.terminal__title {
    margin-left: 12px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    font-family: var(--sans);
    font-weight: 700;
}

.terminal__body {
    padding: 22px 24px;
    color: var(--cream);
    min-height: 380px;
    max-height: 460px;
    overflow: hidden;
}

.terminal__line {
    display: block;
    white-space: pre-wrap;
}

.terminal__line .prompt {
    color: var(--gold);
}

.terminal__line .label {
    color: var(--stone);
}

.terminal__line .value {
    color: var(--cream);
}

.terminal__line .ok {
    color: var(--green);
}

.terminal__line .warn {
    color: var(--amber);
}

.terminal__line .crit {
    color: var(--red);
    font-weight: 500;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: var(--gold);
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: blink 0.9s steps(2) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ----- Social proof marquee ----- */
.proof {
    background: #08070A;
    color: var(--gold);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    overflow: hidden;
}

.proof__track {
    display: flex;
    gap: 60px;
    padding: 18px 0;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.proof__track span {
    color: rgba(201, 168, 76, 0.7);
}

.proof__track strong {
    color: var(--gold);
    font-weight: 800;
}

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

/* ----- Cards ----- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.card {
    background: #fff;
    border-left: 3px solid var(--gold);
    padding: 36px 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(19, 17, 14, 0.15);
}

.card__num {
    font-family: var(--serif);
    color: var(--gold-light);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
}

.card__title {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 14px;
}

.card__body {
    color: var(--stone);
    font-size: 15px;
    margin: 0;
}

.card--critical {
    background: rgba(192, 57, 43, 0.06);
    border-left-color: var(--red);
}

.card--critical .card__title {
    color: var(--red);
}

/* ----- How it works ----- */
.how__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.steps {
    counter-reset: step;
    list-style: none;
    margin: 50px 0 0;
    padding: 0;
}

.steps li {
    counter-increment: step;
    position: relative;
    padding-left: 90px;
    margin-bottom: 44px;
}

.steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: -8px;
    font-family: var(--serif);
    font-weight: 900;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
}

.steps h3 {
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.steps p {
    color: rgba(250, 250, 250, 0.66);
    margin: 0;
}

/* ----- Sample report mock ----- */
.report {
    background: var(--ink-2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 30px;
    font-family: var(--mono);
    color: var(--cream);
}

.report__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.report__meta {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--stone);
    text-transform: uppercase;
    font-family: var(--sans);
    font-weight: 700;
}

.report__score {
    background: #1E0E08;
    border-left: 3px solid var(--rust);
    padding: 18px 22px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report__score-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 900;
    color: var(--rust);
    line-height: 1;
}

.report__score-label {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
}

.party-toggle {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.party-toggle button {
    flex: 1;
    padding: 10px 14px;
    background: #111;
    color: #555;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 0;
    transition: background 0.2s, color 0.2s;
}

.party-toggle button.is-active {
    background: var(--gold);
    color: var(--ink);
}

.flag {
    border-left: 3px solid;
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 18px;
    margin-bottom: 14px;
    font-size: 13px;
}

.flag--critical {
    border-color: var(--red);
}

.flag--high {
    border-color: var(--rust);
}

.flag--medium {
    border-color: var(--amber);
}

.flag__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.badge--critical {
    background: var(--red);
    color: #fff;
}

.badge--high {
    background: var(--rust);
    color: #fff;
}

.badge--medium {
    background: var(--amber);
    color: var(--ink);
}

.badge--low {
    background: var(--blue);
    color: #fff;
}

.flag__title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 13px;
    color: var(--cream);
}

.flag__quote {
    color: var(--stone);
    font-style: italic;
    margin-bottom: 6px;
    font-size: 12px;
}

.flag__plain {
    color: var(--cream);
    margin: 0;
    font-size: 13px;
}

.report__verdict {
    margin-top: 24px;
    padding: 16px 18px;
    background: rgba(45, 74, 62, 0.25);
    border-left: 3px solid var(--green);
    color: var(--cream);
    font-size: 13px;
}

.report__verdict strong {
    color: var(--green);
    font-family: var(--sans);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.report__note {
    text-align: center;
    margin-top: 22px;
    font-size: 11px;
    color: var(--stone);
    font-style: italic;
}

/* ----- Testimonials ----- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.quote {
    background: #fff;
    padding: 40px 36px;
    border-top: 2px solid var(--gold);
}

.quote__body {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 24px;
}

.quote__by {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 700;
}

/* ----- Open source section ----- */
.oss-block {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.oss-block h2 {
    color: var(--cream);
    margin-bottom: 22px;
}

.oss-block .lead {
    color: rgba(250, 250, 250, 0.7);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

/* ----- Final CTA ----- */
.final-cta {
    background: var(--ink);
    color: var(--cream);
    padding: clamp(80px, 11vw, 140px) 0;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.final-cta h2 {
    font-size: clamp(40px, 5.6vw, 64px);
    margin-bottom: 22px;
}

.final-cta .accent {
    color: var(--gold);
    font-style: italic;
}

.final-cta p {
    color: rgba(250, 250, 250, 0.7);
    max-width: 50ch;
    margin: 0 auto 36px;
    font-size: 18px;
}

.final-cta__note {
    margin-top: 26px;
    font-size: 11px;
    color: var(--stone);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--sans);
    font-weight: 700;
}

/* ----- Footer ----- */
.footer {
    background: #08070A;
    color: var(--cream);
    padding: 80px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__col h5 {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 18px;
}

.footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__col li {
    margin-bottom: 10px;
}

.footer__col a {
    color: rgba(250, 250, 250, 0.65);
    font-size: 14px;
    transition: color 0.2s;
}

.footer__col a:hover {
    color: var(--gold);
}

.footer__brand {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer__tag {
    color: rgba(250, 250, 250, 0.7);
    font-size: 14px;
    max-width: 32ch;
    margin: 0 0 18px;
}

.footer__disclaimer {
    padding: 14px 16px;
    border: 1px solid rgba(181, 69, 27, 0.4);
    background: rgba(181, 69, 27, 0.08);
    color: rgba(250, 250, 250, 0.85);
    font-size: 11px;
    line-height: 1.5;
    max-width: 32ch;
}

.footer__bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(250, 250, 250, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--stone);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--sans);
    font-weight: 700;
}

.footer__bottom a {
    color: var(--stone);
}

.footer__bottom a:hover {
    color: var(--gold);
}

/* ----- Pricing ----- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.tier {
    background: #fff;
    border: 1px solid rgba(19, 17, 14, 0.1);
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 50px -25px rgba(19, 17, 14, 0.2);
}

.tier__head {
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(19, 17, 14, 0.08);
}

.tier__name {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.tier__price {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 52px;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--ink);
}

.tier__price small {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--stone);
    font-weight: 400;
    margin-left: 4px;
}

.tier__sub {
    font-size: 13px;
    color: var(--stone);
    margin: 6px 0 0;
}

.tier__body {
    padding: 28px 32px;
    flex: 1;
}

.tier__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.tier__features li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(19, 17, 14, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tier__features li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    line-height: 1.5;
}

.tier__features li.no::before {
    content: "✕";
    color: var(--stone);
}

.tier__features li.no {
    color: var(--stone);
}

.tier__foot {
    padding: 0 32px 32px;
}

.tier--featured {
    border: 1px solid var(--gold);
    position: relative;
    box-shadow: 0 30px 60px -30px rgba(201, 168, 76, 0.35);
}

.tier--featured .tier__head {
    background: var(--gold);
    color: var(--ink);
    border-bottom-color: rgba(19, 17, 14, 0.18);
}

.tier--featured .tier__name {
    color: var(--ink);
}

.tier--featured::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--gold);
    padding: 6px 18px;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* ----- Section heads ----- */
.section-head {
    max-width: 720px;
    margin: 0 auto 20px;
    text-align: center;
}

.section-head--left {
    text-align: left;
    margin-left: 0;
}

/* ----- Process / Inner pages ----- */
.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.feature {
    padding: 30px;
    background: #fff;
    border-left: 3px solid var(--gold);
}

.feature__icon {
    font-family: var(--serif);
    font-weight: 900;
    color: var(--gold-light);
    font-size: 44px;
    line-height: 1;
    margin-bottom: 14px;
}

.feature h3 {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.feature p {
    color: var(--stone);
    font-size: 15px;
    margin: 0;
}

/* ----- Page hero (inner pages) ----- */
.page-hero {
    background: var(--ink);
    color: var(--cream);
    padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    text-align: center;
}

.page-hero h1 {
    color: var(--cream);
    font-size: clamp(40px, 6vw, 72px);
}

.page-hero .accent {
    color: var(--gold);
    font-style: italic;
}

.page-hero p {
    color: rgba(250, 250, 250, 0.7);
    max-width: 56ch;
    margin: 0 auto;
    font-size: 18px;
}

/* ----- Analyzer App page ----- */
.app-shell {
    background: var(--ink);
    color: var(--cream);
    min-height: calc(100vh - 78px);
    padding: 60px 0 100px;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.upload {
    background: #1A1714;
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 32px;
}

.upload h2 {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.drop {
    border: 1px dashed rgba(201, 168, 76, 0.4);
    padding: 50px 30px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
    margin-bottom: 24px;
}

.drop:hover,
.drop.is-drag {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

.drop__icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.drop__label {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 6px;
}

.drop__hint {
    font-size: 12px;
    color: var(--stone);
    margin: 0;
}

.drop input[type="file"] {
    display: none;
}

.divider-label {
    text-align: center;
    margin: 18px 0;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--stone);
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 8px;
}

.field textarea,
.field input,
.field select {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    color: var(--cream);
    font-family: var(--mono);
    font-size: 13px;
    padding: 12px 16px;
    transition: border-color 0.2s;
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field textarea:focus,
.field input:focus,
.field select:focus {
    outline: 0;
    border-color: var(--gold);
}

.result {
    background: #1A1714;
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 32px;
    min-height: 540px;
}

.result__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--stone);
}

.result__empty .emoji {
    font-size: 48px;
    margin-bottom: 14px;
    color: var(--gold);
}

.result__empty p {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.loader {
    text-align: center;
    padding: 40px 20px;
}

.spinner {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(201, 168, 76, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader__lines {
    text-align: left;
    max-width: 320px;
    margin: 24px auto 0;
    font-size: 12px;
    color: var(--stone);
    line-height: 2;
}

.loader__lines .done {
    color: var(--green);
}

/* ----- Info box ----- */
.info {
    background: rgba(45, 74, 62, 0.12);
    border-left: 3px solid var(--gold);
    color: var(--cream);
    padding: 14px 18px;
    font-size: 13px;
    margin-top: 20px;
}

.info--light {
    background: #F2EFE8;
    border-left-color: var(--gold);
    color: var(--forest);
}

/* ----- Faq / accordions on inner pages ----- */
.faq {
    margin-top: 60px;
    border-top: 1px solid rgba(19, 17, 14, 0.08);
}

.faq__item {
    border-bottom: 1px solid rgba(19, 17, 14, 0.08);
    padding: 24px 0;
}

.faq__q {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--ink);
}

.faq__a {
    color: var(--stone);
    margin: 0;
    font-size: 15px;
}

/* ----- About story ----- */
.story {
    max-width: 720px;
    margin: 0 auto;
}

.story p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 24px;
}

.story p.lede {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.5;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 36px;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
}

/* ----- Mobile ----- */
@media (max-width: 980px) {
    .hero__grid,
    .how__grid,
    .app-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid,
    .feature-row,
    .testimonials,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .nav__hamburger {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px var(--gutter);
        gap: 20px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        transform: translateY(-110%);
        transition: transform 0.3s ease;
    }

    .nav.is-open .nav__links {
        transform: translateY(0);
    }

    .hero__cta {
        flex-direction: column;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 32px;
    }

    .steps li {
        padding-left: 70px;
        margin-bottom: 36px;
    }

    .steps li::before {
        font-size: 42px;
    }
}

/* Sticky mobile bottom bar */
.mobile-cta {
    display: none;
}

@media (max-width: 760px) {
    .mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 40;
        padding: 12px 16px;
        background: rgba(8, 7, 10, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(201, 168, 76, 0.2);
    }

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

    body {
        padding-bottom: 80px;
    }
}

/* ----- Skip link & focus ----- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold);
    color: var(--ink);
    padding: 12px 18px;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 100;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
    outline: 2px solid var(--cream);
    outline-offset: 2px;
}

/* Global focus visibility */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn:focus-visible,
.nav__link:focus-visible {
    outline-offset: 4px;
}

/* ----- Info box variants ----- */
.info--warn {
    border-left-color: var(--amber);
    background: rgba(212, 132, 26, 0.1);
    color: var(--cream);
}

.info--danger {
    border-left-color: var(--rust);
    background: rgba(181, 69, 27, 0.12);
    color: var(--cream);
}

.info code {
    font-family: var(--mono);
    font-size: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 1px 6px;
    color: var(--gold);
}

.link-gold {
    color: var(--gold);
    text-decoration: underline;
}

/* ----- Loader extras ----- */
.loader__title {
    color: var(--gold);
}

.loader__lines .pending {
    color: var(--stone);
}

/* ----- Report extras ----- */
.report--bare {
    border: 0;
    padding: 0;
    background: transparent;
}

.report__score--green {
    background: #0E2218;
    border-left-color: var(--green);
}

.report__score--amber {
    background: #1E1800;
    border-left-color: var(--amber);
}

.report__score--rust {
    background: #1E0E08;
    border-left-color: var(--rust);
}

.report__score--red {
    background: #1E0606;
    border-left-color: var(--red);
}

.report__meta--gold {
    color: var(--gold);
    margin-top: 4px;
}

.report__meta--right {
    text-align: right;
}

/* ----- About story contact cards ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.contact-card {
    display: block;
    padding: 28px;
    background: #fff;
    border-left: 3px solid var(--gold);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -20px rgba(19, 17, 14, 0.18);
}

.contact-card__value {
    font-family: var(--mono);
    font-size: 16px;
    color: var(--ink);
    margin-top: 12px;
}

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

/* ----- Pricing FSBO callout ----- */
.fsbo-callout {
    margin-top: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px;
    background: var(--ink);
    color: var(--cream);
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.fsbo-callout__body {
    flex: 1;
    min-width: 280px;
}

.fsbo-callout__body p {
    color: rgba(250, 250, 250, 0.7);
    margin: 0;
}

.fsbo-callout__body h3 {
    color: var(--cream);
    margin-bottom: 10px;
}

.fsbo-callout__price {
    text-align: right;
}

.fsbo-callout__price-num {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 52px;
    color: var(--gold);
    line-height: 1;
}

.fsbo-callout__price-meta {
    font-size: 11px;
    color: var(--stone);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--sans);
    font-weight: 700;
    margin-bottom: 18px;
}

/* ----- Print: clean report ----- */
@media print {
    .nav,
    .footer,
    .mobile-cta,
    .upload,
    .info,
    .btn,
    [data-mode-banner] {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        padding: 0;
    }

    .app-shell {
        background: #fff;
        color: #000;
        padding: 0;
    }

    .result {
        background: #fff;
        color: #000;
        border: 0;
        padding: 0;
    }

    .app-grid {
        display: block;
    }

    .report__score,
    .flag,
    .report__verdict {
        background: #f5f5f5 !important;
        color: #000 !important;
        page-break-inside: avoid;
    }

    .badge,
    .report__score-num,
    .flag__title,
    .flag__plain {
        color: #000 !important;
    }
}

/* ----- Form / waitlist ----- */
.waitlist {
    max-width: 560px;
    margin: 0 auto;
}

.waitlist__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.waitlist input[type="email"] {
    flex: 1;
    min-width: 240px;
    background: #111;
    border: 1px solid #333;
    color: var(--cream);
    font-family: var(--mono);
    font-size: 14px;
    padding: 14px 18px;
}

.waitlist input[type="email"]:focus {
    outline: 0;
    border-color: var(--gold);
}

.waitlist__msg {
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--green);
    min-height: 1.5em;
}

.waitlist__msg.is-error {
    color: var(--amber);
}

/* ----- Generic prose page ----- */
.prose {
    max-width: 720px;
    margin: 0 auto;
}

.prose h2 {
    margin-top: 48px;
    font-size: 28px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p,
.prose li {
    color: var(--ink);
    line-height: 1.7;
}

.prose ul {
    padding-left: 22px;
}

.prose strong {
    color: var(--ink);
}

.prose code {
    font-family: var(--mono);
    font-size: 0.92em;
    background: var(--paper);
    padding: 1px 6px;
    border-radius: 2px;
}

/* ----- Utility ----- */
.center {
    text-align: center;
}

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

.mt-0 {
    margin-top: 0;
}

.mb-lg {
    margin-bottom: 48px;
}

.hidden {
    display: none !important;
}

.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;
}

/* =========================================================================
   PREMIUM REFINEMENT LAYER
   Editorial typography · luxurious spacing · hairlines · subtle motion
   ========================================================================= */

/* --- Refined body & rendering --- */
body {
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

/* --- Tighten the type scale, increase contrast --- */
h1 {
    font-size: clamp(56px, 8.2vw, 104px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 900;
}

h2 {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.028em;
    font-weight: 700;
}

h3 {
    font-size: clamp(20px, 2.2vw, 24px);
    letter-spacing: -0.01em;
}

.lead {
    font-size: clamp(17px, 1.5vw, 19px);
    line-height: 1.65;
    font-family: var(--mono);
    font-weight: 400;
    color: var(--stone);
}

/* --- Generous, luxurious section padding --- */
.section {
    padding: clamp(96px, 13vw, 180px) 0;
}

.section--paper {
    background: var(--paper);
    background-image:
        radial-gradient(circle at 100% 0, rgba(201, 168, 76, 0.03), transparent 50%),
        radial-gradient(circle at 0 100%, rgba(45, 74, 62, 0.025), transparent 50%);
}

.section--dark {
    background: var(--ink);
    background-image:
        radial-gradient(circle at 10% 0%, rgba(201, 168, 76, 0.08), transparent 50%),
        radial-gradient(circle at 90% 100%, rgba(201, 168, 76, 0.04), transparent 50%);
    position: relative;
}

/* --- Editorial section labels (file-number style) --- */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 36px;
}

.kicker::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.kicker__num {
    font-family: var(--mono);
    font-weight: 400;
    color: var(--stone);
    letter-spacing: 0.18em;
}

.section--dark .kicker {
    color: var(--gold-light);
}

.section--dark .kicker__num {
    color: rgba(250, 250, 250, 0.4);
}

/* --- Refined eyebrow --- */
.eyebrow {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 28px;
}

/* --- Italic accent recurrence --- */
.accent,
.italic-accent {
    font-style: italic;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--serif);
}

/* --- Hairline rule (signature element) --- */
.rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 32px 0;
    border: 0;
}

.rule--center {
    margin-left: auto;
    margin-right: auto;
}

.rule--full {
    width: 100%;
    background: rgba(113, 113, 122, 0.2);
}

.section--dark .rule--full {
    background: rgba(250, 250, 250, 0.08);
}

/* --- Refined nav --- */
.nav {
    background: rgba(19, 17, 14, 0.85);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav__inner {
    height: 84px;
}

.brand__mark {
    font-size: 22px;
    letter-spacing: 0.22em;
}

.brand__sub {
    font-size: 8.5px;
    letter-spacing: 0.36em;
}

.nav__link {
    font-size: 11px;
    letter-spacing: 0.22em;
}

/* --- Refined buttons --- */
.btn {
    padding: 17px 32px;
    font-size: 11px;
    letter-spacing: 0.28em;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(-2px);
    letter-spacing: 0.32em;
}

.btn--large {
    padding: 22px 42px;
    font-size: 12px;
}

.btn--primary {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.5), 0 10px 30px -10px rgba(201, 168, 76, 0.35);
}

.btn--primary:hover {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.8), 0 16px 40px -10px rgba(201, 168, 76, 0.45);
}

/* --- Cinematic Hero --- */
.hero {
    padding: clamp(120px, 16vw, 200px) 0 clamp(100px, 12vw, 160px);
    position: relative;
}

.hero::before {
    background: radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.12), transparent 55%);
}

.hero__grid {
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(48px, 7vw, 96px);
}

.hero h1 {
    margin-bottom: 36px;
}

.hero__sub {
    font-family: var(--mono);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    color: rgba(250, 250, 250, 0.62);
    max-width: 50ch;
    margin-bottom: 48px;
}

.hero__oss {
    background: rgba(201, 168, 76, 0.05);
    backdrop-filter: blur(4px);
    border-color: rgba(201, 168, 76, 0.35);
    padding: 9px 18px;
    margin-bottom: 44px;
    font-size: 10.5px;
    letter-spacing: 0.32em;
    font-weight: 700;
}

.hero__meta {
    gap: 36px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.hero__meta span {
    font-size: 10.5px;
    letter-spacing: 0.22em;
}

.hero__meta span::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 2px;
}

/* --- Refined terminal --- */
.terminal {
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow:
        0 50px 100px -30px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(201, 168, 76, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.terminal__body {
    min-height: 420px;
    max-height: 500px;
    font-size: 13.5px;
    line-height: 1.85;
}

.terminal__bar {
    padding: 14px 18px;
}

/* --- Refined "stats / promise" strip (replaces marquee) --- */
.promise {
    background: var(--ink);
    color: var(--cream);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    padding: 56px 0;
}

.promise__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.promise__item {
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.promise__item + .promise__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(201, 168, 76, 0.18);
}

.promise__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    color: var(--gold);
    margin-bottom: 14px;
}

.promise__label {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--stone);
}

@media (max-width: 760px) {
    .promise__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
    }
    .promise__item + .promise__item::before {
        display: none;
    }
}

/* --- Refined editorial cards --- */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(113, 113, 122, 0.18);
    margin-top: 80px;
}

.editorial-item {
    background: var(--cream);
    padding: 56px 44px 64px;
    position: relative;
    transition: background 0.4s;
}

.section--paper .editorial-item {
    background: var(--paper);
}

.editorial-item:hover {
    background: #fff;
}

.section--paper .editorial-item:hover {
    background: var(--cream);
}

.editorial-item__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.editorial-item__title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.editorial-item__body {
    color: var(--stone);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.editorial-item::after {
    content: "";
    position: absolute;
    left: 44px;
    top: 56px;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.4s, width 0.4s;
}

.editorial-item:hover::after {
    opacity: 1;
    width: 56px;
}

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

/* --- Refined steps --- */
.steps li {
    padding-left: 100px;
    margin-bottom: 56px;
    position: relative;
}

.steps li::before {
    font-family: var(--serif);
    font-weight: 900;
    font-style: italic;
    font-size: 72px;
    top: -16px;
}

.steps h3 {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
}

.steps p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(250, 250, 250, 0.7);
}

/* --- Pull-quote testimonial --- */
.testimonials {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: rgba(113, 113, 122, 0.2);
    margin-top: 80px;
}

.quote {
    background: var(--cream);
    border-top: 0;
    padding: 56px 44px;
}

.section--paper .quote {
    background: var(--paper);
}

.quote__body {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.45;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.quote__body::before {
    content: "\201C";
    display: block;
    font-family: var(--serif);
    font-size: 64px;
    line-height: 0.3;
    color: var(--gold);
    margin-bottom: 32px;
    font-style: normal;
}

.quote__by {
    font-size: 10.5px;
    letter-spacing: 0.28em;
}

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

/* --- Refined section heads --- */
.section-head {
    max-width: 760px;
    margin: 0 auto 24px;
}

.section-head h2 {
    margin-bottom: 24px;
}

.section-head p.lead {
    margin-left: auto;
    margin-right: auto;
}

/* --- Final CTA refinement --- */
.final-cta {
    padding: clamp(100px, 14vw, 180px) 0;
    background: var(--ink);
    position: relative;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.08), transparent 50%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(48px, 7.5vw, 96px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.final-cta p {
    font-family: var(--mono);
    font-size: clamp(15px, 1.4vw, 17px);
    color: rgba(250, 250, 250, 0.6);
    max-width: 48ch;
    margin: 0 auto 48px;
}

.final-cta__note {
    margin-top: 36px;
    color: var(--stone);
    font-size: 10px;
}

/* --- Page hero (inner pages) refined --- */
.page-hero {
    padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
    text-align: left;
    border-bottom: 0;
}

.page-hero .wrap {
    max-width: 920px;
}

.page-hero .eyebrow {
    margin-bottom: 36px;
}

.page-hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1;
    margin-bottom: 32px;
}

.page-hero p {
    font-family: var(--mono);
    color: rgba(250, 250, 250, 0.65);
    max-width: 60ch;
    margin: 0;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.7;
}

/* --- Refined footer --- */
.footer {
    padding: 100px 0 36px;
    background: #07060A;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    margin-bottom: 80px;
}

.footer__brand {
    font-size: 24px;
    letter-spacing: 0.22em;
    margin-bottom: 20px;
}

.footer__tag {
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(250, 250, 250, 0.55);
    max-width: 34ch;
    margin: 0 0 28px;
}

.footer__disclaimer {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: rgba(250, 250, 250, 0.75);
    font-size: 12px;
    line-height: 1.6;
    padding: 16px 18px;
    max-width: 34ch;
}

.footer__disclaimer strong {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.footer__col h5 {
    font-size: 10px;
    letter-spacing: 0.32em;
    margin-bottom: 24px;
}

.footer__col li {
    margin-bottom: 12px;
}

.footer__col a {
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(250, 250, 250, 0.55);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(250, 250, 250, 0.06);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    color: rgba(250, 250, 250, 0.4);
}

/* --- Refined open-source block --- */
.oss-block h2 {
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    margin-bottom: 28px;
}

.oss-block .lead {
    font-size: clamp(15px, 1.4vw, 17px);
    margin-bottom: 48px;
}

/* --- Inline SVG icon utility --- */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon--lg {
    width: 32px;
    height: 32px;
}

.icon--xl {
    width: 48px;
    height: 48px;
}

/* --- Refined drop zone --- */
.drop {
    padding: 64px 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.015);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drop:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-1px);
}

.drop__icon {
    color: var(--gold);
    margin-bottom: 18px;
    font-size: 0;
}

.drop__icon svg {
    width: 36px;
    height: 36px;
}

.drop__label {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.22em;
    margin-bottom: 8px;
}

.drop__hint {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--stone);
}

/* --- Pricing-single (free tier) --- */
.free-card {
    max-width: 640px;
    margin: 80px auto 0;
    padding: 64px 56px;
    background: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.35);
    box-shadow: 0 30px 80px -30px rgba(19, 17, 14, 0.18);
    text-align: center;
    position: relative;
}

.free-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.free-card__tag {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 32px;
}

.free-card__price {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(72px, 10vw, 120px);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.free-card__price small {
    font-family: var(--mono);
    font-size: 16px;
    color: var(--stone);
    font-weight: 400;
    letter-spacing: 0;
}

.free-card__sub {
    font-family: var(--mono);
    color: var(--stone);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 42ch;
}

.free-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 48px;
    text-align: left;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 14px;
}

.free-card__features li {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.5;
}

.free-card__features li::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--gold);
    margin-top: 11px;
    flex-shrink: 0;
}

/* --- "What's next" callout (replaces enterprise tier) --- */
.next-block {
    margin-top: 100px;
    padding: 56px 0;
    border-top: 1px solid rgba(113, 113, 122, 0.25);
    text-align: center;
}

.next-block h3 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 28px;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.next-block p {
    font-family: var(--mono);
    color: var(--stone);
    font-size: 14px;
    line-height: 1.7;
    max-width: 50ch;
    margin: 0 auto 28px;
}

/* --- Refined report --- */
.report {
    background: #0F0D0A;
    border: 1px solid rgba(201, 168, 76, 0.18);
    padding: 40px;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.report__head {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.08);
}

.report__meta {
    font-size: 10px;
    letter-spacing: 0.28em;
}

.report__score {
    padding: 24px 28px;
    margin-bottom: 32px;
}

.report__score-num {
    font-size: 52px;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.report__score-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    margin-top: 4px;
}

.flag {
    padding: 20px 22px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.35);
}

.flag__head {
    margin-bottom: 12px;
}

.flag__title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.flag__quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: rgba(250, 250, 250, 0.55);
    border-left: 1px solid rgba(201, 168, 76, 0.3);
    padding-left: 14px;
    margin-bottom: 12px;
}

.flag__plain {
    font-size: 13.5px;
    line-height: 1.6;
}

.badge {
    padding: 4px 11px;
    font-size: 9px;
    letter-spacing: 0.26em;
    font-weight: 700;
}

.report__verdict {
    margin-top: 32px;
    padding: 22px 24px;
    background: rgba(45, 74, 62, 0.18);
    border-left: 2px solid var(--green);
    color: rgba(250, 250, 250, 0.92);
    font-size: 14px;
    line-height: 1.65;
    font-family: var(--mono);
}

.report__verdict strong {
    font-size: 10px;
    letter-spacing: 0.32em;
    margin-bottom: 10px;
}

/* --- Party toggle refined --- */
.party-toggle {
    border: 1px solid rgba(250, 250, 250, 0.1);
    padding: 4px;
    gap: 0;
    margin-bottom: 28px;
}

.party-toggle button {
    background: transparent;
    color: rgba(250, 250, 250, 0.45);
    padding: 11px 14px;
    font-size: 10px;
    letter-spacing: 0.22em;
    transition: all 0.3s;
}

.party-toggle button:hover {
    color: var(--cream);
}

.party-toggle button.is-active {
    background: var(--gold);
    color: var(--ink);
}

/* --- Scroll reveal animations --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
    .btn:hover { transform: none; letter-spacing: 0.28em; }
}

/* --- Refined upload block --- */
.upload {
    background: rgba(250, 250, 250, 0.025);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 44px 40px;
    backdrop-filter: blur(6px);
}

.upload h2 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 28px;
}

.field label {
    font-size: 9.5px;
    letter-spacing: 0.28em;
}

.field input,
.field select,
.field textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(250, 250, 250, 0.08);
    font-size: 13.5px;
    padding: 14px 18px;
    transition: border-color 0.3s, background 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: rgba(0, 0, 0, 0.55);
    border-color: var(--gold);
}

.divider-label {
    margin: 24px 0;
    font-size: 9px;
    letter-spacing: 0.4em;
    color: rgba(113, 113, 122, 0.5);
    position: relative;
    text-align: center;
}

.divider-label::before,
.divider-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 32%;
    height: 1px;
    background: rgba(113, 113, 122, 0.18);
}

.divider-label::before { left: 0; }
.divider-label::after { right: 0; }

/* --- Info box refined --- */
.info {
    background: rgba(201, 168, 76, 0.05);
    border-left: 2px solid var(--gold);
    padding: 18px 22px;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.6;
    color: var(--cream);
}

.info--warn {
    background: rgba(212, 132, 26, 0.08);
    border-left-color: var(--amber);
}

.info--danger {
    background: rgba(181, 69, 27, 0.1);
    border-left-color: var(--rust);
}

.info--light {
    background: rgba(0, 0, 0, 0.04);
    color: var(--ink);
}

/* --- Help-positioned disclaimer (footer + page footers) --- */
.helper-note {
    background: rgba(45, 74, 62, 0.08);
    border-left: 2px solid var(--gold);
    padding: 16px 20px;
    color: var(--cream);
    font-family: var(--mono);
    font-size: 12.5px;
    line-height: 1.65;
}

.helper-note strong {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 9.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.section--paper .helper-note,
.section--light .helper-note {
    color: var(--ink);
    background: rgba(45, 74, 62, 0.04);
}

/* --- Refined prose --- */
.prose h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-top: 64px;
    margin-bottom: 20px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p,
.prose li {
    font-family: var(--mono);
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink);
}

.prose strong {
    font-family: var(--sans);
    font-weight: 700;
}

/* --- Refined contact grid (about page) --- */
.contact-card {
    background: var(--cream);
    border-left: 1px solid rgba(201, 168, 76, 0.4);
    transition: background 0.4s, border-color 0.3s;
    padding: 32px 36px;
}

.contact-card:hover {
    background: #fff;
    border-left-color: var(--gold);
    transform: none;
    box-shadow: none;
}

.contact-card .eyebrow {
    margin-bottom: 14px;
    color: var(--stone);
}

/* --- Contract-type grid (homepage) --- */
.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 80px;
    border: 1px solid var(--line);
}

.type-card {
    background: #fff;
    padding: 56px 44px 48px;
    color: var(--ink);
    position: relative;
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -30px rgba(10, 10, 11, 0.14);
    z-index: 1;
}

.type-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width 0.4s ease;
}

.type-card:hover::after {
    width: 100%;
}

.type-card__num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--gold);
    margin-bottom: 28px;
}

.type-card__icon {
    color: var(--ink);
    margin-bottom: 32px;
    transition: color 0.3s;
}

.type-card:hover .type-card__icon {
    color: var(--gold);
}

.type-card__icon svg {
    width: 44px;
    height: 44px;
}

.type-card__title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--ink);
}

.type-card__body {
    font-family: var(--mono);
    font-size: 14px;
    line-height: 1.65;
    color: var(--stone);
    margin: 0 0 32px;
    flex: 1;
}

.type-card__cta {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.type-card__cta span {
    transition: transform 0.3s;
}

.type-card:hover .type-card__cta span {
    transform: translateX(6px);
}

@media (max-width: 980px) {
    .type-grid {
        grid-template-columns: 1fr;
    }
    .type-card {
        min-height: auto;
    }
}

/* --- Analyzer empty state --- */
.result__empty {
    padding: 80px 20px 60px;
    text-align: center;
}

.empty-mark {
    color: rgba(201, 168, 76, 0.5);
    margin: 0 auto 32px;
    width: 80px;
}

.empty-mark svg {
    width: 80px;
    height: 80px;
}

.empty-title {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    font-size: 19px;
    letter-spacing: -0.01em;
    text-transform: none;
    margin: 0 auto 36px;
    max-width: 24ch;
}

.empty-steps {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 320px;
    text-align: left;
    display: grid;
    gap: 14px;
}

.empty-steps li {
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    display: flex;
    align-items: baseline;
    gap: 16px;
    line-height: 1.4;
}

.empty-steps__num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 14px;
}

.empty-steps em {
    color: var(--gold);
    font-style: italic;
    font-family: var(--serif);
}

/* --- Mobile refinements --- */
@media (max-width: 980px) {
    h1 { font-size: 52px; }
    h2 { font-size: 36px; }
    .section { padding: 80px 0; }
    .editorial-grid,
    .testimonials {
        gap: 1px;
    }
    .hero__meta { gap: 24px; }
    .free-card { padding: 48px 32px; margin-top: 56px; }
}

@media (max-width: 720px) {
    h1 { font-size: 44px; letter-spacing: -0.025em; }
    .hero__cta .btn { letter-spacing: 0.22em; }
    .hero__cta .btn:hover { letter-spacing: 0.24em; }
}

/* =========================================================================
   LIGHT REFRESH
   Hero, page-hero, final CTA — predominantly light, dark only where it adds.
   ========================================================================= */

/* Body & nav */
body {
    background: #FFFFFF;
    color: var(--ink);
}

.nav {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
}

.brand__mark {
    color: var(--ink);
}

.brand__sub {
    color: var(--stone);
}

.nav__link {
    color: var(--stone);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--ink);
}

.nav__star {
    color: var(--ink);
    border-color: var(--line);
}

.nav__hamburger span {
    background: var(--ink);
}

@media (max-width: 760px) {
    .nav__links {
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--line);
    }
}

/* Hero — light, refined */
.hero {
    background: var(--cream);
    color: var(--ink);
    padding: clamp(120px, 16vw, 200px) 0 clamp(100px, 12vw, 160px);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before {
    background: radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.12), transparent 55%),
        radial-gradient(ellipse at 0% 90%, rgba(10, 10, 11, 0.04), transparent 50%);
}

.hero h1 {
    color: var(--ink);
}

.hero h1 .accent,
.hero h1 .italic-accent {
    color: var(--gold);
}

.hero__sub {
    color: var(--stone);
}

.hero__oss {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold);
}

.hero__meta {
    color: var(--stone);
    border-top-color: var(--line);
}

.hero__meta span {
    color: var(--stone);
}

/* Promise strip — light variant */
.promise {
    background: var(--cream);
    color: var(--ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.promise__num {
    color: var(--ink);
}

.promise__num small {
    color: var(--stone) !important;
}

.promise__label {
    color: var(--stone);
}

.promise__item + .promise__item::before {
    background: var(--line);
}

/* Page hero — light */
.page-hero {
    background: var(--cream);
    color: var(--ink);
    padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    color: var(--ink);
}

.page-hero h1 .accent,
.page-hero h1 .italic-accent {
    color: var(--gold);
}

.page-hero p {
    color: var(--stone);
}

/* Final CTA — light */
.final-cta {
    background: var(--cream);
    color: var(--ink);
    border-top: 1px solid var(--line);
}

.final-cta h2 {
    color: var(--ink);
}

.final-cta h2 .accent,
.final-cta h2 .italic-accent {
    color: var(--gold);
}

.final-cta p {
    color: var(--stone);
}

.final-cta::before {
    background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.1), transparent 55%);
}

.final-cta__note {
    color: var(--stone);
}

/* Section--light: explicit light variant (replaces dark on selective sections) */
.section--light {
    background: #FFFFFF;
    color: var(--ink);
}

.section--light h2 {
    color: var(--ink);
}

.section--light .lead {
    color: var(--stone);
}

.section--light .oss-block h2 {
    color: var(--ink);
}

.section--light .oss-block .lead {
    color: var(--stone);
}

/* Section--paper a touch warmer */
.section--paper {
    background: var(--paper);
}

/* Editorial cards: refresh on light */
.editorial-grid {
    background: var(--line);
}

.editorial-item {
    background: #FFFFFF;
}

.editorial-item:hover {
    background: #FFFFFF;
    box-shadow: inset 0 0 0 1px var(--gold);
}

.section--paper .editorial-item {
    background: var(--cream);
}

.section--paper .editorial-item:hover {
    background: #FFFFFF;
}

/* Quote cards: light variant default */
.testimonials {
    background: var(--line);
}

.quote {
    background: #FFFFFF;
}

.section--paper .quote {
    background: var(--cream);
}

/* Footer — keep dark; it bookends the page nicely */

/* App-shell (analyzer): leave dark — it's the working surface */
.app-shell {
    background: var(--ink);
    color: var(--cream);
}

/* Mobile-cta should match the new lighter feel */
.mobile-cta {
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
}

/* Helper note tweaks for light context */
.section--paper .helper-note,
.section .helper-note {
    color: var(--ink);
    background: rgba(45, 74, 62, 0.04);
}

.section--paper .helper-note strong,
.section .helper-note strong {
    color: var(--gold);
}

/* Skip-link visibility on light bg */
.skip-link {
    background: var(--ink);
    color: var(--cream);
}

/* Language toggle */
.lang-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    padding: 2px;
    margin-left: 8px;
    background: transparent;
}

.lang-toggle button {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 12px;
    color: var(--stone);
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.lang-toggle button.is-active {
    background: var(--ink);
    color: var(--cream);
}

.lang-toggle button:hover:not(.is-active) {
    color: var(--ink);
}

/* Default kicker color on light */
.kicker {
    color: var(--gold);
}

.kicker::before {
    background: var(--gold);
}

.kicker__num {
    color: var(--stone);
}

/* Hero meta dots */
.hero__meta span::before {
    background: var(--gold);
}
