﻿:root {
    --black: #0b0b0c;
    --panel: #151517;
    --panel-soft: rgba(21, 21, 23, 0.72);
    --white: #f2f2f0;
    --muted: rgba(242, 242, 240, 0.68);
    --soft: rgba(242, 242, 240, 0.46);
    --cyan: #11ab33;
    --green: #11ab33;
    --green-dark: #087723;
    --copper: #c87332;
    --line: rgba(242, 242, 240, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--black);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--white);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(17, 171, 51, 0.1), transparent 34%),
        radial-gradient(circle at 18% 78%, rgba(17, 171, 51, 0.08), transparent 36%),
        linear-gradient(135deg, #171d20 0%, #0c1012 46%, #050606 100%);
}

button,
input {
    font: inherit;
}

a {
    color: var(--white);
    text-underline-offset: 0.2em;
}

.page-shell {
    min-height: 100vh;
}

.top-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(22px, 4vw, 58px);
    min-height: 58px;
    padding: 10px clamp(16px, 2.8vw, 34px);
    border-bottom: 1px solid rgba(242, 242, 240, 0.08);
    background: rgba(5, 7, 8, 0.78);
    backdrop-filter: blur(18px);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.nav-brand img {
    width: clamp(92px, 8vw, 126px);
    height: auto;
    border-radius: 0;
    filter: contrast(1.05) brightness(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(10px, 1.6vw, 20px);
    min-width: 0;
}

.nav-links a {
    color: rgba(242, 242, 240, 0.52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: #ffffff;
}

.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav summary {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: rgba(242, 242, 240, 0.9);
    border: 1px solid rgba(17, 171, 51, 0.3);
    border-radius: 999px;
    background: rgba(17, 171, 51, 0.08);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav[open] summary {
    border-color: rgba(17, 171, 51, 0.72);
    background: rgba(17, 171, 51, 0.16);
}

.mobile-nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(76vw, 260px);
    padding: 8px;
    border: 1px solid rgba(242, 242, 240, 0.12);
    border-radius: 8px;
    background: rgba(5, 7, 8, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.mobile-nav-panel a {
    padding: 12px;
    color: rgba(242, 242, 240, 0.68);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a[aria-current="page"] {
    color: #ffffff;
    background: rgba(242, 242, 240, 0.06);
}

.subpage {
    min-height: 100vh;
    padding-top: 58px;
    background:
        radial-gradient(circle at 72% 14%, rgba(17, 171, 51, 0.09), transparent 34%),
        radial-gradient(circle at 18% 70%, rgba(17, 171, 51, 0.055), transparent 36%),
        linear-gradient(180deg, #090d0e 0%, #0d1512 46%, #060908 100%);
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: clamp(92px, 9vw, 122px) clamp(28px, 5vw, 72px) clamp(28px, 5vw, 72px);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(242, 242, 240, 0.12), transparent 10%),
        radial-gradient(ellipse at 48% 55%, rgba(242, 242, 240, 0.1), transparent 18%),
        radial-gradient(ellipse at 58% 24%, rgba(242, 242, 240, 0.08), transparent 18%);
    opacity: 0.9;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 38%, rgba(242, 242, 240, 0.18), transparent 8%),
        radial-gradient(ellipse at 50% 42%, rgba(145, 160, 160, 0.16), transparent 22%),
        radial-gradient(ellipse at 44% 58%, rgba(242, 242, 240, 0.12), transparent 16%),
        radial-gradient(ellipse at 58% 24%, rgba(242, 242, 240, 0.1), transparent 18%),
        radial-gradient(circle at 50% 42%, rgba(17, 171, 51, 0.1), transparent 34%),
        linear-gradient(90deg, rgba(2, 3, 3, 0.64), rgba(8, 11, 12, 0.18) 50%, rgba(2, 3, 3, 0.64)),
        linear-gradient(180deg, rgba(2, 3, 3, 0.02), rgba(2, 3, 3, 0.82));
    filter: blur(0.2px);
    pointer-events: none;
}

.product-bg {
    position: absolute;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.58;
    filter: contrast(1.16) brightness(1.2) saturate(0.84);
    mix-blend-mode: screen;
}

.product-bg-left {
    left: max(-90px, -6vw);
    top: 12%;
    width: min(38vw, 560px);
    height: 70vh;
    object-position: 8% center;
}

.product-bg-right {
    right: max(-110px, -7vw);
    top: 15%;
    width: min(48vw, 720px);
    height: 64vh;
    object-position: 92% center;
}

.brand-mark {
    position: absolute;
    right: clamp(8px, 1.3vw, 18px);
    top: clamp(64px, 5.4vw, 74px);
    width: clamp(34px, 3.2vw, 48px);
    aspect-ratio: 1;
    opacity: 0.16;
    z-index: 1;
    display: none;
}

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

.content {
    position: relative;
    z-index: 2;
    width: min(100%, 720px);
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 2px 26px rgba(0, 0, 0, 0.62);
}

.wordmark {
    display: block;
    width: min(72vw, 340px);
    height: auto;
    margin: 0 auto 26px;
    filter: contrast(1.08) brightness(1.16);
}

.hero-kicker {
    margin: 0 auto 18px;
    color: #56d970;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow {
    margin: 0 auto 18px;
    color: rgba(242, 242, 240, 0.74);
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 600;
    line-height: 1.45;
}

h1 {
    margin: 0;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.96;
    font-weight: 750;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.96;
    text-transform: uppercase;
}

.lead {
    width: min(100%, 620px);
    margin: 24px auto 32px;
    color: rgba(242, 242, 240, 0.78);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.lead-compact {
    margin-top: -16px;
    margin-bottom: 20px;
    font-size: clamp(15px, 1.45vw, 18px);
    color: rgba(242, 242, 240, 0.68);
}

.status-pill {
    display: inline-flex;
    margin: 0 auto 18px;
    padding: 8px 12px;
    color: rgba(242, 242, 240, 0.82);
    border: 1px solid rgba(17, 171, 51, 0.28);
    border-radius: 999px;
    background: rgba(17, 171, 51, 0.08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-actions {
    justify-content: center;
    margin: 0 auto 18px;
}

.inline-actions {
    margin-top: 18px;
}

.button-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 0 26px rgba(17, 171, 51, 0.22);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.button-link-secondary {
    color: rgba(242, 242, 240, 0.86);
    border-color: rgba(17, 171, 51, 0.3);
    background: rgba(17, 171, 51, 0.08);
    box-shadow: none;
}

.button-link:hover {
    border-color: rgba(17, 171, 51, 0.62);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%),
        linear-gradient(135deg, #18c640, var(--green));
}

.button-link-secondary:hover {
    background: rgba(17, 171, 51, 0.16);
}

.signup {
    width: min(100%, 590px);
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(17, 171, 51, 0.22);
    border-radius: 8px;
    background: rgba(11, 22, 27, 0.56);
    box-shadow:
        0 18px 70px rgba(0, 0, 0, 0.28),
        0 0 46px rgba(17, 171, 51, 0.08);
    backdrop-filter: blur(18px);
}

input[type="email"] {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 6px;
    outline: 0;
    background: rgba(5, 5, 6, 0.86);
}

input[type="email"]::placeholder {
    color: rgba(242, 242, 240, 0.38);
}

input[type="email"]:focus {
    border-color: rgba(17, 171, 51, 0.9);
    box-shadow: 0 0 0 3px rgba(17, 171, 51, 0.18);
}

button {
    min-height: 52px;
    padding: 0 22px;
    color: #ffffff;
    border: 0;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(135deg, var(--green), var(--green-dark));
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 26px rgba(17, 171, 51, 0.24);
}

.footer-link {
    min-height: auto;
    padding: 0;
    color: #56d970;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-link:hover {
    color: #86f59b;
    background: transparent;
}

button:hover {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%),
        linear-gradient(135deg, #18c640, var(--green));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 34px rgba(17, 171, 51, 0.34);
}

.form-note {
    width: min(100%, 520px);
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: min(100%, 540px);
    margin: 18px auto 0;
    color: rgba(242, 242, 240, 0.64);
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
}

.consent a {
    color: #56d970;
    font-weight: 700;
    text-decoration-color: rgba(17, 171, 51, 0.7);
}

.consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--cyan);
    flex: 0 0 auto;
}

.promise {
    margin: 14px 0 0;
    color: var(--soft);
    font-size: 13px;
    line-height: 1.45;
}

.promise-mobile {
    display: none;
}

.message {
    margin: 16px auto 0;
    padding: 12px 14px;
    width: min(100%, 540px);
    border-radius: 6px;
    font-size: 14px;
    text-align: left;
}

.message.success {
    color: #e8fff6;
    border: 1px solid rgba(45, 202, 130, 0.34);
    background: rgba(45, 202, 130, 0.12);
}

.message.error {
    color: #ffe9e6;
    border: 1px solid rgba(200, 115, 50, 0.42);
    background: rgba(200, 115, 50, 0.14);
}

.story-section {
    position: relative;
    padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
    background:
        radial-gradient(circle at 78% 18%, rgba(17, 171, 51, 0.075), transparent 32%),
        linear-gradient(180deg, rgba(9, 13, 14, 0.72), rgba(8, 13, 11, 0.58));
    border-top: 1px solid rgba(242, 242, 240, 0.09);
}

.story-section-muted {
    background:
        radial-gradient(circle at 18% 18%, rgba(17, 171, 51, 0.065), transparent 32%),
        linear-gradient(180deg, rgba(10, 15, 13, 0.62), rgba(6, 10, 9, 0.58));
}

.roadmap-section {
    background:
        radial-gradient(circle at 50% 8%, rgba(17, 171, 51, 0.09), transparent 36%),
        linear-gradient(180deg, rgba(8, 12, 13, 0.7), rgba(7, 11, 10, 0.6));
}

.section-inner {
    width: min(100%, 1080px);
    margin: 0 auto;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(32px, 6vw, 84px);
    align-items: start;
}

.section-heading {
    max-width: 760px;
    margin: 0 0 clamp(28px, 4vw, 46px);
}

.section-label {
    margin: 0 0 14px;
    color: #56d970;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.story-section h2 {
    max-width: 620px;
    margin: 0;
    color: var(--white);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 760;
    line-height: 1.12;
    text-transform: uppercase;
}

.story-section h1 {
    max-width: 620px;
    margin: 0;
    color: var(--white);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 760;
    line-height: 1.12;
    text-transform: uppercase;
}

.subpage .story-section {
    padding: clamp(78px, 8vw, 118px) clamp(20px, 5vw, 72px) clamp(62px, 7vw, 96px);
}

.subpage > .story-section:only-child {
    min-height: calc(100svh - 58px - 66px);
}

.subpage .section-inner {
    width: min(100%, 880px);
}

.subpage .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
}

.subpage .section-heading {
    margin-bottom: 0;
}

.subpage .story-section h1,
.subpage .story-section h2 {
    max-width: 760px;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 720;
    line-height: 1.18;
}

.subpage .section-copy {
    max-width: 760px;
    font-size: clamp(16px, 1.45vw, 18px);
    line-height: 1.68;
}

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

.section-link {
    margin: 22px 0 0;
    color: rgba(242, 242, 240, 0.68);
    font-size: 15px;
    line-height: 1.6;
}

.subpage .section-heading + .feature-grid,
.subpage .section-heading + .process-timeline,
.subpage .section-heading + .roadmap-list,
.subpage .section-heading + .faq-list {
    margin-top: 30px;
}

.section-copy {
    color: rgba(242, 242, 240, 0.74);
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.72;
}

.section-copy p {
    max-width: 720px;
    margin: 0 0 18px;
}

.wide-copy {
    max-width: 780px;
    margin-top: clamp(28px, 4vw, 48px);
}

.simple-list {
    display: grid;
    gap: 10px;
    max-width: 680px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.simple-list li {
    position: relative;
    padding-left: 22px;
}

.simple-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px rgba(17, 171, 51, 0.34);
}

.quote-line {
    display: inline-block;
    margin-top: 8px;
    color: var(--white);
    font-weight: 760;
}

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

.feature-card {
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(242, 242, 240, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(242, 242, 240, 0.05), rgba(242, 242, 240, 0.015)),
        rgba(10, 13, 14, 0.72);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
}

.feature-card h2,
.feature-card h3,
.faq-item h2,
.faq-item h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 17px;
    line-height: 1.25;
    text-transform: uppercase;
}

.feature-card p,
.faq-item p,
.item-copy p {
    margin: 0 0 12px;
    color: rgba(242, 242, 240, 0.68);
    font-size: 15px;
    line-height: 1.62;
}

.feature-card p:last-child,
.faq-item p:last-child,
.item-copy p:last-child {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(242, 242, 240, 0.12);
}

.faq-item {
    display: grid;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 56px);
    padding: 26px 0;
    border-bottom: 1px solid rgba(242, 242, 240, 0.12);
}

.faq-item h3 {
    grid-column: 1;
    margin-bottom: 0;
}

.item-copy {
    grid-column: 2;
}

.roadmap-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.roadmap-list li {
    position: relative;
    min-height: 98px;
    padding: 18px 14px 16px;
    border: 1px solid rgba(242, 242, 240, 0.12);
    border-radius: 8px;
    background: rgba(242, 242, 240, 0.035);
    color: rgba(242, 242, 240, 0.58);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.roadmap-list li::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(242, 242, 240, 0.28);
    border-radius: 50%;
}

.roadmap-list li.is-done {
    color: var(--white);
    border-color: rgba(17, 171, 51, 0.44);
    background:
        radial-gradient(circle at 20% 0%, rgba(17, 171, 51, 0.14), transparent 46%),
        rgba(17, 171, 51, 0.05);
}

.roadmap-list li.is-done::before {
    content: "\2713";
    display: grid;
    place-items: center;
    color: #071009;
    border-color: var(--green);
    background: var(--green);
    font-size: 11px;
    font-weight: 900;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid rgba(242, 242, 240, 0.12);
    border-radius: 8px;
    background: rgba(242, 242, 240, 0.03);
    overflow: hidden;
}

.process-timeline-wide {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process-timeline li {
    position: relative;
    min-height: 96px;
    display: grid;
    align-items: center;
    padding: 18px 18px 18px 42px;
    color: rgba(242, 242, 240, 0.78);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    border-right: 1px solid rgba(242, 242, 240, 0.1);
}

.process-timeline li:last-child {
    border-right: 0;
}

.process-timeline li::before {
    content: counter(list-item);
    position: absolute;
    left: 16px;
    top: 50%;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: #071009;
    border-radius: 50%;
    background: var(--green);
    font-size: 11px;
    font-weight: 900;
    transform: translateY(-50%);
}

.process-timeline li::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(17, 171, 51, 0.62);
    border-right: 1px solid rgba(17, 171, 51, 0.62);
    background: #090d0e;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}

.process-timeline li:last-child::after {
    display: none;
}

.module-detail {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
    width: min(100%, 1040px);
}

.module-detail-media {
    position: relative;
    min-height: 280px;
    display: grid;
    align-items: center;
}

.module-detail-media::before {
    content: "";
    position: absolute;
    inset: 12% 4% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 171, 51, 0.16), transparent 64%);
    filter: blur(24px);
}

.module-detail-media img {
    position: relative;
    width: 100%;
    height: auto;
    filter: brightness(0.9) contrast(1.12) saturate(0.9);
    mix-blend-mode: screen;
}

.privacy {
    position: relative;
    padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
    background:
        radial-gradient(circle at 20% 10%, rgba(17, 171, 51, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(8, 12, 15, 0.96), rgba(21, 21, 23, 0.98)),
        linear-gradient(90deg, rgba(17, 171, 51, 0.12), transparent 54%);
    border-top: 1px solid var(--line);
}

.privacy-inner {
    width: min(100%, 920px);
    margin: 0 auto;
}

.privacy h2 {
    margin: 30px 0 10px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
}

.privacy h1 {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.12;
    text-transform: uppercase;
}

.privacy .updated {
    margin: 14px 0 34px;
    color: rgba(242, 242, 240, 0.58);
    font-size: 14px;
}

.privacy h3 {
    margin: 30px 0 10px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
}

.privacy p {
    max-width: 760px;
    margin: 0 0 12px;
    color: rgba(242, 242, 240, 0.72);
    font-size: 16px;
    line-height: 1.72;
}

.cofounder-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 52% 30%, rgba(17, 171, 51, 0.12), transparent 28%),
        radial-gradient(circle at 18% 74%, rgba(17, 171, 51, 0.05), transparent 32%),
        linear-gradient(180deg, #060909 0%, #0a100e 44%, #030505 100%);
}

.cofounder-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 3, 3, 0.72), rgba(2, 3, 3, 0.1) 50%, rgba(2, 3, 3, 0.72)),
        linear-gradient(180deg, rgba(2, 3, 3, 0.2), rgba(2, 3, 3, 0.84));
    pointer-events: none;
}

