/* ============================================================
   Unbury — site.css · Brand v4 "Daylight"
   Public-site stylesheet. Admin + PHP surfaces stay on styles.css.

   Register: light, airy, dawn-gradient SaaS. White canvases
   floating on page gray, soft blurred auras, pill chrome,
   one gradient word per headline, light product artifacts
   with a dawn glow. Bricolage Grotesque + Figtree + mono data.
   ============================================================ */

:root {
    --canvas:      #FFFFFF;
    --page:        #F3F1EF;
    --well:        #F7F5F3;
    --ink:         #1A140F;
    --body-c:      #5C5248;
    --faint:       #988D82;
    --hairline:    rgba(26, 20, 15, 0.08);
    --hairline-2:  rgba(26, 20, 15, 0.16);
    --sun:         #FF5A2E;
    --peach:       #FF8A55;
    --blush:       #FFAF9E;
    --lilac:       #CFA4F4;
    --coral-text:  #C93A10;
    --ok:          #2E7D3E;
    --dawn: linear-gradient(120deg, #FF5A2E, #FF8A55 38%, #FFAF9E 66%, #CFA4F4 100%);
    --dawn-soft: linear-gradient(120deg, rgba(255,90,46,.08), rgba(255,138,85,.06) 38%, rgba(255,175,158,.08) 66%, rgba(207,164,244,.1) 100%);

    --display: 'Bricolage Grotesque', 'Avenir Next', sans-serif;
    --sans:    'Figtree', -apple-system, 'Helvetica Neue', sans-serif;
    --mono:    'JetBrains Mono', 'SF Mono', monospace;

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

    --glow: 0 24px 80px -24px rgba(255, 90, 46, 0.35);
    --lift: 0 24px 80px -24px rgba(26, 20, 15, 0.16);

    --r-input: 12px;
    --r-card: 20px;
    --r-canvas: 32px;

    --z-nav: 50;
    --z-menu: 60;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    background: var(--page);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    padding: 16px;
}

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

::selection { background: var(--sun); color: #FFF; }

a { color: inherit; }

/* The floating site canvas — everything lives inside */
.frame {
    background: var(--canvas);
    border-radius: var(--r-canvas);
    max-width: 1440px;
    margin: 0 auto;
    overflow: clip;
    position: relative;
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}
.container-narrow { max-width: 880px; }

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; position: relative; }

/* Auras — soft dawn washes. Position per use. */
.aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.aura-sun   { background: radial-gradient(circle, rgba(255, 90, 46, 0.34), transparent 64%); }
.aura-lilac { background: radial-gradient(circle, rgba(207, 164, 244, 0.4), transparent 64%); }
.aura-blush { background: radial-gradient(circle, rgba(255, 175, 158, 0.38), transparent 64%); }
@media (prefers-reduced-motion: no-preference) {
    .aura { animation: auraDrift 70s var(--ease) infinite alternate; }
    @keyframes auraDrift { to { transform: translate(4%, 6%) scale(1.06); } }
}

/* ---------- Type ---------- */
h1, h2, h3 { text-wrap: balance; }

.h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.6rem, 5.6vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.h2 {
    font-family: var(--display);
    font-weight: 650;
    font-size: clamp(1.9rem, 3.5vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
    color: var(--ink);
}

.h3 {
    font-family: var(--display);
    font-weight: 630;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.16;
    letter-spacing: -0.012em;
}

/* One gradient word per headline — the meaning-carrying one. */
.signal {
    background: var(--dawn);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.65;
    color: var(--body-c);
    max-width: 62ch;
    text-wrap: pretty;
}

p { text-wrap: pretty; }

.section-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--coral-text);
    margin-bottom: 14px;
}

/* ---------- Links / buttons / chips ---------- */
.link-underline {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--hairline-2);
    transition: color 160ms var(--ease), text-decoration-color 160ms var(--ease);
}
.link-underline:hover { color: var(--coral-text); text-decoration-color: currentColor; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 15px 27px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 300ms var(--ease), box-shadow 300ms var(--ease),
                border-color 300ms var(--ease), background 300ms var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--ink);
    color: #FFF;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--glow); }

