:root {
    --bg-main: #f5f7fb;
    --text-main: #0d1726;
    --text-muted: #607086;
    --nav-glass: rgba(255, 255, 255, 0.72);
    --nav-border: rgba(15, 23, 42, 0.08);
    --card-bg: rgba(255, 255, 255, 0.84);
    --card-border: rgba(15, 23, 42, 0.06);
    --card-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    --input-border: rgba(15, 23, 42, 0.14);
    --aurora-1: rgba(194, 230, 255, 0.55);
    --aurora-2: rgba(216, 239, 255, 0.6);
    --aurora-3: rgba(205, 242, 228, 0.45);
    --accent: #0d1726;
    --accent-glow: rgba(13, 23, 38, 0.18);
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Theme Dark Toggle */
body.theme-dark {
    --bg-main: #030712;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --nav-glass: rgba(3, 7, 18, 0.64);
    --nav-border: rgba(255, 255, 255, 0.05);
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.07);
    --card-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
    --input-border: rgba(255, 255, 255, 0.1);
    --aurora-1: rgba(45, 95, 255, 0.2);
    --aurora-2: rgba(52, 211, 153, 0.14);
    --aurora-3: rgba(80, 114, 255, 0.12);
    --accent: #f8fafc;
    --accent-glow: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    transition: background-color 0.8s ease, color 0.8s ease;
}

h1, h2, h3, .brand-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.03em;
}

.shell {
    width: min(1180px, calc(100% - 3rem));
    margin-inline: auto;
}

/* ==================
   GLOBAL AURORA
   ================== */
.aurora-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 45%),
        var(--bg-main);
    transition: background 0.8s ease;
}
.blob {
    position: absolute;
    width: 46vw; height: 46vw;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.42;
    animation: drift 24s infinite alternate ease-in-out;
    transition: background 1s ease;
}
.blob-1 { top: -14%; left: -6%; background: var(--aurora-1); animation-delay: 0s; }
.blob-2 { bottom: -18%; right: -8%; background: var(--aurora-2); animation-delay: -5s; }
.blob-3 { top: 24%; left: 42%; width: 28vw; height: 28vw; background: var(--aurora-3); animation-delay: -10s; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 10vh) scale(1.1); }
}

/* ==================
   NAVIGATION (EDGE-TO-EDGE)
   ================== */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: var(--nav-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--nav-border);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background 0.4s var(--transition), border-color 0.4s ease;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-inline: 3rem;
}
.brand-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 1.32rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    perspective: 700px;
}

.brand-flip {
    position: relative;
    display: grid;
    transform-style: preserve-3d;
    transition: transform 0.55s var(--transition);
}

.brand-face {
    grid-area: 1 / 1;
    backface-visibility: hidden;
    transform-origin: 50% 50%;
    white-space: nowrap;
}

.brand-front {
    transform: rotateX(0deg);
}

.brand-back {
    transform: rotateX(-90deg);
    color: var(--text-muted);
}

