:root {
    --bg-black: #0a0a0d;
    --bg-black-2: #0d0d11;
    --purple-1: #9d8ad4;
    --purple-2: #6c4bd6;
    --purple-glow: rgba(138, 99, 242, 0.55);
    --off-white: #f4f2ef;
    --off-white-2: #ddd9d2;
    --ink: #17161a;
    --ink-soft: #5c5a63;
    --line: rgba(23, 22, 26, 0.1);
    --line-dark: rgba(255, 255, 255, 0.12);
    --white: #ffffff;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --serif: "Fraunces", serif;
    --sans: "Inter", sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    margin: 0 auto;
    padding: 0 30px;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--purple-1);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
}
.btn-outline-light:hover {
    border-color: var(--purple-1);
    box-shadow:
        0 0 0 1px var(--purple-1),
        0 8px 30px var(--purple-glow);
}
.btn-outline-dark {
    color: var(--ink);
    border-color: rgba(23, 22, 26, 0.25);
    background: transparent;
}
.btn-outline-dark:hover {
    border-color: var(--ink);
}
.btn-solid {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(108, 75, 214, 0.35);
}
.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}
.btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* ---------- NAV ---------- */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 32px 0 0;
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.logo img {
    width: 10%;
    height: 10%;
}

#moments {
    width: 70vw;
    height: 107%;
    max-width: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 40px;
}
.nav-links a {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: var(--white);
}

#features {
    box-shadow:
        0 15px 15px 8px #e3dbce,
        0 30px 15px 8px #dfd6c8,
        0 50px 15px 8px #d8d0ed;
}

/* ---------- HERO (from design 2) ---------- */
.hero {
    position: relative;
    z-index: 5;
    background: var(--bg-black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 160px 24px 120px;
    box-shadow:
        0 15px 15px 8px #000,
        0 30px 15px 8px #ccc,
        0 50px 15px 8px #e3dbce;
}
#hero-glow-image {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 140%;
    height: 40%;
}
.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-glow svg {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 100%;
    height: 70%;
    filter: blur(6px);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.hero .eyebrow {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 28px;
}
.hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--white);
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.hero h1 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, #a78bfa, #7c5cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p.sub {
    margin: 28px auto 44px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 17px;
    line-height: 1.6;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero-scroll svg {
    width: 14px;
    height: 14px;
    animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* ---------- FEATURES (from design 1, section 2) ---------- */
.features {
    position: relative;
    z-index: 4;
    background: #e3dbce;
    padding: 120px 0 100px;
    text-align: center;
}
.features .eyebrow {
    margin-bottom: 18px;
}
.features h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 48px);
    line-height: 1.15;
    color: var(--ink);
}
.features h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
}
.features .sub {
    max-width: 520px;
    margin: 22px auto 0;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
}
.feature-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: left;
}
.feature-card .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 26px;
    color: var(--ink);
}
.feature-card .icon svg {
    width: 100%;
    height: 100%;
}
.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.feature-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}

/* ---------- MOMENTS (from design 1, section 3) ---------- */
.moments {
    position: relative;
    z-index: 3;
    background: #d8d0ed;
    padding: 110px 0 130px;
    box-shadow:
        0 5px 15px 8px #d8d0ed,
        0 10px 15px 8px #8673b9,
        0 12px 15px 8px var(--bg-black);
}
.moments .container {
    display: grid;
    padding-top: 40px;
    grid-template-columns: 0.85fr 2fr;
    gap: 56px;
    align-items: start;
}
.moments-text {
    padding-top: 36px;
    position: sticky;
    top: 120px;
    max-width: 300px;
}
.moments-text .eyebrow {
    margin-bottom: 20px;
}
.moments-text h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.15;
    margin-bottom: 22px;
}
.moments-text p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 340px;
    margin-bottom: 36px;
}

.moments-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.m-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}
.m-card.dark {
    background: var(--bg-black-2);
    color: var(--white);
    border-color: transparent;
}
.m-card .card-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 22px;
}
.m-card.dark .card-label {
    color: rgba(255, 255, 255, 0.5);
}

/* timeline card */
.timeline-item {
    position: relative;
    padding-left: 18px;
    padding-bottom: 24px;
    border-left: 1px solid var(--line);
    margin-left: 3px;
}
.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -4.5px;
    top: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink);
}
.timeline-item .t-date {
    font-size: 11.5px;
    color: var(--ink-soft);
    margin-bottom: 4px;
}
.timeline-item .t-title {
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 4px;
}
.timeline-item .t-desc {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 10px;
}
.t-thumb {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #cfcfd6, #8f8fa3);
}
.t-thumb.b {
    background: linear-gradient(135deg, #d8b9a3, #9c6b52);
}

/* connections card */
.node-diagram {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}
.node-diagram svg {
    width: 100%;
    height: 100%;
}
.node-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.node-center svg {
    width: 16px;
    height: 16px;
}
.node-label {
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--white);
    padding: 2px 4px;
}

