/* ============================================================
   DockFiscal — Landing Page
   Design system: Marinho #0F2A47 · Turquesa #14B8A6 · Nuvem
   ============================================================ */

:root {
    --navy: #0F2A47;
    --navy-700: #14395f;
    --navy-800: #0c2039;
    --navy-900: #08172a;
    --teal: #14B8A6;
    --teal-600: #0d9488;
    --teal-300: #5eead4;
    --mint: #34D399;
    --cloud: #F1F5F9;
    --surface: #ffffff;
    --border: #e2e8f0;
    --ink: #0F2A47;
    --body: #45566b;
    --muted: #6b7a90;

    --grad-teal: linear-gradient(135deg, #14B8A6 0%, #0d9488 100%);
    --grad-navy: linear-gradient(160deg, #0F2A47 0%, #14395f 60%, #0c2039 100%);
    --grad-hero: radial-gradient(60% 60% at 80% 10%, rgba(20,184,166,.28) 0%, rgba(20,184,166,0) 60%),
                 radial-gradient(50% 50% at 10% 90%, rgba(52,211,153,.20) 0%, rgba(52,211,153,0) 55%),
                 linear-gradient(160deg, #0F2A47 0%, #0c2039 100%);

    --shadow-sm: 0 1px 2px rgba(15,42,71,.06), 0 4px 14px rgba(15,42,71,.06);
    --shadow-md: 0 10px 30px rgba(15,42,71,.10), 0 2px 8px rgba(15,42,71,.06);
    --shadow-lg: 0 30px 60px rgba(15,42,71,.18);
    --shadow-teal: 0 18px 40px rgba(20,184,166,.35);

    --radius: 16px;
    --radius-lg: 24px;
    --maxw: 1180px;
    --font-head: 'Sora', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--body);
    background: var(--surface);
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
p { color: var(--body); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.bg-cloud { background: var(--cloud); }
.text-center { text-align: center; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: .78rem;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--teal-600); background: rgba(20,184,166,.10);
    padding: 7px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow--light { color: var(--teal-300); background: rgba(20,184,166,.16); }
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head p { font-size: 1.1rem; color: var(--muted); margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-head); font-weight: 600; font-size: .98rem;
    padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
    cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn i { font-size: 1.05em; }
.btn-primary { background: var(--grad-teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(20,184,166,.45); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-700); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-600); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s;
    padding: 18px 0;
}
.header.scrolled { background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 1px 0 rgba(15,42,71,.06); padding: 12px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo img { height: 34px; }
.nav__logo .logo-light { display: block; }
.nav__logo .logo-dark { display: none; }
.header.scrolled .nav__logo .logo-light { display: none; }
.header.scrolled .nav__logo .logo-dark { display: block; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
    font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.85);
    transition: color .2s; position: relative;
}
.nav__links a:hover { color: #fff; }
.header.scrolled .nav__links a { color: var(--body); }
.header.scrolled .nav__links a:hover { color: var(--teal-600); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__login { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: #fff; }
.header.scrolled .nav__login { color: var(--ink); }
.nav__toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }
.header.scrolled .nav__toggle { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
    position: relative; background: var(--grad-hero); color: #fff;
    padding: 170px 0 120px; overflow: hidden;
}
.hero::after {
    content: ''; position: absolute; inset: auto 0 -1px 0; height: 120px;
    background: linear-gradient(to bottom, transparent, var(--surface));
    z-index: 3;
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; }
.hero__glow--1 { width: 480px; height: 480px; background: var(--teal); top: -120px; right: -80px; }
.hero__glow--2 { width: 380px; height: 380px; background: #1e40af; bottom: -140px; left: -100px; opacity: .35; }
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.7rem); }
.hero h1 .accent { background: linear-gradient(120deg, #5eead4, #34D399); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { font-size: 1.2rem; color: rgba(226,240,255,.82); margin: 24px 0 34px; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; color: rgba(226,240,255,.7); font-size: .92rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust i { color: var(--teal-300); }

/* App mockup */
.mock {
    position: relative; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px; box-shadow: var(--shadow-lg); backdrop-filter: blur(8px);
    padding: 14px; transform: perspective(1400px) rotateY(-9deg) rotateX(3deg); transform-style: preserve-3d;
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 6px 8px 12px; }
.mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.25); }
.mock__bar i:nth-child(1) { background: #ff5f57; } .mock__bar i:nth-child(2) { background: #febc2e; } .mock__bar i:nth-child(3) { background: #28c840; }
.mock__screen { background: #fff; border-radius: 12px; overflow: hidden; }
.mock__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.mock__head .t { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; }
.mock__head .pill { font-size: .68rem; font-weight: 700; color: var(--teal-600); background: rgba(20,184,166,.12); padding: 4px 10px; border-radius: 100px; }
.mock__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 16px; }
.mstat { background: var(--cloud); border-radius: 10px; padding: 12px; }
.mstat .l { font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.mstat .v { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.15rem; margin-top: 3px; }
.mstat .v.teal { color: var(--teal-600); }
.mock__rows { padding: 4px 16px 18px; }
.mrow { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--cloud); }
.mrow .n { display: flex; align-items: center; gap: 10px; }
.mrow .dot { width: 30px; height: 30px; border-radius: 8px; background: rgba(20,184,166,.12); color: var(--teal-600); display: grid; place-items: center; font-size: .85rem; }
.mrow .nm { font-size: .82rem; color: var(--ink); font-weight: 600; }
.mrow .sub { font-size: .68rem; color: var(--muted); }
.badge-ok { font-size: .64rem; font-weight: 700; color: #0f766e; background: #ccfbf1; padding: 3px 9px; border-radius: 100px; }
.badge-wait { font-size: .64rem; font-weight: 700; color: #92400e; background: #fef3c7; padding: 3px 9px; border-radius: 100px; }
.mock__float {
    position: absolute; right: -26px; bottom: 40px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
    padding: 13px 16px; display: flex; align-items: center; gap: 11px; z-index: 4;
    animation: floaty 4s ease-in-out infinite;
}
.mock__float .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-teal); color: #fff; display: grid; place-items: center; font-size: 1.1rem; }
.mock__float .l { font-size: .64rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.mock__float .v { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Logos / stat strip ---------- */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.strip__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 40px 0; }
.strip__item { text-align: center; }
.strip__item .v { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--ink); letter-spacing: -.02em; }
.strip__item .v .u { color: var(--teal-600); }
.strip__item .l { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* ---------- Features ---------- */
.features__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fcard {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 26px; transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
    position: relative; overflow: hidden;
}
.fcard::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-teal); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.fcard:hover::before { transform: scaleX(1); }
.fcard__ic { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, rgba(20,184,166,.14), rgba(15,42,71,.06)); color: var(--teal-600); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px; }
.fcard h3 { margin-bottom: 8px; }
.fcard p { font-size: .96rem; color: var(--muted); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__n {
    width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color: #fff;
    font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 18px;
    box-shadow: var(--shadow-md);
}
.step:nth-child(2) .step__n { background: var(--grad-teal); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }
.steps--line .step::after { content: ''; position: absolute; top: 26px; left: 66px; right: -14px; height: 2px; background: linear-gradient(to right, var(--border), transparent); }
.steps--line .step:last-child::after { display: none; }

/* ---------- Split highlight (Empresário) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media {
    background: var(--grad-navy); border-radius: var(--radius-lg); padding: 34px; position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.split__media::before { content:''; position:absolute; width:300px; height:300px; border-radius:50%; background: var(--teal); filter: blur(80px); opacity:.3; top:-80px; right:-60px; }
.portal { position: relative; z-index: 1; background: rgba(255,255,255,.96); border-radius: 16px; box-shadow: var(--shadow-md); overflow: hidden; }
.portal__top { background: var(--navy); color: #fff; padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.portal__top .avatar { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--grad-teal); display: grid; place-items: center; font-size: .75rem; font-weight: 700; }
.portal__body { padding: 20px; }
.portal__cta { background: var(--grad-teal); color: #fff; border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.portal__cta i { font-size: 1.6rem; }
.portal__cta .l { font-size: .72rem; opacity: .85; }
.portal__cta .v { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.portal__list .li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--cloud); }
.portal__list .li i { color: var(--teal-600); }
.portal__list .li span { font-size: .86rem; color: var(--ink); }
.split__body h2 { margin-bottom: 18px; }
.checklist { margin-top: 24px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .ck { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; background: rgba(20,184,166,.12); color: var(--teal-600); display: grid; place-items: center; font-size: .8rem; margin-top: 2px; }
.checklist strong { color: var(--ink); font-family: var(--font-head); }
.checklist p { font-size: .95rem; color: var(--muted); margin-top: 2px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.plan {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 34px 30px; display: flex; flex-direction: column; transition: transform .28s, box-shadow .28s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan--pop { background: var(--grad-navy); color: #fff; border: none; box-shadow: var(--shadow-lg); position: relative; }
.plan--pop .plan__name, .plan--pop .plan__price, .plan--pop li { color: #fff; }
.plan__tag { position: absolute; top: 20px; right: 24px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--grad-teal); color: #fff; padding: 5px 12px; border-radius: 100px; }
.plan__name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.plan__desc { font-size: .9rem; color: var(--muted); margin: 6px 0 18px; min-height: 40px; }
.plan--pop .plan__desc { color: rgba(226,240,255,.75); }
.plan__price { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--ink); letter-spacing: -.02em; }
.plan__price small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.plan--pop .plan__price small { color: rgba(226,240,255,.7); }
.plan ul { margin: 22px 0 26px; display: grid; gap: 12px; }
.plan li { display: flex; gap: 10px; align-items: center; font-size: .93rem; color: var(--body); }
.plan li i { color: var(--teal); }
.plan .btn { width: 100%; margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; background: var(--surface); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq__item.open { box-shadow: var(--shadow-sm); border-color: rgba(20,184,166,.4); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq__q i { transition: transform .3s; color: var(--teal-600); flex-shrink: 0; }
.faq__item.open .faq__q i { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 22px 22px; color: var(--muted); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta { background: var(--grad-hero); color: #fff; border-radius: var(--radius-lg); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta h2 { color: #fff; max-width: 640px; margin: 0 auto 16px; }
.cta p { color: rgba(226,240,255,.82); max-width: 520px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta__glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--teal); filter: blur(90px); opacity: .35; top: -160px; left: 50%; transform: translateX(-50%); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-800); color: rgba(226,240,255,.7); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand img { height: 32px; margin-bottom: 16px; }
.footer__brand p { color: rgba(226,240,255,.6); font-size: .95rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; font-weight: 700; }
.footer__col a { display: block; padding: 6px 0; font-size: .95rem; color: rgba(226,240,255,.7); transition: color .2s; }
.footer__col a:hover { color: var(--teal-300); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: .88rem; color: rgba(226,240,255,.5); flex-wrap: wrap; gap: 12px; }
.footer__bottom .nautical { display: inline-flex; align-items: center; gap: 8px; }
.footer__bottom .nautical i { color: var(--teal); }

/* ---------- Dark section + Problem ---------- */
.section--dark { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; }
.section--dark::before { content:''; position:absolute; width:420px; height:420px; border-radius:50%; background: var(--teal); filter: blur(90px); opacity:.16; top:-140px; right:-100px; }
.section--dark h2 { color: #fff; }
.section--dark .eyebrow { color: var(--teal-300); background: rgba(20,184,166,.16); }
.section--dark .section-head p { color: rgba(226,240,255,.74); }
.pains { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; position: relative; z-index: 1; }
.pain { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 28px 24px; }
.pain__ic { width: 50px; height: 50px; border-radius: 13px; background: rgba(251,146,146,.14); color: #fca5a5; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }
.pain h3 { color: #fff; margin-bottom: 8px; font-size: 1.12rem; }
.pain p { color: rgba(226,240,255,.74); font-size: .95rem; }
.pain__foot { text-align: center; margin-top: 44px; position: relative; z-index: 1; }
.pain__foot p { color: rgba(226,240,255,.9); font-size: 1.15rem; font-family: var(--font-head); font-weight: 600; }
.pain__foot .arrow { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--grad-teal); color: #fff; margin-top: 18px; font-size: 1.2rem; box-shadow: var(--shadow-teal); }

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.founder__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg,#14395f,#08172a); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.founder__ph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 5rem; color: rgba(255,255,255,.10); letter-spacing: .05em; }
.founder__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.founder__photo::after { content: ''; position: absolute; inset: 0; z-index: 2; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); background: linear-gradient(to top, rgba(8,23,42,.72) 0%, rgba(8,23,42,0) 42%); }
.founder__badge { position: absolute; z-index: 3; left: 20px; bottom: 20px; background: rgba(255,255,255,.10); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.20); border-radius: 12px; padding: 11px 15px; }
.founder__badge .n { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.02rem; }
.founder__badge .r { color: var(--teal-300); font-size: .8rem; margin-top: 1px; }
.founder__body .quote { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: clamp(1.3rem,2.2vw,1.6rem); line-height: 1.38; margin-bottom: 22px; letter-spacing: -.01em; }
.founder__body .quote .hl { color: var(--teal-300); }
.founder__body p { color: rgba(226,240,255,.80); margin-bottom: 14px; font-size: 1rem; }
.founder__sign { margin-top: 24px; padding: 18px 22px; border-left: 3px solid var(--teal); background: rgba(20,184,166,.08); border-radius: 0 12px 12px 0; color: #fff; font-family: var(--font-head); font-weight: 500; font-size: 1.02rem; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .mock__float { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero__grid, .split, .founder { grid-template-columns: 1fr; gap: 40px; }
    .hero__media { display: none; }
    .features__grid, .steps, .pricing, .pains { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .strip__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps--line .step::after { display: none; }
    .founder__photo { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 640px) {
    body { font-size: 16px; }
    .section { padding: 72px 0; }
    .features__grid, .steps, .pricing, .footer__grid, .strip__grid, .pains { grid-template-columns: 1fr; }
    .nav__links, .nav__login { display: none; }
    .nav__toggle { display: block; }
    .nav.open .nav__links {
        display: flex; flex-direction: column; position: absolute; top: 70px; left: 16px; right: 16px;
        background: #fff; border-radius: 16px; padding: 20px; gap: 8px; box-shadow: var(--shadow-lg); align-items: flex-start;
    }
    .nav.open .nav__links a { color: var(--body); padding: 8px 0; }
    .cta { padding: 48px 24px; }
    .plan--pop { transform: none; }
    .mock__float { display: none; }
}
