/* =============================================
   PRISMA — Design System v4
   Direção: O produto como identidade
   Tipografia: Cabinet Grotesk + Inter
   Paleta: Escuro sofisticado com cobre e índigo
   ============================================= */

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

:root {
    /* Superfícies do app */
    --app-bg:       #0F0D13;
    --app-surface:  #161320;
    --app-surface2: #1D1928;
    --app-border:   rgba(255,255,255,0.06);
    --app-border2:  rgba(255,255,255,0.10);

    /* Texto */
    --t-primary:    #F0ECF8;
    --t-secondary:  rgba(240,236,248,0.55);
    --t-muted:      rgba(240,236,248,0.28);

    /* Marca */
    --copper:       #D4895C;
    --copper-dark:  #A8622E;
    --copper-glow:  rgba(212,137,92,0.15);
    --copper-soft:  rgba(212,137,92,0.08);
    --indigo:       #7B6FBF;
    --indigo-soft:  rgba(123,111,191,0.12);
    --teal:         #4ECDC4;
    --teal-soft:    rgba(78,205,196,0.08);
    --green:        #52C47A;
    --red:          #E05C5C;
    --amber:        #F0A030;

    /* Gradientes */
    --g-copper:     linear-gradient(135deg, #D4895C, #A8622E);
    --g-brand:      linear-gradient(135deg, #D4895C, #7B6FBF);
    --g-brand-full: linear-gradient(135deg, #D4895C 0%, #7B6FBF 50%, #4ECDC4 100%);

    /* UI */
    --radius:    12px;
    --radius-sm: 8px;
    --radius-xs: 5px;
    --nav-h:     64px;

    --font-display: 'Cabinet Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
    font-family: var(--font-body);
    background: var(--app-bg);
    color: var(--t-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Reveal ──────────────────────────────── */
.r { opacity: 0; transform: translateY(16px); transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1); }
.r.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ── Grad text ──────────────────────────── */
.grad {
    background: var(--g-brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    height: var(--nav-h); display: flex; align-items: center;
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s;
}
.nav.scrolled {
    background: rgba(15,13,19,0.9);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-color: var(--app-border);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
    letter-spacing: -.02em; color: var(--t-primary);
}
.nav-brand img { height: 26px; width: auto; }
.nav-brand span { color: var(--copper); }

.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: .8rem; font-weight: 500; color: var(--t-secondary); transition: color .2s; }
.nav-links a:hover { color: var(--t-primary); }

.nav-cta {
    font-size: .78rem; font-weight: 700;
    padding: 8px 20px; border-radius: var(--radius-sm);
    background: var(--g-copper); color: #fff;
    box-shadow: 0 2px 16px rgba(212,137,92,0.35);
    transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--t-primary); transition: all .3s; }

.mobile-menu {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--app-surface); border-bottom: 1px solid var(--app-border);
    padding: 16px 24px 24px; flex-direction: column; gap: 0; z-index: 899;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--t-secondary); padding: 14px 0; border-bottom: 1px solid var(--app-border); transition: color .2s; }
.mobile-menu a:hover { color: var(--t-primary); }
.mobile-menu a:last-child { border: none; margin-top: 12px; color: var(--copper); font-weight: 700; }

/* ═══════════════════════════════════════════
   HERO — Assimétrico: texto esq + app mock dir
═══════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: grid; grid-template-columns: 1fr 1.15fr;
    align-items: center; gap: 0;
    padding-top: var(--nav-h);
    position: relative; overflow: hidden;
}

/* Ambient glow */
.hero-glow-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 25% 50%, rgba(212,137,92,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 40%, rgba(123,111,191,0.06) 0%, transparent 55%);
    pointer-events: none;
}

