:root {
    --bg: #FFFFFF;
    --bg-alt: #F9F9F7;
    --bg-card: #fff;
    --surface: #EEECEA;
    --border: rgba(20, 20, 30, .08);
    --border-hover: rgba(255, 106, 0, .25);
    --text: #0D0D14;
    --text-muted: #52506A;
    --text-dim: #8E8BA2;
    --accent: #FF6A00;
    --accent-light: #FF9640;
    --accent-glow: rgba(255, 106, 0, .18);
    --accent2: #151225;
    --green: #059669;
    --red: #DC2626;
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --r: 14px;
    --r-lg: 22px;
    --r-full: 9999px;
    --ease: .32s cubic-bezier(.4, 0, .2, 1);
    --shadow-sm: 0 1px 3px rgba(20, 20, 30, .06);
    --shadow-md: 0 6px 24px rgba(20, 20, 30, .09);
    --shadow-lg: 0 16px 48px rgba(20, 20, 30, .13);
    --shadow-card: 0 2px 16px rgba(20, 20, 30, .06), 0 0 0 1px rgba(20, 20, 30, .04);
    --max-w: 1140px
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

ul {
    list-style: none
}

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

button,
input {
    font: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit
}

::selection {
    background: var(--accent);
    color: #fff
}

/* grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .022;
    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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: .75rem 2rem;
    background: rgba(254, 254, 254, .75);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--ease)
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(20, 20, 30, .06)
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -.03em;
    color: var(--text);
    transition: opacity var(--ease)
}

.nav-logo:hover {
    opacity: .75
}

.nav-logo-icon {
    width: 30px;
    height: 30px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: .25rem 0;
    transition: color .25s ease
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width .3s cubic-bezier(.16, 1, .3, 1)
}

.nav-link:hover {
    color: var(--accent)
}

.nav-link:hover::after {
    width: 100%
}

.nav-cta-btn {
    font-size: .8rem;
    font-weight: 700;
    padding: .65rem 1.4rem;
    border-radius: var(--r-full);
    background: #BD4B00;
    color: #fff;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease, background .25s ease;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0,0,0,.15)
}

.nav-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px var(--accent-glow);
    background: #ff7a1a
}

.nav-cta-btn:active {
    transform: translateY(0) scale(.98)
}

/* ===== REVEALS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(.97);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1)
}

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

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

/* snap-in variant */
.snap {
    opacity: 0;
    transform: translateY(60px) scale(.92);
    transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1)
}

.snap.visible {
    opacity: 1;
    transform: translateY(0) scale(1)
}

/* ===== DECORATIVE BG ===== */
.bg-shape {
    position: absolute;
    pointer-events: none;
    opacity: .5
}

.bg-shape svg {
    width: 100%;
    height: 100%
}

.bg-shape:nth-of-type(1) {
    animation: floatShape 20s ease-in-out infinite
}

.bg-shape:nth-of-type(2) {
    animation: floatShape 25s ease-in-out infinite reverse
}

.bg-shape:nth-of-type(3) {
    animation: floatShape 30s ease-in-out infinite
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-20px) rotate(3deg)
    }
}

.bg-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(13, 13, 20, .04) 1.2px, transparent 1.2px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 55% 50% at 50% 40%, #000 25%, transparent 100%)
}

/* bold diagonal accent lines */
.bg-line {
    position: absolute;
    pointer-events: none;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 106, 0, .08), transparent);
    z-index: 0
}

.bg-line-h {
    position: absolute;
    pointer-events: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    z-index: 0
}

.bg-line-glow {
    position: absolute;
    left: -1px;
    top: -150px;
    width: 3px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    opacity: .4;
    filter: blur(1px);
    animation: scanV 8s linear infinite
}

.bg-line-glow-h {
    position: absolute;
    top: -1px;
    left: -150px;
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: .4;
    filter: blur(1px);
    animation: scanH 10s linear infinite
}

