/* ================================
   FTC Poker — Landing Page Styles
   Colors: Red (#E41C39), Teal (#035349), Dark (#1F2633), White (#FFFFFF), Gold (#D4A843)
   ================================ */

@font-face {
    font-family: 'Futura Bold';
    src: url('fonts/Futura-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

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

:root {
    --red: #E41C39;
    --red-dark: #C0162F;
    --teal: #035349;
    --dark-mid: #262633;
    --dark: #1F2633;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-card: rgba(255, 255, 255, 0.05);
    --white: #FFFFFF;
    --white-muted: #A0A0A0;
    --gold: #D4A843;
    --gold-light: #E8C76A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Futura', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-mid) 50%, var(--dark) 100%);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================================
   Nav
   ================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(31, 38, 51, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--red-dark);
}

/* ================================
   Hero
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 48px;
}

.hero-content {
    text-align: center;
    max-width: 560px;
}

.hero h1 {
    font-family: 'Futura Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.text-red {
    color: var(--red);
    font-style: italic;
    letter-spacing: 0.01em;
}

.hero-sub {
    font-size: 18px;
    color: var(--white-muted);
    margin-bottom: 40px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    background: #E8E8E8;
    transform: translateY(-1px);
}

.btn-icon {
    width: 22px;
    height: 22px;
}

.hero-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--white-muted);
}

.hero-visual {
    flex: 0 0 auto;
}

.phone-fan {
    position: relative;
    width: 420px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    position: absolute;
    background: var(--dark);
    border-radius: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.phone-center {
    width: 240px;
    height: 480px;
    z-index: 3;
}

.phone-left {
    width: 200px;
    height: 400px;
    z-index: 2;
    transform: translateX(-140px) rotate(-8deg) scale(0.9);
}

.phone-right {
    width: 200px;
    height: 400px;
    z-index: 2;
    transform: translateX(140px) rotate(8deg) scale(0.9);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   Features
   ================================ */

.features {
    padding: 100px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: rgba(226, 36, 42, 0.3);
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.dot-gold { background: var(--gold); }
.dot-blue { background: #5BC0EB; }
.dot-green { background: #7EC845; }
.dot-red { background: var(--red); }

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-card p {
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.7;
}

/* ================================
   How It Works
   ================================ */

.how-it-works {
    padding: 100px 32px;
    max-width: 900px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--white-muted);
}

.step-arrow {
    font-size: 24px;
    color: var(--gold);
    flex: 0 0 auto;
}

/* ================================
   Footer
   ================================ */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 32px;
    background: rgba(0, 0, 0, 0.2);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-brand p {
    font-size: 13px;
    color: var(--white-muted);
}

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

.footer-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

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

/* ================================
   Responsive
   ================================ */

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        gap: 32px;
    }

    .phone-fan {
        width: 320px;
        height: 420px;
    }

    .phone-center {
        width: 180px;
        height: 360px;
    }

    .phone-left {
        width: 150px;
        height: 300px;
        transform: translateX(-100px) rotate(-8deg) scale(0.9);
    }

    .phone-right {
        width: 150px;
        height: 300px;
        transform: translateX(100px) rotate(8deg) scale(0.9);
    }

    .steps {
        flex-direction: column;
        gap: 24px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }
}
