:root {
    --ink: #f5fff9;
    --muted: #9cb4a7;
    --dim: #668073;
    --pitch: #00e676;
    --lime: #c7ff16;
    --blue: #45a5ff;
    --orange: #ff9f1a;
    --red: #ff5f57;
    --night: #020907;
    --deep: #03140d;
    --surface: #071b12;
    --surface-2: #0a2418;
    --line: rgba(129, 255, 182, 0.15);
    --line-strong: rgba(129, 255, 182, 0.28);
    --glow: 0 0 50px rgba(0, 230, 118, 0.16);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --display: "Barlow Condensed", Impact, sans-serif;
    --body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    --container: 1180px;
    --header: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header) + 24px);
    background: var(--night);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at 80% 4%, rgba(0, 230, 118, 0.12), transparent 26rem),
        linear-gradient(180deg, #03110b 0%, var(--night) 30%, #020705 100%);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(78, 170, 115, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 170, 115, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    pointer-events: none;
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

::selection {
    color: #011109;
    background: var(--lime);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 8px;
    color: #00180c;
    background: var(--lime);
    font-weight: 800;
    transform: translateY(-160%);
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--pitch);
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 2px;
    background: currentColor;
    box-shadow: 14px 0 22px currentColor;
    content: "";
}

.section-heading {
    margin: 0;
    max-width: 12ch;
    font-family: var(--display);
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.92;
    text-transform: uppercase;
}

.section-heading span,
.accent {
    color: var(--lime);
}

.section-lead {
    max-width: 610px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(2, 9, 7, 0.76);
    backdrop-filter: blur(18px) saturate(135%);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(2, 9, 7, 0.94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.22rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.18);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav__links a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 150ms ease;
}

.nav__links a:hover {
    color: var(--ink);
}

.nav__links .nav__cta {
    padding: 10px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--pitch);
    background: rgba(0, 230, 118, 0.07);
}

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header) + 72px) 0 72px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(2, 9, 7, 0.98) 0%, rgba(2, 9, 7, 0.7) 48%, rgba(2, 9, 7, 0.32) 100%),
        radial-gradient(ellipse at 75% 58%, rgba(0, 230, 118, 0.18), transparent 38%);
    content: "";
}

.hero::after {
    position: absolute;
    right: -10vw;
    bottom: -24vw;
    z-index: -1;
    width: 72vw;
    height: 72vw;
    border: 1px solid rgba(0, 230, 118, 0.12);
    border-radius: 50%;
    box-shadow: inset 0 0 90px rgba(0, 230, 118, 0.04);
    content: "";
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
    align-items: center;
    gap: clamp(40px, 8vw, 104px);
}

.hero h1 {
    margin: 0;
    max-width: 10ch;
    font-family: var(--display);
    font-size: clamp(4.25rem, 10vw, 8.4rem);
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.82;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--lime);
    text-shadow: 0 0 38px rgba(199, 255, 22, 0.17);
}

.hero__lead {
    max-width: 600px;
    margin: 28px 0 0;
    color: #bdd0c5;
    font-size: clamp(1.06rem, 2vw, 1.28rem);
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
    color: #011309;
    background: var(--pitch);
    box-shadow: 0 0 32px rgba(0, 230, 118, 0.24);
}

.button--primary:hover {
    background: #2af18d;
    box-shadow: 0 8px 36px rgba(0, 230, 118, 0.3);
}

.button--secondary {
    border-color: var(--line-strong);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.035);
}

.release-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 4px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.release-status::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
    content: "";
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero__proof li {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(4, 25, 16, 0.64);
    font-family: var(--mono);
    font-size: 0.69rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero__visual {
    position: relative;
    justify-self: end;
    width: min(100%, 470px);
    filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.52));
}

.hero__visual::before {
    position: absolute;
    inset: 8% -8% 8%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.2);
    filter: blur(70px);
    content: "";
}

.hero__visual img {
    width: 100%;
    max-height: 760px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero__readout {
    position: absolute;
    right: -22px;
    bottom: 9%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--line);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.45);
}

.hero__readout div {
    min-width: 92px;
    padding: 12px 14px;
    background: rgba(3, 20, 13, 0.94);
}

.hero__readout strong,
.hero__readout span {
    display: block;
}

.hero__readout strong {
    color: var(--lime);
    font-family: var(--mono);
    font-size: 1rem;
}

