:root {
    --ink: #1a1423;
    --muted: #5c5368;
    --paper: #fff7ef;
    --cream: #ffe8d6;
    --coral: #ff6b4a;
    --sun: #ffb020;
    --mint: #2ec4b6;
    --blue: #5b8cff;
    --violet: #8b6cff;
    --glass: rgba(255, 255, 255, 0.62);
    --stroke: rgba(26, 20, 35, 0.08);
    --shadow: 0 18px 50px rgba(26, 20, 35, 0.1);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --max: 1160px;
    --radius: 28px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(900px 500px at 10% -10%, rgba(255, 107, 74, 0.28), transparent 60%),
        radial-gradient(700px 480px at 90% 5%, rgba(91, 140, 255, 0.22), transparent 55%),
        radial-gradient(600px 420px at 50% 110%, rgba(46, 196, 182, 0.2), transparent 50%),
        var(--paper);
    animation: meshShift 16s ease-in-out infinite alternate;
}

@keyframes meshShift {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(18deg); }
}

#spark {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    z-index: 50;
    background: linear-gradient(90deg, var(--coral), var(--sun), var(--mint));
    box-shadow: 0 0 16px rgba(255, 107, 74, 0.45);
}

.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(255, 247, 239, 0.75);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.is-solid {
    border-bottom-color: var(--stroke);
    background: rgba(255, 247, 239, 0.9);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: inherit;
}

.brand-orb {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: conic-gradient(from 120deg, var(--coral), var(--sun), var(--mint), var(--blue), var(--coral));
    animation: spinSlow 8s linear infinite;
    box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

.brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.7rem;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 1.1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn svg { width: 18px; height: 18px; }

.btn-wa {
    background: #1f9d58;
    color: #fff;
    box-shadow: 0 10px 24px rgba(31, 157, 88, 0.28);
}

.btn-primary {
    background: linear-gradient(120deg, var(--coral), #ff8f4a);
    color: #fff;
    box-shadow: 0 14px 34px rgba(255, 107, 74, 0.35);
}

.btn-soft {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border: 1px solid var(--stroke);
}

.btn-xl {
    padding: 1.05rem 1.6rem;
    font-size: 1.05rem;
}

.btn:hover { transform: translateY(-2px) scale(1.02); }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: #fff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: 0.25s ease;
}

.nav-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2.5rem 1.25rem 2rem;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
    grid-template-areas: "stage copy";
    gap: 1.5rem 2.5rem;
    align-items: center;
    position: relative;
    min-height: calc(100vh - 78px);
    min-height: calc(100dvh - 78px);
}

.hero-glow,
.floaters {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    width: auto;
    height: auto;
    left: auto;
    top: auto;
    inset: 12% 45% 25% 0;
    background: radial-gradient(circle, rgba(255, 176, 32, 0.35), transparent 70%);
    filter: blur(20px);
    animation: breathe 5s ease-in-out infinite;
}

.hero-stage {
    grid-area: stage;
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 0;
    align-self: center;
}

.hero-copy {
    grid-area: copy;
    position: relative;
    z-index: 1;
    align-self: center;
}

@keyframes breathe {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.08); }
}

.floaters .floater {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.55;
    animation: floatY 7s ease-in-out infinite;
}