/* Gem */
.hero-gem {
    position: absolute; left: 50%; top: 45%;
    transform: translate(-50%, 80%) scale(0.4);
    opacity: 0; z-index: 1; pointer-events: none;
}
.hero-gem img {
    width: 480px; height: 480px; object-fit: contain;
    filter: drop-shadow(0 0 80px rgba(212,137,92,0.18))
            drop-shadow(0 0 40px rgba(123,111,191,0.12));
}
.hero-gem.risen { animation: gemRise 1.8s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes gemRise {
    0%   { opacity: 0; transform: translate(-50%, 80%) scale(0.4); }
    45%  { opacity: .6; }
    75%  { transform: translate(-50%, -62%) scale(1.05); opacity: .55; }
    100% { opacity: .09; transform: translate(-50%, -68%) scale(1); }
}
.hero-gem.floating {
    opacity: .09; transform: translate(-50%, -68%) scale(1);
    animation: gemFloat 7s ease-in-out infinite;
}
@keyframes gemFloat {
    0%, 100% { transform: translate(-50%, -68%) scale(1); }
    50%       { transform: translate(-50%, -73%) scale(1.02); }
}
.hero-flash {
    position: absolute; top: 0; left: 0; right: 0; height: 45%;
    background: linear-gradient(180deg, rgba(212,137,92,0.07) 0%, transparent 100%);
    opacity: 0; transform: scaleY(0); transform-origin: top; pointer-events: none; z-index: 1;
}
.hero-flash.active { animation: flashIn 1.8s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes flashIn { 0% { opacity:0; transform:scaleY(0); } 30% { opacity:1; transform:scaleY(1.1); } 100% { opacity:.5; transform:scaleY(1); } }

/* Left: copy */
.hero-copy {
    padding: 80px 60px 80px 40px;
    position: relative; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--copper); background: var(--copper-soft);
    border: 1px solid rgba(212,137,92,0.2);
    padding: 5px 12px; border-radius: 50px; margin-bottom: 24px;
}
.hero-badge-dot {
    width: 5px; height: 5px; border-radius: 50%; background: var(--copper);
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--copper);
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -.03em; margin-bottom: 20px;
}
.hero-sub {
    font-size: .95rem; color: var(--t-secondary);
    max-width: 400px; line-height: 1.75; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: var(--radius-sm);
    font-size: .82rem; font-weight: 700; cursor: pointer;
    border: none; font-family: var(--font-body);
    transition: all .2s;
}
.btn-copper {
    background: var(--g-copper); color: #fff;
    box-shadow: 0 4px 20px rgba(212,137,92,0.35);
}
.btn-copper:hover { box-shadow: 0 6px 28px rgba(212,137,92,0.5); transform: translateY(-1px); }
.btn-ghost {
    background: var(--app-surface2); color: var(--t-secondary);
    border: 1px solid var(--app-border2);
}
.btn-ghost:hover { color: var(--t-primary); border-color: rgba(255,255,255,0.18); }

.hero-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--t-muted); }
.hero-meta-item svg { width: 14px; height: 14px; color: var(--copper); flex-shrink: 0; }

/* Right: App Mock */
.hero-mock {
    height: 100svh; position: relative; overflow: hidden;
    border-left: 1px solid var(--app-border);
    background: var(--app-surface);
    display: flex; flex-direction: column;
    z-index: 2;
}

/* Mock top bar */
.mock-topbar {
    height: 44px; background: var(--app-surface2);
    border-bottom: 1px solid var(--app-border);
    display: flex; align-items: center; gap: 12px; padding: 0 16px;
    flex-shrink: 0;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-tab {
    font-size: .7rem; font-weight: 600; color: var(--t-muted);
    padding: 4px 12px; border-radius: var(--radius-xs); cursor: default;
    transition: all .2s;
}
.mock-tab.active {
    background: var(--app-surface); color: var(--t-primary);
    border: 1px solid var(--app-border2);
}

.mock-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; scrollbar-width: none; }
.mock-body::-webkit-scrollbar { display: none; }