.btn-secondary,
.btn-outline {
    background: var(--canvas);
    color: var(--ink);
    border-color: var(--hairline-2);
}
.btn-secondary:hover,
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn-arrow::after {
    content: '→';
    transition: transform 200ms var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--canvas);
    border: 1px solid var(--hairline-2);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 12.5px;
    color: var(--body-c);
    text-decoration: none;
}
.chip i {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--dawn);
    flex: none;
}
.chip .chip-link { color: var(--coral-text); text-decoration: none; }
.chip .chip-link:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: var(--z-nav);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 200ms var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-family: var(--display);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.03em;
    line-height: 1;
}
.nav-brand img { width: 30px; height: 30px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-links a {
    color: var(--body-c);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    padding: 9px 13px;
    border-radius: 999px;
    transition: color 150ms var(--ease), background 150ms var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); background: var(--well); }

.nav-cta {
    background: var(--ink);
    color: #FFF !important;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 19px !important;
    margin-left: 10px;
    transition: box-shadow 300ms var(--ease), transform 300ms var(--ease) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--glow); }

.nav-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--hairline-2);
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink);
    padding: 10px 16px;
    cursor: pointer;
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 100%;
        z-index: var(--z-menu);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--canvas);
        border-bottom: 1px solid var(--hairline-2);
        padding: 8px 28px 20px;
    }
    .nav.menu-open .nav-links { display: flex; }
    .nav-links a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--hairline);
        border-radius: 0;
        font-size: 16px;
    }
    .nav-links a.nav-cta {
        margin: 14px 0 0;
        border-bottom: none;
        text-align: center;
        border-radius: 999px;
        padding: 14px !important;
        font-size: 15px;
    }
    .nav-menu-btn { display: inline-block; }
}

/* ---------- Hero — centered, product below ---------- */
.hero {
    padding: 76px 0 88px;
    position: relative;
    overflow: clip;
    text-align: center;
}
.hero .aura { z-index: 0; }
.hero > .container { position: relative; z-index: 2; }

.hero-chip { margin-bottom: 26px; }

.hero-headline { max-width: 17ch; margin: 0 auto; }

.hero-sub {
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
    line-height: 1.65;
    color: var(--body-c);
    max-width: 54ch;
    margin: 24px auto 0;
    text-wrap: pretty;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 34px;
}

.hero-proof {
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--faint);
}
.hero-proof b { color: var(--coral-text); font-weight: 500; }

/* ---------- The revenue feed — hero artifact ----------
   One campaign goes out; orders, replies and delivery events
   stream in while attributed revenue ticks up.
   (AnimatedList + CountUp, ported to vanilla.) */
.hero-stagewrap {
    position: relative;
    max-width: 620px;
    margin: 64px auto 0;
    z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
    .hero-stagewrap { animation: floaty 6s ease-in-out infinite alternate; }
    @keyframes floaty { to { transform: translateY(-7px); } }
}

.rev-stage {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--r-card);
    box-shadow: var(--glow);
    overflow: clip;
    text-align: left;
}
.rev-cover { height: 10px; background: var(--dawn); }

.rev-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px 0;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--faint);
}
.rev-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ok);
}
.rev-live i {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--ok);
}
@media (prefers-reduced-motion: no-preference) {
    .rev-live i { animation: livePulse 2.2s var(--ease) infinite; }
    @keyframes livePulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(46, 125, 62, 0.35); }
        50%      { box-shadow: 0 0 0 5px rgba(46, 125, 62, 0); }
    }
}

.rev-total {
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--hairline);
}
.rev-amount {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.rev-amount .bump {
    display: inline-block;
    font-size: 0.42em;
    font-family: var(--sans);
    font-weight: 700;
    color: var(--coral-text);
    margin-left: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 300ms var(--ease), transform 300ms var(--ease);
    vertical-align: 6px;
}
.rev-amount .bump.show { opacity: 1; transform: none; }
.rev-total-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--faint);
    margin-top: 8px;
}