.hero__readout span {
    margin-top: 3px;
    color: var(--dim);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signal-strip {
    border-block: 1px solid var(--line);
    background: rgba(6, 28, 18, 0.7);
}

.signal-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.signal {
    position: relative;
    padding: 24px clamp(14px, 3vw, 32px);
    border-right: 1px solid var(--line);
}

.signal:last-child {
    border-right: 0;
}

.signal__value {
    display: block;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.signal__label {
    display: block;
    margin-top: 7px;
    color: var(--dim);
    font-family: var(--mono);
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.intro,
.how,
.features,
.screenshots,
.faq,
.support-callout,
.privacy-band,
.final-cta {
    padding: clamp(86px, 11vw, 150px) 0;
}

.intro__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: end;
    gap: clamp(36px, 8vw, 100px);
}

.intro__copy {
    color: var(--muted);
    font-size: clamp(1.15rem, 2.3vw, 1.5rem);
    line-height: 1.55;
}

.intro__copy strong {
    color: var(--ink);
}

.poster {
    position: relative;
    padding-bottom: clamp(80px, 11vw, 140px);
}

.poster__frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: clamp(18px, 3vw, 34px);
    background: #01110b;
    box-shadow: var(--shadow), var(--glow);
}

.poster__frame img {
    width: 100%;
    height: auto;
}

.how {
    border-block: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(8, 34, 22, 0.72), rgba(3, 15, 10, 0.82));
}

.how__header,
.features__header,
.screenshots__header,
.faq__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 58px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.step {
    position: relative;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(6, 29, 19, 0.72);
    counter-increment: steps;
}

.step::after {
    position: absolute;
    right: -8px;
    bottom: -34px;
    color: rgba(129, 255, 182, 0.06);
    font-family: var(--display);
    font-size: 10rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    content: "0" counter(steps);
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    color: var(--lime);
    background: rgba(199, 255, 22, 0.05);
    font-family: var(--mono);
    font-weight: 800;
}

.step h3 {
    position: relative;
    z-index: 1;
    margin: 56px 0 10px;
    font-family: var(--display);
    font-size: 2rem;
    font-style: italic;
    letter-spacing: -0.01em;
    line-height: 1;
    text-transform: uppercase;
}

.step p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 30ch;
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 280px;
    padding: clamp(24px, 4vw, 38px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(12, 45, 29, 0.72), rgba(4, 20, 13, 0.86)),
        var(--surface);
}

.feature-card--wide {
    grid-column: span 7;
}

.feature-card--narrow {
    grid-column: span 5;
}

.feature-card--half {
    grid-column: span 6;
}

.feature-card::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(0, 230, 118, 0.05));
    content: "";
    pointer-events: none;
}

.feature-card__tag {
    position: relative;
    display: inline-block;
    color: var(--pitch);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-card h3 {
    position: relative;
    margin: 48px 0 14px;
    max-width: 11ch;
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.92;
    text-transform: uppercase;
}

.feature-card p {
    position: relative;
    max-width: 48ch;
    margin: 0;
    color: var(--muted);
}

.state-meter {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.55fr;
    gap: 4px;
    max-width: 460px;
    margin-top: 32px;
}

.state-meter span {
    height: 9px;
    border-radius: 999px;
}

.state-meter span:nth-child(1) { background: var(--pitch); box-shadow: 0 0 14px rgba(0, 230, 118, 0.35); }
.state-meter span:nth-child(2) { background: var(--orange); }
.state-meter span:nth-child(3) { background: #6e8378; }

.mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 360px;
    margin-top: 28px;
}

.mini-stat {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.mini-stat strong,
.mini-stat span {
    display: block;
}

.mini-stat strong {
    color: var(--lime);
    font-family: var(--mono);
    font-size: 1.05rem;
}

.mini-stat span {
    margin-top: 2px;
    color: var(--dim);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
}

.scoreline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.78rem;
}

.scoreline strong {
    color: var(--pitch);
    font-size: 2rem;
}

.sparkbars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 72px;
    margin-top: 30px;
}

.sparkbars span {
    width: 13px;
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(var(--blue), rgba(69, 165, 255, 0.2));
}

.sparkbars span:nth-child(1) { height: 44%; }
.sparkbars span:nth-child(2) { height: 82%; }
.sparkbars span:nth-child(3) { height: 58%; background: linear-gradient(var(--pitch), rgba(0, 230, 118, 0.18)); }
.sparkbars span:nth-child(4) { height: 100%; }
.sparkbars span:nth-child(5) { height: 72%; background: linear-gradient(var(--orange), rgba(255, 159, 26, 0.18)); }
.sparkbars span:nth-child(6) { height: 89%; }
.sparkbars span:nth-child(7) { height: 65%; background: linear-gradient(var(--pitch), rgba(0, 230, 118, 0.18)); }