/* Metric row */
.mock-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-metric {
    background: var(--app-bg); border: 1px solid var(--app-border);
    border-radius: var(--radius-sm); padding: 14px 16px;
}
.mock-metric-label { font-size: .64rem; font-weight: 600; color: var(--t-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.mock-metric-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; line-height: 1; }
.mock-metric-trend { font-size: .64rem; margin-top: 4px; display: flex; align-items: center; gap: 3px; }
.up { color: var(--green); }
.down { color: var(--red); }

/* Schedule */
.mock-section-title { font-size: .68rem; font-weight: 700; color: var(--t-muted); text-transform: uppercase; letter-spacing: .1em; }
.mock-schedule { display: flex; flex-direction: column; gap: 6px; }
.mock-appt {
    display: flex; align-items: center; gap: 10px;
    background: var(--app-bg); border: 1px solid var(--app-border);
    border-radius: var(--radius-sm); padding: 10px 14px;
    border-left: 3px solid;
    transition: border-color .2s, background .2s;
}
.mock-appt:hover { background: var(--app-surface2); }
.mock-appt-time { font-size: .68rem; font-weight: 700; color: var(--t-muted); width: 36px; flex-shrink: 0; }
.mock-appt-body { flex: 1; min-width: 0; }
.mock-appt-name { font-size: .78rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-appt-service { font-size: .66rem; color: var(--t-muted); margin-top: 1px; }
.mock-appt-status {
    font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 2px 8px; border-radius: 50px; flex-shrink: 0;
}
.status-ok   { background: rgba(82,196,122,0.12); color: var(--green); }
.status-wait { background: rgba(240,160,48,0.12); color: var(--amber); }
.status-prog { background: rgba(123,111,191,0.15); color: #9F95D4; }
.status-done { background: rgba(255,255,255,0.05); color: var(--t-muted); }

/* Team row */
.mock-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-pro {
    background: var(--app-bg); border: 1px solid var(--app-border);
    border-radius: var(--radius-sm); padding: 12px;
    display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
}
.mock-pro-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 800; color: #fff;
}
.mock-pro-name { font-size: .66rem; font-weight: 600; }
.mock-pro-stat { font-size: .6rem; color: var(--t-muted); }

/* Finance bar */
.mock-finance {
    background: var(--app-bg); border: 1px solid var(--app-border);
    border-radius: var(--radius-sm); padding: 14px 16px;
}
.mock-finance-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 10px; }
.mock-finance-label { font-size: .65rem; color: var(--t-muted); text-transform: uppercase; letter-spacing: .08em; }
.mock-finance-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
.mock-bar-track { height: 4px; background: var(--app-border); border-radius: 2px; overflow: hidden; margin-bottom: 6px; }
.mock-bar-fill { height: 100%; border-radius: 2px; background: var(--g-copper); transition: width 1.5s cubic-bezier(.16,1,.3,1); }
.mock-bar-labels { display: flex; justify-content: space-between; }
.mock-bar-labels span { font-size: .6rem; color: var(--t-muted); }

/* ═══════════════════════════════════════════
   STATEMENT — Frase que corta a página
═══════════════════════════════════════════ */
.section-statement {
    padding: 100px 0;
    border-top: 1px solid var(--app-border);
    overflow: hidden; position: relative;
}
.statement-line {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper), var(--indigo), transparent);
    opacity: .3;
}
.statement-text {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.03em; max-width: 900px;
}
.statement-text .dim { color: var(--t-muted); font-weight: 300; }

/* ═══════════════════════════════════════════
   BEFORE / AFTER — side by side visual
═══════════════════════════════════════════ */
.section-before-after {
    padding: 80px 0 100px;
    border-top: 1px solid var(--app-border);
    background: var(--app-surface);
}
.ba-header { margin-bottom: 48px; }
.ba-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -.03em;
    line-height: 1.1; margin-top: 10px;
}

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.ba-col { border-radius: var(--radius); overflow: hidden; }
.ba-col-head {
    padding: 16px 20px;
    display: flex; align-items: center; gap: 10px;
}
.ba-col.before .ba-col-head { background: rgba(224,92,92,0.06); border-bottom: 1px solid rgba(224,92,92,0.12); }
.ba-col.after .ba-col-head { background: rgba(82,196,122,0.06); border-bottom: 1px solid rgba(82,196,122,0.12); }
.ba-col-indicator {
    width: 7px; height: 7px; border-radius: 50%;
}
.ba-col.before .ba-col-indicator { background: var(--red); }
.ba-col.after .ba-col-indicator { background: var(--green); }
.ba-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.ba-col.before .ba-col-title { color: rgba(224,92,92,0.8); }
.ba-col.after .ba-col-title { color: rgba(82,196,122,0.8); }

.ba-items {
    padding: 16px;
    display: flex; flex-direction: column; gap: 8px;
    border: 1px solid var(--app-border); border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--app-bg);
}
.ba-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px; border-radius: var(--radius-sm);
    font-size: .82rem; line-height: 1.5;
    border: 1px solid transparent;
}
.ba-col.before .ba-item {
    background: rgba(224,92,92,0.04); border-color: rgba(224,92,92,0.08);
    color: rgba(240,236,248,0.6);
}
.ba-col.after .ba-item {
    background: rgba(82,196,122,0.04); border-color: rgba(82,196,122,0.08);
    color: rgba(240,236,248,0.75);
}
.ba-item-icon {
    flex-shrink: 0; width: 16px; height: 16px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .55rem; font-weight: 900; margin-top: 2px;
}
.ba-col.before .ba-item-icon { background: rgba(224,92,92,0.15); color: var(--red); }
.ba-col.after .ba-item-icon  { background: rgba(82,196,122,0.15); color: var(--green); }

