/* ===== Cosmic Premium Landing — messagetostars.com ===== */

:root {
    --space-0: #050816;
    --space-1: #0B1020;
    --space-2: #0F1530;
    --space-3: #141B3A;
    --nebula-blue: #4F7BFF;
    --nebula-violet: #8B5CF6;
    --nebula-magenta: #C084FC;
    --gold: #E9C46A;
    --gold-bright: #F5D77A;
    --gold-deep: #B68B3A;
    --ink: #E6EAF5;
    --ink-soft: #A9B0C7;
    --ink-mute: #6F779B;
    --ring: rgba(139, 92, 246, 0.35);
    --glow-gold: 0 0 28px rgba(233, 196, 106, 0.45), 0 0 64px rgba(233, 196, 106, 0.18);
    --glow-violet: 0 0 28px rgba(139, 92, 246, 0.45), 0 0 64px rgba(139, 92, 246, 0.18);
    --shadow-card: 0 30px 80px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--space-0);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.005em;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(79, 123, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 30%, rgba(139, 92, 246, 0.12), transparent 65%),
        radial-gradient(ellipse 60% 40% at 0% 70%, rgba(192, 132, 252, 0.08), transparent 65%);
    background-attachment: fixed;
}

.font-display {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.font-mono {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---- Selection ---- */
::selection { background: rgba(233, 196, 106, 0.32); color: #fff; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--space-0); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1a2244, #0e1430);
    border-radius: 8px;
    border: 2px solid var(--space-0);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #243066, #131a3a); }

/* ===== STARS CANVAS ===== */
.stars-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: rgba(5, 8, 22, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.site-header.is-scrolled {
    background: rgba(5, 8, 22, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}
.site-logo__mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 32px rgba(79, 123, 255, 0.35);
}
.site-logo__mark img { width: 100%; height: 100%; object-fit: cover; }
.site-logo__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: linear-gradient(180deg, #fff 0%, #C7CFEB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.site-nav {
    display: none;
    gap: 28px;
    align-items: center;
}
.site-nav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}
.site-nav a:hover { color: var(--gold-bright); }
.site-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.4s ease;
}
.site-nav a:hover::after { width: 100%; }
@media (min-width: 860px) {
    .site-nav { display: inline-flex; }
}

/* Mobile menu toggle */
.mobile-menu-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    margin-left: 8px;
}
.mobile-menu-btn:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(233, 196, 106, 0.4); color: var(--gold-bright); }
.mobile-menu-btn svg { width: 18px; height: 18px; }
@media (min-width: 860px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(5, 8, 22, 0.96);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px 28px;
    z-index: 55;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-menu a {
    display: block;
    padding: 14px 4px;
    color: var(--ink);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease, padding 0.3s ease;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--gold-bright); padding-left: 8px; }
@media (min-width: 860px) { .mobile-menu { display: none; } }

.lang-switch {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.03);
}
.lang-switch a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 999px;
    transition: all 0.3s ease;
}
.lang-switch a.is-active {
    color: var(--space-0);
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    box-shadow: 0 0 18px rgba(233, 196, 106, 0.4);
}
.lang-switch a:not(.is-active):hover { color: #fff; background: rgba(255, 255, 255, 0.06); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.45s ease,
                background-color 0.45s ease,
                color 0.45s ease,
                border-color 0.45s ease;
    border: 1px solid transparent;
    will-change: transform;
    position: relative;
    overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
    color: #1A1305;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 10px 32px -8px rgba(233, 196, 106, 0.55),
        0 0 40px rgba(233, 196, 106, 0.15);
}
.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.9s ease;
}
.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 14px 40px -6px rgba(233, 196, 106, 0.7),
        0 0 64px rgba(233, 196, 106, 0.25);
}

.btn-ghost {
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    border-color: rgba(233, 196, 106, 0.55);
    color: var(--gold-bright);
    background: rgba(233, 196, 106, 0.04);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 60%, rgba(79, 123, 255, 0.20), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(192, 132, 252, 0.12), transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 220px;
    background: linear-gradient(180deg, transparent 0%, var(--space-0) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 5;
    max-width: 1040px;
    margin: 0 auto;
}
.hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(233, 196, 106, 0.25);
    background: rgba(233, 196, 106, 0.04);
    color: var(--gold-bright);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.hero__tagline .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 12px var(--gold-bright);
    animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.8); }
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    background: linear-gradient(180deg, #fff 0%, #D6DCF2 60%, #9AA3C7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.04);
}
.hero__title em {
    font-style: italic;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__subtitle {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    color: var(--ink-soft);
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
}

.hero__note {
    margin-top: 8px;
    color: var(--ink-mute);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--ink-mute);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero__scroll .line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, transparent, var(--ink-soft));
    animation: scroll-line 2.4s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scroll-line {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Floating cosmic particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    filter: blur(0.5px);
    opacity: 0.55;
}
.particle--gold {
    background: radial-gradient(circle, var(--gold-bright) 0%, rgba(233, 196, 106, 0) 70%);
}
.particle--blue {
    background: radial-gradient(circle, #6E8BFF 0%, rgba(110, 139, 255, 0) 70%);
}
.particle--violet {
    background: radial-gradient(circle, var(--nebula-magenta) 0%, rgba(192, 132, 252, 0) 70%);
}
@keyframes float-y {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.45; }
    50% { transform: translateY(-30px) translateX(8px); opacity: 0.8; }
}

