/* ===== RWAMP Updated Design – Figma-based ===== */
:root {
    --bg-dark: #0d0d0d;
    --bg-dark-soft: #1a1a1a;
    --bg-light: #f5f0e8;
    --accent: #e8a317;
    --accent-light: #f5c842;
    --accent-dark: #c78b10;
    --text-dark: #1a1a1a;
    --text-dark-muted: #333333;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --text-muted-light: #e0e0e0;
    --status-gold: #ffddaa;
    --border: rgba(255, 255, 255, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- Header ----- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.header-logo-title {
    display: none;
}

.header-logo-tagline {
    display: none;
}

.header-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: transform 0.3s;
}

.header-toggle span.open:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header-toggle span.open:nth-child(2) {
    opacity: 0;
}

.header-toggle span.open:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-nav a:hover {
    color: var(--accent);
}

/* INVEST: solid golden gradient, pill shape, black text */
.header-cta {
    background: linear-gradient(90deg, #f5c842, #e8a317) !important;
    color: var(--bg-dark) !important;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    box-shadow: 0 0 24px rgba(232, 163, 23, 0.5);
    transition: all 0.3s ease;
}

.header-cta:hover {
    box-shadow: 0 0 32px rgba(232, 163, 23, 0.8);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .header-toggle {
        display: flex;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        display: none;
        border-bottom: 1px solid var(--border);
    }

    .header-nav.is-open {
        display: flex;
    }
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

/* Primary: solid golden / gradient, dark text. Pill shape. */
.btn-primary {
    background: linear-gradient(90deg, #f5c842, #e8a317);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 0 24px rgba(232, 163, 23, 0.3);
    border-radius: 30px;
    font-weight: 700;
}

.btn-primary:hover {
    box-shadow: 0 0 32px rgba(232, 163, 23, 0.5);
    transform: translateY(-1px);
    color: var(--bg-dark);
}

/* View Roadmap: thin outline, transparent, white text, pill shape */
.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-weight: 600;
}

.btn-outline:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

.btn-block {
    width: 100%;
}

.btn-ask-ai {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent);
    border-radius: 30px;
    padding: 8px 32px;
    margin-top: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-ask-ai:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* ----- Hero ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    background-image: url('Website image/Section-02.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.7) 100%);
}

/* Subtle diagonal/grid pattern (Figma) */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 52%, transparent 54%);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 8px;
}

.hero-accent {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted-light);
    max-width: 520px;
    margin-bottom: 12px;
}

.hero-status {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--status-gold);
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero visual – Single replacement image layout */
.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-header-img {
    height: 100%;
    max-height: 540px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .hero-header-img {
        max-height: 440px;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: auto;
        margin-top: 40px;
        justify-content: center;
    }

    .hero-header-img {
        max-height: 380px;
    }
}

/* ----- Section common ----- */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-dark {
    background: var(--bg-dark-soft);
    color: var(--text-light);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title.light {
    color: var(--text-light);
}

.section-dark .light {
    color: var(--text-light);
}

.section-title.center {
    text-align: center;
    margin-bottom: 48px;
}

.title-limit {
    max-width: 680px;
}

.accent-text {
    color: var(--accent) !important;
}

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

.section-p {
    font-size: 1rem;
    color: var(--text-muted-light);
    margin-bottom: 16px;
}

.section-light .section-p {
    color: #444;
}

.section-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.section-disclaimer.muted {
    color: var(--text-muted);
}

.section-footer-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .section-split,
    .section-city-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section {
        padding: 56px 0;
    }
}

/* ----- About images (2) ----- */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding-bottom: 20px;
}