/* ═══════════════════════════════════════════
   WHO — horizontal scroll cards
═══════════════════════════════════════════ */
.section-who {
    padding: 100px 0;
    border-top: 1px solid var(--app-border);
}
.who-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.who-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
}
.who-header p { font-size: .85rem; color: var(--t-secondary); max-width: 260px; line-height: 1.7; }

.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--app-border); border: 1px solid var(--app-border); border-radius: var(--radius); overflow: hidden; }
.who-card {
    background: var(--app-surface); padding: 28px 24px;
    display: flex; flex-direction: column; gap: 12px;
    transition: background .2s;
}
.who-card:hover { background: var(--app-surface2); }
.who-card-num {
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
    line-height: 1; letter-spacing: -.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,137,92,0.2);
}
.who-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: -.02em; }
.who-card p { font-size: .8rem; color: var(--t-secondary); line-height: 1.65; }
.who-card-bar { height: 2px; border-radius: 2px; margin-top: auto; }

/* ═══════════════════════════════════════════
   FEATURES — Dense list
═══════════════════════════════════════════ */
.section-features {
    padding: 100px 0;
    border-top: 1px solid var(--app-border);
    background: var(--app-surface);
}
.feat-layout { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.feat-sticky {
    position: sticky; top: calc(var(--nav-h) + 32px);
}
.feat-sticky h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
    margin-bottom: 14px; margin-top: 10px;
}
.feat-sticky p { font-size: .85rem; color: var(--t-secondary); line-height: 1.7; margin-bottom: 24px; }

/* Eyebrow */
.eyebrow {
    font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--copper); display: block; margin-bottom: 12px;
}

.feat-list { display: flex; flex-direction: column; }
.feat-row {
    display: grid; grid-template-columns: 32px 1fr auto;
    align-items: center; gap: 16px;
    padding: 14px 12px; margin: 0 -12px;
    border-top: 1px solid var(--app-border);
    cursor: pointer; border-radius: var(--radius-sm);
    transition: background .15s;
}
.feat-row:last-child { border-bottom: 1px solid var(--app-border); }
.feat-row:hover { background: var(--app-surface2); }
.feat-row:hover .feat-icon-wrap { color: var(--copper); }
.feat-icon-wrap { color: var(--t-muted); display: flex; align-items: center; flex-shrink: 0; transition: color .2s; }
.feat-row-text {}
.feat-row-name { font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.feat-row-desc { font-size: .75rem; color: var(--t-muted); line-height: 1.4; }
.feat-arrow { color: var(--t-muted); opacity: 0; transition: opacity .2s, transform .2s; flex-shrink: 0; }
.feat-row:hover .feat-arrow { opacity: 1; transform: translateX(3px); }
/* Legacy compat */
.p-feat-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════════════════════
   BENEFITS — Alternating layout
═══════════════════════════════════════════ */
.section-benefits {
    padding: 100px 0;
    border-top: 1px solid var(--app-border);
}
.benefits-header { margin-bottom: 64px; }
.benefits-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
    max-width: 600px; margin-top: 10px;
}

.benefits-list { display: flex; flex-direction: column; }
.benefit-row {
    display: grid; grid-template-columns: 80px 1fr 1fr;
    gap: 32px; align-items: start;
    padding: 40px 0;
    border-top: 1px solid var(--app-border);
}
.benefit-row:last-child { border-bottom: 1px solid var(--app-border); }
.benefit-n {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 800; line-height: 1;
    letter-spacing: -.04em;
    color: transparent;
    background: var(--g-brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: .25;
    padding-top: 4px;
}
.benefit-head h3 {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.2;
}
.benefit-head .benefit-tag {
    display: inline-block; font-size: .62rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
}
.benefit-body p { font-size: .85rem; color: var(--t-secondary); line-height: 1.75; }

/* ═══════════════════════════════════════════
   ONBOARDING
═══════════════════════════════════════════ */
.section-onboard {
    padding: 100px 0;
    border-top: 1px solid var(--app-border);
    background: var(--app-surface);
}
.onboard-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.onboard-left h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
    margin-bottom: 14px; margin-top: 10px;
}
.onboard-left p { font-size: .85rem; color: var(--t-secondary); line-height: 1.75; }