.brand-logo:hover .brand-flip,
.brand-logo:focus-visible .brand-flip {
    transform: rotateX(90deg);
}
.nav-links {
    display: flex;
    gap: 1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-item {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-item:hover { 
    color: var(--text-main); 
    background-color: rgba(15, 23, 42, 0.05);
}
.btn-talk {
    padding: 0.68rem 1.2rem;
    background: var(--text-main);
    color: var(--bg-main);
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.btn-talk:hover {
    opacity: 0.9;
}

/* ==================
   HERO
   ================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-inline: 4rem;
    gap: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: none;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 18% 35%, rgba(59, 130, 246, 0.14), transparent 28%),
        radial-gradient(circle at 72% 24%, rgba(34, 197, 94, 0.12), transparent 26%),
        radial-gradient(circle at 52% 82%, rgba(255, 255, 255, 0.08), transparent 24%);
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
.hero-section.hero-burst::before {
    animation: heroBurst 1s var(--transition);
}
.hero-copy {
    width: 100%;
    max-width: 1320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-kicker {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7486a0;
    margin-bottom: 0.9rem;
}
.pill-badge {
    display: inline-flex;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--nav-border);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.56);
    margin-bottom: 1.1rem;
}
.hero-headline {
    font-size: clamp(2.2rem, 5.1vw, 4.4rem);
    line-height: 1.06;
    padding-block: 0.08em 0.14em;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    max-width: 100%;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: visible;
}
.hero-typed {
    display: inline-block;
    min-height: 1.05em;
    padding-bottom: 0.12em;
    border-right: 2px solid rgba(13, 23, 38, 0.42);
    padding-right: 0.08em;
    animation: caretBlink 0.85s steps(1) infinite;
    overflow: visible;
}
.hero-typed.is-glass {
    border-right-color: transparent;
    color: #0d1726;
    background: linear-gradient(115deg, rgba(13, 23, 38, 1) 12%, rgba(13, 23, 38, 1) 38%, rgba(255, 255, 255, 0.78) 50%, rgba(13, 23, 38, 1) 62%, rgba(13, 23, 38, 1) 88%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGlass 7.5s linear infinite;
}
.hero-sub {
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    color: var(--text-muted);
    max-width: 34ch;
    line-height: 1.5;
    margin-top: 0.6rem;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    background: transparent;
}
.hero-sub-delayed {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.hero-sub-delayed.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}
.hero-celebrate {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.hero-burst-item {
    position: absolute;
    left: 50%;
    top: 72%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    color: #f06292;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 10px 24px rgba(240, 98, 146, 0.16);
}
.hero-section.hero-burst .hero-burst-item {
    animation: celebrateFloat 1s var(--transition) forwards;
}
.hero-burst-item.item-1 { --tx: -180px; --ty: -120px; animation-delay: 0.02s; }
.hero-burst-item.item-2 { --tx: -90px; --ty: -170px; animation-delay: 0.08s; color: #7c8cf8; }
.hero-burst-item.item-3 { --tx: 0px; --ty: -210px; animation-delay: 0.12s; }
.hero-burst-item.item-4 { --tx: 110px; --ty: -165px; animation-delay: 0.18s; color: #22c55e; }
.hero-burst-item.item-5 { --tx: 190px; --ty: -115px; animation-delay: 0.24s; }
.hero-love {
    background: linear-gradient(135deg, #0d1726, #1b3357);
    box-shadow: 0 18px 34px rgba(13, 23, 38, 0.16);
}
.hero-aside {
    display: none;
    position: relative;
    z-index: 1;
}
.hero-aside-card {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: 1.6rem;
}
.hero-aside-card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 22px;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 42%);
    pointer-events: none;
}
.hero-aside-label {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #75839a;
    margin-bottom: 1rem;
}
.hero-aside-text {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 1.3rem;
}
.hero-aside-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.hero-aside-tags span {
    display: inline-flex;
    padding: 0.46rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.55);
    color: #526275;
    font-size: 0.84rem;
    font-weight: 600;
}

/* ==================
   BELIEF
   ================== */
.belief-section {
    width: 100%;
    max-width: none;
    margin-bottom: 5rem;
}
.belief-wrap {
    width: 100%;
    padding: 5rem 0;
    background: linear-gradient(180deg, #06070a 0%, #0a0b0f 100%);
}
.belief-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 2rem;
}
.belief-copy {
    display: flex;
    flex-direction: column;
}
.belief-kicker {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.belief-title {
    font-size: clamp(2.4rem, 4.2vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #f8fafc;
    max-width: 10ch;
    margin-bottom: 1.3rem;
}
.belief-body {
    color: #99a4b6;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 34rem;
    margin-bottom: 2.1rem;
}
.belief-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: auto;
}
.belief-stat {
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.belief-stat strong {
    display: block;
    color: #f4d147;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 0.55rem;
}
.belief-stat span {
    color: #8d98aa;
    font-size: 0.95rem;
    line-height: 1.6;
}
.belief-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}
.belief-panel {
    min-height: 198px;
    padding: 1.7rem 1.65rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
}
.belief-panel-wide {
    grid-column: 1 / -1;
    min-height: 170px;
}
.belief-icon {
    display: inline-flex;
    margin-bottom: 1.15rem;
    color: #f4d147;
    font-size: 1.25rem;
    line-height: 1;
}
.belief-panel h3 {
    color: #f8fafc;
    font-size: 1.02rem;
    line-height: 1.3;
    margin-bottom: 0.7rem;
}
.belief-panel p {
    color: #8f99a8;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================
   ORBIT STRIP
   ================== */
.orbit-strip {
    width: 100%;
    max-width: 100%;
    padding: 0 0 1.4rem;
}
.orbit-strip-inner {
    width: calc(100% - 9.5rem);
    max-width: none;
    margin-inline: auto;
    min-height: 96px;
    padding: 1.15rem 1.35rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.orbit-strip-copy {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}
.orbit-strip-kicker {
    color: #7c8ca2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.orbit-strip-copy p {
    color: #5f6f86;
    font-size: 0.95rem;
    line-height: 1.5;
}
.orbit-strip-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.orbit-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.82rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(13, 23, 38, 0.04);
    color: #243348;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.orbit-pill:hover:not(:disabled) {
    transform: translateY(-1px);
    background: rgba(13, 23, 38, 0.06);
}
.orbit-pill:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.orbit-pill-active {
    background: linear-gradient(135deg, #0d1726, #233754);
    border-color: transparent;
    color: #f8fafc;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

/* ==================
   MAGNETIC PRIMARY BTN
   ================== */
.magnetic-wrap { display: inline-block; }
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    background: var(--accent);
    color: var(--bg-main);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    overflow: hidden;
    transition: transform 0.2s ease-out;
}
.btn-glow {
    position: absolute;
    width: 150%; height: 150%;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.btn-primary:hover .btn-glow { opacity: 1; }
.btn-text { position: relative; z-index: 2; pointer-events: none; }

/* ==================
   PRODUCTS STACK
   ================== */
.launch-section {
    --sanji-c1: #5fb88f;
    --sanji-c2: #08a457;
    --sanji-c3: #0b3a23;
    position: relative;
    width: calc(100% - 9.5rem);
    max-width: none;
    padding: 6rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sanji-c3);
    border-radius: 32px;
    overflow: hidden;
}
.launch-section::after {
    content: "";
    position: absolute;
    width: min(60vw, 860px);
    height: min(60vw, 860px);
    left: 50%;
    top: 1%;
    transform: translateX(-50%) rotate(-14deg);
    background: url("assets/sanji-logo.png") center / contain no-repeat;
    opacity: 0.065;
    filter: saturate(0.9) contrast(1.02);
    pointer-events: none;
    z-index: 0;
}
.launch-section::before {
    content: "";
    position: absolute;
    inset: 8% 4% auto;
    height: 360px;
    background:
        radial-gradient(circle at 50% 10%, rgba(95, 184, 143, 0.3), transparent 45%),
        radial-gradient(circle at 20% 90%, rgba(8, 164, 87, 0.18), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(11, 58, 35, 0.14), transparent 34%);
    filter: blur(28px);
    pointer-events: none;
}
.launch-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.launch-plus {
    position: absolute;
    display: block;
    color: rgba(8, 164, 87, 0.24);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1;
    user-select: none;
    animation: launchPlusSpin linear infinite;
    text-shadow: 0 8px 22px rgba(95, 184, 143, 0.22);
}
.launch-plus::before {
    content: "+";
}
.plus-1 {
    left: 3.5%;
    top: 24%;
    font-size: 2.2rem;
    opacity: 0.34;
    animation-duration: 22s;
}
.plus-2 {
    left: 7%;
    bottom: 23%;
    font-size: 3rem;
    opacity: 0.22;
    animation-duration: 30s;
}
.plus-3 {
    left: 12%;
    top: 58%;
    font-size: 1.5rem;
    opacity: 0.16;
    animation-duration: 26s;
}
.plus-4 {
    right: 5%;
    top: 20%;
    font-size: 3.4rem;
    opacity: 0.18;
    animation-duration: 34s;
}
.plus-5 {
    right: 9%;
    bottom: 26%;
    font-size: 2rem;
    opacity: 0.3;
    animation-duration: 24s;
}
.plus-6 {
    right: 14%;
    top: 64%;
    font-size: 2.6rem;
    opacity: 0.14;
    animation-duration: 28s;
}
.launch-intro {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 24rem;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    background:
        linear-gradient(180deg, rgba(245, 247, 251, 0.95), rgba(245, 247, 251, 0.9)),
        radial-gradient(circle at 50% 24%, rgba(95, 184, 143, 0.26), transparent 38%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.launch-intro p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(13, 23, 38, 0.9);
}
.launch-shell {
    width: min(100%, 1240px);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.launch-kicker {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(214, 241, 228, 0.62);
}
.launch-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    color: #f6fbf8;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: min(100%, 15ch);
}
.launch-subtitle {
    max-width: 36rem;
    text-align: center;
    color: rgba(221, 239, 229, 0.8);
    font-size: 1.06rem;
    line-height: 1.75;
}
.launch-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 0.35rem;
}
.launch-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.92rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(8, 164, 87, 0.14);
    background: rgba(255, 255, 255, 0.12);
    color: #eff8f3;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(4, 22, 14, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.launch-action:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 34px rgba(4, 22, 14, 0.22);
}
.launch-action-primary {
    background: linear-gradient(135deg, var(--sanji-c2), var(--sanji-c1));
    color: #f8fafc;
    border-color: transparent;
    box-shadow: 0 18px 30px rgba(8, 164, 87, 0.18);
}
.launch-action-primary:hover {
    background: linear-gradient(135deg, #0bb15f, #6bc29a);
}
.launch-track {
    width: 100%;
    margin-top: 2rem;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 34vw);
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 2rem 1rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    cursor: ew-resize;
}
.launch-track::-webkit-scrollbar {
    display: none;
}
.launch-card {
    min-height: 320px;
    padding: 1.6rem;
    border-radius: 30px;
    scroll-snap-align: start;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(246, 252, 248, 0.88)),
        radial-gradient(circle at top right, rgba(95, 184, 143, 0.16), transparent 35%);
    border: 1px solid rgba(8, 164, 87, 0.24);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s var(--transition), border-color 0.3s ease, box-shadow 0.3s ease;
}
.launch-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 164, 87, 0.38);
    box-shadow: 0 18px 34px rgba(8, 164, 87, 0.08);
}
.launch-card-index {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    background: rgba(8, 164, 87, 0.08);
    color: #4f8268;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.launch-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #123322;
}
.launch-card p {
    color: #527061;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 20rem;
}
.launch-scroll-indicator {
    width: 100%;
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding-inline: 2rem;
}
.launch-scroll-label {
    color: rgba(235, 247, 240, 0.58);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.launch-scroll-line {
    position: relative;
    width: min(100%, 760px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}
.launch-scroll-line::before,
.launch-scroll-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
    border-right: 1px solid rgba(255, 255, 255, 0.42);
    transform: translateY(-50%) rotate(45deg);
}
.launch-scroll-line::before {
    left: 12px;
    transform: translateY(-50%) rotate(-135deg);
}
.launch-scroll-line::after {
    right: 12px;
}
.launch-section.is-live .launch-intro {
    animation: launchIntro 1.7s var(--transition) forwards;
}
.launch-section.is-live .launch-shell {
    animation: launchContent 1s var(--transition) 0.95s forwards;
}

.product-slip {
    width: calc(100% - 9.5rem);
    max-width: none;
    padding: 1.5rem 0 2.25rem;
}
.product-slip-card {
    min-height: 150px;
    border-radius: 28px;
    padding: 1.5rem 1.75rem;
    background: #0f83a0;
    box-shadow: 0 18px 34px rgba(15, 131, 160, 0.16);
    display: flex;
    align-items: center;
}
.product-slip-copy {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.product-slip-kicker {
    color: rgba(235, 247, 251, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.product-slip-text {
    color: rgba(241, 249, 252, 0.84);
    font-size: 1.08rem;
    line-height: 1.6;
    max-width: 32rem;
}
/* ==================
   MANIFESTO (Dark Mode Trigger)
   ================== */
.manifesto-section {
    padding: 7rem 0 6.5rem;
    position: relative;
}
.manifesto-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}
.manifesto-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}
.manifesto-wrap::before {
    content: "";
    position: absolute;
    inset: -8% -2% auto auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 164, 87, 0.15), transparent 65%);
    filter: blur(24px);
    pointer-events: none;
}
.manifesto-copy {
    max-width: 46rem;
}
.manifesto-kicker {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #8fa0b8;
    margin-bottom: 1rem;
    font-weight: 700;
}
.manifesto-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.18;
    letter-spacing: -0.035em;
    color: #f8fafc;
    max-width: 16ch;
}
.manifesto-body {
    margin-top: 1rem;
    max-width: 37rem;
    color: #8fa0b8;
    font-size: 0.98rem;
    line-height: 1.75;
}
.manifesto-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.manifesto-panel {
    min-height: 180px;
    padding: 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.manifesto-panel-featured {
    grid-column: 1 / -1;
    min-height: 200px;
    background:
        linear-gradient(145deg, rgba(8, 164, 87, 0.1), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.02);
}
.manifesto-panel-label {
    display: inline-flex;
    margin-bottom: 1.1rem;
    color: #6cc69e;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.manifesto-panel h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.18rem;
    line-height: 1.22;
    letter-spacing: -0.04em;
    color: #f8fafc;
    max-width: 18ch;
}
.manifesto-panel p {
    margin-top: 0.75rem;
    color: #8fa0b8;
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 30ch;
}

/* ==================
   CONTACT
   ================== */
.contact-section {
    padding: 6rem 0 0;
    position: relative;
}
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.contact-inner {
    max-width: none;
    margin: 0 auto;
}
.contact-section.shell,
.global-footer.shell {
    width: 100%;
    max-width: none;
    margin-inline: 0;
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
    gap: 3rem;
    align-items: start;
    background: linear-gradient(135deg, #5b3b2a 0%, #6a4330 18%, #7b4d37 48%, #8d5a40 100%);
    border-radius: 0;
    width: 100%;
    margin: 0 auto;
    padding: 3.6rem 5.25rem 3.4rem;
}
.contact-copy {
    max-width: 36rem;
    padding: 0;
}
.contact-kicker {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 244, 232, 0.82);
    margin-bottom: 1.15rem;
    font-weight: 700;
}
.contact-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    max-width: 11ch;
    color: #fff7ef;
    font-weight: 700;
}
.contact-body {
    color: rgba(255, 245, 235, 0.84);
    font-size: 1.04rem;
    line-height: 1.7;
    max-width: 34rem;
    margin-bottom: 2.8rem;
}
.contact-card {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
}
.contact-field-wide {
    grid-column: 1 / -1;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.contact-field label {
    color: rgba(255, 244, 232, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-input {
    width: 100%;
    min-height: 58px;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 245, 235, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff7ef;
    font: inherit;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-input::placeholder {
    color: rgba(255, 245, 235, 0.5);
}
.contact-input:focus {
    outline: none;
    border-color: rgba(255, 245, 235, 0.3);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(255, 244, 232, 0.05);
}
.contact-textarea {
    min-height: 146px;
    resize: vertical;
}
.contact-meta {
    display: grid;
    gap: 0;
    max-width: 34rem;
}
.contact-meta-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255, 245, 235, 0.13);
}
.contact-meta-row:last-child {
    border-bottom: 1px solid rgba(255, 245, 235, 0.13);
}
.contact-meta-label {
    color: rgba(255, 244, 232, 0.55);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.contact-meta-value {
    color: #fff7ef;
    font-size: 0.98rem;
    line-height: 1.5;
    font-weight: 600;
}
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 226px;
    min-height: 62px;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: 0;
    background: #fff7ef;
    color: #5b3b2a;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}
.contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

/* ==================
   FOOTER
   ================== */
.global-footer {
    padding: 0;
    background: #0a0a0d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.66);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 5.25rem;
}
.footer-brand {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: center;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 0.82rem;
}
.footer-links a:hover { color: rgba(255, 255, 255, 0.9); }


/* ==================
   UTILITIES & ANIMATIONS
   ================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--transition);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--transition) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes caretBlink {
    0%, 45% { border-right-color: rgba(13, 23, 38, 0.42); }
    55%, 100% { border-right-color: transparent; }
}

@keyframes heroBurst {
    0% {
        opacity: 0.55;
        transform: scale(1);
        filter: saturate(1);
    }
    35% {
        opacity: 0.95;
        transform: scale(1.06);
        filter: saturate(1.35);
    }
    100% {
        opacity: 0.55;
        transform: scale(1);
        filter: saturate(1);
    }
}

@keyframes heroGlass {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes launchIntro {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }
    18% {
        opacity: 1;
        transform: scale(1);
    }
    70% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.02);
    }
}

@keyframes launchContent {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes launchPlusSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes celebrateFloat {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    18% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1.08);
    }
}

@media (max-width: 900px) {
    .nav-links { position: static; transform: none; display: none; }
    .hero-section {
        padding-top: 100px;
        padding-inline: 1.5rem;
        min-height: auto;
        padding-bottom: 4rem;
    }
    .hero-copy {
        max-width: none;
    }
    .hero-headline {
        max-width: 11ch;
        white-space: normal;
    }
    .vision-section {
        padding: 2rem 0 4.5rem;
        width: calc(100% - 2rem);
    }
    .vision-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .vision-card {
        min-height: 132px;
        padding: 1.35rem;
        gap: 1rem;
        border-radius: 24px;
    }
    .vision-card p {
        max-width: none;
        margin-top: 0;
    }
    .products-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .products-rail {
        position: static;
        height: auto;
        justify-content: flex-start;
    }
    .products-rail span {
        transform: none;
    }
    .products-flow {
        gap: 1rem;
    }
    .launch-section {
        width: calc(100% - 2rem);
        min-height: auto;
        padding: 5rem 0 4rem;
        border-radius: 24px;
    }
    .product-slip {
        width: calc(100% - 2rem);
        padding: 1rem 0 1.5rem;
    }
    .product-slip-card {
        min-height: 132px;
        padding: 1.2rem 1.25rem;
        border-radius: 22px;
    }
    .manifesto-section {
        padding: 6rem 0 5rem;
    }
    .manifesto-wrap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .manifesto-title {
        max-width: none;
    }
    .manifesto-panels {
        grid-template-columns: 1fr;
    }
    .manifesto-panel,
    .manifesto-panel-featured {
        min-height: auto;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        width: 100%;
        padding: 2rem 1.25rem 2.2rem;
    }
    .contact-section.shell,
    .global-footer.shell {
        width: 100%;
    }
    .contact-copy {
        max-width: none;
        padding: 0;
    }
    .contact-card {
        padding: 0;
        border-radius: 0;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-title {
        max-width: 11ch;
    }
    .contact-body {
        margin-bottom: 2rem;
    }
    .contact-meta-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 1rem 0;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.25rem;
    }
    .footer-copy {
        text-align: left;
    }
    .orbit-strip {
        padding: 0 0 1rem;
    }
    .orbit-strip-inner {
        width: calc(100% - 2rem);
        min-height: auto;
        padding: 1rem 1rem;
        border-radius: 22px;
        flex-direction: column;
        align-items: flex-start;
    }
    .orbit-strip-nav {
        width: 100%;
        flex-wrap: wrap;
    }
    .launch-section::after {
        width: min(80vw, 500px);
        height: min(80vw, 500px);
        left: 50%;
        top: 3%;
        bottom: auto;
        transform: translateX(-50%) rotate(-12deg);
        opacity: 0.035;
    }
    .launch-intro p {
        font-size: clamp(1.8rem, 7vw, 3rem);
        text-align: center;
        max-width: 12ch;
    }
    .launch-intro {
        padding-top: 18rem;
    }
    .launch-plus {
        transform: scale(0.8);
    }
    .launch-title {
        font-size: clamp(3rem, 12vw, 4.8rem);
    }
    .launch-subtitle {
        font-size: 0.98rem;
        max-width: 30rem;
    }
    .launch-actions {
        gap: 0.7rem;
    }
    .launch-track {
        grid-auto-columns: minmax(260px, 82vw);
        margin-top: 1.35rem;
        padding-inline: 1rem;
    }
    .launch-scroll-indicator {
        padding-inline: 1rem;
    }
    .launch-scroll-line {
        width: min(100%, 440px);
    }
    .plus-1 { left: 2%; top: 20%; }
    .plus-2 { left: 6%; bottom: 16%; }
    .plus-4 { right: 2%; top: 18%; }
    .plus-5 { right: 5%; bottom: 20%; }
    .nav-links { display: none; }
    .shell { width: calc(100% - 2rem); }
    .product-presentation { width: calc(100% - 2rem); }
}

@media (max-width: 640px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }
    .vision-card {
        border-radius: 22px;
        min-height: 118px;
    }
}

@media (max-width: 480px) {
    .vision-card {
        padding: 1rem;
    }
}