.about-img-main {
    grid-column: 1 / -1;
    border-radius: var(--radius-xl);
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img-sm {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/4.5;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.about-img-right {
    aspect-ratio: 16/10;
    align-self: end;
    margin-top: -20px;
}

.today-block {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.bullet-list {
    list-style: none;
}

.bullet-list.accent-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
}

.section-dark .bullet-list.accent-bullets li {
    color: #e0e0e0;
}

.bullet-list.accent-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.section-light .bullet-list.accent-bullets li::before {
    background: var(--accent);
}

/* ----- Dark city section (3) ----- */
.section-city {
    background-image: url('Website image/Section-02.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
}

.section-city::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.section-city .container {
    position: relative;
    z-index: 1;
}

.section-city-split {
    grid-template-columns: 1.25fr 1fr;
    gap: 80px;
}

.city-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 32px;
}

.section-city-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-city-right {
    padding-top: 20px;
}

.section-city-right .section-p {
    margin-bottom: 24px;
}

/* ----- Process cards (4) ----- */
.cards-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.process-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.process-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.process-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    padding: 24px 24px 12px;
}

.process-card-desc {
    font-size: 0.95rem;
    color: #555;
    padding: 0 24px 32px;
    line-height: 1.6;
    flex-grow: 1;
}

@media (max-width: 1000px) {
    .cards-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .cards-four {
        grid-template-columns: 1fr;
    }
}

/* ----- Coin section (5) – match Figma 5.png ----- */
.section-coin {
    position: relative;
    padding: 120px 0;
    background: var(--bg-dark);
    background-image: url('Website image/Section-04.png');
    background-size: cover;
    background-position: left center;
}

.section-coin::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.78));
    z-index: 0;
}

.section-coin .container {
    position: relative;
    z-index: 1;
}

.section-coin-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.section-coin .section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Left column: coin centered vertically, offset right so it overlaps “man” area (Figma: coin slightly to the right of man) */
.coin-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.coin-logo-top {
    width: 165px;
    height: 165px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    z-index: 2;
    margin-right: 0;
    margin-bottom: 8%;
    transform: translateX(12%);
}

/* Figma: body and list in lighter grey, not pure white */
.section-coin .section-title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: clamp(2.1rem, 3.8vw, 3.4rem);
}

/* Figma: "the Ecosystem" on new line, slightly indented */
.section-coin .section-title span.accent-text:last-of-type {
    display: inline-block;
    margin-left: 0.12em;
}

.section-coin .section-p.light,
.section-coin .bullet-list.accent-bullets.light li {
    color: #c4c4c4;
}

.section-coin .section-legal {
    font-size: 0.85rem;
    margin-top: 16px;
    color: #a8a8a8 !important;
    line-height: 1.55;
}

.section-coin .btn-legal {
    background: linear-gradient(90deg, #f5c842, #e8a317);
    color: var(--bg-dark);
    border-radius: 30px;
    box-shadow: none;
    font-weight: 700;
    padding: 12px 28px;
    margin-top: 24px;
}

.section-coin .btn-legal:hover {
    box-shadow: 0 4px 20px rgba(232, 163, 23, 0.5);
    transform: translateY(-1px);
    color: var(--bg-dark);
}

@media (max-width: 900px) {
    .section-coin {
        padding: 80px 0;
    }

    .section-coin-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .coin-visual {
        min-height: 280px;
        justify-content: center;
        margin-right: 0;
    }

    .coin-logo-top {
        margin-right: 0;
        width: 140px;
        height: 140px;
        transform: none;
    }
}

/* ----- Info grid (6) ----- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.info-card {
    display: flex;
    gap: 24px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.info-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    position: relative;
    box-shadow: 0 0 0 8px #fff, 0 0 0 14px rgba(232, 163, 23, 0.3);
}

.info-card-icon::after {
    content: '';
    position: absolute;
    inset: 16px;
    background: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat;
}

.info-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Responsibility (7) – building as background, Figma match ----- */
.section-responsibility {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background: var(--bg-dark);
    background-image: url('Website image/Section-05.png');
    background-size: cover;
    background-position: right center;
}

.section-responsibility::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 13, 13, 0.97) 0%,
        rgba(20, 20, 20, 0.92) 35%,
        rgba(13, 13, 13, 0.55) 50%,
        rgba(13, 13, 13, 0.2) 65%,
        transparent 78%
    );
    z-index: 0;
}

.section-responsibility .container {
    position: relative;
    z-index: 1;
    padding-left: 24px;
    max-width: 1200px;
}

.section-responsibility-inner {
    max-width: 380px;
    padding-right: 0;
}

