/* =========================================================
   fixundflip.com — refined Baulig-style
   White, generous whitespace, Inter 600/700, calm gold accent
   ========================================================= */

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --bg-cream: #faf7f1;
    --bg-navy: #0e1422;
    --bg-navy-2: #131a2c;

    --ink: #0e1422;
    --ink-soft: #2d3340;
    --ink-mute: #5e6573;
    --ink-faint: #8b909b;

    --paper: #ffffff;
    --paper-mute: rgba(255,255,255,.75);
    --paper-dim: rgba(255,255,255,.55);

    --line: #ebe9e3;
    --line-strong: #d8d4cb;
    --line-dark: rgba(255,255,255,.10);

    --gold: #c8a35a;
    --gold-hot: #d4b06b;
    --gold-deep: #9b7c34;
    --gold-soft: #f5edd8;

    --success: #1a7f4f;
    --danger: #b3261e;

    --maxw: 1240px;
    --gutter: 32px;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-pill: 999px;

    --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --display: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    font-feature-settings: "ss01" 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-soft); color: var(--ink); }

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

/* =========================================================
   TYPE
   ========================================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--gold-deep);
    margin: 0 0 20px;
}
.eyebrow::before {
    content: "";
    width: 24px; height: 2px;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.1;
    letter-spacing: -.022em;
    margin: 0 0 18px;
    color: inherit;
}
.section-lead {
    font-size: clamp(17px, 1.3vw, 19px);
    color: var(--ink-mute);
    max-width: 60ch;
    line-height: 1.6;
    margin: 0;
}

.accent { color: var(--gold-deep); }
strong { font-weight: 700; }

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: var(--scroll, 0%);
    background: var(--gold);
    z-index: 100;
    transition: width .08s linear;
    pointer-events: none;
}

/* =========================================================
   HEADER — quiet, clean
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--gutter);
    max-width: var(--maxw);
    margin: 0 auto;
}
.brand img { height: 48px; width: auto; }
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 22px;
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -.005em;
    transition: background .15s, transform .15s;
}
.header-cta::after { content: "→"; font-weight: 400; font-size: 15px; transition: transform .2s; }
.header-cta:hover { background: var(--gold-deep); }
.header-cta:hover::after { transform: translateX(3px); }

/* =========================================================
   BUTTONS — refined, not oversized
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    font-family: var(--sans);
    font-weight: 600;
    border-radius: var(--r-pill);
    padding: 16px 26px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -.005em;
    transition: transform .15s, box-shadow .25s, background .2s, color .2s;
    text-align: center;
    white-space: nowrap;
}
.btn::after { content: "→"; font-weight: 500; font-size: 16px; transition: transform .2s; }
.btn:hover::after { transform: translateX(3px); }

.btn-primary {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 8px 24px -8px rgba(200,163,90,.5);
}
.btn-primary:hover { background: var(--gold-hot); transform: translateY(-1px); box-shadow: 0 14px 32px -10px rgba(200,163,90,.65); }
.btn-dark {
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 8px 24px -8px rgba(14,20,34,.4);
}
.btn-dark:hover { background: var(--bg-navy); transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-xl { padding: 20px 32px; font-size: 17px; }

/* =========================================================
   HERO — calm, lots of whitespace, refined headline
   ========================================================= */
.hero {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 112px);
    background: var(--bg);
}

/* Ticker is killed visually — keeps the markup compatible if present */
.hero-ticker { display: none !important; }

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 6fr;
    gap: 64px;
    align-items: center;
}

.hero-headline {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.1;
    letter-spacing: -.024em;
    margin: 0 0 22px;
    color: var(--ink);
    max-width: 18ch;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}
.hero-headline em {
    font-style: normal;
    color: var(--gold-deep);
    font-weight: 700;
    background: none;
    padding: 0;
}
.hero-headline .accent {
    color: var(--gold-deep);
    font-weight: 700;
    background: none;
    border-bottom: 0;
    padding: 0;
}

