*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0d0f0e;
    --bg2: #111413;
    --surface: #1a1d1c;
    --border: #252928;
    --border2: #2e3330;
    --text: #e8ede9;
    --muted: #6b7570;
    --muted2: #4a524e;
    --accent: #a8ff3e;
    --accent-dim: #6baa1f;
    --red: #ff5f57;
    --green: #28c840;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 900;
}

/* HONEYPOT */
.hp-field {
    opacity: 0;
    position: absolute;
    top: -9999px;
    left: -9999px;
    z-index: -1;
}

/* CURSOR */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: width .2s, height .2s;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(168, 255, 62, .35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, border-color .25s;
}

.cursor.hov {
    width: 16px;
    height: 16px;
}

.cursor-ring.hov {
    width: 50px;
    height: 50px;
    border-color: rgba(168, 255, 62, .6);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}

nav.scrolled {
    background: rgba(13, 15, 14, .88);
    backdrop-filter: blur(14px);
    border-color: var(--border);
}

.nav-logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 140px;
    min-height: 40px;
}

.nav-logo-img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-45%);
    height: 180px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
}

.btn {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 10px 22px;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    cursor: none;
    letter-spacing: .02em;
    transition: background .2s, box-shadow .2s, transform .15s;
    display: inline-block;
}

.btn:hover {
    background: #c4ff6a;
    box-shadow: 0 0 28px rgba(168, 255, 62, .3);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 14px;
}

/* HERO */
.hero-wrap {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
}

.hero-grid-bg {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(168, 255, 62, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 255, 62, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 10%, transparent 100%);
    pointer-events: none;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 120px 60px 80px;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border2);
    background: var(--surface);
    padding: 6px 14px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp .6s ease forwards .1s;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.75)
    }
}

.hero-headline {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 54px);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp .7s ease forwards .25s;
}

.hero-headline .hl {
    color: var(--accent);
    display: block;
}

.hero-sub {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 400px;
    opacity: 0;
    animation: fadeUp .7s ease forwards .4s;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp .7s ease forwards .55s;
}

.hero-hint {
    font-size: 12px;
    color: var(--muted2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* PHONE */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 1s ease forwards .7s;
}

.phone-scene {
    position: relative;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 560px;
    background: radial-gradient(ellipse at 50% 45%, rgba(168, 255, 62, .09) 0%, rgba(168, 255, 62, .04) 35%, transparent 70%);
    pointer-events: none;
    animation: glow 5s ease infinite;
    filter: blur(8px);
}

@keyframes glow {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .55
    }
}

.phone-ground {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 28px;
    background: radial-gradient(ellipse, rgba(168, 255, 62, .14) 0%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.phone {
    width: 280px;
    height: 590px;
    background: linear-gradient(175deg, #22271f 0%, #141614 20%, #0c0e0c 60%, #080908 100%);
    border-radius: 44px;
    border: 1px solid transparent;
    background-clip: padding-box;
    padding: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .07), inset -1px -1px 0 rgba(0, 0, 0, .5), 0 0 0 1px rgba(0, 0, 0, .9), 0 0 0 1.5px rgba(255, 255, 255, .05), 0 24px 48px rgba(0, 0, 0, .8), 0 48px 80px rgba(0, 0, 0, .5), 0 8px 32px rgba(0, 0, 0, .6), 0 0 60px rgba(168, 255, 62, .04);
}

.phone-chassis-sheen {
    position: absolute;
    inset: 0;
    border-radius: 44px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .045) 0%, rgba(255, 255, 255, .01) 25%, transparent 50%);
    pointer-events: none;
    z-index: 5;
}

.phone-vol {
    position: absolute;
    left: -3px;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.phone-vol-btn {
    width: 3px;
    border-radius: 1.5px 0 0 1.5px;
    background: linear-gradient(to right, #0a0c0a, #1a1e18);
    box-shadow: inset -0.5px 0 0 rgba(255, 255, 255, .05);
}

.phone-vol-btn:first-child {
    height: 20px;
}

.phone-vol-btn:nth-child(2) {
    height: 32px;
}

.phone-vol-btn:last-child {
    height: 32px;
}

.phone-pwr {
    position: absolute;
    right: -3px;
    top: 120px;
    width: 3px;
    height: 56px;
    border-radius: 0 1.5px 1.5px 0;
    background: linear-gradient(to left, #0a0c0a, #1a1e18);
    box-shadow: inset 0.5px 0 0 rgba(255, 255, 255, .05);
}

.phone-punch-hole {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%, #1a201a, #020302);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .95), inset 0 1px 2px rgba(0, 0, 0, .8);
    z-index: 30;
}

.phone-punch-hole::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(168, 255, 62, .15);
}

.phone-screen {
    background: #0d0f0d;
    border-radius: 36px;
    overflow: hidden;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .04);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .02);
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .018) 0%, rgba(255, 255, 255, .006) 60%, transparent 100%);
    pointer-events: none;
    z-index: 20;
}