.rev-feed {
    height: 296px;
    padding: 14px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(#000 72%, transparent 97%);
    mask-image: linear-gradient(#000 72%, transparent 97%);
}
.rev-item {
    flex: none;
    height: 62px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 0 16px;
}
.rev-item.enter {
    margin-top: -72px;   /* height + gap — slides the stack down */
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
}
.rev-item.settle {
    margin-top: 0;
    opacity: 1;
    transform: none;
    transition: margin-top 480ms var(--ease), opacity 380ms var(--ease) 120ms,
                transform 480ms var(--ease);
}
.rev-item.is-sale { background: var(--dawn-soft); border-color: rgba(255, 90, 46, 0.18); }

.rev-ico {
    flex: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    background: var(--well);
    color: var(--ink);
}
.rev-item.is-sale .rev-ico,
.rev-ico.grad { background: var(--dawn); color: #FFF; }
.rev-body { min-width: 0; flex: 1; }
.rev-title {
    font-weight: 650;
    font-size: 14px;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rev-meta {
    font-size: 12.5px;
    color: var(--faint);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}
.rev-time {
    flex: none;
    align-self: flex-start;
    padding-top: 11px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--faint);
}

@media (prefers-reduced-motion: reduce) {
    .hero-stagewrap { animation: none; }
    .rev-item.enter { margin-top: 0; opacity: 1; transform: none; }
    .rev-item.settle { transition: none; }
    .rev-amount .bump { transition: none; }
}
@media (max-width: 640px) {
    .rev-feed { height: 258px; }
    .rev-item { height: 58px; }
    .rev-item.enter { margin-top: -68px; }
    .rev-meta { max-width: 46vw; }
}

/* ---------- Trusted-by marquee ---------- */
.trust-strip {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}
.trust-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--faint);
    margin-bottom: 22px;
}
.trust-marquee {
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.trust-track {
    display: flex;
    align-items: center;
    gap: clamp(52px, 7vw, 84px);
    width: max-content;
}
@media (prefers-reduced-motion: no-preference) {
    .trust-track { animation: trustScroll 28s linear infinite; }
    @keyframes trustScroll { to { transform: translateX(-50%); } }
}
.trust-track img {
    height: 30px;
    width: auto;
    flex: none;
    filter: grayscale(1);
    opacity: 0.55;
    transition: filter 300ms var(--ease), opacity 300ms var(--ease);
}
.trust-track img.logo-tall { height: 46px; }
.trust-track img.logo-tbv { height: 78px; }
.trust-track img:hover { filter: none; opacity: 1; }

/* ---------- ESP strip ---------- */
.esp-strip {
    margin-top: 56px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.esp-strip .esp-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--faint);
    margin-bottom: 18px;
}
.esp-names {
    display: flex;
    gap: clamp(20px, 4vw, 44px);
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}
.esp-names span {
    font-family: var(--display);
    font-weight: 650;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--faint);
}

/* ---------- Quiet band / split ---------- */
.band-quiet { background: var(--well); }

.split {
    display: grid;
    grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
    position: relative;
    z-index: 2;
}
.split-copy p { margin-top: 18px; font-size: 16.5px; line-height: 1.7; color: var(--body-c); }
.split-copy p:first-of-type { margin-top: 22px; }
.split-ctas { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 44px; }
}

/* ---------- Audit artifact — light card, dawn header ---------- */
.audit-mock {
    position: relative;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--r-card);
    box-shadow: var(--lift);
    overflow: clip;
    font-family: var(--mono);
}
/* Scan line — sweeps down the card once while the diagnosis populates */
.audit-scan {
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 44%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(to bottom,
        rgba(255,138,85,0) 0%,
        rgba(255,138,85,0.12) 62%,
        rgba(255,90,46,0.22) 100%);
    border-bottom: 1px solid rgba(255,90,46,0.45);
}
.audit-mock.is-playing .audit-scan { animation: auditScan 1.7s var(--ease) 0.08s forwards; }
@keyframes auditScan {
    0%   { opacity: 0; transform: translateY(-100%); }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(245%); }
}
.audit-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--dawn-soft);
    border-bottom: 1px solid var(--hairline);
}
.audit-mock-header .domain {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--ink);
}
.audit-mock-header .domain .audit-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--coral-text);
    flex: none;
}
.audit-mock.is-playing .audit-mock-header .domain .audit-dot { animation: auditPulse 1.1s ease-in-out infinite; }
@keyframes auditPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(0.8); }
}
.audit-mock-header .score {
    font-family: var(--display);
    font-weight: 700;
    font-size: 28px;
    color: var(--coral-text);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.audit-mock-header .score .score-num { font-variant-numeric: tabular-nums; }
.audit-mock-header .score .score-unit {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--faint);
    font-weight: 400;
}
.audit-check-row {
    display: grid;
    grid-template-columns: 24px 100px 1fr;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-bottom: 1px solid var(--hairline);
    font-size: 12px;
}
.audit-check-row:last-child { border-bottom: none; }