@keyframes scanV {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(120vh)
    }
}

@keyframes scanH {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(120vw)
    }
}

/* cross grid overlay */
.bg-cross {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .35;
    mask-image: radial-gradient(ellipse 50% 45% at 50% 50%, #000 10%, transparent 100%);
    animation: panGrid 60s linear infinite
}

@keyframes panGrid {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 80px 80px
    }
}

/* hero grid overlay - premium fine grid */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,106,0,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,106,0,.025) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 100%);
    z-index: 0
}

/* features section decorative grid bg */
.features-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,106,0,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,106,0,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 100%);
    z-index: 0
}

/* ===== HERO ===== */
.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 106, 0, .08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseOrb 10s ease-in-out infinite
}

@keyframes pulseOrb {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .8
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1
    }
}

.hero-orb.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 150, 64, .06) 0%, transparent 70%);
    top: 30%;
    left: 80%;
    animation: pulseOrb 15s ease-in-out infinite reverse
}

.hero-orb.orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 106, 0, .05) 0%, transparent 70%);
    top: 70%;
    left: 15%;
    animation: pulseOrb 12s ease-in-out infinite 2s
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 4rem;
    overflow: hidden
}

.hero-content {
    position: relative;
    max-width: 820px;
    text-align: center;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem 1.15rem;
    border-radius: var(--r-full);
    background: #fff;
    border: 1px solid var(--border);
    font-size: .8rem;
    font-weight: 600;
    color: #C44F00;
    letter-spacing: .03em;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm)
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .35;
        transform: scale(1.8)
    }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin-bottom: 1.5rem;
    color: var(--text)
}

.hero-headline-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    font-weight: 400
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--bg));
    pointer-events: none;
    z-index: 1
}

/* ===== WAITLIST ===== */
.waitlist-form {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto
}

.waitlist-input-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 1;
    min-width: 220px;
    padding: .8rem 1.1rem;
    border-radius: var(--r);
    background: #fff;
    border: 1.5px solid rgba(20, 20, 30, .1);
    transition: border-color var(--ease), box-shadow var(--ease);
    box-shadow: var(--shadow-sm)
}

.waitlist-input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow)
}

.waitlist-icon {
    width: 18px;
    height: 18px;
    color: var(--text-dim);
    flex-shrink: 0
}

.waitlist-input-wrap input {
    flex: 1;
    background: transparent;
    font-size: .95rem
}

.waitlist-input-wrap input::placeholder {
    color: var(--text-dim)
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .82rem 1.7rem;
    border-radius: var(--r);
    background: #BD4B00;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
    white-space: nowrap;
    letter-spacing: .01em;
    text-shadow: 0 1px 2px rgba(0,0,0,.12)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow)
}

.btn-primary:active {
    transform: translateY(0)
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--ease)
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px)
}

.waitlist-success {
    display: flex;
    align-items: center;
    gap: .75rem;
    justify-content: center;
    padding: 1rem;
    animation: snapUp .4s cubic-bezier(.16, 1, .3, 1)
}

.waitlist-success svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.waitlist-success p {
    color: var(--accent);
    font-weight: 600;
    font-size: .95rem
}

.hidden {
    display: none !important
}

@keyframes snapUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

/* ===== WIREFRAME ===== */
.hero-wireframe {
    margin-top: 3.5rem;
    perspective: 1200px
}

.wireframe-card {
    max-width: 660px;
    margin: 0 auto;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    background: #fff;
    overflow: hidden;
    transform: rotateX(6deg);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s ease;
    box-shadow: var(--shadow-lg)
}

.wireframe-card:hover {
    transform: rotateX(0);
    box-shadow: 0 28px 70px rgba(20, 20, 30, .14)
}

.wireframe-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt)
}

.wireframe-dots {
    display: flex;
    gap: 6px
}

.wireframe-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.wireframe-dots span:nth-child(1) {
    background: #FF6B6B
}