.hero-sub {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--ink-mute);
    margin: 0 0 32px;
    max-width: 50ch;
    line-height: 1.6;
}

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.scarcity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    color: var(--ink-mute);
}
.scarcity .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(200,163,90,.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(200,163,90,.55); }
    70% { box-shadow: 0 0 0 12px rgba(200,163,90,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,163,90,0); }
}

.hero-trust {
    list-style: none;
    padding: 36px 0 0;
    margin: 48px 0 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hero-trust li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--ink-mute);
    font-weight: 500;
}
.hero-trust li strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 32px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.02em;
}

/* Hero media */
.hero-media { position: relative; }
.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #000;
    overflow: hidden;
    border-radius: var(--r-md);
    box-shadow: 0 24px 60px -24px rgba(14,20,34,.32);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; position: relative; z-index: 1; }
.video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    padding: 24px;
    z-index: 0;
    pointer-events: none;
}
.video-fallback code { background: rgba(255,255,255,.08); padding: 2px 6px; border-radius: 4px; font-size: 11px; }
.corner, .corner-bl, .corner-br { display: none; }

/* Thumbs — clean small row */
.hero-thumbs {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.hero-thumb {
    position: relative;
    text-align: left;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--ink);
    font-family: inherit;
    display: block;
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: transform .15s;
}
.hero-thumb img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    background: #1a1a1c;
    border-radius: var(--r-sm);
    transition: filter .2s;
}
.hero-thumb:hover { transform: translateY(-2px); }
.hero-thumb::before {
    content: "▶";
    position: absolute;
    top: 32%;
    left: 50%;
    width: 38px; height: 38px;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,.95);
    color: var(--ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 8px 18px -4px rgba(0,0,0,.35);
    pointer-events: none;
    transition: transform .15s;
}
.hero-thumb:hover::before { transform: translate(-50%, -50%) scale(1.08); }
.hero-thumb.is-active img { outline: 2px solid var(--gold); outline-offset: -2px; }
.hero-thumb-label { display: block; padding-top: 10px; }
.hero-thumb-label strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 2px;
}
.hero-thumb-label em {
    font-style: normal;
    display: block;
    font-family: var(--display);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -.005em;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
    position: relative;
    padding: clamp(72px, 9vw, 128px) 0;
}
.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .section-lead { margin: 0 auto; }

.section-soft { background: var(--bg-soft); color: var(--ink); }
.section-cream { background: var(--bg-cream); color: var(--ink); }
.section-dark { background: var(--bg-navy); color: var(--paper); }
.section-dark .section-title { color: var(--paper); }
.section-dark .section-lead { color: var(--paper-mute); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }

/* drop ::after numbering from previous design */
.section[data-chapter] .section-head .eyebrow::after { content: none; }

/* =========================================================
   BRAND
   ========================================================= */
.section-brand { background: var(--bg-soft); }
.brand-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 64px;
    align-items: center;
}
.brand-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ink);
    border-radius: var(--r-md);
    box-shadow: 0 24px 60px -24px rgba(14,20,34,.28);
}
.brand-photo img { width: 100%; height: 100%; object-fit: cover; }

.brand-copy { padding: 0; }
.brand-copy .section-title { margin-bottom: 8px; text-align: left; }
.brand-copy .section-lead {
    color: var(--gold-deep);
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}
.brand-copy > p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 24px;
    max-width: 56ch;
}
.brand-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.brand-points li {
    padding: 10px 16px 10px 38px;
    background: var(--bg);
    border-radius: var(--r-sm);
    position: relative;
    font-weight: 500;
    font-size: 14px;
    color: var(--ink);
    border: 1px solid var(--line);
}
.brand-points li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.brand-book {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg);
    padding: 16px 18px;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
}
.brand-book img { width: 70px; height: auto; flex-shrink: 0; }
.brand-book strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 2px;
    letter-spacing: -.005em;
}
.brand-book span { font-size: 13px; color: var(--ink-mute); }

/* =========================================================
   PROJECTS
   ========================================================= */