/* Armed state — rows sit hidden until the diagnosis plays. Only ever applied by
   JS when motion is allowed, so reduced-motion / no-JS visitors see the end state. */
.audit-mock.is-armed .audit-check-row {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.audit-mock.is-armed .audit-check-row.revealed {
    opacity: 1;
    transform: none;
}
.audit-mock.is-armed .audit-check-row .check {
    transform: scale(0.4);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.audit-mock.is-armed .audit-check-row.revealed .check {
    transform: none;
    opacity: 1;
}
.audit-mock.is-armed .audit-check-row .status {
    opacity: 0;
    transition: opacity 0.4s ease 0.14s;
}
.audit-mock.is-armed .audit-check-row.revealed .status { opacity: 1; }
.audit-check-row .check {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}
.audit-check-row .check.ok   { background: rgba(46, 125, 62, 0.12); color: var(--ok); }
.audit-check-row .check.fail { background: rgba(255, 90, 46, 0.14); color: var(--coral-text); }
.audit-check-row .lab    { color: var(--ink); font-weight: 500; }
.audit-check-row .status { color: var(--faint); text-align: right; }
.audit-check-row .status.fail { color: var(--coral-text); }

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 56px;
    position: relative;
    z-index: 2;
}
.step {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--r-card);
    padding: 30px 30px 34px;
}
.step-n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--dawn);
    color: #FFF;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
}
.step-title {
    font-family: var(--display);
    font-weight: 650;
    font-size: 20px;
    letter-spacing: -0.012em;
    margin-bottom: 8px;
}
.step p { font-size: 15px; line-height: 1.6; color: var(--body-c); }

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

/* ---------- Pricing ---------- */
.price-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--hairline-2);
    border-radius: 24px;
    overflow: clip;
    margin-top: 52px;
    background: var(--canvas);
    position: relative;
    z-index: 2;
}
.price-col {
    display: flex;
    flex-direction: column;
    padding: 38px 34px;
    border-left: 1px solid var(--hairline);
    min-width: 0;
}
.price-col:first-child { border-left: none; }
.price-col.is-featured { background: var(--dawn-soft); }

/* Two-offer layout: the free audit + the engagement */
.price-table.price-two { grid-template-columns: 1fr 1.1fr; }

.price-flag { min-height: 30px; margin-bottom: 10px; }
.price-flag .chip { font-size: 11.5px; padding: 6px 13px; }
.price-name {
    font-family: var(--display);
    font-weight: 650;
    font-size: 21px;
    letter-spacing: -0.012em;
    line-height: 1.2;
}
.price-amount {
    margin-top: 18px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.02em;
    line-height: 1;
}
.price-terms {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--faint);
    margin-top: 8px;
}
.price-desc {
    font-size: 15px;
    line-height: 1.62;
    color: var(--body-c);
    margin-top: 18px;
    flex: 1;
}
.price-cta { margin-top: 26px; }
.price-cta .btn { width: 100%; }

@media (max-width: 860px) {
    .price-table { grid-template-columns: 1fr; }
    .price-col { border-left: none; border-top: 1px solid var(--hairline); }
    .price-col:first-child { border-top: none; }
    .price-flag { min-height: 0; }
    .price-flag:empty { display: none; }
}

/* ---------- FAQ ---------- */
.faq {
    margin-top: 44px;
    border-top: 1px solid var(--hairline-2);
    position: relative;
    z-index: 2;
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 4px;
    font-family: var(--display);
    font-weight: 630;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    letter-spacing: -0.012em;
    transition: color 160ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-family: var(--sans);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--coral-text);
    flex: none;
    transition: transform 240ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--coral-text); }
.faq-item .answer {
    max-width: 66ch;
    padding: 0 4px 26px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-c);
}