.section-responsibility .section-title {
    font-weight: 600;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-responsibility .section-p.light {
    color: #f2f2f2;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.section-responsibility .bullet-list.accent-bullets.light li {
    color: #eaeaea;
    margin-bottom: 12px;
    font-size: 0.98rem;
}

.section-responsibility .section-disclaimer.muted {
    color: #9a9a9a;
    font-size: 0.84rem;
    margin-top: 24px;
    line-height: 1.5;
    max-width: 92%;
}

@media (max-width: 768px) {
    .section-responsibility {
        padding: 80px 0 60px;
        background-position: 55% center;
    }

    .section-responsibility::before {
        background: linear-gradient(
            to right,
            rgba(13, 13, 13, 0.98) 0%,
            rgba(13, 13, 13, 0.85) 60%,
            transparent 100%
        );
    }

    .section-responsibility-inner {
        max-width: 100%;
    }
}

/* ----- Roadmap (8) ----- */
.roadmap-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.roadmap-card {
    background: #fff;
    padding: 40px 24px 32px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.roadmap-phase-pill {
    display: inline-block;
    background: linear-gradient(90deg, #d38b1d, #a56106);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 32px;
    border-radius: 30px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.roadmap-icon {
    width: 64px;
    height: 64px;
    margin: 20px auto 24px;
    background: transparent;
}

.roadmap-icon-1 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Cpath d='M4 19V5a2 2 0 012-2h12a2 2 0 012 2v14'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cpath d='M8 12h2M14 12h2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.roadmap-icon-2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3Cpath d='M9 22V12h6v10'/%3E%3C/svg%3E") center/contain no-repeat;
}

.roadmap-icon-3 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3M12 17h.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

.roadmap-icon-4 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10'/%3E%3C/svg%3E") center/contain no-repeat;
}

.roadmap-card-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .roadmap-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .roadmap-cards {
        grid-template-columns: 1fr;
    }
}

/* ----- FAQ + Early Access (9) ----- */
.section-faq .section-split {
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 24px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-q {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.faq-a {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.early-access-card {
    background: #fff;
    padding: 60px 48px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.early-access-card .section-title {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.early-access-card .btn {
    margin-top: 32px;
    border-radius: 30px;
    padding: 16px;
    font-size: 1.05rem;
}

.early-access-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin-top: 16px;
}

.form-container {
    min-height: 1px;
}

.waitlist-form-box {
    max-width: 480px;
    margin: 0 auto 48px;
    padding: 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.waitlist-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.waitlist-form-sub {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
}

.waitlist-form .form-row {
    margin-bottom: 20px;
}

.waitlist-form .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.waitlist-form .form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    background: #fff;
}

.waitlist-form .form-input:focus {
    outline: none;
    border-color: var(--accent);
}

.waitlist-form .btn {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .early-access-card {
        margin-top: 32px;
    }
}

/* ----- Footer (10) ----- */
.site-footer {
    background: #000;
    color: var(--text-muted-light);
    padding: 80px 24px 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    object-fit: contain;
}

.footer-copy {
    font-size: 0.95rem;
    color: var(--accent);
    margin-top: 32px;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Comprehensive Mobile & Small Laptop Responsiveness ===== */
@media (max-width: 1024px) {
    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    }
    .hero-title {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }
    .hero-accent {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }
    .hero {
        padding: 100px 24px 60px;
    }
    .section-split,
    .section-city-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .city-title {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }
    .section-city {
        padding: 80px 0;
    }
    .info-card {
        padding: 28px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .early-access-card {
        padding: 40px 24px;
        border-radius: 24px;
    }
    .early-access-card .section-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    .site-footer {
        padding: 56px 24px 40px;
    }
    .footer-inner {
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .hero-header-img {
        max-height: 300px;
    }
    .coin-visual {
        min-height: 200px;
    }
    .coin-logo-top {
        width: 120px;
        height: 120px;
    }
    .about-images {
        grid-template-columns: 1fr;
    }
    .about-img-sm, .about-img-right {
        display: none; /* Simplify image layout on very small screens if using multi-images */
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 1.8rem;
    }
    .city-title {
        font-size: 2rem;
    }
}