.section-projects { background: var(--bg); }
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.project-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .25s, border-color .15s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px -22px rgba(14,20,34,.18); border-color: var(--line-strong); }
.project-body { padding: 22px 24px 24px; }
.project-body h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 14px;
    color: var(--ink);
    letter-spacing: -.012em;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1c;
    user-select: none;
    touch-action: none;
}
.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--paper);
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(0,0,0,.18);
}
.ba-divider::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 38px; height: 38px;
    background: var(--paper);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 6px 14px rgba(0,0,0,.3);
}
.ba-divider::after {
    content: "⇆";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
}
.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    appearance: none;
    background: transparent;
    cursor: ew-resize;
    margin: 0;
    z-index: 5;
}
.ba-range::-webkit-slider-thumb { appearance: none; width: 44px; height: 100%; background: transparent; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 44px; height: 100%; background: transparent; border: 0; cursor: ew-resize; }
.ba-range:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.ba-label {
    position: absolute;
    top: 12px;
    background: rgba(14,20,34,.85);
    color: var(--paper);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--r-pill);
    backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 3;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; background: var(--gold); color: var(--ink); }

.project-stats { margin: 0; }
.project-stats .profit {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 18px;
    background: var(--bg-soft);
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
}
.project-stats .profit dt {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin: 0;
    font-weight: 600;
}
.project-stats .profit dd {
    margin: 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
}

/* =========================================================
   CTA BANDS
   ========================================================= */
.cta-band {
    background: var(--bg-soft);
    color: var(--ink);
    padding: clamp(56px, 7vw, 88px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-band-dark {
    background: var(--bg-navy);
    color: var(--paper);
    border: 0;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-band-inner h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 32px);
    margin: 0 0 8px;
    line-height: 1.15;
    max-width: 60ch;
    letter-spacing: -.018em;
}
.cta-band-inner p { margin: 0; font-size: 15px; color: var(--ink-mute); font-weight: 500; }
.cta-band-dark .cta-band-inner p { color: var(--paper-mute); }

/* =========================================================
   PROBLEM
   ========================================================= */
.section-problem { background: var(--bg-soft); color: var(--ink); }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.problem-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px 26px;
    counter-increment: problem;
    transition: transform .2s, box-shadow .25s, border-color .15s;
}
.problem-grid { counter-reset: problem; }
.problem-item:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -15px rgba(14,20,34,.10); border-color: var(--line-strong); }
.problem-item::before {
    content: counter(problem, decimal-leading-zero);
    display: block;
    font-weight: 700;
    color: var(--gold-deep);
    font-size: 12px;
    letter-spacing: .1em;
    margin-bottom: 12px;
}
.problem-item h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    margin: 0 0 6px;
    color: var(--ink);
    letter-spacing: -.012em;
}
.problem-item p { margin: 0; color: var(--ink-mute); font-size: 14.5px; line-height: 1.6; }

/* =========================================================
   SYSTEM
   ========================================================= */
.section-system { background: var(--bg); color: var(--ink); }
.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.system-item {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px 24px;
    transition: border-color .15s, background .2s;
}
.system-item:hover { background: var(--bg-cream); border-color: var(--gold-soft); }
.system-item .num {
    font-weight: 700;
    color: var(--gold-deep);
    font-size: 12px;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 10px;
}
.system-item h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    margin: 0 0 6px;
    letter-spacing: -.012em;
}
.system-item p { margin: 0; color: var(--ink-mute); font-size: 14.5px; line-height: 1.6; }

/* =========================================================
   NICHE — calmer, ink background, gold accent
   ========================================================= */