.cofounder-brand {
    position: fixed;
    top: 24px;
    left: 30px;
    z-index: 5;
}

.cofounder-brand a {
    display: inline-flex;
}

.cofounder-brand img {
    width: clamp(106px, 8vw, 138px);
    height: auto;
    filter: contrast(1.05) brightness(1.1);
}

.cofounder-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: clamp(96px, 9vw, 132px) clamp(18px, 5vw, 72px) clamp(56px, 6vw, 86px);
    display: grid;
    align-items: center;
}

.cofounder-inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.88fr) minmax(320px, 0.92fr);
    gap: clamp(34px, 6vw, 74px);
    width: min(100%, 860px);
    margin: 0 auto;
    align-items: center;
}

.cofounder-intro h1 {
    max-width: 420px;
    margin: 0;
    color: var(--white);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.02;
    text-transform: uppercase;
}

.cofounder-intro p:not(.section-label) {
    max-width: 360px;
    margin: 18px 0 0;
    color: rgba(242, 242, 240, 0.66);
    font-size: 16px;
    line-height: 1.58;
}

.language-panel {
    display: grid;
    gap: 12px;
}

.language-option {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 84px;
    padding: 17px;
    border: 1px solid rgba(17, 171, 51, 0.22);
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(17, 171, 51, 0.12), rgba(17, 171, 51, 0.035)),
        rgba(5, 8, 8, 0.72);
    text-decoration: none;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    transition:
        border-color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.language-option:hover,