/* ---------- CTA — aura canvas ---------- */
.cta-panel {
    position: relative;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 28px;
    padding: clamp(52px, 7vw, 88px) clamp(28px, 5vw, 72px);
    text-align: center;
    overflow: clip;
}
.cta-panel .aura { position: absolute; z-index: 0; }
.cta-panel > *:not(.aura) { position: relative; z-index: 2; }
.cta-panel h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    line-height: 1.06;
    letter-spacing: -0.018em;
    max-width: 21ch;
    margin: 0 auto;
    color: var(--ink);
}
.cta-panel p {
    font-size: 17px;
    line-height: 1.65;
    max-width: 56ch;
    margin: 20px auto 0;
    color: var(--body-c);
}
.cta-panel .cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 34px;
}

/* ---------- Footer — light colophon ---------- */
.footer {
    border-top: 1px solid var(--hairline);
    margin-top: 96px;
    padding: 64px 0 36px;
    position: relative;
    overflow: clip;
}
.footer.footer-flush { margin-top: 0; }
.footer .aura { z-index: 0; }
.footer .container { position: relative; z-index: 2; }
.footer-masthead {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.footer-masthead img { width: clamp(44px, 6vw, 68px); height: auto; }
.footer-masthead b {
    background: var(--dawn);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid var(--hairline);
}
.footer-byline {
    font-size: 14.5px;
    color: var(--body-c);
    max-width: 36ch;
    line-height: 1.55;
}
.footer-byline a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-byline a:hover { color: var(--coral-text); }

.footer-links { display: flex; gap: 4px 22px; flex-wrap: wrap; }
.footer-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 150ms var(--ease);
}
.footer-links a:hover { color: var(--coral-text); }

.footer-fine {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 36px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--faint);
}
.footer-fine a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-fine a:hover { color: var(--ink); }

/* ---------- Interior page header ---------- */
.page-head { padding: 48px 0 0; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--faint);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 150ms var(--ease);
}
.back-link:hover { color: var(--coral-text); }

/* ---------- Forms ---------- */
.form-block { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.form-block label {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}
.form-block .help {
    font-size: 13px;
    color: var(--faint);
    line-height: 1.5;
}
.form-block .help strong { color: var(--ink); font-weight: 600; }
.form-block input,
.form-block select,
.form-block textarea {
    font-family: var(--sans);
    font-size: 15.5px;
    color: var(--ink);
    background: var(--canvas);
    border: 1px solid var(--hairline-2);
    border-radius: var(--r-input);
    padding: 13px 16px;
    width: 100%;
    transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
    -webkit-appearance: none;
    appearance: none;
}
.form-block input::placeholder,
.form-block textarea::placeholder { color: #A39A91; }
.form-block textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form-block input:hover, .form-block select:hover, .form-block textarea:hover { border-color: var(--ink); }
.form-block input:focus, .form-block select:focus, .form-block textarea:focus {
    outline: none;
    border-color: var(--sun);
    box-shadow: 0 0 0 4px rgba(255, 90, 46, 0.12);
}
.form-block select {
    background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                      linear-gradient(-45deg, transparent 50%, var(--ink) 50%);
    background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.form-note {
    font-size: 13.5px;
    color: var(--faint);
    margin-top: 18px;
}

/* ---------- Byline ---------- */
.byline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    font-size: 14px;
    color: var(--faint);
}
.byline strong { color: var(--ink); font-weight: 600; }
.byline-avatar {
    width: 36px; height: 36px;
    flex: none;
    border-radius: 50%;
    background: var(--dawn);
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12.5px;
}

/* ---------- Guide article template ---------- */
.guide-hero { padding: 48px 0 36px; }
.guide-hero .h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); }

.guide-body { padding-bottom: 96px; }
.guide-body .container-narrow { max-width: 760px; }

.guide-toc {
    background: var(--well);
    border-radius: var(--r-card);
    padding: 24px 28px;
    margin-bottom: 56px;
}
.guide-toc-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 10px;
}
.guide-toc ol {
    list-style: none;
    counter-reset: toc;
}
.guide-toc li { counter-increment: toc; }
.guide-toc a {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 7px 0;
    text-decoration: none;
    color: var(--body-c);
    font-weight: 500;
    font-size: 15px;
    transition: color 150ms var(--ease);
}
.guide-toc a::before {
    content: counter(toc);
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--coral-text);
    min-width: 18px;
}
.guide-toc a:hover { color: var(--coral-text); }

