:root {
    --ink: #071013;
    --ink-2: #0d1b1e;
    --ink-3: #132326;
    --green: #00d084;
    --green-strong: #00b979;
    --mint: #ddf7ee;
    --yellow: #ffd338;
    --yellow-soft: #ffe985;
    --paper: #ffffff;
    --surface: #f4f8f8;
    --text: #071013;
    --muted: #40524e;
    --dark-muted: #b5c8c2;
    --line: rgba(7, 16, 19, 0.12);
    --dark-line: rgba(255, 255, 255, 0.1);
    --radius: 24px;
    --shadow: 0 30px 80px rgba(7, 16, 19, 0.15);
    --container: 1312px;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--text);
    background: var(--paper);
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

h1,
h2,
h3,
.brand {
    font-family: "Inter Tight", system-ui, sans-serif;
    letter-spacing: 0;
}

h1,
h2,
h3 {
    margin-bottom: 0;
    font-weight: 900;
}

h1 {
    font-size: clamp(56px, 5.45vw, 78px);
    line-height: 0.96;
}

h2 {
    font-size: clamp(48px, 5.3vw, 78px);
    line-height: 1;
}

h3 {
    font-size: 34px;
    line-height: 1.08;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-150%);
}

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

.container {
    position: relative;
    width: min(calc(100% - 128px), var(--container));
    margin: 0 auto;
}

.section-pad {
    position: relative;
    padding: 132px 0;
    overflow: clip;
}

.section-dark {
    color: #f2fffa;
    background: var(--ink);
}

.section-dark p {
    color: var(--dark-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow-green {
    color: var(--green);
    border: 1px solid rgba(0, 208, 132, 0.28);
    background: rgba(0, 208, 132, 0.08);
}

.eyebrow-dark {
    color: var(--ink);
    background: rgba(7, 16, 19, 0.08);
}

.eyebrow-muted {
    min-height: 0;
    padding: 0;
    color: #9fb1b5;
    background: transparent;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
.menu-button:focus-visible {
    outline: 3px solid #3f8cff;
    outline-offset: 3px;
}

.button-primary {
    color: var(--ink);
    background: var(--green);
    box-shadow: 0 16px 40px rgba(0, 208, 132, 0.18);
}

.button-primary:hover {
    background: #20dfa1;
    box-shadow: 0 20px 44px rgba(0, 208, 132, 0.25);
}

.button-light {
    color: var(--ink);
    background: #f2fffa;
}

.button-ghost {
    color: #e7f2ee;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.button-header {
    min-height: 50px;
    border: 1px solid rgba(7, 16, 19, 0.1);
    border-radius: 16px;
    color: var(--ink);
    background: var(--yellow-soft);
    box-shadow: 0 10px 20px rgba(175, 132, 0, 0.12);
}

.button.full {
    width: 100%;
}

.site-header {
    position: absolute;
    top: 28px;
    left: 0;
    z-index: 40;
    width: 100%;
    pointer-events: none;
}

.header-inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    align-items: center;
    gap: 28px;
    width: min(calc(100% - 128px), var(--container));
    min-height: 76px;
    margin: 0 auto;
    border: 1px solid rgba(6, 16, 15, 0.1);
    border-radius: 24px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.83);
    box-shadow: 0 18px 54px rgba(18, 39, 35, 0.14);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.brand-logo {
    display: block;
    width: auto;
    height: 38px;
}

.main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 4px;
    min-height: 50px;
    border: 1px solid rgba(6, 16, 15, 0.08);
    border-radius: 18px;
    padding: 4px;
    background: rgba(233, 244, 238, 0.96);
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 14px;
    width: 100%;
    padding: 0 12px;
    color: #243330;
    font-family: "Inter Tight", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: rgba(6, 16, 15, 0.08);
    box-shadow: 0 10px 24px rgba(6, 16, 15, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    padding: 11px;
    background: #edf4f1;
    cursor: pointer;
}

.menu-button > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: var(--ink);
}

.hero {
    min-height: 970px;
    padding-top: 214px;
    padding-bottom: 48px;
    background: #fff;
}

.hero-field {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-field-yellow {
    top: -220px;
    right: -220px;
    width: 760px;
    height: 760px;
    background: var(--yellow);
}

.hero-field-mint {
    bottom: -260px;
    left: -260px;
    width: 780px;
    height: 780px;
    background: var(--mint);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(0, 620px);
    align-items: center;
    gap: 70px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-copy p {
    width: min(100%, 560px);
    margin: 0;
    color: #314347;
    font-size: 22px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 14px;
}

.proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin: 0;
    padding: 0;
    color: #51656a;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    list-style: none;
}

.proof-list li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 24px;
    border-radius: 50%;
    vertical-align: middle;
    background: var(--yellow);
}

.dossier-window {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    height: 620px;
    border-radius: 34px;
    padding: 28px;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 30px 80px rgba(7, 16, 19, 0.24);
}

.dossier-window::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 208, 132, 0.22);
}