/* reflection card */
.m-card.dark h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.4;
    margin: auto 0 14px;
}
.m-card.dark p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: auto;
}
.reflect-orb {
    align-self: flex-start;
    margin-top: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 35% 30%,
        #b298ff,
        #6c4bd6 60%,
        #3d2a80 100%
    );
    box-shadow: 0 0 30px rgba(138, 99, 242, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.reflect-orb svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

/* profile card */
.profile-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 6px auto 18px;
    background: linear-gradient(160deg, #e7c9a9, #b98a63 55%, #7c5a3f);
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-avatar svg {
    width: 34px;
    height: 34px;
    color: rgba(255, 255, 255, 0.85);
}
.m-card .profile-name {
    text-align: center;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 2px;
}
.m-card .profile-sub {
    text-align: center;
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-bottom: 22px;
}
.profile-stats {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
}
.profile-stats div {
    text-align: center;
    flex: 1;
}
.profile-stats .num {
    font-size: 17px;
    font-weight: 700;
}
.profile-stats .lbl {
    font-size: 11px;
    color: var(--ink-soft);
    margin-top: 2px;
}
.m-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ---------- CTA (from design 1) ---------- */
.cta {
    position: relative;
    z-index: 2;
    background: var(--bg-black);
    padding: 80px 0;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.cta-glow svg {
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 120%;
    height: 200%;
    filter: blur(4px);
}
.cta .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--white);
    margin-bottom: 8px;
}
.cta-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14.5px;
}
.cta-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cta-form input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 14px 22px;
    color: var(--white);
    font-size: 14px;
    min-width: 300px;
    font-family: var(--sans);
}
.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.cta-form input:focus {
    outline: 2px solid var(--purple-1);
    outline-offset: 2px;
}
.cta-form button {
    border: none;
}

/* ---------- FOOTER (horizontal) ---------- */
#waitlist {
    padding: 10px;
}
footer {
    position: relative;
    z-index: 1;
    background: var(--bg-black);
    padding: 56px 0 32px;
    border-top: 1px solid var(--line-dark);
}
#footer-image {
    position: relative;
    bottom: 10%;
    left: 0;
    width: 30%;
    height: 30%;
}
.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px 40px;
    padding-bottom: 32px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-brand .logo {
    margin-bottom: 0;
}
.footer-brand .logo img {
    width: 26px;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}
.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 30px;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13.5px;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.footer-nav a:hover {
    color: var(--white);
}
.social-icons {
    display: flex;
    gap: 14px;
}
.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}
.social-icons a:hover {
    border-color: var(--purple-1);
    color: var(--white);
}
.social-icons svg {
    width: 15px;
    height: 15px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-top: 26px;
    border-top: 1px solid var(--line-dark);
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12.5px;
}
.footer-legal {
    display: flex;
    gap: 22px;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12.5px;
    transition: color 0.2s ease;
}
.footer-legal a:hover {
    color: var(--white);
}

/* ---------- MOBILE NAV (burger) ---------- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-toggle {
    display: none;
}
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 30;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin-left: auto;
    background: var(--white);
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.2s ease;
}

/* ---------- SUBPAGE HERO (dark band under nav) ---------- */
.page-hero {
    position: relative;
    z-index: 5;
    background: var(--bg-black);
    overflow: hidden;
    padding: 180px 24px 96px;
    text-align: center;
    box-shadow:
        0 15px 15px 8px #000,
        0 30px 15px 8px #ccc,
        0 50px 15px 8px var(--off-white);
}
.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 22px;
}
.page-hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--white);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.page-hero h1 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, #a78bfa, #7c5cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-hero p.sub {
    margin: 24px auto 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 16.5px;
    line-height: 1.65;
}

/* ---------- ABOUT PAGE ---------- */
.section {
    position: relative;
    z-index: 4;
    background: var(--off-white);
    padding: 100px 0;
}
.section.alt {
    background: var(--off-white-2);
}
.section-head {
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: center;
}
.section-head .eyebrow {
    display: block;
    margin-bottom: 16px;
}
.section-head h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.15;
    color: var(--ink);
}
.section-head h2 em {
    font-style: italic;
    font-weight: 500;
}
.section-head p {
    margin: 20px auto 0;
    max-width: 540px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
}
.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.founder-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
}
.founder-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 32px;
    color: var(--white);
    background: linear-gradient(160deg, #b298ff, #6c4bd6 60%, #3d2a80);
    box-shadow: 0 12px 30px rgba(108, 75, 214, 0.3);
    overflow: hidden;
}
.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.founder-card:nth-child(2) .founder-avatar {
    background: linear-gradient(160deg, #e7c9a9, #b98a63 55%, #7c5a3f);
    box-shadow: 0 12px 30px rgba(124, 90, 63, 0.3);
}
.founder-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
}
.founder-role {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--purple-1);
    margin-bottom: 18px;
}
.founder-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 20px;
}
.founder-social {
    display: inline-flex;
    gap: 12px;
}
.founder-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: all 0.2s ease;
}
.founder-social a:hover {
    border-color: var(--purple-1);
    color: var(--purple-1);
}
.founder-social svg {
    width: 15px;
    height: 15px;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}