.phone-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, transparent 60%, rgba(0, 0, 0, .25) 100%);
    pointer-events: none;
    z-index: 19;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px 4px;
    font-size: 10px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: .02em;
    position: relative;
    z-index: 21;
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.signal-bars span {
    width: 3px;
    border-radius: 1px 1px 0 0;
    background: var(--muted2);
    transition: background .3s;
}

.signal-bars span:last-child {
    background: var(--muted);
}

.status-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-battery {
    display: flex;
    align-items: center;
    gap: 2px;
}

.phone-battery-body {
    width: 18px;
    height: 9px;
    border: 1px solid var(--muted2);
    border-radius: 2px;
    padding: 1.5px;
    display: flex;
    align-items: center;
}

.phone-battery-fill {
    width: 65%;
    height: 100%;
    background: var(--muted);
    border-radius: 1px;
}

.phone-battery-tip {
    width: 2px;
    height: 4px;
    background: var(--muted2);
    border-radius: 0 1px 1px 0;
    margin-left: 1px;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    background: linear-gradient(180deg, rgba(255, 255, 255, .01) 0%, transparent 100%);
    position: relative;
    z-index: 21;
}

.phone-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: -.01em;
}

.phone-title-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(168, 255, 62, .7);
}

.phone-online {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: var(--accent-dim);
    letter-spacing: .05em;
}

.phone-online-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 4px rgba(168, 255, 62, .6);
}

.phone-chat {
    padding: 12px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 430px;
    overflow: hidden;
    position: relative;
    z-index: 21;
}

.msg {
    max-width: 88%;
    font-size: 11px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
}

.msg.show {
    opacity: 1;
    transform: none;
}

.msg-user {
    align-self: flex-end;
    background: var(--accent);
    color: #070908;
    padding: 8px 13px;
    border-radius: 18px 18px 4px 18px;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(168, 255, 62, .2);
}

.msg-agent {
    align-self: flex-start;
    background: linear-gradient(135deg, #1c201b, #161918);
    color: var(--text);
    padding: 8px 13px;
    border-radius: 4px 18px 18px 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.msg-tool {
    align-self: flex-start;
    font-size: 9.5px;
    color: var(--muted2);
    padding: 4px 10px;
    border-left: 2px solid var(--border2);
    font-style: italic;
    background: rgba(255, 255, 255, .015);
    border-radius: 0 6px 6px 0;
}

.msg-tool.live {
    border-color: var(--accent-dim);
    color: var(--accent-dim);
    background: rgba(168, 255, 62, .04);
}

.typing-ind {
    align-self: flex-start;
    background: linear-gradient(135deg, #1c201b, #161918);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 10px 14px;
    border-radius: 4px 18px 18px 18px;
    display: flex;
    gap: 5px;
    align-items: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s, transform .3s;
}

.typing-ind.show {
    opacity: 1;
    transform: none;
}

.typing-ind span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--muted);
    animation: tdot 1.2s ease infinite;
}

.typing-ind span:nth-child(2) {
    animation-delay: .2s
}

.typing-ind span:nth-child(3) {
    animation-delay: .4s
}

@keyframes tdot {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: .35
    }

    30% {
        transform: translateY(-5px);
        opacity: 1
    }
}

.phone-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px 14px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    background: linear-gradient(0deg, #0d0f0d 60%, transparent 100%);
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 22;
}

.phone-input-wrap {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 22px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-input {
    flex: 1;
    font-size: 11px;
    color: var(--muted2);
    font-family: 'DM Mono', monospace;
    background: transparent;
    border: none;
    outline: none;
}

.phone-input-attach {
    font-size: 13px;
    color: var(--muted2);
    flex-shrink: 0;
}

.phone-send {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #070908;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(168, 255, 62, .35);
}

.phone-home-ind {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, .15);
    border-radius: 2px;
    z-index: 23;
}