.onboard-steps { display: flex; flex-direction: column; position: relative; }
.onboard-spine {
    position: absolute; left: 15px; top: 8px; bottom: 40px; width: 1px;
    background: linear-gradient(180deg, var(--copper), var(--indigo)); opacity: .2;
}
.onboard-step { display: flex; gap: 24px; padding-bottom: 40px; position: relative; z-index: 1; }
.onboard-step:last-child { padding-bottom: 0; }
.onboard-dot {
    flex-shrink: 0; width: 32px; height: 32px;
    border: 1px solid rgba(212,137,92,0.25); border-radius: 50%;
    background: var(--app-surface); display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 800; color: var(--copper);
    transition: border-color .3s, background .3s;
}
.onboard-step:hover .onboard-dot { border-color: var(--copper); background: var(--copper-soft); }
.onboard-body h3 { font-family: var(--font-display); font-size: .95rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -.01em; }
.onboard-body p { font-size: .82rem; color: var(--t-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════════
   PLANS
═══════════════════════════════════════════ */
.section-plans {
    padding: 100px 0;
    border-top: 1px solid var(--app-border);
}
.plans-intro { text-align: center; margin-bottom: 52px; }
.plans-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
    margin-top: 10px;
}
.plans-intro p { font-size: .88rem; color: var(--t-secondary); margin-top: 10px; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--app-border); border: 1px solid var(--app-border); border-radius: var(--radius); overflow: hidden; }
.plan-card {
    background: var(--app-surface); padding: 36px 28px;
    display: flex; flex-direction: column; position: relative;
    transition: background .2s;
}
.plan-card:hover { background: var(--app-surface2); }
.plan-card.featured { background: var(--app-surface2); }
.plan-badge {
    position: absolute; top: 0; right: 24px;
    font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 0 0 var(--radius-xs) var(--radius-xs);
    background: var(--g-copper); color: #fff;
}
.plan-tier { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px; }
.plan-currency { font-size: .85rem; font-weight: 600; color: var(--t-secondary); }
.plan-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.plan-period { font-size: .75rem; color: var(--t-muted); }
.plan-desc { font-size: .8rem; color: var(--t-secondary); line-height: 1.6; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--app-border); }
.plan-list { display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 24px; }
.plan-list li { font-size: .8rem; color: var(--t-secondary); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.plan-list li::before { content:''; flex-shrink: 0; margin-top: 7px; width: 3px; height: 3px; border-radius: 50%; background: var(--copper); opacity: .6; }
.plan-cta {
    width: 100%; padding: 11px; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: .78rem; font-weight: 700;
    text-align: center; display: block; transition: all .2s; cursor: pointer;
}
.plan-cta-outline { border: 1px solid var(--app-border2); color: var(--t-secondary); background: transparent; }
.plan-cta-outline:hover { border-color: var(--copper); color: var(--copper); }
.plan-cta-solid { background: var(--g-copper); color: #fff; border: none; box-shadow: 0 4px 20px rgba(212,137,92,0.3); }
.plan-cta-solid:hover { box-shadow: 0 6px 28px rgba(212,137,92,0.45); }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.section-stats {
    padding: 0;
    border-top: 1px solid var(--app-border);
    border-bottom: 1px solid var(--app-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
    padding: 52px 40px;
    border-right: 1px solid var(--app-border);
    position: relative; overflow: hidden;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--g-brand); opacity: 0; transition: opacity .3s;
}
.stat-cell:hover::before { opacity: 1; }
.stat-val {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800; line-height: 1; margin-bottom: 8px; letter-spacing: -.04em;
    background: var(--g-copper);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .75rem; color: var(--t-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.section-cta {
    padding: 120px 0;
    border-top: 1px solid var(--app-border);
    position: relative; overflow: hidden;
}
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(212,137,92,0.06) 0%, rgba(123,111,191,0.04) 40%, transparent 70%);
    pointer-events: none;
}
.cta-inner { text-align: center; position: relative; }
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    font-weight: 800; letter-spacing: -.04em; line-height: 1.05;
    max-width: 740px; margin: 0 auto 18px;
}
.cta-inner h2 em { font-style: italic; font-weight: 300; color: var(--t-muted); }
.cta-inner p { font-size: .92rem; color: var(--t-secondary); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: .72rem; color: var(--t-muted); margin-top: 16px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    padding: 48px 0 28px;
    border-top: 1px solid var(--app-border);
    background: var(--app-surface);
}
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 24px; opacity: .6; }
.footer-brand-name { font-family: var(--font-display); font-size: .95rem; font-weight: 700; letter-spacing: -.02em; }
.footer-brand-sub { font-size: .68rem; color: var(--t-muted); display: block; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: .75rem; color: var(--t-muted); transition: color .2s; }
.footer-nav a:hover { color: var(--t-primary); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 20px; border-top: 1px solid var(--app-border); }
.footer-copy { font-size: .7rem; color: var(--t-muted); }

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(15,13,19,0.8);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s; padding: 24px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-overlay.active .modal-box { transform: translateY(0); opacity: 1; }
.modal-box {
    background: var(--app-surface2); border: 1px solid var(--app-border2);
    border-radius: var(--radius); max-width: 600px; width: 100%;
    max-height: 88vh; overflow-y: auto; padding: 36px;
    transform: translateY(16px); opacity: 0;
    transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6); position: relative;
}
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--t-muted); font-size: 1.3rem; cursor: pointer; transition: color .2s; }
.modal-close:hover { color: var(--t-primary); }
.modal-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.modal-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--app-bg); border: 1px solid var(--app-border); }
.modal-head h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; }
.modal-desc { font-size: .85rem; color: var(--t-secondary); line-height: 1.75; margin-bottom: 22px; }
.modal-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
.modal-cols h4 { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--copper); margin-bottom: 10px; }
.modal-cols ul { display: flex; flex-direction: column; gap: 7px; }
.modal-cols li { font-size: .8rem; color: var(--t-secondary); line-height: 1.5; padding-left: 12px; position: relative; }
.modal-cols li::before { content:''; position: absolute; left: 0; top: 7px; width: 3px; height: 3px; border-radius: 50%; background: var(--copper); opacity: .6; }
.modal-screens { background: var(--app-bg); border: 1px dashed var(--app-border); border-radius: var(--radius-sm); padding: 22px; text-align: center; margin-bottom: 18px; }
.modal-screens p { font-size: .78rem; color: var(--t-muted); font-style: italic; }
.modal-cta { width: 100%; padding: 12px; border-radius: var(--radius-sm); background: var(--g-copper); color: #fff; font-size: .78rem; font-weight: 700; text-align: center; display: block; transition: opacity .2s; }
.modal-cta:hover { opacity: .9; }

/* ═══════════════════════════════════════════
   WPP
═══════════════════════════════════════════ */
.wpp-float { position: fixed; bottom: 24px; right: 24px; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 800; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform .2s; }
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { fill: #fff; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .wrap { padding: 0 28px; }
    .nav-inner { padding: 0 28px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-copy { padding: 80px 28px 48px; }
    .hero-mock { display: none; }
    .feat-layout { grid-template-columns: 1fr; gap: 40px; }
    .feat-sticky { position: static; }
    .who-grid { grid-template-columns: 1fr 1fr; }
    .benefit-row { grid-template-columns: 60px 1fr; }
    .benefit-body { display: none; }
    .plans-grid { grid-template-columns: 1fr; background: none; border: none; border-radius: 0; gap: 12px; }
    .plan-card { border: 1px solid var(--app-border); border-radius: var(--radius); }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .ba-grid { grid-template-columns: 1fr; gap: 12px; }
    .onboard-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-inner { padding: 0 20px; }
    .wrap { padding: 0 20px; }
    .who-grid { grid-template-columns: 1fr; }
    .modal-cols { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .benefit-row { grid-template-columns: 48px 1fr; }
    .section-statement, .section-before-after, .section-who, .section-features, .section-benefits, .section-onboard, .section-plans, .section-cta { padding: 72px 0; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-cell { padding: 32px 20px; border-right: none; border-bottom: 1px solid var(--app-border); }
    .stat-cell:last-child { border-bottom: none; }
    .hero h1 { font-size: 2.4rem; }
}