.guide-body h2 {
    font-family: var(--display);
    font-weight: 650;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.14;
    letter-spacing: -0.015em;
    margin: 60px 0 18px;
}
.guide-body h2 .num {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 0.6em;
    color: var(--coral-text);
    margin-right: 12px;
    vertical-align: 2px;
}
.guide-body h3 {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.005em;
    margin: 32px 0 10px;
}
.guide-body p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--body-c);
    margin-bottom: 17px;
    max-width: 70ch;
}
.guide-body ul, .guide-body ol {
    padding-left: 22px;
    margin-bottom: 17px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.guide-body li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-c);
}
.guide-body li::marker { color: var(--coral-text); font-weight: 600; }
.guide-body li strong, .guide-body p strong { color: var(--ink); font-weight: 650; }
.guide-body a:not(.btn) {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 150ms var(--ease);
}
.guide-body a:not(.btn):hover { color: var(--coral-text); }
.guide-body a.related-card { text-decoration: none; color: inherit; }
.guide-body code {
    font-family: var(--mono);
    font-size: 0.85em;
    background: var(--well);
    border: 1px solid var(--hairline);
    color: var(--coral-text);
    padding: 2px 6px;
    border-radius: 6px;
}
.guide-body blockquote {
    background: var(--well);
    border-radius: var(--r-card);
    padding: 20px 24px;
    margin: 26px 0;
    font-size: 1.05rem;
    color: var(--ink);
}

/* CTA block inside guides — aura card */
.guide-cta {
    position: relative;
    background:
        radial-gradient(420px 260px at 88% 0%, rgba(207, 164, 244, 0.28), transparent 65%),
        radial-gradient(420px 260px at 4% 100%, rgba(255, 90, 46, 0.16), transparent 65%),
        var(--canvas);
    border: 1px solid var(--hairline-2);
    border-radius: 24px;
    padding: 40px 42px;
    margin: 64px 0 0;
}
.guide-cta h3 {
    font-family: var(--display);
    font-weight: 650;
    font-size: clamp(1.3rem, 2.4vw, 1.65rem);
    letter-spacing: -0.012em;
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--ink);
}
.guide-cta p { color: var(--body-c); font-size: 15.5px; margin-bottom: 0; }
.guide-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
@media (max-width: 640px) { .guide-cta { padding: 30px 24px; } }

/* Read next */
.related { margin-top: 72px; border-top: 1px solid var(--hairline-2); }
.related-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--faint);
    padding: 18px 0 6px;
}
.related-grid { display: flex; flex-direction: column; }
.related-card {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 0;
    border-bottom: 1px solid var(--hairline);
    text-decoration: none;
    color: inherit;
}
.related-card h4 {
    font-family: var(--display);
    font-weight: 630;
    font-size: 16.5px;
    letter-spacing: -0.008em;
    transition: color 160ms var(--ease);
}
.related-card p {
    font-size: 13.5px;
    color: var(--faint);
    margin: 0;
    text-align: right;
    flex: none;
    max-width: 44%;
}
.related-card:hover h4 { color: var(--coral-text); }
@media (max-width: 640px) {
    .related-card { flex-direction: column; gap: 3px; }
    .related-card p { text-align: left; max-width: none; }
}

/* ---------- Guides index ---------- */
.index-list {
    margin-top: 48px;
    border-top: 1px solid var(--hairline-2);
    position: relative;
    z-index: 2;
}
.index-entry {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr) auto;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    padding: 30px 10px;
    border-bottom: 1px solid var(--hairline);
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    transition: background 200ms var(--ease);
}
.index-entry:hover { background: var(--dawn-soft); }
.index-entry:hover .index-title { color: var(--coral-text); }
.index-entry:hover .index-arrow { transform: translateX(4px); color: var(--coral-text); }

.index-tag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--coral-text);
    display: block;
    margin-bottom: 8px;
}
.index-title {
    font-family: var(--display);
    font-weight: 650;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.18;
    letter-spacing: -0.012em;
    transition: color 180ms var(--ease);
}
.index-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--body-c);
}
.index-arrow {
    font-size: 1.2rem;
    color: var(--faint);
    transition: transform 180ms var(--ease), color 180ms var(--ease);
}
@media (max-width: 800px) {
    .index-entry { grid-template-columns: 1fr; gap: 8px; }
    .index-arrow { display: none; }
}