/* ===== SECTIONS — common ===== */
.section {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
}
.section__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section__eyebrow::before, .section__eyebrow::after {
    content: '';
    width: 26px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0 0 18px;
}
.section__subtitle {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 720px;
}
.section__header { text-align: center; margin: 0 auto 72px; max-width: 820px; }
.section__header .section__eyebrow { justify-content: center; }
.section__header .section__subtitle { margin-left: auto; margin-right: auto; }

/* ===== HOW IT WORKS ===== */
.steps {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 800px) {
    .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.step-card {
    position: relative;
    padding: 40px 32px 36px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.6s ease, box-shadow 0.6s ease;
}
.step-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(233, 196, 106, 0.6), transparent 30%, transparent 70%, rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.6s ease;
    pointer-events: none;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.1); box-shadow: var(--shadow-card); }
.step-card:hover::before { opacity: 1; }
.step-card .glow {
    position: absolute;
    width: 220px; height: 220px;
    border-radius: 50%;
    top: -80px; right: -80px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
    filter: blur(20px);
    opacity: 0; transition: opacity 0.6s ease;
}
.step-card:hover .glow { opacity: 1; }
.step-card__icon {
    width: 64px; height: 64px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(233, 196, 106, 0.18), rgba(233, 196, 106, 0.04));
    border: 1px solid rgba(233, 196, 106, 0.3);
    color: var(--gold-bright);
    margin-bottom: 24px;
    box-shadow: inset 0 0 20px rgba(233, 196, 106, 0.12);
}
.step-card__icon svg { width: 28px; height: 28px; }
.step-card__num {
    position: absolute; top: 28px; right: 32px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 38px;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: -0.02em;
}
.step-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    margin: 0 0 10px;
    color: #fff;
}
.step-card__desc { color: var(--ink-soft); line-height: 1.6; font-size: 0.96rem; }

/* ===== COSMIC JOURNEY (timeline) ===== */
.journey { position: relative; }
.journey-stage {
    position: relative;
    min-height: 360px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(ellipse 60% 50% at 30% 0%, rgba(79, 123, 255, 0.16), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    overflow: hidden;
    margin-bottom: 36px;
}
.journey-rail {
    position: relative;
    display: flex;
    gap: 28px;
    padding: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.journey-rail::-webkit-scrollbar { height: 6px; }
.journey-rail::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.03); border-radius: 8px; }
.journey-rail::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); border-radius: 8px; }

.journey-orbit {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(233, 196, 106, 0.05) 10%,
        rgba(233, 196, 106, 0.4) 50%,
        rgba(233, 196, 106, 0.05) 90%,
        transparent 100%);
    transform: translateY(-1px);
    pointer-events: none;
}
.journey-orbit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.6), transparent);
    animation: orbit-flow 6s linear infinite;
    width: 30%;
}
@keyframes orbit-flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

.milestone {
    position: relative;
    flex: 0 0 220px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 6px;
    z-index: 2;
}
.milestone__planet {
    width: 120px; height: 120px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 22px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.milestone:hover .milestone__planet { transform: scale(1.06); }
.milestone__planet img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(79, 123, 255, 0.4)) drop-shadow(0 0 48px rgba(139, 92, 246, 0.25));
}
.milestone__planet--small img { filter: drop-shadow(0 0 18px rgba(233, 196, 106, 0.35)); }
.milestone__planet::before {
    content: '';
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 1px dashed rgba(233, 196, 106, 0.22);
    animation: spin-slow 60s linear infinite;
}
.milestone__planet::after {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    top: -2px; left: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 10px var(--gold-bright);
    transform-origin: 50% 82px;
    animation: spin-slow 60s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.milestone__label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: 0.01em;
}
.milestone__time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.milestone__dot {
    position: absolute;
    bottom: -14px; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 16px var(--gold-bright), 0 0 32px rgba(233, 196, 106, 0.5);
}

.journey-hint {
    text-align: center;
    color: var(--ink-mute);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

/* ===== GIFT PACKAGE ===== */
.gifts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 700px) { .gifts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gifts { grid-template-columns: repeat(4, 1fr); } }

.gift-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 3 / 4;
    cursor: default;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}