.privacy-band {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #05180f;
}

.privacy-band::after {
    position: absolute;
    top: -180px;
    right: -140px;
    width: 420px;
    height: 420px;
    border: 72px solid rgba(0, 230, 118, 0.035);
    border-radius: 50%;
    content: "";
}

.privacy-band__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(36px, 8vw, 100px);
}

.privacy-points {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-points li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #c7d9cf;
    background: rgba(2, 13, 8, 0.36);
}

.privacy-points li::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #001b0c;
    background: var(--pitch);
    font-size: 0.75rem;
    font-weight: 900;
    content: "✓";
}

.screenshots {
    overflow: hidden;
}

.gallery-controls {
    display: flex;
    gap: 10px;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    color: var(--ink);
    background: var(--surface);
    cursor: pointer;
    font-size: 1.25rem;
    transition: border 150ms ease, color 150ms ease, transform 150ms ease;
}

.gallery-button:hover {
    border-color: var(--pitch);
    color: var(--pitch);
    transform: translateY(-2px);
}

.gallery {
    display: grid;
    grid-auto-columns: min(330px, 78vw);
    grid-auto-flow: column;
    gap: 18px;
    padding: 8px max(20px, calc((100vw - var(--container)) / 2)) 34px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--pitch) rgba(255, 255, 255, 0.06);
    scrollbar-width: thin;
    scroll-padding-inline: max(20px, calc((100vw - var(--container)) / 2));
    scroll-snap-type: inline mandatory;
}

.gallery figure {
    margin: 0;
    scroll-snap-align: start;
}

.gallery img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.gallery figcaption {
    padding: 14px 4px 0;
    color: var(--dim);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq {
    border-top: 1px solid var(--line);
    background: rgba(4, 18, 12, 0.54);
}

.faq__list {
    max-width: 900px;
    margin-left: auto;
    border-top: 1px solid var(--line);
}

.faq__item {
    border-bottom: 1px solid var(--line);
}

.faq__question {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 24px 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 750;
}

.faq__symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--pitch);
    transition: transform 180ms ease;
}

.faq__item.is-open .faq__symbol {
    transform: rotate(45deg);
}

.faq__answer {
    display: grid;
    grid-template-rows: 1fr;
    color: var(--muted);
    transition: grid-template-rows 220ms ease;
}

.js .faq__answer {
    grid-template-rows: 0fr;
}

.faq__answer > div {
    overflow: hidden;
}

.faq__answer p {
    max-width: 760px;
    margin: 0;
    padding: 0 54px 24px 0;
}

.js .faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

.support-callout__panel,
.final-cta__panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr auto;
    align-items: center;
    gap: 32px;
    padding: clamp(30px, 6vw, 64px);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 26px;
    background:
        radial-gradient(circle at 85% 20%, rgba(199, 255, 22, 0.12), transparent 18rem),
        linear-gradient(130deg, #082719, #04160e);
    box-shadow: var(--glow);
}

.support-callout h2,
.final-cta h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.95;
    text-transform: uppercase;
}

.support-callout p,
.final-cta p {
    max-width: 640px;
    margin: 16px 0 0;
    color: var(--muted);
}

.site-footer {
    padding: 34px 0 40px;
    border-top: 1px solid var(--line);
    color: var(--dim);
    background: #010503;
}

.footer__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.footer__brand strong {
    display: block;
    color: var(--ink);
}

.footer__brand span {
    display: block;
    font-size: 0.76rem;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 26px;
}

.footer__links a {
    color: var(--muted);
    font-size: 0.82rem;
    text-decoration: none;
}

.footer__links a:hover {
    color: var(--pitch);
}

.footer__legal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Legal and support pages */
.subpage {
    padding: calc(var(--header) + 68px) 0 100px;
}

.subpage__hero {
    max-width: 850px;
    padding-bottom: 54px;
    border-bottom: 1px solid var(--line);
}

.subpage h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.6rem, 10vw, 7rem);
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.88;
    text-transform: uppercase;
}