.f1 { width: 70px; height: 70px; background: var(--coral); top: 18%; left: 18%; animation-delay: 0s; }
.f2 { width: 42px; height: 42px; background: var(--mint); top: 62%; left: 8%; animation-delay: 1.2s; }
.f3 { width: 28px; height: 28px; background: var(--blue); top: 22%; right: 12%; animation-delay: 2s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.pill-live {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(46, 196, 182, 0.15);
    color: #0f766e;
    font-weight: 700;
    font-size: 0.82rem;
}

.pill-live.light {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    animation: ping 1.6s ease infinite;
}

@keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 196, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

.hero h1 {
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

.brand-line {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 9vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, var(--ink) 20%, var(--coral) 70%, var(--sun));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rotate-line {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
}

.word-rotate {
    display: inline-block;
    min-width: 5.2ch;
    color: var(--coral);
    border-bottom: 3px solid rgba(255, 107, 74, 0.35);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.word-rotate.is-out {
    opacity: 0;
    transform: translateY(10px);
}

.lead {
    margin: 1.2rem 0 0;
    max-width: 34rem;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.orbit {
    position: relative;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1) 55%, transparent 70%);
    border: 1px dashed rgba(26, 20, 35, 0.12);
    animation: orbitSpin 28s linear infinite;
}

.orbit-core {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    display: grid;
    place-content: center;
    text-align: center;
    animation: orbitSpin 28s linear infinite reverse;
    z-index: 2;
}

.orbit-core strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.orbit-core small {
    color: var(--muted);
    font-size: 0.75rem;
}

.sat {
    position: absolute;
    width: 92px;
    padding: 0.65rem 0.4rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    animation: orbitSpin 28s linear infinite reverse;
}

.sat img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.sat-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.s1 { top: 6%; left: 50%; transform: translateX(-50%); color: var(--coral); }
.s1 .sat-ico { background: linear-gradient(145deg, #ff8a6b, #ff6b4a); }
.s2 { top: 50%; right: 2%; transform: translateY(-50%); color: #d97706; }
.s2 .sat-ico { background: linear-gradient(145deg, #ffd27a, #ffb020); }
.s3 { bottom: 6%; left: 50%; transform: translateX(-50%); color: #0f766e; }
.s3 .sat-ico { background: linear-gradient(145deg, #5eead4, #2ec4b6); }
.s4 { top: 50%; left: 2%; transform: translateY(-50%); color: #3b6fd9; }
.s4 .sat-ico { background: linear-gradient(145deg, #8eb6ff, #5b8cff); }

@keyframes orbitSpin {
    to { transform: rotate(360deg); }
}

.s1 { transform-origin: 50% 180px; }
/* Position sats on circle without fighting reverse spin - use fixed positions instead */

.orbit {
    animation: none;
}

.orbit-core {
    animation: pulseCore 3.2s ease-in-out infinite;
}

@keyframes pulseCore {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.sat {
    animation: bob 3.6s ease-in-out infinite;
}

.s1 { animation-delay: 0s; }
.s2 { animation-delay: 0.4s; }
.s3 { animation-delay: 0.8s; }
.s4 { animation-delay: 1.2s; }

@keyframes bob {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -10px); }
}

.s1 { transform: translateX(-50%); }
.s2 { transform: translateY(-50%); }
.s3 { transform: translateX(-50%); }
.s4 { transform: translateY(-50%); }

.s1 { animation-name: bobX; }
.s2 { animation-name: bobY; }
.s3 { animation-name: bobX; }
.s4 { animation-name: bobY; }

@keyframes bobX {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes bobY {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(0) translateY(-12px) translateY(calc(-50% + 0px)); }
}

/* Fix sat positioning animations cleanly */
.s1 { top: 4%; left: 50%; animation: floatSat1 4s ease-in-out infinite; }
.s2 { top: 50%; right: 0; left: auto; animation: floatSat2 4.4s ease-in-out infinite; }
.s3 { bottom: 4%; top: auto; left: 50%; animation: floatSat3 3.8s ease-in-out infinite; }
.s4 { top: 50%; left: 0; animation: floatSat4 4.2s ease-in-out infinite; }

@keyframes floatSat1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-14px); }
}
@keyframes floatSat2 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-8px); }
}
@keyframes floatSat3 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}
@keyframes floatSat4 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(8px); }
}

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.45);
    padding: 0.9rem 0;
    margin-top: 1rem;
}

.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    animation: marquee 28s linear infinite;
}

.marquee-track span:nth-child(odd) { color: var(--ink); }

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 5rem 1.25rem;
}

.section-intro {
    max-width: 620px;
    margin-bottom: 2rem;
}

.section-intro h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: -0.02em;
}