.wireframe-dots span:nth-child(2) {
    background: #FBBF24
}

.wireframe-dots span:nth-child(3) {
    background: #34D399
}

.wireframe-title-bar {
    flex: 1;
    height: 10px;
    border-radius: 6px;
    background: var(--surface)
}

.wireframe-body {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    min-height: 180px
}

.wireframe-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.wireframe-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.wireframe-line {
    height: 8px;
    border-radius: 4px;
    background: var(--surface)
}

.wireframe-block {
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 106, 0, .06);
    border: 1px solid rgba(255, 106, 0, .1)
}

.w40 {
    width: 40%
}

.w50 {
    width: 50%
}

.w60 {
    width: 60%
}

.w70 {
    width: 70%
}

.w75 {
    width: 75%
}

.w80 {
    width: 80%
}

.w85 {
    width: 85%
}

.w90 {
    width: 90%
}

.w100 {
    width: 100%
}

.wireframe-label {
    text-align: center;
    padding: 1rem;
    font-size: .72rem;
    color: var(--text-dim);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600
}

/* ===== SECTION UTILS ===== */
.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent);
    padding: .4rem 1rem;
    border-radius: var(--r-full);
    background: rgba(255, 106, 0, .06);
    border: 1px solid rgba(255, 106, 0, .12)
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-top: 1.25rem;
    color: var(--text)
}

.accent-text {
    color: var(--accent)
}

/* ===== SCENARIO ===== */
.scenario {
    padding: 7rem 2rem;
    position: relative;
    background: var(--bg-alt);
    overflow: hidden
}

.scenario::before,
.scenario::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent)
}

.scenario::before {
    top: 0
}

.scenario::after {
    bottom: 0
}

.scenario-inner {
    max-width: var(--max-w);
    margin: 0 auto
}

.scenario-label {
    text-align: center;
    margin-bottom: 3rem
}

.scenario-lead {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -.025em;
    color: var(--text)
}

.scenario-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch
}

.scenario-before,
.scenario-after {
    padding: 2.25rem;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    background: #fff;
    line-height: 1.8;
    color: var(--text-muted);
    font-size: .95rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--ease), box-shadow var(--ease)
}

.scenario-before:hover,
.scenario-after:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.scenario-col-tag {
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1rem;
    padding: .35rem .75rem;
    border-radius: var(--r-full);
    display: inline-block
}

.before-tag {
    background: rgba(220, 38, 38, .06);
    color: var(--red)
}

.after-tag {
    background: rgba(5, 150, 105, .06);
    color: var(--green)
}

.scenario-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding-top: 3rem
}

.divider-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    border-radius: 1px
}

.divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: #fff;
    box-shadow: var(--shadow-sm)
}

.divider-icon svg {
    width: 18px;
    height: 18px
}

/* ===== FEATURES ===== */
.features {
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden
}

.features-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.features-header {
    text-align: center;
    margin-bottom: 4rem
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.feature-card {
    padding: 2.25rem;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    background: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color var(--ease), transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow var(--ease)
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.feature-card:hover::before {
    transform: scaleX(1)
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover)
}

.feature-card-wide {
    grid-column: 1/-1
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 106, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--accent)
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .5rem;
    letter-spacing: -.015em;
    color: var(--text)
}

.feature-desc {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.75;
    max-width: 480px
}

/* ===== WEDGE ===== */
.wedge {
    padding: 7rem 2rem;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden
}

.wedge::before,
.wedge::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent)
}

.wedge::before {
    top: 0
}

.wedge::after {
    bottom: 0
}

.wedge-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center
}

.comparison-table {
    margin-top: 3rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-align: left;
    background: #fff;
    box-shadow: var(--shadow-md)
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    border-bottom: 1.5px solid var(--border);
    background: var(--bg-alt)
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
    transition: background var(--ease)
}

.comparison-row:last-child {
    border-bottom: none
}