.language-option:focus-visible {
    border-color: rgba(17, 171, 51, 0.72);
    background:
        linear-gradient(135deg, rgba(17, 171, 51, 0.2), rgba(17, 171, 51, 0.06)),
        rgba(7, 12, 10, 0.84);
    transform: translateY(-2px);
    outline: 0;
}

.language-code {
    display: grid;
    width: 48px;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(17, 171, 51, 0.48);
    border-radius: 50%;
    color: #56d970;
    background: rgba(17, 171, 51, 0.08);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.language-option strong {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
    line-height: 1.2;
}

.language-option small {
    display: block;
    color: rgba(242, 242, 240, 0.6);
    font-size: 14px;
    line-height: 1.42;
}

.site-footer {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 22px 18px;
    color: rgba(242, 242, 240, 0.72);
    background:
        radial-gradient(circle at 50% 0%, rgba(17, 171, 51, 0.04), transparent 42%),
        #050807;
    border-top: 1px solid rgba(242, 242, 240, 0.1);
}

.site-footer a {
    color: #56d970;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.site-footer a:hover {
    color: #86f59b;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(5, 6, 7, 0.72);
    backdrop-filter: blur(14px);
}

.contact-modal[hidden] {
    display: none;
}

.contact-panel {
    position: relative;
    width: min(100%, 430px);
    padding: 28px;
    border: 1px solid rgba(17, 171, 51, 0.28);
    border-radius: 8px;
    background:
        radial-gradient(circle at 20% 0%, rgba(17, 171, 51, 0.18), transparent 42%),
        rgba(11, 15, 18, 0.96);
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.44);
}