.window-top,
.dossier-title-row,
.mini-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.window-top {
    color: #9fb1b5;
    font-size: 13px;
    font-weight: 800;
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b6b;
}

.window-dots i:nth-child(2) { background: var(--yellow); }
.window-dots i:nth-child(3) { background: var(--green); }

.dossier-title-row {
    align-items: flex-start;
}

.dossier-title-row > div {
    width: min(100%, 410px);
}

.dossier-title-row h2 {
    margin: 8px 0;
    color: #fff;
    font-size: 42px;
    line-height: 0.96;
}

.dossier-title-row p {
    margin: 0;
    color: #9fb1b5;
    font-size: 15px;
}

.priority-badge {
    flex: 0 0 auto;
    border-radius: 18px;
    padding: 10px 14px;
    color: #007d57;
    background: var(--mint);
    font-size: 12px;
    font-weight: 900;
}

.metric-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric-cards article {
    min-width: 0;
    min-height: 88px;
    border: 1px solid var(--dark-line);
    border-radius: 18px;
    padding: 15px;
    background: var(--ink-3);
}

.metric-cards span {
    display: block;
    color: #9fb1b5;
    font-size: 12px;
    font-weight: 800;
}

.metric-cards strong {
    display: block;
    margin-top: 8px;
    overflow: hidden;
    color: #fff;
    font-size: 22px;
    line-height: 1.1;
    text-overflow: ellipsis;
}

.history-card {
    position: relative;
    min-height: 150px;
    border: 1px solid var(--dark-line);
    border-radius: 22px;
    padding: 20px;
    background: var(--ink-2);
}

.mini-heading {
    color: #9fb1b5;
    font-size: 13px;
    font-weight: 900;
}

.mini-heading strong {
    color: var(--green);
}

.bars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 15px;
    height: 94px;
    padding: 16px 8px 0;
}

.bars i {
    position: relative;
    height: var(--value);
    min-height: 12px;
    border-radius: 8px 8px 2px 2px;
    background: var(--green);
    animation: bar-rise 900ms ease both;
}

.bars i.active {
    background: var(--yellow);
}

.bars span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    color: #7f9590;
    font-size: 10px;
    font-style: normal;
    transform: translateX(-50%);
}

.problem {
    min-height: 1120px;
}

.network-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: rgba(0, 208, 132, 0.16);
    opacity: 0.8;
}

.network-bg path {
    stroke-dasharray: 14 14;
    animation: network-flow 18s linear infinite;
}

.problem-layout {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.problem-intro {
    width: min(100%, 610px);
}

.problem-intro h2 {
    margin-top: 28px;
}

.problem-intro p {
    width: min(100%, 560px);
    margin: 28px 0 0;
    font-size: 22px;
    line-height: 1.55;
}

.question-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    width: 610px;
    margin-left: auto;
    margin-top: -370px;
}

.question-grid article {
    min-height: 178px;
    border: 1px solid var(--dark-line);
    border-radius: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
}

.question-grid span {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.question-grid strong {
    display: block;
    margin-top: 18px;
    color: #f2fffa;
    font-size: 19px;
}

.question-grid p {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.5;
}

.impact-line {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    padding: 42px 0;
}

.impact-line span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--yellow);
    font-size: 28px;
}

.impact-line strong {
    max-width: 1110px;
    color: #f2fffa;
    font-family: "Inter Tight", system-ui, sans-serif;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.24;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proof-grid article {
    min-height: 180px;
    border: 1px solid var(--dark-line);
    border-radius: 24px;
    padding: 32px;
    background: #0b1918;
}

.proof-grid strong {
    display: block;
    color: var(--yellow);
    font-family: "Inter Tight", system-ui, sans-serif;
    font-size: 46px;
    line-height: 1;
}

.proof-grid span {
    display: block;
    margin-top: 16px;
    color: var(--dark-muted);
    font-size: 16px;
    line-height: 1.55;
}

.opportunity {
    background:
        linear-gradient(rgba(7, 16, 19, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 16, 19, 0.035) 1px, transparent 1px),
        var(--surface);
    background-size: 44px 44px;
}

.opportunity-grid,
.search-grid,
.signup-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(96px, 8vw, 128px);
}