.comparison-row:hover {
    background: rgba(255, 106, 0, .02)
}

.comparison-cell {
    padding: 1.1rem 1.25rem;
    font-size: .85rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.comparison-label {
    font-weight: 700;
    color: var(--text);
    font-size: .82rem
}

.comparison-header .comparison-cell {
    padding: 1.25rem;
    text-align: center;
    align-items: center
}

.comp-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text)
}

.comp-subtitle {
    font-size: .68rem;
    color: var(--text-dim);
    margin-top: .25rem;
    font-weight: 500
}

.comp-dirac {
    color: var(--accent)
}

.comp-dirac-col {
    background: rgba(255, 106, 0, .04);
    border-left: 2px solid rgba(255, 106, 0, .12)
}

.comp-dirac-col strong {
    color: var(--accent);
    font-weight: 700
}

/* ===== BOTTOM CTA ===== */
.cta-bottom {
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
    background: var(--accent2);
    color: #fff
}

.cta-bottom-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 106, 0, .12) 0%, transparent 70%);
    pointer-events: none
}

.cta-bottom .bg-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 20%, transparent 100%)
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
    margin-bottom: 1rem;
    color: #fff
}

.cta-title .accent-text {
    color: var(--accent-light)
}

.cta-sub {
    color: rgba(255, 255, 255, .55);
    margin-bottom: 2rem;
    font-size: 1.05rem
}

.cta-form {
    max-width: 460px
}

.cta-bottom .waitlist-input-wrap {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .12)
}

.cta-bottom .waitlist-input-wrap input {
    color: #fff
}

.cta-bottom .waitlist-input-wrap input::placeholder {
    color: rgba(255, 255, 255, .3)
}

.cta-bottom .waitlist-icon {
    color: rgba(255, 255, 255, .25)
}

.cta-bottom .waitlist-input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, .15)
}

.cta-bottom .waitlist-success p {
    color: var(--accent-light)
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
    width: 100%;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface);
    position: relative;
    aspect-ratio: 16/9
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* Label only shows as fallback when no image loads */
.img-placeholder img ~ .img-placeholder-label,
.img-placeholder img + .img-placeholder-label {
    display: none
}

.img-placeholder-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-dim)
}

/* ===== BOLD ACCENT BAND ===== */
.accent-band {
    padding: 4rem 2rem;
    background: var(--accent);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
}

/* CTA section decorative SVG positioning */
.cta-bg-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0
}

.accent-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .08), transparent 60%);
    pointer-events: none
}

.accent-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    position: relative;
    z-index: 1
}

.accent-band p {
    font-size: 1rem;
    opacity: .85;
    margin-top: .75rem;
    position: relative;
    z-index: 1
}

/* ===== FOOTER ===== */
.footer {
    padding: 0;
    background: var(--accent2);
    color: #fff
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    position: relative
}

/* cursor glow that follows mouse across all buttons */
.footer-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, .15), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 0;
    transform: translate(-50%, -50%)
}

.footer-buttons:hover .footer-glow {
    opacity: 1
}

.footer-btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    cursor: pointer;
    transition: color .3s ease, padding-left .35s cubic-bezier(.16, 1, .3, 1);
    text-decoration: none;
    letter-spacing: -.01em;
    z-index: 1
}

.footer-btn:hover {
    color: #fff;
    padding-left: 3.5rem
}

.footer-btn span.footer-btn-label {
    position: relative;
    z-index: 2;
    transition: color .3s ease
}

.footer-btn:hover span.footer-btn-label {
    color: var(--accent-light)
}

.footer-btn span.footer-btn-sub {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .55);
    position: relative;
    z-index: 2
}

.footer-btn svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, .2);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), color .3s ease;
    position: relative;
    z-index: 2
}

.footer-btn:hover svg {
    transform: translateX(6px);
    color: var(--accent-light)
}