.section-intro p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.glass {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.status-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.status-chip {
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: 0.25s ease;
}

.status-chip .ico {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.status-chip.is-active {
    color: #fff;
    border-color: transparent;
    background: var(--ink);
    transform: translateY(-2px);
}

.status-stage {
    border-radius: var(--radius);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    align-items: center;
    transition: background 0.5s ease;
}

.status-visual {
    display: grid;
    place-items: center;
    min-height: 160px;
}

.cake {
    position: relative;
    width: 110px;
    height: 110px;
    display: grid;
    align-content: end;
    gap: 4px;
}

.layer {
    display: block;
    height: 22px;
    border-radius: 8px;
    transform-origin: center bottom;
    animation: layerPop 0.55s ease both;
}

.l1 { background: #f4c7b0; width: 100%; }
.l2 { background: #ff8f6b; width: 86%; margin: 0 auto; animation-delay: 0.08s; }
.l3 { background: #ffd27a; width: 70%; margin: 0 auto; animation-delay: 0.16s; }

.cherry {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 -10px 0 -6px #2f9e44;
    animation: cherryBounce 0.7s ease both 0.2s;
}

@keyframes layerPop {
    from { transform: scaleX(0.4) translateY(12px); opacity: 0; }
    to { transform: scaleX(1) translateY(0); opacity: 1; }
}

@keyframes cherryBounce {
    from { transform: translateY(-20px) scale(0.4); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.status-kicker {
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--coral);
}

.status-copy h3 {
    margin: 0.35rem 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.status-copy p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.journey-card {
    border-radius: var(--radius);
    padding: 1.35rem;
    background: #fff;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 55%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 35%, transparent), transparent 70%);
    transition: transform 0.4s ease;
}

.journey-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: 0 24px 50px rgba(26, 20, 35, 0.14);
}

.journey-card:hover::before { transform: translateY(-18px); }

.j-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 55%, white), var(--accent));
    margin-bottom: 1rem;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.j-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.j-icon svg { width: 40px; height: 40px; }

.journey-card h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    position: relative;
}

.journey-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    position: relative;
    font-size: 0.95rem;
}

.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.bento-item {
    border-radius: var(--radius);
    padding: 1.35rem;
    grid-column: span 2;
    transition: transform 0.3s ease;
}

.bento-item:hover { transform: translateY(-4px); }

.bento-item.wide {
    grid-column: span 4;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.bento-item.tall {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-ico {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 0.85rem;
}

.bento-ico svg { width: 28px; height: 28px; }
.bento-item.wide .bento-ico { margin: 0; }

.bento-ico.coral { background: rgba(255, 107, 74, 0.15); color: var(--coral); }
.bento-ico.mint { background: rgba(46, 196, 182, 0.15); color: var(--mint); }
.bento-ico.sun { background: rgba(255, 176, 32, 0.18); color: #d97706; }
.bento-ico.blue { background: rgba(91, 140, 255, 0.15); color: var(--blue); }
.bento-ico.violet { background: rgba(139, 108, 255, 0.15); color: var(--violet); }

.bento-item h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.bento-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.mini-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 84px;
}

.mini-map span {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--coral), var(--sun));
    animation: blinkMap 2.4s ease-in-out infinite;
}

.mini-map span:nth-child(2) { animation-delay: 0.2s; background: linear-gradient(135deg, var(--sun), var(--mint)); }
.mini-map span:nth-child(3) { animation-delay: 0.4s; background: linear-gradient(135deg, var(--mint), var(--blue)); }
.mini-map span:nth-child(4) { animation-delay: 0.6s; background: linear-gradient(135deg, var(--blue), var(--violet)); }
.mini-map span:nth-child(5) { animation-delay: 0.8s; background: linear-gradient(135deg, var(--violet), var(--coral)); }
.mini-map span:nth-child(6) { animation-delay: 1s; background: linear-gradient(135deg, var(--mint), var(--coral)); }

@keyframes blinkMap {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.12); opacity: 1; }
}

.spark-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.spark-list li {
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    font-size: 0.92rem;
}

.stats-band { padding-top: 1rem; }

.stats {
    border-radius: var(--radius);
    padding: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--coral);
    line-height: 1;
}

.stats span {
    display: block;
    margin-top: 0.4rem;
    color: var(--muted);
    font-weight: 600;
}

.contact-card {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #1a1423 0%, #3b1d38 45%, #ff6b4a 130%);
    box-shadow: 0 30px 60px rgba(26, 20, 35, 0.25);
}

.contact-burst {
    position: absolute;
    width: 280px;
    height: 280px;
    right: -60px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 176, 32, 0.45), transparent 70%);
    animation: breathe 4s ease-in-out infinite;
}

.contact-card h2 {
    position: relative;
    margin: 0.6rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
}

.contact-card > p:not(.pill-live) {
    position: relative;
    margin: 1rem auto 1.6rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.contact-card .btn {
    position: relative;
}

.footer {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.5rem 1.25rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer strong {
    font-family: var(--font-display);
    color: var(--ink);
}

.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "stage"
            "copy";
        min-height: auto;
        padding-top: 1.5rem;
        gap: 1.25rem;
    }

    .hero-stage {
        min-height: 320px;
        margin-bottom: 0.25rem;
    }

    .journey { grid-template-columns: 1fr 1fr; }

    .bento-item,
    .bento-item.wide,
    .bento-item.tall {
        grid-column: span 6;
        grid-row: auto;
    }

    .bento-item.wide {
        grid-template-columns: auto 1fr;
    }

    .mini-map { display: none; }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.4rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.7rem;
        background: #fff;
        border: 1px solid var(--stroke);
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 0.7rem 0.8rem; }
    .nav-inner .btn-wa { display: none; }
    .nav-toggle { display: inline-block; margin-left: auto; }
    .brand small { display: none; }

    .journey,
    .stats,
    .status-stage {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .bg-mesh,
    .brand-orb,
    .hero-glow,
    .floater,
    .marquee-track,
    .sat,
    .orbit-core,
    .pulse-dot,
    .mini-map span,
    .contact-burst { animation: none !important; }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