.opportunity-copy h2,
.search-copy h2,
.signup-copy h2 {
    margin-top: 32px;
}

.opportunity-copy > p,
.search-copy > p,
.signup-copy > p {
    margin: 30px 0 0;
    font-size: 21px;
    line-height: 1.6;
}

.opportunity-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 42px;
}

.opportunity-stats span {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    color: #6b7b77;
    background: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 18px;
}

.opportunity-stats strong {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 17px;
}

.data-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-card {
    width: min(100%, 548px);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(7, 16, 19, 0.08);
}

.flow-label {
    color: #597069;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.flow-card strong {
    display: block;
    margin-top: 12px;
    font-family: "Inter Tight", system-ui, sans-serif;
    font-size: 26px;
    line-height: 1.2;
}

.flow-card small {
    display: block;
    margin-top: 10px;
    color: #667973;
    font-size: 14px;
}

.flow-card-main {
    color: #f2fffa;
    border-color: rgba(0, 208, 132, 0.28);
    background: var(--ink);
}

.flow-card-main .flow-label,
.flow-card-output .flow-label {
    color: var(--green);
}

.flow-card-output {
    border-color: rgba(0, 208, 132, 0.34);
    background: #e7fff6;
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2px;
    height: 44px;
    background: #9fc9ba;
}

.flow-connector span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--green);
    font-size: 16px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag-row span {
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.search-section {
    background: #fff;
}

.search-copy .check-list {
    margin-top: 40px;
}

.check-list,
.price-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.price-features li {
    position: relative;
    padding-left: 34px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.check-list li::before,
.price-features li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.filter-panel {
    border-radius: 32px;
    padding: 38px;
    color: #f2fffa;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.filter-top,
.filter-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.filter-top h3 {
    margin-top: 12px;
    color: #f2fffa;
}

.result-badge {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--green);
    background: rgba(0, 208, 132, 0.12);
    font-size: 13px;
    font-weight: 900;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.filter-grid fieldset {
    min-width: 0;
    border: 1px solid var(--dark-line);
    border-radius: 16px;
    padding: 19px;
    background: var(--ink-2);
}

.filter-grid legend {
    padding: 0 6px;
    color: #9fb1b5;
    font-size: 12px;
    font-weight: 800;
}

.filter-grid label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 6px 12px 3px 0;
    color: #e7f2ee;
    font-size: 13px;
}

.filter-grid input {
    width: 15px;
    height: 15px;
    accent-color: var(--green);
}

.select-demo {
    display: flex;
    align-items: center;
    min-height: 38px;
    border-radius: 10px;
    padding: 0 10px;
    color: #e7f2ee;
    background: #16282a;
    font-size: 13px;
}

.filter-result {
    margin-top: 28px;
    border-radius: 18px;
    padding: 20px;
    background: #102220;
}

.filter-result span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-result small {
    color: #9fb1b5;
}

.filter-result button {
    min-height: 42px;
    border: 0;
    border-radius: 12px;
    padding: 0 16px;
    color: var(--ink);
    background: var(--green);
    font-weight: 900;
}

.audience {
    min-height: 900px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        var(--ink);
    background-size: 72px 72px;
}

.section-heading.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    margin-top: 28px;
}

.section-heading p {
    max-width: 720px;
    margin: 24px 0 0;
    font-size: 21px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 82px;
}

.audience-grid article {
    min-height: 310px;
    border: 1px solid var(--dark-line);
    border-radius: 24px;
    padding: 34px;
    background: #0b1617;
    transition: transform 180ms ease, border-color 180ms ease;
}

.audience-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 208, 132, 0.38);
}

.audience-grid svg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    padding: 13px;
    color: var(--green);
    background: rgba(0, 208, 132, 0.09);
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.audience-grid strong {
    display: block;
    margin-top: 32px;
    color: #f2fffa;
    font-size: 21px;
    line-height: 1.25;
}