.section-niche {
    background: var(--bg-navy);
    color: var(--paper);
    text-align: center;
}
.section-niche .eyebrow { color: var(--gold); margin: 0 auto 18px; }
.section-niche .eyebrow::before { background: var(--gold); }
.niche-inner { max-width: 880px; margin: 0 auto; }
.niche-inner .section-title { color: var(--paper); font-size: clamp(32px, 4.8vw, 56px); margin-bottom: 22px; line-height: 1.1; }
.niche-inner .accent { color: var(--gold); border-bottom: 0; padding: 0; }
.niche-inner .section-lead { color: var(--paper-mute); max-width: 60ch; margin: 0 auto 32px; }
.niche-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    max-width: 700px;
}
.niche-pills span {
    background: rgba(255,255,255,.06);
    color: var(--paper);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-weight: 500;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,.12);
}

/* =========================================================
   HOW
   ========================================================= */
.section-how { background: var(--bg-soft); color: var(--ink); }
.how-steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.how-steps li {
    position: relative;
    background: var(--bg);
    border-radius: var(--r-md);
    padding: 28px 24px;
    border: 1px solid var(--line);
}
.step-num {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 38px;
    color: var(--gold-deep);
    line-height: 1;
    margin: 0 0 14px;
    letter-spacing: -.025em;
}
.how-steps h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    margin: 0 0 6px;
    letter-spacing: -.012em;
}
.how-steps p { margin: 0; color: var(--ink-mute); font-size: 14.5px; line-height: 1.6; }

/* =========================================================
   AUTHORITY
   ========================================================= */
.section-authority { background: var(--bg); color: var(--ink); }
.auth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    background: var(--bg-soft);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--line);
}
.auth-item {
    text-align: left;
    padding: 32px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.auth-item:last-child { border-right: 0; }
.auth-item strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 44px;
    color: var(--gold-deep);
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -.025em;
}
.auth-item span { color: var(--ink-mute); font-size: 14px; font-weight: 500; line-height: 1.5; display: block; }

/* =========================================================
   EXCLUSIVE
   ========================================================= */
.section-exclusive {
    background: var(--bg-navy);
    color: var(--paper);
}
.section-exclusive .section-title { color: var(--paper); }
.section-exclusive .eyebrow { color: var(--gold); }
.section-exclusive .eyebrow::before { background: var(--gold); }
.exclusive-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.exclusive-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
    text-align: left;
}
.exclusive-list li {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--r-md);
    padding: 20px 24px;
    color: var(--paper-mute);
}
.exclusive-list li strong {
    color: var(--paper);
    display: block;
    margin-bottom: 4px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -.005em;
}
.exclusive-foot { color: var(--paper-mute); font-size: 15px; margin-top: 12px; }

/* =========================================================
   FAQ
   ========================================================= */
.section-faq { background: var(--bg-soft); color: var(--ink); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: border-color .15s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--line-strong); box-shadow: 0 12px 24px -14px rgba(14,20,34,.12); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 60px 20px 24px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    position: relative;
    line-height: 1.4;
    letter-spacing: -.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--ink);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    transition: background .15s, color .15s;
    font-family: var(--sans);
}
.faq-item[open] summary::after { content: "−"; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--ink-mute);
    line-height: 1.7;
    font-size: 15px;
}

/* =========================================================
   CALENDLY
   ========================================================= */
.section-calendly { background: var(--bg); color: var(--ink); }
.calendly-inline-widget {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 24px 60px -24px rgba(14,20,34,.18);
}

/* =========================================================
   LEGAL
   ========================================================= */
.section-legal { background: var(--bg); color: var(--ink); padding: clamp(48px, 6vw, 80px) 0; }
.legal-container {
    max-width: 800px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: clamp(28px, 4vw, 48px);
}
.legal-container .section-title { color: var(--ink); margin-bottom: 24px; text-align: left; font-size: clamp(28px, 3.4vw, 40px); }
.legal-h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    margin: 28px 0 8px;
    color: var(--ink);
    letter-spacing: -.005em;
}
.legal-container p { color: var(--ink-mute); margin: 0 0 12px; line-height: 1.7; font-size: 15px; }
.legal-container a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-container a:hover { color: var(--ink); }
.legal-todo {
    background: rgba(179, 38, 30, .08);
    color: var(--danger);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}