.contact-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.4vw, 34px);
    line-height: 1.08;
    text-transform: uppercase;
}

.contact-panel p:not(.eyebrow) {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.contact-address {
    margin: 0 0 12px;
    color: #56d970;
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0 0 24px rgba(17, 171, 51, 0.18);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-mail {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 18px;
    border-radius: 6px;
    font-weight: 800;
}

.contact-mail {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(135deg, var(--green), var(--green-dark));
}

.contact-feedback {
    min-height: 20px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.contact-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 32px;
    height: 32px;
    min-height: 32px;
    place-items: center;
    padding: 0;
    color: var(--white);
    border: 1px solid rgba(242, 242, 240, 0.14);
    border-radius: 50%;
    background: rgba(242, 242, 240, 0.06);
    font-size: 22px;
    line-height: 0;
}

.contact-close:hover {
    background: rgba(242, 242, 240, 0.12);
}

.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;
}

@media (max-width: 820px) {
    .top-nav {
        align-items: center;
        gap: 12px;
        min-height: 56px;
        padding: 9px 14px;
    }

    .nav-links-desktop {
        display: none;
    }

    .mobile-nav {
        display: block;
        margin-left: auto;
    }

    .subpage {
        padding-top: 56px;
        background:
            radial-gradient(circle at 72% 10%, rgba(17, 171, 51, 0.075), transparent 38%),
            radial-gradient(circle at 18% 72%, rgba(17, 171, 51, 0.045), transparent 42%),
            linear-gradient(180deg, #080c0d 0%, #0a1110 48%, #050807 100%);
    }

    .subpage .story-section {
        padding: 58px 20px 52px;
    }

    .subpage > .story-section:only-child {
        min-height: calc(100svh - 56px - 66px);
    }

    .subpage .story-section h1,
    .subpage .story-section h2 {
        font-size: clamp(21px, 6vw, 28px);
    }

    .subpage .section-copy {
        font-size: 15px;
        line-height: 1.62;
    }

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

    .subpage .section-heading + .feature-grid,
    .subpage .section-heading + .process-timeline,
    .subpage .section-heading + .roadmap-list,
    .subpage .section-heading + .faq-list {
        margin-top: 24px;
    }
}

@media (max-width: 680px) {
    body {
        background:
            radial-gradient(circle at 50% 18%, rgba(17, 171, 51, 0.1), transparent 42%),
            linear-gradient(180deg, #111719 0%, #07090a 54%, #020303 100%);
    }

    .hero {
        min-height: 100svh;
        padding: 84px 18px 72px;
        place-items: center;
    }

    .hero::before {
        background:
            radial-gradient(ellipse at 50% 30%, rgba(17, 171, 51, 0.12), transparent 24%),
            radial-gradient(ellipse at 46% 48%, rgba(17, 171, 51, 0.08), transparent 30%);
        opacity: 0.72;
    }

    .hero::after {
        background:
            radial-gradient(ellipse at 50% 30%, rgba(17, 171, 51, 0.1), transparent 24%),
            radial-gradient(ellipse at 42% 48%, rgba(17, 171, 51, 0.08), transparent 30%),
            radial-gradient(circle at 50% 34%, rgba(17, 171, 51, 0.08), transparent 42%),
            linear-gradient(180deg, rgba(2, 3, 3, 0.26), rgba(2, 3, 3, 0.96));
    }

    .product-bg-left {
        top: 4%;
        left: -42vw;
        width: min(92vw, 390px);
        height: 42vh;
        transform: none;
        object-position: left top;
        opacity: 0.2;
        filter: contrast(1.08) brightness(1.12) saturate(0.84);
    }

    .product-bg-right {
        display: block;
        top: 6%;
        right: -48vw;
        width: min(110vw, 460px);
        height: 42vh;
        object-position: right top;
        opacity: 0.18;
        filter: contrast(1.08) brightness(1.1) saturate(0.84);
    }

    .brand-mark {
        width: 28px;
        right: 10px;
        top: 66px;
        opacity: 0.14;
    }

    .wordmark {
        width: min(66vw, 230px);
        margin-top: 0;
        margin-bottom: 18px;
    }

    .eyebrow {
        font-size: 14px;
    }

    h1 {
        font-size: clamp(32px, 9vw, 40px);
        white-space: nowrap;
    }

    .hero h1 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.04;
        white-space: normal;
    }

    .lead {
        margin-top: 14px;
        margin-bottom: 16px;
        font-size: 17px;
    }

    .lead-compact {
        margin-top: -8px;
        margin-bottom: 14px;
        font-size: 14px;
    }

    .hero-actions,
    .inline-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .signup {
        display: flex;
        flex-direction: column;
        width: min(100%, 540px);
    }

    .content {
        transform: translateY(-3vh);
    }

    input[type="email"],
    button {
        min-height: 48px;
    }

    .form-note {
        order: 3;
        margin-top: 18px;
        line-height: 1.4;
    }

    .consent {
        order: 2;
        margin-top: 12px;
    }

    .form-row {
        order: 1;
        grid-template-columns: 1fr;
    }

    .message {
        order: 4;
    }

    button {
        width: 100%;
    }

    .button-link {
        width: 100%;
    }

    .form-note,
    .promise {
        font-size: 13px;
    }

    .promise {
        display: none;
    }

    .promise-mobile {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 24px;
        z-index: 2;
        display: block;
        margin: 0;
        color: var(--soft);
        font-size: 13px;
        line-height: 1.45;
        text-align: center;
    }

    .story-section {
        padding: 46px 20px;
    }

    .split-section,
    .faq-item {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .section-label {
        font-size: 11px;
    }

    .story-section h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .story-section h1 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .subpage .story-section h1,
    .subpage .story-section h2 {
        font-size: clamp(21px, 6vw, 28px);
    }

    .section-copy {
        font-size: 16px;
        line-height: 1.66;
    }

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

    .feature-card {
        padding: 20px;
    }

    .faq-item {
        padding: 22px 0;
    }

    .faq-item h3,
    .item-copy {
        grid-column: auto;
        grid-row: auto;
    }

    .roadmap-list {
        grid-template-columns: 1fr;
    }

    .roadmap-list li {
        display: flex;
        min-height: auto;
        align-items: center;
        gap: 12px;
        padding: 14px;
    }

    .roadmap-list li::before {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-timeline-wide {
        grid-template-columns: 1fr;
    }

    .process-timeline li {
        min-height: auto;
        padding: 16px 18px 16px 48px;
        border-right: 0;
        border-bottom: 1px solid rgba(242, 242, 240, 0.1);
    }

    .process-timeline li:last-child {
        border-bottom: 0;
    }

    .process-timeline li::before {
        left: 18px;
    }

    .process-timeline li::after {
        right: auto;
        top: auto;
        left: 22px;
        bottom: -5px;
        transform: rotate(135deg);
    }

    .module-detail {
        grid-template-columns: 1fr;
    }

    .module-detail-media {
        min-height: 180px;
    }

    .privacy h2 {
        font-size: 18px;
    }

    .privacy p {
        font-size: 15px;
    }

    .cofounder-section {
        min-height: 100vh;
        padding: 102px 18px 42px;
    }

    .cofounder-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        width: min(100%, 420px);
    }

    .cofounder-brand {
        top: 22px;
        left: 18px;
    }

    .cofounder-brand img {
        width: 108px;
    }

    .cofounder-intro h1 {
        max-width: 300px;
        font-size: clamp(28px, 8vw, 36px);
    }

    .cofounder-intro p:not(.section-label) {
        max-width: 320px;
        font-size: 15px;
    }

    .language-option {
        grid-template-columns: 46px 1fr;
        min-height: 82px;
        padding: 16px;
    }

    .language-code {
        width: 46px;
    }

    .site-footer {
        justify-content: flex-start;
    }
}

