/* ===== Fonts ===== */
@font-face {
    font-family: 'Owners';
    src: url('assets/fonts/Owners-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Owners';
    src: url('assets/fonts/Owners-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Owners';
    src: url('assets/fonts/Owners-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== Variables ===== */
:root {
    --blue: #0f84ff;
    --green: #51ff81;
    --dark: #1d1d1f;
    --gray: #86868b;
    --light: #f5f5f7;
    --cream: #fff8ed;
    --white: #ffffff;

    --font: 'Owners', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.5;
    color: var(--dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(255, 248, 237, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.nav-logo img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    opacity: 0.8;
    transition: opacity var(--transition);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    transition: opacity var(--transition);
}

.nav-cta:hover {
    opacity: 0.7;
}

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

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ===== Button ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--blue);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 100px;
    transition: all var(--transition);
}

.btn:hover {
    background: #0a6fd4;
    transform: scale(1.02);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

/* ===== Sections ===== */
.section {
    padding: 120px 24px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 16px;
}

.section h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section p.large {
    font-size: clamp(18px, 2vw, 21px);
    color: var(--gray);
    max-width: 640px;
    line-height: 1.5;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark .label {
    color: var(--green);
}

.section-dark p.large,
.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Features ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 80px;
}

.feature {
    background: var(--cream);
    padding: 48px;
}

.feature-number {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 24px;
}

.feature h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== Statement Section ===== */
.section-statement {
    text-align: center;
    background: var(--blue);
    color: var(--white);
}

.section-statement .label {
    color: rgba(255, 255, 255, 0.7);
}

.section-statement p.large {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
}

.mascot {
    width: 80px;
    height: auto;
    margin: 0 auto 32px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Waitlist ===== */
.waitlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.waitlist-content h2 {
    font-size: clamp(32px, 4vw, 44px);
}

.waitlist-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font);
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
    transition: background var(--transition);
}

.form-row input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-row input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.form-row .btn {
    background: var(--green);
    color: var(--dark);
    padding: 16px 32px;
    flex-shrink: 0;
}

.form-row .btn:hover {
    background: #3de070;
}

.form-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.update {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    transition: transform var(--transition);
}

.update:hover {
    transform: translateY(-4px);
}

.update time {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.update h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 12px 0;
    letter-spacing: -0.01em;
}

.update p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 40px;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-size: 28px;
    font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .features {
        grid-template-columns: 1fr;
    }

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

    .updates {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 80px 24px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .footer-container {
        flex-direction: column;
        gap: 48px;
    }

    .footer-links {
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 40px;
    }

    .section h2 {
        font-size: 32px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .btn {
        width: 100%;
    }

    .feature {
        padding: 32px 24px;
    }
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Form Success State ===== */
.form-success {
    text-align: center;
    padding: 24px;
}

.form-success p {
    color: var(--green);
    font-weight: 500;
}

/* ===== Selection ===== */
::selection {
    background: var(--blue);
    color: var(--white);
}