.subpage__intro {
    max-width: 720px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.subpage__meta {
    margin: 18px 0 0;
    color: var(--dim);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 760px);
    gap: clamp(40px, 8vw, 100px);
    align-items: start;
    margin-top: 54px;
}

.legal-nav {
    position: sticky;
    top: calc(var(--header) + 28px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-nav li + li {
    margin-top: 8px;
}

.legal-nav a {
    color: var(--dim);
    font-size: 0.8rem;
    text-decoration: none;
}

.legal-nav a:hover {
    color: var(--pitch);
}

.legal-content section + section {
    margin-top: 54px;
    padding-top: 4px;
}

.legal-content h2,
.support-grid h2 {
    margin: 0 0 14px;
    font-family: var(--display);
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.legal-content h3 {
    margin: 26px 0 8px;
    color: var(--ink);
    font-size: 1rem;
}

.legal-content p,
.legal-content li,
.support-card p,
.support-card li {
    color: var(--muted);
}

.legal-content ul,
.support-card ul,
.support-card ol {
    padding-left: 1.25rem;
}

.legal-content li + li,
.support-card li + li {
    margin-top: 8px;
}

.notice {
    margin: 0 0 38px;
    padding: 20px 22px;
    border: 1px solid var(--line-strong);
    border-left: 4px solid var(--pitch);
    border-radius: 12px;
    color: #c8dacf;
    background: rgba(0, 230, 118, 0.055);
}

.legal-content a,
.support-card a {
    color: var(--pitch);
}

.support-contact {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: 42px;
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: var(--surface);
}

.support-contact strong {
    display: block;
    font-size: 1.2rem;
}

.support-contact span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 54px;
}

.support-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 27, 18, 0.7);
}

.support-card h2 {
    color: var(--ink);
}

.support-card p:last-child,
.support-card ul:last-child,
.support-card ol:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr 0.74fr;
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 10.5vw, 6.2rem);
    }

    .hero__readout {
        right: -8px;
    }

    .hero__readout div {
        min-width: 78px;
        padding: 10px;
    }

    .feature-card--wide,
    .feature-card--narrow,
    .feature-card--half {
        grid-column: span 6;
    }

    .feature-card {
        min-height: 330px;
    }

    .privacy-band__grid,
    .intro__grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        display: none;
    }
}

@media (max-width: 740px) {
    :root {
        --header: 66px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .nav__toggle {
        display: block;
    }

    .nav__links {
        position: fixed;
        inset: var(--header) 0 auto;
        display: grid;
        gap: 0;
        padding: 12px 20px 22px;
        border-bottom: 1px solid var(--line);
        background: rgba(2, 9, 7, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav__links a {
        display: block;
        padding: 13px 4px;
    }

    .nav__links .nav__cta {
        margin-top: 6px;
        padding: 11px 14px;
        text-align: center;
    }

    .nav.is-open .nav__links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav.is-open .nav__toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav.is-open .nav__toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav.is-open .nav__toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header) + 56px);
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(4.1rem, 21vw, 6.3rem);
    }

    .hero__visual {
        justify-self: center;
        width: min(100%, 420px);
        margin-top: 20px;
    }

    .hero__readout {
        right: 10px;
        bottom: 8%;
    }

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

    .signal:nth-child(2) {
        border-right: 0;
    }

    .signal:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .how__header,
    .features__header,
    .screenshots__header,
    .faq__header {
        display: block;
        margin-bottom: 42px;
    }

    .how__header .section-lead,
    .features__header .section-lead,
    .screenshots__header .section-lead,
    .faq__header .section-lead {
        margin-top: 20px;
    }

    .steps,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: 230px;
    }

    .feature-card--wide,
    .feature-card--narrow,
    .feature-card--half {
        grid-column: 1 / -1;
    }

    .feature-card {
        min-height: 300px;
    }

    .gallery-controls {
        margin-top: 22px;
    }

    .support-callout__panel,
    .final-cta__panel,
    .support-contact {
        grid-template-columns: 1fr;
    }

    .footer__grid,
    .footer__legal {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__links {
        justify-content: flex-start;
    }

    .subpage {
        padding-top: calc(var(--header) + 46px);
    }
}

@media (max-width: 430px) {
    .brand {
        font-size: 1.02rem;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .release-status {
        justify-content: center;
    }

    .hero__readout {
        position: static;
        margin-top: -1px;
        border-radius: 0 0 14px 14px;
    }

    .hero__readout div {
        min-width: 0;
    }

    .poster__frame {
        border-radius: 14px;
    }

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

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

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