/* ---------- About page ---------- */
.about-split {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-portrait {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--well);
    box-shadow: var(--lift);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-caption {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--faint);
    margin-top: 12px;
}
@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; gap: 32px; }
    .about-portrait { max-width: 340px; }
}

.chapter { padding: 52px 0; border-top: 1px solid var(--hairline); }
.chapter:first-of-type { border-top: none; }
.chapter-title {
    font-family: var(--display);
    font-weight: 650;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
    max-width: 28ch;
}
.chapter-body { max-width: 66ch; }
.chapter-body p { font-size: 16.5px; line-height: 1.75; color: var(--body-c); }
.chapter-body p + p { margin-top: 17px; }

.principle-list {
    list-style: none;
    border-top: 1px solid var(--hairline-2);
    margin-top: 6px;
}
.principle {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--hairline);
}
.principle-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--dawn);
    color: #FFF;
    font-weight: 700;
    font-size: 12.5px;
    margin-top: 3px;
}
.principle-text .lead-line {
    font-family: var(--display);
    font-weight: 650;
    font-size: 19px;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 7px;
    line-height: 1.3;
}
.principle-text p { font-size: 16px; line-height: 1.7; color: var(--body-c); max-width: 62ch; }
@media (max-width: 640px) {
    .principle { grid-template-columns: 1fr; gap: 8px; }
}

/* Signoff — aura card */
.signoff {
    position: relative;
    background:
        radial-gradient(460px 280px at 90% 0%, rgba(207, 164, 244, 0.3), transparent 65%),
        radial-gradient(460px 280px at 2% 100%, rgba(255, 90, 46, 0.18), transparent 65%),
        var(--canvas);
    border: 1px solid var(--hairline-2);
    border-radius: 24px;
    padding: 44px 48px;
    margin-top: 52px;
}
.signoff > p {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.45;
    max-width: 40ch;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.signoff-name {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    font-size: 14px;
    color: var(--faint);
}
.signoff-name strong { color: var(--ink); font-weight: 600; }
.signoff-monogram {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--dawn);
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.about-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
@media (max-width: 640px) { .signoff { padding: 32px 26px; } }

/* ---------- Booking frame ---------- */
.booking-frame {
    margin-top: 36px;
    background: var(--canvas);
    border: 1px solid var(--hairline-2);
    border-radius: var(--r-card);
    overflow: hidden;
    min-height: 720px;
    box-shadow: var(--lift);
}
.booking-frame iframe { width: 100%; height: 720px; border: 0; display: block; }

/* ---------- Sidebar list (audit page) ---------- */
.side-list {
    background: var(--well);
    border-radius: var(--r-card);
    padding: 26px 28px;
}
.side-list-label {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    padding-bottom: 8px;
}
.side-list ul { list-style: none; }
.side-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
}
.side-list li:last-child { border-bottom: none; }
.side-list li strong {
    display: block;
    font-family: var(--display);
    font-weight: 630;
    font-size: 15px;
    letter-spacing: -0.008em;
    margin-bottom: 4px;
    color: var(--ink);
}
.side-list li p { font-size: 13.5px; color: var(--body-c); line-height: 1.55; margin: 0; }

.turnaround {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 18px 28px;
    background: var(--dawn-soft);
    border: 1px solid var(--hairline);
    border-radius: var(--r-card);
    margin-top: 14px;
}
.turnaround-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    color: var(--coral-text);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.turnaround-text {
    font-size: 13.5px;
    color: var(--body-c);
}

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose h2 {
    font-family: var(--display);
    font-weight: 650;
    font-size: 1.35rem;
    letter-spacing: -0.012em;
    margin: 40px 0 12px;
}
.prose h3 { font-weight: 700; font-size: 16.5px; margin: 24px 0 8px; }
.prose p, .prose li { font-size: 15.5px; line-height: 1.7; color: var(--body-c); margin-bottom: 13px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--coral-text); }
.prose strong { color: var(--ink); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Small screens ---------- */
@media (max-width: 640px) {
    body { padding: 8px; }
    .frame { border-radius: 20px; }
    .section { padding: 64px 0; }
    .cta-panel { border-radius: 22px; }
}