.value-card {
    text-align: left;
}
.value-card .value-num {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--purple-1);
    margin-bottom: 14px;
}
.value-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.value-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* ---------- HOW IT WORKS PAGE ---------- */
.steps {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.step {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 28px;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 34px;
}
.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    box-shadow: 0 10px 24px rgba(108, 75, 214, 0.3);
}
.step h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    padding-top: 8px;
}
.step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
}

/* ---------- LEGAL PAGES (privacy / terms) ---------- */
.legal {
    position: relative;
    z-index: 4;
    background: var(--off-white);
    padding: 90px 0 100px;
}
.legal .container {
    max-width: 780px;
}
.legal .updated {
    color: var(--ink-soft);
    font-size: 13.5px;
    margin-bottom: 48px;
}
.legal h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 24px;
    margin: 44px 0 14px;
    color: var(--ink);
}
.legal h2:first-of-type {
    margin-top: 0;
}
.legal h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 10px;
}
.legal p,
.legal li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 14px;
}
.legal ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}
.legal a {
    color: var(--purple-2);
    text-decoration: underline;
}

/* ---------- SUCCESS / LAUNCH COUNTDOWN ---------- */
.launch {
    position: relative;
    min-height: 100vh;
    background: var(--bg-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 24px 80px;
}
.launch-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        60% 45% at 50% 62%,
        rgba(138, 99, 242, 0.35),
        transparent 70%
    );
    filter: blur(10px);
}
.launch-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.launch-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    box-shadow: 0 0 40px var(--purple-glow);
}
.launch-check svg {
    width: 34px;
    height: 34px;
}
.launch .eyebrow {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 22px;
}
.launch h1 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--white);
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.launch h1 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, #a78bfa, #7c5cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.launch p.sub {
    margin: 24px auto 48px;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 17px;
    line-height: 1.6;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 48px;
}
.count-unit {
    min-width: 96px;
    padding: 22px 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-dark);
    backdrop-filter: blur(6px);
}
.count-num {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}
.count-label {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.launch-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- FOUNDER'S NOTE ---------- */
.founder-note {
    position: relative;
    z-index: 2;
    background: var(--bg-black);
    padding: 110px 0 120px;
    text-align: center;
}
.founder-note .container {
    max-width: 980px;
}
.founder-note .eyebrow {
    display: block;
    margin-bottom: 44px;
}
.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.note-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0;
}
.note-quote {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: var(--white);
    margin: 0;
    flex: 1;
}
.note-sign {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}
.note-avatar {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--purple-glow);
}
.note-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.note-name {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--white);
}
.note-role {
    font-size: 12.5px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .moments .container {
        grid-template-columns: 1fr;
    }
    .moments-text {
        position: static;
        padding-top: 0;
        max-width: 100%;
    }
    .moments-text p {
        max-width: 100%;
    }
    .moments-image {
        display: flex;
        justify-content: center;
    }
    #moments {
        width: 100%;
        max-width: 520px;
        height: auto;
    }
    .moments-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA: stack fully vertical instead of a broken half-row */
    .cta .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-form {
        width: 100%;
    }
    .cta-form input {
        flex: 1;
        min-width: 0;
    }
    .notes-grid {
        gap: 20px;
    }
    .about-values {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

    /* burger menu */
    .nav-burger {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        margin-top: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 18px;
        background: rgba(18, 17, 22, 0.98);
        border: 1px solid var(--line-dark);
        border-radius: var(--radius-md);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition:
            opacity 0.22s ease,
            transform 0.22s ease;
    }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-right: 0;
    }
    .nav-links a {
        padding: 12px 10px;
        border-radius: var(--radius-sm);
        font-size: 13px;
    }
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu .btn {
        justify-content: center;
        margin-top: 6px;
    }
    .nav-toggle:checked ~ .nav-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-toggle:checked ~ .nav-burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle:checked ~ .nav-burger span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle:checked ~ .nav-burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .moments-cards {
        grid-template-columns: 1fr;
    }
    .founder-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .step {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 26px 24px;
    }
    .step h3 {
        padding-top: 0;
    }
    .page-hero {
        padding: 150px 20px 80px;
    }
    .section {
        padding: 72px 0;
    }
    .founder-note {
        padding: 84px 0 90px;
    }
    .notes-grid {
        grid-template-columns: 1fr;
    }
    .note-card {
        padding: 32px 26px;
    }
    .cta .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-form {
        width: 100%;
    }
    .cta-form input {
        flex: 1;
        min-width: 0;
    }
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .countdown {
        gap: 10px;
    }
    .count-unit {
        min-width: 0;
        flex: 1;
        padding: 18px 6px;
    }
    .launch-actions {
        width: 100%;
        flex-direction: column;
    }
    .launch-actions .btn {
        justify-content: center;
    }
}