.audience-grid p {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.pricing {
    background: var(--yellow);
}

.pricing-top {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(430px, 1fr);
    align-items: start;
    gap: 96px;
}

.pricing-copy {
    padding-top: 4px;
}

.pricing-copy h2 {
    margin-top: 32px;
    color: var(--ink);
    font-size: clamp(58px, 6.2vw, 88px);
    line-height: 0.96;
}

.pricing-copy p {
    max-width: 620px;
    margin: 30px 0 0;
    color: #24332f;
    font-size: 22px;
    line-height: 1.55;
}

.price-card {
    border-radius: 32px;
    padding: 48px;
    color: #f3fbf8;
    background: var(--ink);
    box-shadow: 0 34px 70px rgba(7, 16, 19, 0.18);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 22px;
}

.price > strong {
    font-family: "Inter Tight", system-ui, sans-serif;
    font-size: clamp(66px, 7vw, 92px);
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.price > span {
    color: #d4dfdc;
    font-size: 24px;
    font-weight: 800;
}

.price-card > p {
    margin: 22px 0 0;
    color: var(--dark-muted);
    font-size: 17px;
    line-height: 1.5;
}

.price-card > p strong {
    color: #f3fbf8;
}

.price-features {
    margin-top: 34px;
    border-top: 1px solid var(--dark-line);
    padding-top: 34px;
}

.price-features li {
    color: #f3fbf8;
}

.price-card .button {
    margin-top: 38px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 78px;
}

.feature-strip span {
    min-height: 156px;
    border: 1px solid rgba(7, 16, 19, 0.16);
    border-radius: 18px;
    padding: 24px;
    color: #3f4b47;
    background: rgba(255, 255, 255, 0.14);
    font-size: 14px;
    line-height: 1.5;
}

.feature-strip strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 17px;
}

.signup-section {
    background: var(--surface);
}

.signup-copy p {
    max-width: 560px;
}

.signup-card {
    border-radius: 34px;
    padding: 50px;
    color: #f3fbf8;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.signup-card h3 {
    margin-top: 16px;
    color: #f3fbf8;
    font-size: 40px;
}

.signup-card > p {
    margin: 18px 0 0;
    color: var(--dark-muted);
    font-size: 17px;
}

.signup-card ol {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.signup-card li {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    border: 1px solid rgba(0, 208, 132, 0.2);
    border-radius: 16px;
    padding: 18px 20px;
    background: #0b1a1c;
}

.signup-card li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    color: var(--green);
    background: #12342d;
    font-weight: 900;
}

.signup-card li:first-child > span {
    color: var(--ink);
    background: var(--green);
}

.signup-card li div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.signup-card li strong {
    font-size: 16px;
}

.signup-card li small {
    color: #9cb0aa;
    font-size: 13px;
}

.signup-card .button {
    margin-top: 34px;
}

.signup-note {
    display: block;
    margin-top: 24px;
    color: #8fa39d;
    text-align: center;
}

.faq {
    padding-bottom: 54px;
}

.faq-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    align-items: end;
    gap: 80px;
}

.faq-heading h2 {
    max-width: 700px;
    margin-top: 28px;
}

.faq-heading > p {
    margin: 0;
    font-size: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 76px;
}

.faq-grid details {
    align-self: start;
    border: 1px solid var(--dark-line);
    border-radius: 22px;
    padding: 28px 30px;
    background: #0d1b1e;
}

.faq-grid details[open] {
    border-color: rgba(0, 208, 132, 0.28);
}

.faq-grid summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #f2fffa;
    font-family: "Inter Tight", system-ui, sans-serif;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    color: var(--green);
    background: rgba(0, 208, 132, 0.1);
    font-family: "Inter", sans-serif;
    font-size: 20px;
}

.faq-grid details[open] summary::after {
    content: "−";
}

.faq-grid details p {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.65;
}

.site-footer {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    margin-top: 90px;
    border-top: 1px solid var(--dark-line);
    padding-top: 38px;
}

.brand-footer {
    color: #f2fffa;
}

.brand-footer .brand-logo {
    height: 34px;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 16px;
    color: #dce9e5;
    font-size: 14px;
    font-weight: 700;
}

.site-footer small {
    grid-column: 1 / -1;
    color: #728982;
}

.cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 26px;
    width: min(calc(100% - 44px), 760px);
    border: 1px solid rgba(0, 208, 132, 0.28);
    border-radius: 20px;
    padding: 22px;
    color: #f2fffa;
    background: #0a1719;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    font-size: 17px;
}

.cookie-banner p {
    margin: 7px 0 0;
    color: #afc1bc;
    font-size: 14px;
    line-height: 1.45;
}