/* MARQUEE */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    padding: 0 28px;
    white-space: nowrap;
}

.marquee-term {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted2);
    transition: color .2s;
}

.marquee-item:hover .marquee-term {
    color: var(--accent);
}

.marquee-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-dim);
    margin-left: 28px;
    flex-shrink: 0;
}

/* PROBLEM */
.problem {
    padding: 100px 24px;
    display: flex;
    justify-content: center;
}

.problem-inner {
    max-width: 600px;
    text-align: center;
}

.problem-text {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 600;
    line-height: 1.45;
    color: var(--muted);
    letter-spacing: -.02em;
}

.problem-text strong {
    color: var(--text);
    font-weight: 600;
}

.problem-text em {
    color: var(--accent);
    font-style: normal;
}

/* CAPABILITIES */
.capabilities {
    padding: 60px 24px 100px;
}

.sec-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 50px;
}

.sec-label span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sec-label span::before,
.sec-label span::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--border2);
}

.caps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--border);
    border: 1px solid var(--border);
}

.cap-card {
    background: var(--bg);
    padding: 34px 30px;
    transition: background .25s;
    position: relative;
    overflow: hidden;
}

.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--accent);
    transition: height .3s ease;
}

.cap-card:hover {
    background: var(--bg2);
}

.cap-card:hover::before {
    height: 100%;
}

.cap-icon {
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
}

.cap-name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 6px;
}

.cap-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* DIFF */
.diff {
    padding: 80px 24px 100px;
    display: flex;
    justify-content: center;
}

.diff-inner {
    max-width: 680px;
    width: 100%;
}

.diff-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: -.03em;
    margin-bottom: 44px;
    color: var(--text);
}

.diff-title em {
    color: var(--accent);
    font-style: normal;
}

.diff-list {
    list-style: none;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.diff-item:first-child {
    border-top: 1px solid var(--border);
}

.diff-num {
    font-size: 11px;
    color: var(--accent);
    letter-spacing: .1em;
    flex-shrink: 0;
    padding-top: 2px;
}

.diff-head {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.diff-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* FINAL CTA */
.final {
    padding: 100px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-glow {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(168, 255, 62, .07) 0%, transparent 70%);
    pointer-events: none;
}

.final-headline {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: -.03em;
    margin-bottom: 10px;
}

.final-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 36px;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted2);
}

footer a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

footer a:hover {
    color: var(--accent);
}

/* MODAL */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg2);
    border: 1px solid var(--border2);
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(24px) scale(.97);
    transition: transform .38s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .03);
}

.overlay.open .modal {
    transform: none;
}

.modal-x {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--muted2);
    font-size: 22px;
    line-height: 1;
    cursor: none;
    transition: color .2s;
}

.modal-x:hover {
    color: var(--text);
}

.modal-tag {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.modal-h {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 8px;
}

.modal-p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.65;
}

.field {
    margin-bottom: 16px;
}

.field>label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.field input,
.field textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border2);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    padding: 10px 14px;
    outline: none;
    transition: border-color .2s;
    line-height: 1.5;
    border-radius: 6px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted2);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--accent-dim);
}

.field textarea {
    resize: vertical;
    min-height: 86px;
}

.field-note {
    font-size: 11px;
    color: var(--muted2);
    margin-top: 4px;
}

/* RADIO GROUPS */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.radio-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color .2s, color .2s, background .2s;
    line-height: 1.5;
}

.radio-opt:hover {
    border-color: var(--border2);
    color: var(--text);
}

.radio-opt input[type="radio"] {
    accent-color: var(--accent);
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.radio-opt:has(input:checked) {
    border-color: var(--accent-dim);
    color: var(--text);
    background: rgba(168, 255, 62, .04);
}

.modal-btn {
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    font-size: 14px;
}

.modal-ok {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px 0;
}

.modal-ok.show {
    display: flex;
}

.form-body.gone {
    display: none;
}

.ok-ring {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 22px;
    animation: popIn .4s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes popIn {
    from {
        transform: scale(.4);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.ok-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--text);
}

.ok-note {
    font-size: 13px;
    color: var(--muted);
    max-width: 260px;
    line-height: 1.65;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

@media(max-width:768px) {
    nav {
        padding: 16px 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        text-align: center;
        gap: 48px;
    }

    .hero-sub {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .caps-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .modal {
        padding: 28px 22px;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }
}

@media(min-width:769px) and (max-width:1024px) {
    .caps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