.legal-note {
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    border-radius: var(--r-sm);
    padding: 16px 20px;
    color: var(--ink) !important;
    margin-top: 24px !important;
}
.legal-back {
    margin-top: 32px !important;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.legal-back a { font-weight: 600; text-decoration: none; color: var(--ink); }
.legal-back a:hover { color: var(--gold-deep); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--bg-navy);
    color: var(--paper-mute);
    padding: 48px 0 32px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
    gap: 32px;
    font-size: 13px;
}
.foot-brand { display: flex; align-items: center; gap: 12px; color: var(--paper); font-weight: 600; }
.foot-brand img { width: 32px; height: 32px; }
.foot-legal { display: flex; flex-direction: column; gap: 6px; }
.foot-legal a { font-weight: 500; }
.foot-legal a:hover { color: var(--gold); }
.foot-copy { margin: 0; font-size: 12px; color: var(--paper-dim); text-align: right; }

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    background: var(--ink);
    color: var(--paper);
    font-weight: 600;
    font-size: 14px;
    z-index: 60;
    transform: translateY(120%);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 -16px 32px -16px rgba(0,0,0,.4);
    border-radius: var(--r-pill);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-arrow { font-size: 18px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
    :root { --gutter: 24px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .brand-grid { grid-template-columns: 1fr; gap: 40px; }
    .brand-photo { max-width: 480px; margin: 0 auto; }
    .project-grid { grid-template-columns: 1fr 1fr; }
    .project-grid > article:nth-child(3) { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; width: 100%; }
    .footer-inner { grid-template-columns: 1fr; }
    .foot-copy { text-align: left; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    :root { --gutter: 18px; }

    .header-inner { padding: 12px 18px; }
    .header-cta { height: 40px; padding: 0 16px; font-size: 13px; }
    .header-cta::after { font-size: 14px; }
    .brand img { height: 40px; }

    .hero { padding: 36px 0 56px; }
    .hero-copy { max-width: 100%; min-width: 0; overflow: hidden; }
    .hero-headline {
        font-size: 26px;
        max-width: 100%;
        line-height: 1.18;
        word-break: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
        letter-spacing: -.018em;
    }
    .hero-headline em,
    .hero-headline .accent { word-break: break-word; overflow-wrap: anywhere; display: inline; }
    .hero-sub { word-break: break-word; }
    .hero-sub { font-size: 16px; margin-bottom: 24px; }
    .btn { white-space: normal; line-height: 1.2; }
    .btn-xl { padding: 16px 20px; font-size: 15px; width: 100%; }
    .hero-actions { width: 100%; }
    .hero-trust { gap: 16px 12px; margin-top: 32px; padding-top: 28px; }
    .hero-trust li strong { font-size: 24px; }
    .hero-trust li { font-size: 12px; }

    .hero-thumbs { grid-template-columns: 1fr; gap: 8px; }
    .hero-thumb { display: grid; grid-template-columns: 40% 1fr; align-items: center; gap: 12px; padding: 6px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-sm); }
    .hero-thumb::before { top: 50%; left: 20%; }
    .hero-thumb-label { padding: 0; }

    .section { padding: 56px 0; }
    .section-head { margin-bottom: 36px; }
    .section-title { font-size: clamp(26px, 7vw, 34px); }

    .project-grid { grid-template-columns: 1fr; }
    .project-grid > article:nth-child(3) { max-width: none; }
    .project-stats .profit dd { font-size: 26px; }

    .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .cta-band-inner .btn { width: 100%; }

    .brand-points { grid-template-columns: 1fr; }
    .brand-book { flex-direction: column; align-items: flex-start; }

    .auth-item strong { font-size: 36px; }

    .faq-item summary { font-size: 15.5px; padding: 18px 56px 18px 20px; }
    .faq-item summary::after { right: 16px; }
    .faq-item p { padding: 0 20px 20px; font-size: 14.5px; }

    .sticky-cta { display: flex; }
}

@media (max-width: 400px) {
    .header-cta { display: none; }
    .brand img { height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}