/* ripple on click */
.footer-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 106, 0, .18);
    transform: scale(0);
    animation: ripple-wave .8s cubic-bezier(.16, 1, .3, 1) forwards;
    pointer-events: none;
    z-index: 1
}

@keyframes ripple-wave {
    0% {
        transform: scale(0);
        opacity: .6
    }

    100% {
        transform: scale(5);
        opacity: 0
    }
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3rem;
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, .04)
}

.footer-meta a {
    color: var(--accent-light);
    font-weight: 600;
    transition: opacity .3s
}

.footer-meta a:hover {
    opacity: .7
}

/* Nerodyn credit bar */
.footer-nerodyn {
    background: rgba(0, 0, 0, .2);
    padding: .65rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .04em
}

.footer-nerodyn a {
    color: var(--accent-light);
    font-weight: 700;
    transition: color .25s ease
}

.footer-nerodyn a:hover {
    color: #fff
}

/* ===== ABOUT HERO ===== */
.about-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 5rem;
    overflow: hidden;
    text-align: center
}

/* About page orbs */
.about-orb {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, .07) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseOrb 12s ease-in-out infinite
}

.about-orb.orb-b {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 150, 64, .05) 0%, transparent 70%);
    top: 30%;
    left: 70%;
    animation: pulseOrb 18s ease-in-out infinite reverse
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px
}

.about-headline {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
    margin-top: 1.25rem;
    color: var(--text)
}

/* ===== ABOUT MISSION ===== */
.about-mission {
    padding: 5rem 2rem 7rem;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden
}

.about-mission-inner {
    max-width: 760px;
    margin: 0 auto
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 3rem;
    border-left: 2.5px solid var(--surface)
}

.mission-block {
    position: relative
}

.mission-block::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: .5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid var(--accent);
    background: var(--bg-alt);
    transform: translateX(calc(-50% + 1.25px))
}

.mission-date {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent);
    display: block;
    margin-bottom: .5rem
}

.mission-block p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: .95rem
}

.mission-block em {
    color: var(--accent);
    font-style: italic
}

.mission-timeline {
    display: none
}

/* ===== ABOUT TEAM ===== */
.about-team {
    padding: 5rem 2rem 7rem;
    position: relative;
    overflow: hidden
}

.about-team-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.team-card {
    padding: 2.5rem 2rem;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: border-color var(--ease), transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow var(--ease)
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.team-photo-wrap {
    margin-bottom: 1.5rem
}

.team-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2.5px solid var(--surface);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    background: var(--bg-alt)
}

.team-photo-placeholder svg {
    width: 48px;
    height: 48px
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text)
}

.team-role {
    font-size: .78rem;
    color: var(--accent);
    display: block;
    margin: .25rem 0 .75rem;
    font-weight: 700
}

.team-bio {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .nav {
        padding: .65rem 1rem
    }

    .nav-links {
        gap: 1rem
    }

    .scenario-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .scenario-divider {
        flex-direction: row;
        padding: 0
    }

    .divider-line {
        width: 40px;
        height: 2px
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .feature-card-wide {
        grid-column: auto
    }

    .comparison-table {
        font-size: .75rem;
        overflow-x: auto
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: .9fr repeat(3, .8fr)
    }

    .comparison-cell {
        padding: .75rem .5rem
    }

    .footer-top {
        flex-direction: column
    }

    .footer-links-group {
        gap: 2rem
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center
    }

    .footer-btn {
        padding: 1.5rem 1.5rem;
        font-size: 1rem
    }

    .footer-meta {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
        padding: 1.25rem 1.5rem
    }

    .img-placeholder {
        aspect-ratio: 4/3
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 380px
    }

    .hero {
        padding: 6.5rem 1.25rem 3rem
    }
}

.waitlist-form .btn-primary {
    width: 100%;
    justify-content: center
}

.comparison-header,
.comparison-row {
    grid-template-columns: 1fr repeat(3, 1fr);
    font-size: .62rem
}

.comp-name {
    font-size: .78rem
}
}