.cookie-banner a {
    display: inline-block;
    margin-top: 6px;
    color: var(--green);
    font-size: 13px;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-actions .button {
    min-height: 44px;
    padding: 0 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
    transition-delay: 120ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bar-rise {
    from { height: 0; }
}

@keyframes network-flow {
    to { stroke-dashoffset: -280; }
}

@media (max-width: 1180px) {
    .container,
    .header-inner {
        width: min(calc(100% - 64px), var(--container));
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .main-nav a {
        min-width: 0;
        padding: 0 14px;
        font-size: 14px;
    }

    .header-actions {
        gap: 4px;
    }

    .button-header {
        min-width: 0;
        padding: 0 16px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 44px;
    }

    .dossier-window {
        height: auto;
        min-height: 650px;
    }

    .question-grid {
        width: 540px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    html {
        scroll-padding-top: 88px;
    }

    .section-pad {
        padding: 104px 0;
    }

    .site-header {
        position: absolute;
        top: 10px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        min-height: 64px;
        border-radius: 18px;
    }

    .brand-logo {
        height: 32px;
    }

    .menu-button {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        height: auto;
        border-radius: 18px;
        padding: 10px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        justify-content: flex-start;
        min-height: 44px;
        padding: 0 14px;
    }

    .header-actions {
        position: absolute;
        top: calc(72px + 216px);
        right: 0;
        left: 0;
        display: none;
        border-radius: 18px;
        padding: 10px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .header-actions.is-open {
        display: flex;
    }

    .header-actions .button {
        flex: 1;
    }

    .hero {
        min-height: 0;
        padding-top: 158px;
    }

    .hero-grid,
    .opportunity-grid,
    .search-grid,
    .signup-grid,
    .pricing-top,
    .faq-heading {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 60px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .dossier-window {
        width: min(100%, 700px);
        margin: 0 auto;
    }

    .problem {
        min-height: 0;
    }

    .problem-intro {
        width: 100%;
    }

    .question-grid {
        width: 100%;
        margin: 0;
    }

    .opportunity-grid,
    .search-grid,
    .signup-grid {
        gap: 72px;
    }

    .data-flow,
    .filter-panel,
    .signup-card {
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .pricing-top {
        gap: 48px;
    }

    .price-card {
        width: min(100%, 620px);
    }

    .site-footer {
        grid-template-columns: 1fr auto;
    }

    .site-footer p {
        grid-column: 1 / -1;
        max-width: 640px;
    }
}

@media (max-width: 700px) {
    .container,
    .header-inner {
        width: min(calc(100% - 32px), var(--container));
    }

    .section-pad {
        padding: 84px 0;
    }

    h1 {
        font-size: clamp(48px, 15vw, 66px);
        line-height: 0.96;
    }

    h2 {
        font-size: clamp(42px, 12vw, 58px);
    }

    p {
        font-size: 16px;
    }

    .site-header {
        top: 8px;
    }

    .header-inner {
        padding: 8px 10px;
    }

    .hero {
        padding-top: 142px;
    }

    .hero-field-yellow {
        top: -160px;
        right: -280px;
        width: 520px;
        height: 520px;
    }

    .hero-field-mint {
        bottom: -220px;
        left: -300px;
        width: 560px;
        height: 560px;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .proof-list {
        flex-direction: column;
        gap: 9px;
    }

    .proof-list li::after {
        display: none !important;
    }

    .dossier-window {
        min-height: 0;
        border-radius: 24px;
        padding: 20px;
    }

    .window-top > span {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dossier-title-row {
        flex-direction: column;
    }

    .dossier-title-row h2 {
        font-size: 38px;
    }

    .metric-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-cards article {
        padding: 15px;
    }

    .metric-cards strong {
        font-size: 19px;
    }

    .question-grid,
    .proof-grid,
    .audience-grid,
    .filter-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .impact-line {
        align-items: flex-start;
        gap: 18px;
    }

    .impact-line span {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .opportunity-copy > p,
    .search-copy > p,
    .signup-copy > p,
    .problem-intro p,
    .pricing-copy p {
        font-size: 18px;
    }

    .opportunity-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .price-card,
    .signup-card {
        border-radius: 24px;
        padding: 24px;
    }

    .filter-top,
    .filter-result {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-copy h2 {
        font-size: clamp(50px, 14vw, 68px);
    }

    .price {
        flex-wrap: wrap;
    }

    .price > strong {
        font-size: 64px;
    }

    .feature-strip {
        grid-template-columns: 1fr;
    }

    .feature-strip span {
        min-height: 0;
    }

    .faq-heading {
        gap: 28px;
    }

    .faq-heading > p {
        font-size: 17px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer p,
    .site-footer small {
        grid-column: 1;
    }

    .cookie-banner {
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: stretch;
        width: calc(100% - 24px);
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .button {
        flex: 1;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
