@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0f2d4a;
    --navy-soft: #143454;
    --teal: #0f8a8a;
    --teal-dark: #0c6d6f;
    --gold: #f3b43f;
    --white: #ffffff;
    --powder: #f5f7fa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(140deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--navy);
}

.contact-strip {
    background: rgba(15, 45, 74, 0.92);
    color: var(--white);
    padding: 10px 5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.contact-strip a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.contact-strip a:hover {
    text-decoration: underline;
}

.global-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 5vw;
    color: var(--white);
    background: rgba(15, 45, 74, 0.88);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 32px rgba(15, 45, 74, 0.25);
    margin-top: 16px;
}

.logo-wordmark {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo-wordmark img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.logo-wordmark span {
    color: var(--powder);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--powder);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hero {
    min-height: 66vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(243, 180, 63, 0.24), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.2), transparent 45%);
    pointer-events: none;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: center;
}

.brand-panel {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(16px);
    color: var(--white);
    box-shadow: 0 24px 48px rgba(15, 45, 74, 0.25);
}

.brand-panel img {
    width: 160px;
    height: auto;
    margin-bottom: 24px;
}

.brand-panel h1 {
    font-size: 2.8rem;
    margin: 0 0 16px;
    line-height: 1.1;
}

.brand-panel p.tagline {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.brand-panel p.description {
    margin: 0 0 32px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

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

.hero-actions a {
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-actions a.primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 14px 24px rgba(243, 180, 63, 0.36);
}

.hero-actions a.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 32px rgba(243, 180, 63, 0.45);
}

.hero-actions a.secondary {
    background: rgba(15, 138, 138, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-actions a.secondary:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.hero-insight {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(15, 45, 74, 0.08);
    box-shadow: 0 18px 36px rgba(15, 45, 74, 0.12);
    color: var(--navy);
}

.hero-insight h2 {
    margin: 0 0 16px;
    font-size: 1.8rem;
}

.hero-insight p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(15, 45, 74, 0.78);
}

.page-wrapper {
    background: var(--powder);
    border-radius: 32px 32px 0 0;
    margin-top: -40px;
    padding: 80px 24px 96px;
}

.contact-section {
    background: rgba(15, 138, 138, 0.12);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(15, 138, 138, 0.18);
    margin-top: 40px;
    text-align: center;
}

.policy-callout {
    margin-top: 36px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(15, 45, 74, 0.08);
    border: 1px solid rgba(15, 45, 74, 0.12);
}

.policy-callout h3 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 1.4rem;
}

.policy-list {
    margin: 0;
    padding-left: 20px;
    color: rgba(15, 45, 74, 0.8);
    line-height: 1.7;
}

.policy-list li {
    margin-bottom: 12px;
}

.policy-list li:last-of-type {
    margin-bottom: 0;
}

.waitlist-section {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid rgba(15, 45, 74, 0.12);
    padding: 40px;
    box-shadow: 0 22px 36px rgba(15, 45, 74, 0.12);
}

.waitlist-form {
    margin-top: 28px;
    display: grid;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.waitlist-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    color: var(--navy);
    gap: 8px;
    font-weight: 500;
}

.waitlist-form input,
.waitlist-form textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(15, 45, 74, 0.16);
    font-size: 1rem;
    font-family: inherit;
    background: rgba(15, 45, 74, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15, 138, 138, 0.2);
}

.waitlist-form textarea {
    resize: vertical;
    min-height: 110px;
}

.full-width {
    grid-column: 1 / -1;
}

