:root {
    --ink: #06101b;
    --ink-2: #0b1928;
    --ink-3: #11263a;
    --paper: #f4f7f5;
    --white: #ffffff;
    --lime: #baff3b;
    --lime-2: #d5ff87;
    --cyan: #46d7ff;
    --orange: #ff9f3f;
    --text: #f5f9fc;
    --muted: #a3b2c3;
    --dark-text: #101b25;
    --dark-muted: #596875;
    --line: rgba(255, 255, 255, .12);
    --dark-line: rgba(12, 28, 41, .12);
    --shadow: 0 28px 70px rgba(0, 10, 18, .18);
    --radius: 24px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--dark-text);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--text);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
    position: fixed;
    background: rgba(4, 13, 23, .88);
    box-shadow: 0 12px 42px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(186, 255, 59, .32);
    border-radius: 12px;
    background: rgba(186, 255, 59, .08);
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
    display: none;
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 21px; letter-spacing: -.04em; }
.brand-copy small { margin-top: 5px; color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .22em; }

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #c5d0da;
    font-size: 14px;
    font-weight: 550;
}

.main-nav a { position: relative; padding-block: 10px; transition: color .2s ease; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 0; height: 1px; background: var(--lime); transition: width .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
}

.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(70, 215, 255, .45); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 18px; border-color: rgba(255, 255, 255, .17); background: rgba(255, 255, 255, .06); }
.button-primary { color: #071018; background: var(--lime); box-shadow: 0 16px 34px rgba(186, 255, 59, .18); }
.button-primary:hover { background: #c7ff5f; box-shadow: 0 20px 42px rgba(186, 255, 59, .26); }

.hero {
    position: relative;
    min-height: 900px;
    padding: 168px 0 54px;
    color: var(--text);
    background:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
        radial-gradient(circle at 75% 42%, rgba(38, 130, 202, .14), transparent 34%),
        var(--ink);
    background-size: 56px 56px, 56px 56px, auto, auto;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(2, 8, 14, .32));
    pointer-events: none;
}

.hero-glow { position: absolute; border-radius: 999px; filter: blur(25px); opacity: .7; pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; top: 17%; right: -170px; background: rgba(36, 150, 216, .13); }
.hero-glow-two { width: 280px; height: 280px; left: 8%; bottom: 0; background: rgba(186, 255, 59, .055); }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 54px; }
.hero-copy { padding-bottom: 24px; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #c2d0dc;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow span { width: 22px; height: 1px; background: var(--lime); box-shadow: 8px 0 0 rgba(186,255,59,.32); }
.eyebrow.dark { color: #61707b; }

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
    max-width: 650px;
    margin-bottom: 25px;
    font-size: clamp(46px, 5.2vw, 76px);
    line-height: .99;
    letter-spacing: -.065em;
}

.hero h1 em { display: block; color: var(--lime); font-style: normal; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: #b3c0cc; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #e6edf2; font-size: 14px; font-weight: 750; }
.text-link span { color: var(--lime); transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

.hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin: 36px 0 0; padding: 0; list-style: none; color: #aab9c7; font-size: 12px; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points span { display: grid; place-items: center; width: 19px; height: 19px; color: var(--lime); border: 1px solid rgba(186,255,59,.28); border-radius: 99px; font-size: 10px; }

.hero-visual { position: relative; min-width: 0; perspective: 1000px; }
.visual-frame { position: relative; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.02)); box-shadow: 0 42px 90px rgba(0,0,0,.45); transform: rotateY(-4deg) rotateX(1deg); }
.visual-frame::before { content: ""; position: absolute; inset: 10%; border-radius: 30%; background: rgba(54, 199, 255, .18); filter: blur(48px); }
.visual-frame picture { position: relative; display: block; overflow: hidden; border-radius: 19px; }
.visual-frame img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.floating-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; min-width: 188px; padding: 14px 16px; color: var(--text); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(6, 16, 27, .82); box-shadow: 0 20px 48px rgba(0,0,0,.34); backdrop-filter: blur(14px); }
.floating-card-top { top: -24px; right: 30px; }
.floating-card-bottom { bottom: -24px; left: -28px; }
.floating-card div { display: flex; flex-direction: column; gap: 4px; }
.floating-card small { color: #8fa0af; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.floating-card strong { font-size: 12px; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(186,255,59,.12); }
.floating-icon { display: grid; place-items: center; width: 32px; height: 32px; color: var(--cyan); border: 1px solid rgba(70,215,255,.25); border-radius: 10px; background: rgba(70,215,255,.07); }

.trust-row { position: relative; z-index: 2; display: flex; align-items: center; gap: 34px; margin-top: 76px; padding-top: 25px; border-top: 1px solid var(--line); }
.trust-row p { margin: 0; color: #748596; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.trust-row ul { display: flex; flex-wrap: wrap; gap: 34px; margin: 0; padding: 0; list-style: none; color: #d0d9e0; font-size: 13px; font-weight: 650; }
.trust-row li { display: flex; align-items: center; gap: 11px; }
.trust-row li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(186,255,59,.6); }

.section { padding: 116px 0; }
.answer-section { background: var(--white); }
.answer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.answer-grid h2, .section-heading h2, .panel-copy h2, .faq-intro h2 { margin-bottom: 0; font-size: clamp(38px, 4.7vw, 64px); line-height: 1.04; letter-spacing: -.055em; }
.answer-card { position: relative; padding: 38px 40px; border: 1px solid var(--dark-line); border-radius: var(--radius); background: #f6f9f7; box-shadow: 14px 14px 0 #e7eee9; }
.answer-card::before { content: "“"; position: absolute; top: -24px; left: 28px; color: var(--lime); font-family: Georgia, serif; font-size: 74px; line-height: 1; }
.answer-card p { margin-bottom: 14px; color: #52616c; font-size: 17px; line-height: 1.75; }
.answer-card p:last-child { margin-bottom: 0; }
.answer-card strong { color: var(--dark-text); }

.section-soft { background: #edf2ef; }
.section-heading { max-width: 780px; margin-bottom: 60px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 22px; }
.section-heading > p:last-child { margin: 0; color: var(--dark-muted); font-size: 17px; line-height: 1.7; }
.section-heading.narrow { max-width: 680px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 285px; padding: 30px; overflow: hidden; border: 1px solid rgba(9, 29, 42, .1); border-radius: 20px; background: rgba(255,255,255,.75); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(9, 29, 42, .2); box-shadow: 0 24px 58px rgba(29, 53, 65, .1); }
.feature-card-large { grid-row: span 2; min-height: 588px; color: var(--text); background: var(--ink); }
.feature-card-large::after { content: ""; position: absolute; width: 250px; height: 250px; right: -100px; bottom: -80px; border-radius: 50%; background: rgba(186,255,59,.12); filter: blur(10px); }
.feature-number { position: absolute; top: 26px; right: 27px; color: #8c9aa4; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.feature-card-large .feature-number { color: #66788a; }
.feature-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 52px; color: var(--dark-text); border: 1px solid rgba(7,21,32,.1); border-radius: 15px; background: #edf3ef; font-size: 20px; font-weight: 800; }
.feature-card-large .feature-icon { margin: 30px 0 160px; color: var(--lime); border-color: rgba(186,255,59,.2); background: rgba(186,255,59,.07); }
.identity-icon span { width: 18px; height: 18px; border: 2px solid var(--lime); border-radius: 5px 10px 5px 10px; transform: rotate(45deg); }
.feature-card h3 { margin-bottom: 13px; font-size: 21px; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--dark-muted); font-size: 14px; line-height: 1.7; }
.feature-card-large h3 { font-size: 31px; }
.feature-card-large p { max-width: 360px; color: #9fb0bf; font-size: 16px; }
.palette-preview { position: relative; z-index: 1; display: flex; gap: 7px; margin-top: 30px; }
.palette-preview span { width: 32px; height: 32px; border: 2px solid rgba(255,255,255,.12); border-radius: 50%; }
.palette-preview span:nth-child(1) { background: #baff3b; }
.palette-preview span:nth-child(2) { background: #43d5ff; }
.palette-preview span:nth-child(3) { background: #12283a; }
.palette-preview span:nth-child(4) { background: #f2f4ef; }

.access-section { background: var(--white); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.access-card { position: relative; min-height: 480px; padding: 42px; overflow: hidden; border: 1px solid var(--dark-line); border-radius: 24px; background: #f4f7f5; box-shadow: 0 18px 48px rgba(21, 45, 58, .07); }
.access-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; bottom: -110px; border-radius: 50%; background: rgba(70, 215, 255, .09); }
.access-card-featured { color: var(--text); border-color: rgba(186,255,59,.25); background: var(--ink); box-shadow: 0 28px 65px rgba(0, 14, 24, .2); }
.access-card-featured::after { background: rgba(186,255,59,.12); }
.access-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 70px; }
.access-card-head > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #cfdbd4; border-radius: 13px; background: var(--white); font-size: 11px; font-weight: 900; }
.access-card-featured .access-card-head > span { color: var(--ink); border-color: var(--lime); background: var(--lime); }
.access-card-head small { color: #71817a; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.access-card-featured .access-card-head small { color: #8ca0b1; }
.access-card h3 { max-width: 520px; margin-bottom: 16px; font-size: clamp(30px, 3.2vw, 43px); line-height: 1.05; letter-spacing: -.045em; }
.access-card > p { max-width: 560px; margin-bottom: 30px; color: var(--dark-muted); font-size: 15px; line-height: 1.7; }
.access-card-featured > p { color: #9fb0bf; }
.access-flow { position: relative; z-index: 1; display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.access-flow li { display: flex; align-items: center; gap: 12px; min-height: 46px; padding: 9px 13px; border: 1px solid rgba(13,35,48,.08); border-radius: 12px; background: rgba(255,255,255,.72); font-size: 12px; font-weight: 650; }
.access-card-featured .access-flow li { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.045); }
.access-flow b { display: grid; place-items: center; flex: 0 0 auto; width: 25px; height: 25px; color: #33433a; border-radius: 8px; background: #e4ebe7; font-size: 9px; }
.access-card-featured .access-flow b { color: var(--ink); background: var(--lime); }

.themes-section { position: relative; color: var(--text); background: var(--ink); overflow: hidden; }
.themes-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 35%, rgba(37, 125, 189, .13), transparent 32%); pointer-events: none; }
.themes-section .container { position: relative; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 490px; margin: 0 0 5px; color: #9babb9; font-size: 16px; line-height: 1.75; }
.themes-section .split-heading > p { color: #9babb9; }
.showcase-figure { margin: 0 0 44px; padding: 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 25px; background: rgba(255,255,255,.035); box-shadow: 0 34px 80px rgba(0,0,0,.36); }
.showcase-figure img { width: 100%; border-radius: 16px; }
.showcase-figure figcaption { padding: 12px 7px 1px; color: #6e8090; font-size: 10px; text-align: center; letter-spacing: .05em; }

.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.theme-card { overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.035); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.theme-card:hover, .theme-card.active { transform: translateY(-4px); border-color: rgba(186,255,59,.35); background: rgba(255,255,255,.06); }
.theme-preview { display: block; height: 190px; overflow: hidden; border-bottom: 1px solid var(--line); background: #07111f; }
.theme-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.theme-card:hover .theme-preview img { transform: scale(1.025); }
.theme-content { position: relative; padding: 25px; }
.theme-content > span { position: absolute; top: 27px; right: 25px; color: #647788; font-size: 10px; font-weight: 800; }
.theme-content h3 { margin-bottom: 9px; font-size: 23px; letter-spacing: -.03em; }
.theme-content p { min-height: 68px; margin-bottom: 19px; color: #95a6b5; font-size: 13px; line-height: 1.65; }
.theme-cta { display: inline-flex; gap: 10px; padding: 0; color: var(--lime); font-size: 12px; font-weight: 800; }
.theme-cta span { transition: transform .2s ease; }
.theme-cta:hover span { transform: translate(3px, -3px); }
.portfolio-note { max-width: 760px; margin: 24px auto 0; color: #718393; font-size: 10px; line-height: 1.6; text-align: center; }

.panel-section { background: var(--white); }
.panel-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.panel-copy > p:not(.eyebrow) { margin: 24px 0 35px; color: var(--dark-muted); font-size: 16px; line-height: 1.75; }
.check-list { display: grid; gap: 21px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; }
.check-list li > span { display: grid; place-items: center; flex: 0 0 auto; width: 26px; height: 26px; color: #253508; border: 1px solid rgba(124,172,34,.22); border-radius: 8px; background: #ddfcb0; font-size: 12px; font-weight: 900; }
.check-list div { display: flex; flex-direction: column; gap: 5px; }
.check-list strong { font-size: 14px; }
.check-list small { color: #71808a; font-size: 12px; line-height: 1.5; }

.dashboard-mockup { overflow: hidden; border: 1px solid rgba(13,32,46,.13); border-radius: 22px; background: #f5f8f7; box-shadow: var(--shadow); transform: rotate(1deg); }
.dashboard-bar { display: flex; align-items: center; gap: 6px; height: 42px; padding: 0 15px; border-bottom: 1px solid #dfe6e2; background: #e9eeeb; }
.dashboard-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #bbc6c0; }
.dashboard-bar small { margin-inline: auto; color: #718077; font-size: 8px; letter-spacing: .04em; }
.dashboard-body { display: grid; grid-template-columns: 62px 1fr; min-height: 420px; }
.dashboard-body aside { display: flex; flex-direction: column; align-items: center; gap: 26px; padding-top: 25px; background: var(--ink); }
.dashboard-body aside b { display: grid; place-items: center; width: 29px; height: 29px; color: var(--ink); border-radius: 9px; background: var(--lime); font-size: 12px; }
.dashboard-body aside i { display: block; width: 16px; height: 16px; border: 1px solid #577086; border-radius: 5px; }
.dashboard-content { min-width: 0; padding: 32px; }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 31px; }
.dash-top div { display: flex; flex-direction: column; gap: 6px; }
.dash-top small { color: #7f8c94; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.dash-top strong { font-size: 20px; letter-spacing: -.03em; }
.dash-top button { padding: 9px 14px; color: #172008; border: 0; border-radius: 8px; background: var(--lime); font-size: 9px; font-weight: 800; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.dash-stats div { display: flex; flex-direction: column; gap: 12px; padding: 17px; border: 1px solid #dde5e0; border-radius: 12px; background: var(--white); }
.dash-stats small { color: #819087; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.dash-stats strong { font-size: 12px; }
.dash-stats strong span { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #7cce25; box-shadow: 0 0 0 4px rgba(124,206,37,.12); }
.dash-chart { padding: 20px; border: 1px solid #dde5e0; border-radius: 12px; background: var(--white); }
.chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.chart-head strong { font-size: 11px; }
.chart-head span { color: #8a9890; font-size: 8px; }
.chart-row { height: 9px; margin: 15px 0; overflow: hidden; border-radius: 99px; background: #edf1ef; }
.chart-row i { display: block; width: var(--width); height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--lime), #57dba0); }

.app-screen-card { margin: 0; overflow: hidden; border: 1px solid rgba(13,32,46,.13); border-radius: 22px; background: var(--ink); box-shadow: var(--shadow); transform: rotate(1deg); }
.app-screen-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.app-screen-card figcaption { padding: 13px 18px; color: #7f92a1; background: #0b1722; font-size: 9px; line-height: 1.5; text-align: center; }

.process-section { color: var(--text); background: var(--ink); }
.process-section .section-heading > p:last-child { color: #97a7b5; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 70px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { position: relative; min-height: 230px; padding: 40px 26px 20px 0; border-right: 1px solid var(--line); }
.process-list li:not(:first-child) { padding-left: 26px; }
.process-list li:last-child { border-right: 0; }
.process-list li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(186,255,59,.08); }
.process-list li:not(:first-child)::before { left: 26px; }
.process-list > li > span { color: #516476; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.process-list h3 { margin: 53px 0 12px; font-size: 21px; }
.process-list p { color: #91a1af; font-size: 13px; line-height: 1.65; }
.process-note { margin: 8px 0 0; color: #637586; font-size: 10px; }
.deadline-banner { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 25px; padding: 21px 25px; color: var(--ink); border-radius: 15px; background: var(--lime); }
.deadline-banner strong { flex: 0 0 auto; font-size: 18px; letter-spacing: -.03em; }
.deadline-banner span { font-size: 12px; font-weight: 650; line-height: 1.5; text-align: right; }

.faq-section { background: #f7f9f8; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p:not(.eyebrow) { margin: 25px 0 28px; color: var(--dark-muted); line-height: 1.7; }
.dark-link { color: var(--dark-text); }
.faq-list { border-top: 1px solid var(--dark-line); }
.faq-list details { border-bottom: 1px solid var(--dark-line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 3px; cursor: pointer; list-style: none; font-size: 16px; font-weight: 750; line-height: 1.45; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; flex: 0 0 auto; width: 26px; height: 26px; border: 1px solid #ccd5d0; border-radius: 50%; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 12px; left: 7px; width: 10px; height: 1px; background: #35444d; transition: transform .2s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i { border-color: var(--lime); background: var(--lime); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 650px; margin: -3px 50px 26px 3px; color: #61707a; font-size: 14px; line-height: 1.75; }

.contact-section { position: relative; padding: 120px 0; color: var(--text); background: #030a12; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 48px 48px; }
.contact-glow { position: absolute; width: 550px; height: 550px; left: -300px; bottom: -260px; border-radius: 50%; background: rgba(186,255,59,.1); filter: blur(45px); }
.contact-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: center; }
.contact-grid.contact-simple { display: block; }
.contact-copy-centered { max-width: 850px; margin-inline: auto; text-align: center; }
.contact-copy-centered .eyebrow { justify-content: center; }
.contact-copy-centered h2, .contact-copy-centered > p { margin-inline: auto; }
.contact-copy h2 { max-width: 560px; margin-bottom: 28px; font-size: clamp(46px, 5.7vw, 76px); line-height: .99; letter-spacing: -.06em; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: #9eafbd; font-size: 16px; line-height: 1.75; }
.whatsapp-link { display: flex; align-items: center; gap: 14px; max-width: 410px; margin-top: 38px; padding: 16px 19px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.035); transition: background .2s ease, border-color .2s ease; }
.whatsapp-link:hover { border-color: rgba(186,255,59,.35); background: rgba(186,255,59,.06); }
.whatsapp-link > span { display: grid; place-items: center; width: 36px; height: 36px; color: var(--ink); border-radius: 11px; background: var(--lime); font-size: 18px; }
.whatsapp-link div { display: flex; flex-direction: column; gap: 3px; }
.whatsapp-link small { color: #899aa8; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.whatsapp-link strong { font-size: 13px; }
.whatsapp-link i { margin-left: auto; color: var(--lime); font-style: normal; }
.whatsapp-link-large { max-width: 480px; margin-inline: auto; padding: 19px 22px; text-align: left; }
.whatsapp-link-large > span { width: 42px; height: 42px; }
.whatsapp-link-large strong { font-size: 15px; }
.contact-assurances { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 28px; margin: 25px 0 0; padding: 0; color: #7f91a0; list-style: none; font-size: 10px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.contact-assurances li { display: flex; align-items: center; gap: 8px; }
.contact-assurances li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); }
.privacy-inline { margin: 20px auto 0 !important; color: #667988 !important; font-size: 10px !important; line-height: 1.6 !important; }
.privacy-inline a { color: #9aadba; text-decoration: underline; text-decoration-color: rgba(186,255,59,.35); text-underline-offset: 3px; }
.privacy-inline a:hover { color: var(--lime); }

.form-card { padding: 37px; color: var(--dark-text); border: 1px solid rgba(255,255,255,.14); border-radius: 25px; background: #f7f9f7; box-shadow: 0 32px 80px rgba(0,0,0,.35); }
.form-alert { margin-bottom: 22px; padding: 13px 15px; border-radius: 10px; font-size: 13px; line-height: 1.5; }
.form-alert.success { color: #244608; border: 1px solid #bada99; background: #e9f8d8; }
.form-alert.error { color: #761c20; border: 1px solid #efc0c2; background: #fff0f0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { position: relative; margin-bottom: 18px; }
.field label { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 800; }
.field label small { color: #839089; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; color: #18242b; border: 1px solid #d7dfdb; border-radius: 10px; background: var(--white); outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 49px; padding: 0 14px; }
.field textarea { min-height: 108px; padding: 13px 14px 24px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa59f; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #8bb533; box-shadow: 0 0 0 4px rgba(186,255,59,.13); }
.char-count { position: absolute; right: 11px; bottom: 9px; color: #929e98; font-size: 9px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 19px; color: #66736c; font-size: 10px; line-height: 1.55; }
.consent input { flex: 0 0 auto; width: 15px; height: 15px; accent-color: #7fae1f; }
.consent a { color: #2b3a31; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 12px 0 0; color: #87928d; font-size: 9px; text-align: center; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { color: #b7c2cb; background: #02070c; }
.footer-main { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 70px; padding-top: 72px; padding-bottom: 60px; }
.footer-brand { color: var(--text); }
.footer-main > div:first-child > p { max-width: 360px; margin: 23px 0 0; color: #6f808e; font-size: 13px; line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; font-size: 12px; }
.footer-links strong { margin-bottom: 8px; color: #edf3f7; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { color: #82919e; transition: color .2s ease; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; padding-bottom: 30px; border-top: 1px solid rgba(255,255,255,.08); color: #536473; font-size: 9px; line-height: 1.5; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }

.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 11px 15px 11px 11px; color: #0a161d; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; background: var(--lime); box-shadow: 0 14px 36px rgba(0,0,0,.25); font-size: 11px; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: rgba(4,16,23,.12); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { background: #f7f9f8; }
.compact-header { position: relative; color: var(--text); background: var(--ink); }
.legal-main { padding: 75px 0 100px; }
.legal-content { max-width: 830px; padding: 55px 65px; border: 1px solid var(--dark-line); border-radius: 24px; background: var(--white); box-shadow: 0 22px 60px rgba(23, 47, 60, .08); }
.legal-content h1 { margin-bottom: 10px; font-size: clamp(42px, 6vw, 68px); letter-spacing: -.055em; }
.legal-updated { color: #849089; font-size: 11px; }
.legal-content h2 { margin: 36px 0 12px; font-size: 22px; letter-spacing: -.025em; }
.legal-content p { color: #5a6861; font-size: 15px; line-height: 1.78; }
.legal-content a:not(.button) { font-weight: 700; text-decoration: underline; }
.legal-content .button { margin-top: 25px; }
.legal-status { margin: 31px 0 40px; padding: 24px 26px; border: 1px solid rgba(89, 127, 29, .18); border-radius: 16px; background: #eff8e4; }
.legal-status strong { display: block; margin-bottom: 8px; color: #2f440d; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.legal-status p { margin: 0; color: #4f6134; font-size: 14px; }

@media (max-width: 1050px) {
    .main-nav { gap: 20px; }
    .main-nav a:nth-last-child(-n+2) { display: none; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hero { min-height: 820px; }
    .hero h1 { font-size: clamp(43px, 5.6vw, 62px); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card-large { grid-row: span 2; }
    .feature-grid .feature-card:last-child { grid-column: 2; }
    .panel-grid, .faq-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .nav-wrap { min-height: 72px; }
    .header-cta { display: none; }
    .menu-toggle { display: block; margin-left: auto; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 14px 20px 26px; visibility: hidden; opacity: 0; transform: translateY(-12px); color: var(--text); background: rgba(4,13,23,.98); border-top: 1px solid var(--line); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
    .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .main-nav a, .main-nav a:nth-last-child(-n+2) { display: block; padding: 15px 4px; border-bottom: 1px solid var(--line); }
    .hero { min-height: auto; padding-top: 125px; }
    .hero-grid { grid-template-columns: 1fr; gap: 72px; }
    .hero h1 { max-width: 680px; font-size: clamp(48px, 10.5vw, 72px); }
    .hero-lead { max-width: 650px; }
    .hero-visual { width: min(90%, 650px); margin-inline: auto; }
    .trust-row { margin-top: 80px; align-items: flex-start; }
    .trust-row ul { gap: 18px 28px; }
    .section { padding: 90px 0; }
    .answer-grid, .panel-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .answer-grid { gap: 36px; }
    .answer-grid h2, .section-heading h2, .panel-copy h2, .faq-intro h2 { font-size: clamp(39px, 7.5vw, 58px); }
    .split-heading { grid-template-columns: 1fr; gap: 26px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature-card-large { min-height: 520px; }
    .feature-card-large .feature-icon { margin-bottom: 110px; }
    .access-grid { grid-template-columns: 1fr; }
    .access-card { min-height: auto; }
    .theme-grid { grid-template-columns: 1fr; }
    .theme-card { display: grid; grid-template-columns: .8fr 1.2fr; }
    .theme-preview { height: 100%; min-height: 210px; border-right: 1px solid var(--line); border-bottom: 0; }
    .panel-grid { gap: 60px; }
    .dashboard-mockup { max-width: 700px; }
    .process-list { grid-template-columns: 1fr 1fr; }
    .process-list li:nth-child(2) { border-right: 0; }
    .process-list li:nth-child(3), .process-list li:nth-child(4) { border-top: 1px solid var(--line); }
    .faq-intro { position: static; }
    .contact-grid { gap: 60px; }
    .contact-copy h2 { font-size: clamp(48px, 9vw, 72px); }
    .form-card { max-width: 680px; }
}

@media (max-width: 580px) {
    .container { width: min(calc(100% - 26px), var(--container)); }
    .brand-copy strong { font-size: 19px; }
    .hero { padding: 112px 0 45px; background-size: 40px 40px, 40px 40px, auto, auto; }
    .eyebrow { margin-bottom: 17px; font-size: 9px; letter-spacing: .12em; }
    .hero h1 { margin-bottom: 21px; font-size: clamp(43px, 13.5vw, 58px); }
    .hero-lead { font-size: 16px; line-height: 1.65; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .hero-actions .button { width: 100%; }
    .hero-points { display: grid; gap: 12px; }
    .hero-visual { width: 100%; }
    .visual-frame { padding: 7px; border-radius: 19px; transform: none; }
    .visual-frame picture { border-radius: 13px; }
    .floating-card { min-width: 155px; padding: 11px; }
    .floating-card-top { top: -18px; right: 8px; }
    .floating-card-bottom { bottom: -22px; left: 5px; }
    .floating-card strong { font-size: 10px; }
    .trust-row { display: block; margin-top: 65px; }
    .trust-row p { margin-bottom: 17px; }
    .trust-row ul { display: grid; gap: 12px; }
    .section { padding: 72px 0; }
    .answer-grid h2, .section-heading h2, .panel-copy h2, .faq-intro h2 { font-size: 40px; }
    .answer-card { padding: 33px 25px; box-shadow: 8px 8px 0 #e7eee9; }
    .answer-card p { font-size: 15px; }
    .section-heading { margin-bottom: 42px; }
    .section-heading > p:last-child { font-size: 15px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card, .feature-card-large { min-height: auto; padding: 26px; }
    .feature-card-large { min-height: 460px; }
    .feature-card-large .feature-icon { margin: 30px 0 125px; }
    .feature-grid .feature-card:last-child { grid-column: auto; }
    .showcase-figure { padding: 7px; border-radius: 16px; }
    .showcase-figure img { border-radius: 11px; }
    .theme-card { display: block; }
    .theme-preview { height: 185px; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .theme-content p { min-height: 0; }
    .dashboard-body { grid-template-columns: 44px 1fr; min-height: 340px; }
    .dashboard-body aside { gap: 21px; }
    .dashboard-body aside i { width: 13px; height: 13px; }
    .dashboard-content { padding: 20px 14px; }
    .dash-top { margin-bottom: 20px; }
    .dash-top strong { font-size: 16px; }
    .dash-top button { display: none; }
    .dash-stats { grid-template-columns: 1fr 1fr; }
    .dash-stats div:last-child { display: none; }
    .process-list { grid-template-columns: 1fr; border-top: 0; }
    .process-list li, .process-list li:not(:first-child) { min-height: 0; padding: 30px 0 32px 45px; border-top: 1px solid var(--line); border-right: 0; }
    .process-list li::before, .process-list li:not(:first-child)::before { top: 27px; left: 1px; }
    .process-list h3 { margin: 14px 0 9px; }
    .faq-grid { gap: 40px; }
    .faq-list summary { padding: 20px 0; font-size: 14px; }
    .contact-section { padding: 80px 0; }
    .contact-copy h2 { font-size: 49px; }
    .access-grid { grid-template-columns: 1fr; }
    .access-card { min-height: auto; padding: 31px 23px; }
    .access-card-head { margin-bottom: 48px; }
    .deadline-banner { align-items: flex-start; flex-direction: column; gap: 8px; }
    .deadline-banner span { text-align: left; }
    .form-card { padding: 25px 18px; border-radius: 19px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .footer-main { grid-template-columns: 1fr; gap: 38px; padding-top: 58px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .footer-bottom p:last-child { text-align: left; }
    .floating-whatsapp { right: 13px; bottom: 13px; padding-right: 11px; }
    .floating-whatsapp b { display: none; }
    .legal-main { padding: 35px 0 65px; }
    .legal-content { padding: 35px 22px; }
    .compact-header .button { padding: 0 12px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .site-header, .floating-whatsapp, .hero-actions, .contact-section, .site-footer { display: none !important; }
    .hero, .themes-section, .process-section { color: #000; background: #fff; }
    .section { padding: 30px 0; }
}

/* Conteúdo editorial e guias — versão 3 */
.guides-section { background: #e8efeb; }
.guide-heading { margin-bottom: 44px; }
.guide-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { display: flex; flex-direction: column; min-height: 310px; padding: 30px; border: 1px solid rgba(12, 31, 43, .11); border-radius: 21px; background: rgba(255,255,255,.78); box-shadow: 0 18px 46px rgba(22, 49, 61, .055); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.guide-card:hover { transform: translateY(-5px); border-color: rgba(68, 103, 116, .28); box-shadow: 0 24px 55px rgba(22, 49, 61, .1); }
.guide-card-meta { margin-bottom: 22px; color: #73837d !important; font-size: 10px !important; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.guide-card h3, .guide-card h2 { margin-bottom: 14px; font-size: 25px; line-height: 1.14; letter-spacing: -.038em; }
.guide-card > p:not(.guide-card-meta), .guide-card > div > p:not(.guide-card-meta) { margin-bottom: 25px; color: var(--dark-muted); font-size: 14px; line-height: 1.72; }
.guide-card > a, .guide-card > div > a { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: #243509; font-size: 12px; font-weight: 850; }
.guide-card a span { color: #688f1c; transition: transform .2s ease; }
.guide-card a:hover span { transform: translate(3px, -3px); }
.guide-all-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; font-size: 13px; font-weight: 850; }
.guide-all-link span { color: #668d1a; }
.contact-email { display: inline-block; margin-top: 20px; color: #9eafbd; font-size: 12px; text-decoration: underline; text-decoration-color: rgba(186,255,59,.45); text-underline-offset: 4px; }
.contact-email:hover { color: var(--lime); }

.guide-page { background: #f4f7f5; }
.guide-page .compact-header { position: relative; }
.guide-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; color: #aebbc6; font-size: 12px; font-weight: 700; }
.guide-nav a:hover { color: var(--lime); }
.guide-hero { position: relative; padding: 88px 0 84px; color: var(--text); background: var(--ink); overflow: hidden; }
.guide-hero::before, .guide-hub-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 35%, rgba(51, 153, 216, .16), transparent 33%), linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: auto, 52px 52px, 52px 52px; pointer-events: none; }
.guide-hero-grid { position: relative; display: grid; grid-template-columns: 1fr .86fr; gap: 70px; align-items: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 43px; color: #718496; font-size: 10px; font-weight: 700; letter-spacing: .03em; }
.breadcrumbs a:hover { color: var(--lime); }
.guide-hero h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(46px, 5vw, 72px); line-height: 1.01; letter-spacing: -.06em; }
.guide-lead { max-width: 690px; margin-bottom: 27px; color: #aab9c5; font-size: 17px; line-height: 1.75; }
.guide-byline { display: flex; flex-wrap: wrap; gap: 8px; color: #6f8293; font-size: 10px; font-weight: 700; }
.guide-cover { margin: 0; padding: 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 23px; background: rgba(255,255,255,.055); box-shadow: 0 35px 75px rgba(0,0,0,.35); transform: rotate(1.2deg); }
.guide-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 16px; }
.guide-layout { display: grid; grid-template-columns: 250px minmax(0, 790px); gap: 70px; justify-content: center; padding-top: 86px; padding-bottom: 105px; }
.guide-toc { position: sticky; top: 110px; align-self: start; padding: 24px 21px; border: 1px solid var(--dark-line); border-radius: 17px; background: rgba(255,255,255,.72); }
.guide-toc > strong { display: block; margin-bottom: 17px; color: #27353d; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.guide-toc ol { display: grid; gap: 12px; margin: 0; padding: 0 0 0 18px; color: #738078; font-size: 11px; line-height: 1.5; }
.guide-toc a:hover { color: #405b0d; text-decoration: underline; text-underline-offset: 3px; }
.guide-article { min-width: 0; }
.guide-summary { margin-bottom: 62px; padding: 32px 34px; border-left: 4px solid var(--lime); border-radius: 0 18px 18px 0; background: var(--white); box-shadow: 0 15px 42px rgba(25,48,60,.07); }
.guide-summary span { display: block; margin-bottom: 11px; color: #75847d; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.guide-summary p { margin: 0; color: #34434b; font-size: 17px; font-weight: 650; line-height: 1.7; }
.guide-article-section { scroll-margin-top: 100px; margin-bottom: 58px; }
.guide-article-section h2, .guide-faq > h2 { margin-bottom: 22px; color: #0e1c25; font-size: clamp(31px, 3.3vw, 43px); line-height: 1.08; letter-spacing: -.045em; }
.guide-article-section p { margin-bottom: 18px; color: #54646d; font-size: 16px; line-height: 1.86; }
.guide-list { display: grid; gap: 11px; margin: 27px 0 0; padding: 0; list-style: none; counter-reset: guide-list; }
.guide-list li { position: relative; padding: 15px 18px 15px 47px; color: #485861; border: 1px solid rgba(13, 36, 49, .09); border-radius: 13px; background: rgba(255,255,255,.68); font-size: 13px; line-height: 1.55; counter-increment: guide-list; }
.guide-list li::before { content: "✓"; position: absolute; top: 14px; left: 16px; display: grid; place-items: center; width: 22px; height: 22px; color: #293808; border-radius: 7px; background: #dffbab; font-size: 10px; font-weight: 900; }
ol.guide-list li::before { content: counter(guide-list); }
.guide-cta { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; margin: 80px 0; padding: 37px; color: var(--text); border-radius: 22px; background: var(--ink); box-shadow: 0 25px 60px rgba(0,12,20,.18); }
.guide-cta span { color: var(--lime); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.guide-cta h2 { margin: 10px 0; font-size: 30px; letter-spacing: -.04em; }
.guide-cta p { max-width: 480px; margin: 0; color: #93a5b4; font-size: 13px; line-height: 1.65; }
.guide-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 13px; }
.guide-cta-actions > a:last-child { color: #8294a2; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }
.guide-faq { scroll-margin-top: 100px; }
.guide-faq .faq-list { margin-top: 30px; }
.guide-related { padding: 90px 0; background: #e7eeea; }
.guide-related .section-heading { margin-bottom: 42px; }
.guide-related .section-heading h2 { font-size: 48px; }
.guide-related .guide-card-grid { grid-template-columns: repeat(2, 1fr); }

.guide-hub-hero { position: relative; padding: 104px 0 110px; color: var(--text); background: var(--ink); overflow: hidden; }
.guide-hub-hero .container { position: relative; }
.guide-hub-hero h1 { max-width: 880px; margin-bottom: 25px; font-size: clamp(52px, 6.8vw, 88px); line-height: .98; letter-spacing: -.065em; }
.guide-hub-hero .container > p:last-child { max-width: 720px; margin: 0; color: #a3b3c0; font-size: 18px; line-height: 1.72; }
.guides-catalog { background: #f4f7f5; }
.guides-catalog .guide-card-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
.guide-card-catalog { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; min-height: 0; padding: 13px; }
.guide-card-catalog figure { margin: 0; overflow: hidden; border-radius: 15px; background: var(--ink); }
.guide-card-catalog figure img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.guide-card-catalog > div { display: flex; flex-direction: column; align-items: flex-start; padding: 24px 26px 23px 0; }
.guide-card-catalog h2 { font-size: clamp(29px, 3.6vw, 43px); }
.guide-hub-cta { padding: 105px 0; color: var(--text); text-align: center; background: #030a12; }
.guide-hub-cta .eyebrow { justify-content: center; }
.guide-hub-cta h2 { margin-bottom: 19px; font-size: clamp(45px, 6vw, 73px); letter-spacing: -.055em; }
.guide-hub-cta p { max-width: 650px; margin: 0 auto 30px; color: #96a8b6; line-height: 1.75; }

@media (max-width: 920px) {
    .guide-card-grid { grid-template-columns: 1fr; }
    .guide-card { min-height: 0; }
    .guide-hero-grid { grid-template-columns: 1fr; gap: 52px; }
    .guide-cover { max-width: 720px; }
    .guide-layout { grid-template-columns: 1fr; gap: 40px; }
    .guide-toc { position: static; }
    .guide-toc ol { grid-template-columns: 1fr 1fr; }
    .guide-related .guide-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    .guide-nav { display: none; }
    .guide-page .compact-header .button { margin-left: auto; }
    .guide-hero { padding: 68px 0; }
    .guide-card-catalog { grid-template-columns: 1fr; }
    .guide-card-catalog > div { padding: 20px 20px 24px; }
    .guide-card-catalog figure img { min-height: 0; aspect-ratio: 16 / 9; }
}

@media (max-width: 580px) {
    .guide-heading { gap: 20px; }
    .guide-card { padding: 24px; }
    .guide-card h3, .guide-card h2 { font-size: 23px; }
    .guide-page .compact-header .button { min-height: 39px; padding-inline: 11px; font-size: 10px; }
    .guide-hero h1 { font-size: 45px; }
    .guide-lead { font-size: 15px; }
    .guide-cover { padding: 6px; border-radius: 17px; transform: none; }
    .guide-cover img { border-radius: 12px; }
    .guide-layout { padding-top: 58px; padding-bottom: 70px; }
    .guide-toc ol { grid-template-columns: 1fr; }
    .guide-summary { margin-bottom: 47px; padding: 25px 23px; }
    .guide-summary p { font-size: 15px; }
    .guide-article-section { margin-bottom: 46px; }
    .guide-article-section h2, .guide-faq > h2 { font-size: 32px; }
    .guide-article-section p { font-size: 15px; line-height: 1.8; }
    .guide-cta { grid-template-columns: 1fr; padding: 28px 24px; }
    .guide-cta-actions { align-items: stretch; }
    .guide-related { padding: 70px 0; }
    .guide-related .guide-card-grid { grid-template-columns: 1fr; }
    .guide-related .section-heading h2 { font-size: 39px; }
    .guide-hub-hero { padding: 75px 0 82px; }
    .guide-hub-hero h1 { font-size: 49px; }
    .guide-hub-hero .container > p:last-child { font-size: 16px; }
    .guide-card-catalog { padding: 8px; }
}