.gift-card:hover { transform: translateY(-8px); border-color: rgba(233, 196, 106, 0.3); box-shadow: var(--shadow-card), 0 0 0 1px rgba(233, 196, 106, 0.15); }
.gift-card__visual {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79, 123, 255, 0.18), transparent 60%),
        linear-gradient(180deg, #0E1430 0%, #050816 100%);
}
.gift-card__visual img {
    max-width: 78%; max-height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gift-card:hover .gift-card__visual img { transform: translateY(-6px) scale(1.04); }

.gift-card__visual--qr {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192, 132, 252, 0.18), transparent 60%),
        linear-gradient(180deg, #15103a 0%, #050816 100%);
}
.gift-card__visual--map {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(233, 196, 106, 0.14), transparent 60%),
        linear-gradient(180deg, #0E1430 0%, #050816 100%);
}

.gift-card__qr {
    width: 56%; aspect-ratio: 1; border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        repeating-conic-gradient(#0b0f23 0% 25%, #1a2348 0% 50%) 0 0 / 12px 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}
.gift-card__qr::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%; width: 30%; aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    box-shadow: 0 0 24px rgba(233, 196, 106, 0.55);
}

.gift-card__map {
    width: 88%; height: 80%;
    border-radius: 14px;
    background:
        radial-gradient(circle at 18% 70%, #4F7BFF 0 4px, transparent 5px),
        radial-gradient(circle at 32% 60%, #C084FC 0 3px, transparent 4px),
        radial-gradient(circle at 48% 52%, #E9C46A 0 4px, transparent 5px),
        radial-gradient(circle at 65% 42%, #4F7BFF 0 3px, transparent 4px),
        radial-gradient(circle at 82% 28%, #C084FC 0 3px, transparent 4px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}
.gift-card__map::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(105deg, transparent 0%, transparent 18%, rgba(233, 196, 106, 0.45) 18.5%, transparent 19%) 0 0 / 100% 100%;
    mix-blend-mode: screen;
}

.gift-card__body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 24px 26px;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 22, 0.85) 60%, rgba(5, 8, 22, 0.95) 100%);
    z-index: 2;
}
.gift-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}
.gift-card__desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ===== SCIENCE / TRUST ===== */
.science {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139, 92, 246, 0.14), transparent 65%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(79, 123, 255, 0.12), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    padding: 56px clamp(28px, 5vw, 64px);
    position: relative;
    overflow: hidden;
}
.science__quote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    line-height: 1.5;
    color: #EEF1FB;
    max-width: 880px;
}
.science__quote::before {
    content: '“';
    display: inline-block;
    font-size: 2.6em;
    line-height: 0;
    color: var(--gold);
    margin-right: 6px;
    vertical-align: -0.35em;
}
.science__facts {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 800px) { .science__facts { grid-template-columns: repeat(3, 1fr); } }
.science-fact {
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}
.science-fact__value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-bright);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.science-fact__label { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

/* ===== WAITLIST ===== */
.waitlist {
    position: relative;
    text-align: center;
    padding: 100px 24px;
    overflow: hidden;
}
.waitlist__form {
    margin: 32px auto 0;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 600px) {
    .waitlist__form { flex-direction: row; }
}
.waitlist__input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 999px;
    padding: 16px 22px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.waitlist__input::placeholder { color: var(--ink-mute); }
.waitlist__input:focus {
    border-color: rgba(233, 196, 106, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(233, 196, 106, 0.12);
}
.waitlist__note { color: var(--ink-mute); font-size: 12px; margin-top: 16px; letter-spacing: 0.04em; }
.waitlist__success {
    margin-top: 18px;
    color: var(--gold-bright);
    font-size: 14px;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.waitlist__success.is-visible { opacity: 1; transform: translateY(0); }

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    padding: 60px 24px 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(5, 8, 22, 0) 0%, rgba(5, 8, 22, 1) 100%);
    overflow: hidden;
}
.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.site-footer__brand {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--ink);
    text-decoration: none;
}
.site-footer__brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.site-footer__brand span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: 20px;
}
.site-footer__quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 480px;
}
.site-footer__socials { display: flex; gap: 14px; }
.site-footer__socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}
.site-footer__socials a:hover {
    color: var(--gold-bright);
    border-color: rgba(233, 196, 106, 0.4);
    box-shadow: 0 0 16px rgba(233, 196, 106, 0.18);
    transform: translateY(-2px);
}
.site-footer__socials svg { width: 16px; height: 16px; }
.site-footer__meta {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--ink-mute); font-size: 12px; letter-spacing: 0.06em;
}
.site-footer__meta a { color: var(--ink-mute); text-decoration: none; transition: color 0.3s ease; }
.site-footer__meta a:hover { color: var(--gold-bright); }

/* ===== REVEAL ON SCROLL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ===== Utility helpers ===== */
.text-gold { color: var(--gold-bright); }
.divider-glow {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.4), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .section { padding: 80px 20px; }
    .site-header__inner { padding: 10px 16px; }
    .hero { padding: 110px 20px 60px; }
    .step-card { padding: 32px 24px; }
    .science { padding: 36px 24px; }
}