.consent {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.consent input {
    width: auto;
    margin: 0;
}

.waitlist-submit {
    justify-self: start;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(15, 138, 138, 0.25);
}

.waitlist-disclaimer {
    font-size: 0.85rem;
    color: rgba(15, 45, 74, 0.65);
    margin: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-section h3 {
    margin-top: 0;
    color: var(--teal-dark);
    font-size: 1.4rem;
}

.contact-section p {
    margin: 10px 0;
    color: rgba(15, 45, 74, 0.78);
}

.contact-section a {
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.section {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.section:last-of-type {
    margin-bottom: 0;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--teal-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section h2 {
    margin: 0 0 24px;
    font-size: 2.1rem;
    color: var(--navy);
}

.section p.lead {
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(15, 45, 74, 0.78);
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(15, 45, 74, 0.08);
    box-shadow: 0 18px 32px rgba(15, 45, 74, 0.08);
    position: relative;
}

.info-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 24px;
    right: 24px;
    height: 4px;
    border-radius: 999px;
    background: var(--gold);
}

.card-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.card-title span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 138, 138, 0.16);
    color: var(--teal-dark);
    font-weight: 700;
}

.card-body {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(15, 45, 74, 0.8);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.value-card {
    padding: 24px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(15, 138, 138, 0.18);
    box-shadow: 0 12px 24px rgba(15, 45, 74, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(15, 45, 74, 0.14);
}

.value-card h3 {
    margin: 0 0 12px;
    color: var(--teal-dark);
    font-size: 1.1rem;
}

.value-card p {
    margin: 0;
    color: rgba(15, 45, 74, 0.72);
    line-height: 1.6;
}

.value-card p a {
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.value-card p a:hover {
    text-decoration: underline;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.metric-card {
    padding: 28px;
    border-radius: 24px;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.metric-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(243, 180, 63, 0.2) 100%);
    pointer-events: none;
}

.metric-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.metric-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.footer {
    max-width: 1100px;
    margin: 64px auto 0;
    text-align: center;
    color: rgba(15, 45, 74, 0.7);
    font-size: 0.9rem;
}

.footer a {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-strip {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .global-nav {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        border-radius: 16px;
        padding: 18px;
    }

    .nav-links {
        justify-content: center;
    }

    .hero {
        padding: 72px 18px 50px;
    }

    .brand-panel {
        padding: 32px;
    }

    .brand-panel h1 {
        font-size: 2.2rem;
    }

    .page-wrapper {
        margin-top: -32px;
        border-radius: 28px 28px 0 0;
        padding: 68px 18px 80px;
    }

    .section {
        margin-bottom: 68px;
    }

    .timeline {
        padding-left: 18px;
    }

    .waitlist-section {
        padding: 32px 22px;
    }

    .consent {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Standalone / Secondary Pages --- */

body.simple-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.simple-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 100px;
}

.standalone-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 48px 40px;
    max-width: 640px;
    width: 100%;
    color: var(--white);
    box-shadow: 0 24px 48px rgba(15, 45, 74, 0.28);
    text-align: center;
}

.standalone-card img {
    width: 120px;
    margin-bottom: 24px;
}

.standalone-card h1 {
    font-size: 2.2rem;
    margin: 0 0 16px;
}

.standalone-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.coming-features {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.coming-features li {
    background: rgba(243, 180, 63, 0.16);
    border: 1px solid rgba(243, 180, 63, 0.3);
    border-radius: 16px;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.standalone-card .soon-tag {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(243, 180, 63, 0.2);
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-list a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-list a:hover {
    text-decoration: underline;
}

.secondary-footer {
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.secondary-footer a {
    color: var(--gold);
    text-decoration: none;
}

.secondary-footer a:hover {
    text-decoration: underline;
}

/* --- About Page --- */

.about-hero {
    max-width: 1100px;
    margin: 40px auto 60px;
    background: linear-gradient(135deg, rgba(15, 45, 74, 0.95) 0%, rgba(15, 138, 138, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 48px;
    color: var(--white);
    box-shadow: 0 24px 48px rgba(15, 45, 74, 0.35);
}

.about-hero h1 {
    margin: 0 0 16px;
    font-size: 2.6rem;
}

.about-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-grid figure {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 45, 74, 0.08);
    box-shadow: 0 16px 24px rgba(15, 45, 74, 0.12);
    display: flex;
    flex-direction: column;
}

.gallery-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-grid figcaption {
    padding: 16px 18px;
    font-size: 0.95rem;
    color: rgba(15, 45, 74, 0.82);
}

.relationship-map {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(15, 45, 74, 0.08);
    padding: 32px;
    box-shadow: 0 18px 32px rgba(15, 45, 74, 0.08);
    margin-bottom: 40px;
}

.relationship-map h2 {
    margin-top: 0;
    color: var(--navy);
}

.map-diagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.map-node {
    background: rgba(15, 138, 138, 0.12);
    border: 1px solid rgba(15, 138, 138, 0.2);
    border-radius: 20px;
    padding: 20px;
}

.map-node h3 {
    margin: 0 0 10px;
    color: var(--teal-dark);
}

.map-node p {
    margin: 0;
    color: rgba(15, 45, 74, 0.78);
}

.timeline {
    position: relative;
    margin-top: 32px;
    padding-left: 26px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(243, 180, 63, 0) 100%);
}

.timeline-step {
    margin-bottom: 26px;
    position: relative;
    padding-left: 18px;
}

.timeline-step:last-of-type {
    margin-bottom: 0;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 4px rgba(15, 138, 138, 0.2);
}

.timeline-step h3 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 1.1rem;
}

.timeline-step p {
    margin: 0;
    color: rgba(15, 45, 74, 0.72);
    line-height: 1.6;
}

.growth-section {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(15, 45, 74, 0.08);
    box-shadow: 0 20px 32px rgba(15, 45, 74, 0.1);
}

.growth-section h2 {
    margin-top: 0;
    color: var(--navy);
}

.growth-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.growth-chart {
    background: rgba(15, 138, 138, 0.1);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(15, 138, 138, 0.18);
}

.bar {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: var(--teal);
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gold);
}

.bar[data-width="70"]::after { width: 70%; }
.bar[data-width="85"]::after { width: 85%; }
.bar[data-width="95"]::after { width: 95%; }

.growth-chart span {
    font-size: 0.9rem;
    color: rgba(15, 45, 74, 0.72);
}

.about-footer {
    margin-top: 40px;
    background: rgba(15, 138, 138, 0.12);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.about-footer a {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 600;
}

.about-footer a:hover {
    text-decoration: underline;
}

/* Thank You Page Styles */
.thank-you-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 48px 32px;
    margin: 0 auto;
    max-width: 640px;
    box-shadow: 0 20px 40px rgba(15, 45, 74, 0.12);
    border: 1px solid rgba(15, 45, 74, 0.08);
}

.thank-you-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: block;
}

.thank-you-content h1 {
    color: var(--navy);
    margin: 0 0 24px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.thank-you-content .lead {
    font-size: 1.15rem;
    color: rgba(15, 45, 74, 0.78);
    margin-bottom: 36px;
    line-height: 1.6;
}

.next-steps {
    background: rgba(15, 138, 138, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}

.next-steps h2 {
    color: var(--navy);
    margin: 0 0 16px;
    font-size: 1.3rem;
}

.next-steps ul {
    margin: 0;
    padding-left: 20px;
    color: rgba(15, 45, 74, 0.82);
    line-height: 1.7;
}

.next-steps li {
    margin-bottom: 8px;
}

.contact-info {
    margin: 32px 0;
    padding: 20px;
    background: rgba(243, 180, 63, 0.1);
    border-radius: 12px;
}

.contact-info h3 {
    color: var(--navy);
    margin: 0 0 12px;
}

.contact-info p {
    margin: 0;
    color: rgba(15, 45, 74, 0.78);
}

.contact-info a {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.thank-you-actions .primary,
.thank-you-actions .secondary {
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thank-you-actions .primary {
    background: var(--teal);
    color: var(--white);
}

.thank-you-actions .primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.thank-you-actions .secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.thank-you-actions .secondary:hover {
    background: var(--navy);
    color: var(--white);
}

@media (max-width: 600px) {
    .thank-you-content {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-actions .primary,
    .thank-you-actions .secondary {
        width: 100%;
        max-width: 240px;
        text-align: center;
    }
}
