/* SommelAI Website Styles */

:root {
    --burgundy: #722F37;
    --gold: #C4A35A;
    --gold-bright: #E0BD6E;
    --cream: #F5ECD7;
    --warm-white: #FCF9F2;
    --deep-wine: #501921;
    --inky-wine: #2A0A10;
    --charcoal: #2D2926;
    --rose: #B76E79;

    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ===== COMING SOON PAGE ===== */

.coming-soon-page {
    background: linear-gradient(160deg, var(--deep-wine) 0%, var(--burgundy) 40%, #8B3A42 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-container {
    text-align: center;
    padding: 40px 24px;
    max-width: 560px;
    width: 100%;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

img.cs-logo {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    border-radius: 20px !important;
    margin-bottom: 24px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.nav-logo-img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    vertical-align: middle;
    margin-right: 6px;
    object-fit: cover;
}

.cs-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.cs-tagline {
    font-size: 18px;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cs-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 24px;
    opacity: 0.6;
}

.cs-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.cs-badge {
    margin-bottom: 40px;
}

.cs-badge-text {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cs-email-signup {
    margin-bottom: 32px;
}

.cs-notify {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.cs-twitter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.cs-twitter:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cs-form {
    display: flex;
    gap: 8px;
    max-width: 380px;
    margin: 0 auto;
}

.cs-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.cs-input::placeholder { color: rgba(255,255,255,0.4); }
.cs-input:focus { border-color: var(--gold); }

.cs-submit {
    padding: 12px 24px;
    background: var(--gold);
    color: var(--deep-wine);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Inter', sans-serif;
}

.cs-submit:hover { opacity: 0.9; }

.cs-confirm {
    color: var(--gold);
    font-size: 14px;
    margin-top: 8px;
}

.cs-early-access {
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.cs-early-access:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cs-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.cs-footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* Unlock Modal */
.unlock-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.unlock-overlay.active { display: flex; }

.unlock-modal {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 20px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    position: relative;
}

.unlock-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--charcoal);
    cursor: pointer;
    opacity: 0.4;
}

.unlock-close:hover { opacity: 1; }

.unlock-title {
    font-size: 24px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.unlock-subtitle {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.6;
    margin-bottom: 24px;
}

.unlock-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
}

.unlock-input:focus { border-color: var(--gold); }

.unlock-btn {
    width: 100%;
    padding: 14px;
    background: var(--burgundy);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s;
}

.unlock-btn:hover { opacity: 0.9; }

.unlock-error {
    display: none;
    color: var(--rose);
    font-size: 13px;
    margin-top: 12px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.shake { animation: shake 0.3s ease; }

/* ===== SHOWCASE PAGE ===== */

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
    background: rgba(252, 249, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--burgundy);
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    opacity: 0.7;
    transition: opacity 0.2s;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-content { flex: 1; max-width: 500px; }

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 32px;
}

.badge {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    color: var(--burgundy);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

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

.phone-mock {
    width: 280px;
    height: 560px;
    background: var(--charcoal);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(80, 25, 33, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--deep-wine), var(--burgundy));
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-placeholder {
    text-align: center;
    color: var(--gold);
}

.phone-placeholder span { font-size: 48px; }
.phone-placeholder p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-top: 8px;
    color: rgba(255,255,255,0.8);
}

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

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--burgundy);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--charcoal);
    opacity: 0.6;
    text-align: center;
    margin-bottom: 48px;
}

/* How It Works */
.how-it-works { background: var(--cream); }

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

.step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 24px;
}

.step-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.step h3 {
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.7;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 24px;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--cream);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(196, 163, 90, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(80, 25, 33, 0.08);
}

.feature-icon {
    margin-bottom: 14px;
    display: flex;
}

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

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.7;
}

/* Sidney */
.sidney { background: linear-gradient(160deg, var(--deep-wine), var(--burgundy)); }

.sidney .section-title { color: #fff; }

.sidney-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 40px;
}

.sidney-quote {
    max-width: 640px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    border-left: 3px solid var(--gold);
}

.sidney-quote p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.sidney-quote p:last-child { margin-bottom: 0; }

/* Partners */
.partners { background: var(--cream); }

.partners-text {
    text-align: center;
    font-size: 16px;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.partner-type {
    background: var(--warm-white);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(196, 163, 90, 0.15);
}

.partner-type h3 {
    font-size: 16px;
    color: var(--burgundy);
    margin-bottom: 6px;
}

.partner-type p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--charcoal);
    opacity: 0.6;
}

.partners-cta {
    display: inline-block;
    padding: 14px 40px;
    background: var(--burgundy);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.2s;
    margin: 0 auto;
    text-align: center;
}

.partners .section-inner { text-align: center; }
.partners-cta:hover { opacity: 0.9; }

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 48px 24px;
    text-align: center;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
    }

    .hero-title { font-size: 40px; }

    .phone-mock {
        width: 220px;
        height: 440px;
    }

    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 0; }

    .cs-title { font-size: 36px; }
    .cs-form { flex-direction: column; }

    .feature-grid { grid-template-columns: 1fr; }
    .partners-list { grid-template-columns: 1fr; }

    .section { padding: 60px 20px; }
    .section-title { font-size: 28px; }
}

/* Legal Pages */
.legal-page {
    background: var(--warm-white);
}

.legal-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px 60px;
}

.legal-back {
    display: inline-block;
    font-size: 14px;
    color: var(--burgundy);
    text-decoration: none;
    margin-bottom: 24px;
}

.legal-back:hover { text-decoration: underline; }

.legal-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 13px;
    color: var(--charcoal);
    opacity: 0.5;
    margin-bottom: 32px;
}

.legal-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--burgundy);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-container h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-container p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.legal-container ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.legal-container li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.legal-container a {
    color: var(--burgundy);
}

.legal-container strong {
    font-weight: 600;
}

/* =================================================================
   TEASER PAGE  -  the public landing
   ================================================================= */

.teaser-page {
    background: var(--inky-wine);
    color: rgba(255, 255, 255, 0.92);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Ambient gradient blobs that drift behind the page */
.ambient {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    will-change: transform;
}
.ambient-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 31, 42, 0.85) 0%, transparent 70%);
    top: -200px;
    left: -180px;
    animation: drift-1 24s ease-in-out infinite alternate;
}
.ambient-blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.35) 0%, transparent 70%);
    top: 40%;
    right: -250px;
    animation: drift-2 30s ease-in-out infinite alternate;
}
.ambient-blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(80, 25, 33, 0.7) 0%, transparent 70%);
    bottom: -150px;
    left: 30%;
    animation: drift-3 28s ease-in-out infinite alternate;
}
@keyframes drift-1 { 0% { transform: translate(0,0); } 100% { transform: translate(80px, 120px); } }
@keyframes drift-2 { 0% { transform: translate(0,0); } 100% { transform: translate(-100px, -80px); } }
@keyframes drift-3 { 0% { transform: translate(0,0); } 100% { transform: translate(60px, -100px); } }

/* Nav */
.teaser-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 36px;
    background: linear-gradient(to bottom, rgba(42, 10, 16, 0.7), transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.teaser-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.2px;
}
.teaser-nav-logo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.teaser-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.teaser-nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.teaser-nav-links a:hover { color: var(--gold-bright); }
.teaser-nav-cta {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(196, 163, 90, 0.4);
    color: var(--gold-bright) !important;
}
.teaser-nav-cta:hover {
    border-color: var(--gold-bright);
    background: rgba(196, 163, 90, 0.1);
}

/* Hero */
.hero-teaser {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 36px 80px;
}
.hero-teaser-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-teaser-text { max-width: 580px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(196, 163, 90, 0.12);
    border: 1px solid rgba(196, 163, 90, 0.25);
    color: var(--gold-bright);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 12px var(--gold-bright);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 24px;
}
.hero-headline-accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(120deg, var(--gold) 0%, var(--gold-bright) 25%, #FBEBC2 50%, var(--gold-bright) 75%, var(--gold) 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: text-shimmer 6s linear infinite;
}
@keyframes text-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 220% center; }
}

.hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
    color: var(--inky-wine);
    border: none;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 24px rgba(196, 163, 90, 0.25);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(196, 163, 90, 0.4);
}
.btn-primary svg { transition: transform 0.15s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.12);
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover, .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(196, 163, 90, 0.4);
    color: #fff;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.hero-trust strong {
    color: var(--gold-bright);
    font-weight: 600;
    margin-right: 2px;
}
.hero-trust-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

/* Hero visual: wine glass + voice card */
.hero-teaser-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
}
.glass-stage {
    position: relative;
    width: 360px;
    height: 520px;
}
.wine-glass {
    width: 100%;
    height: 100%;
    overflow: visible;
    transform-origin: center;
    animation: scene-float 8s ease-in-out infinite;
}
/* The bottle + glass scene drifts gently, like a slow breath. */
@keyframes scene-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}

/* Ambient glow behind the bowl, breathing slowly. */
.glass-glow {
    transform-origin: center;
    animation: glow-breathe 6s ease-in-out infinite;
}
@keyframes glow-breathe {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50%      { opacity: 0.7;  transform: scale(1.06); }
}

/* Wine pours in on load, then the surface keeps a slow living shimmer. */
.wine-fill, .wine-meniscus {
    transform: translateY(150px);
    animation: pour 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
@keyframes pour {
    0%   { transform: translateY(150px); }
    70%  { transform: translateY(-6px); }   /* slight overfill, like a real pour settling */
    100% { transform: translateY(0); }
}
/* Surface highlight on the wine, gently drifting to fake light catching it. */
.wine-surface-glint {
    transform: translateY(150px);
    animation: pour 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
               surface-drift 5s ease-in-out 3s infinite;
}
@keyframes surface-drift {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 0.85; }
}

/* Specular streak that sweeps across the glass like a light source moving. */
.glass-shimmer {
    opacity: 0;
    animation: shimmer 7s ease-in-out 1.5s infinite;
}
@keyframes shimmer {
    0%   { opacity: 0; transform: translateX(-30px) skewX(-12deg); }
    12%  { opacity: 0.55; }
    30%  { opacity: 0; transform: translateX(40px) skewX(-12deg); }
    100% { opacity: 0; transform: translateX(40px) skewX(-12deg); }
}

/* Wine "legs" / tears forming and slipping down the inside of the bowl. */
.wine-legs {
    opacity: 0;
    animation: legs 6s ease-in-out 3.2s infinite;
}
@keyframes legs {
    0%   { opacity: 0; transform: translateY(-6px); }
    40%  { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ============================================================
   HERO "live tasting" card  -  the wow moment
   ============================================================ */
.hero-stage {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
}
.tasting-card {
    position: relative;
    width: 100%;
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(165deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.03) 55%, rgba(114,47,55,0.10) 100%);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: 0 36px 90px rgba(20,4,10,0.6), inset 0 1px 0 rgba(255,255,255,0.14);
    overflow: hidden;
    animation: card-float 7s ease-in-out infinite;
}
@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
/* gold sheen sweeping the top edge */
.tasting-card::before {
    content: '';
    position: absolute;
    top: 0; left: -40%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.06), transparent);
    transform: skewX(-18deg);
    animation: card-sheen 7s ease-in-out 1s infinite;
    pointer-events: none;
}
@keyframes card-sheen {
    0%   { left: -50%; opacity: 0; }
    18%  { opacity: 1; }
    40%  { left: 110%; opacity: 0; }
    100% { left: 110%; opacity: 0; }
}

.tc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.tc-avatar {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--inky-wine);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(196,163,90,0.4);
}
.tc-head-meta { line-height: 1.25; }
.tc-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.tc-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}
.tc-wave { margin-left: auto; height: 22px; }

.tc-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.14), transparent);
    margin-bottom: 22px;
}

/* Two independent fades:
   - tc-swapping     → fades ONLY the narration, on every stage step. The wine
                       name / region / price stay put while the notes change.
   - tc-wine-swapping → fades the wine details too, ONLY when the wine changes
                       (after Finish rolls over to the next of the 3 wines). */
.tc-narration,
.tc-wine,
.tc-buy-price {
    transition: opacity 0.32s ease, transform 0.32s ease;
}
.tasting-card.tc-swapping .tc-narration {
    opacity: 0;
    transform: translateY(8px);
}
.tasting-card.tc-wine-swapping .tc-wine,
.tasting-card.tc-wine-swapping .tc-buy-price {
    opacity: 0;
    transform: translateY(8px);
}
/* Reserve space so a longer wine name (2 lines) doesn't shift the card. */
.tc-wine { min-height: 72px; }

.tc-wine-name {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}
.tc-wine-sub {
    font-size: 13px;
    color: var(--gold-bright);
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}
.tc-narration {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    min-height: 82px;          /* keeps the card from jumping as text rotates */
    margin-bottom: 20px;
    position: relative;
}
.tc-quote {
    color: var(--gold-bright);
    font-size: 26px;
    margin-right: 2px;
    vertical-align: -4px;
}

.tc-stages {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.tc-stage {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 5px 12px;
    border-radius: 999px;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}
.tc-stage.active {
    color: var(--inky-wine);
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(196,163,90,0.35);
}

.tc-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.tc-buy-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--gold-bright);
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(196,163,90,0.12);
    border: 1px solid rgba(196,163,90,0.3);
    white-space: nowrap;
}
.tc-buy-price {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-align: right;
}

/* floating "Hey Sidney" accent chip */
.hero-chip {
    position: absolute;
    bottom: -26px;
    left: -24px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(31,6,11,0.72);
    border: 1px solid rgba(196,163,90,0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    animation: chip-bob 6s ease-in-out 0.5s infinite;
    max-width: 230px;
}
@keyframes chip-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}
.hero-chip-k {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--gold-bright);
    margin-bottom: 3px;
}
.hero-chip-v {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    font-style: italic;
}

/* Voice card overlay */
.voice-card {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 18px;
    width: 240px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    animation: float-up 0.8s ease 0.4s both;
}
.voice-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.voice-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--inky-wine);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.voice-meta { line-height: 1.3; min-width: 0; }
.voice-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.voice-status {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Waveform */
.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
}
.waveform span {
    display: block;
    width: 3px;
    background: var(--gold-bright);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1) { height: 30%; animation-delay: 0.0s; }
.waveform span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 90%; animation-delay: 0.05s; }
.waveform span:nth-child(4) { height: 45%; animation-delay: 0.15s; }
.waveform span:nth-child(5) { height: 70%; animation-delay: 0.2s; }
.waveform span:nth-child(6) { height: 35%; animation-delay: 0.25s; }
.waveform span:nth-child(7) { height: 85%; animation-delay: 0.1s; }
.waveform span:nth-child(8) { height: 50%; animation-delay: 0.3s; }
.waveform span:nth-child(9) { height: 75%; animation-delay: 0.18s; }
.waveform span:nth-child(10){ height: 40%; animation-delay: 0.22s; }
.waveform span:nth-child(11){ height: 95%; animation-delay: 0.05s; }
.waveform span:nth-child(12){ height: 30%; animation-delay: 0.28s; }
.waveform span:nth-child(13){ height: 65%; animation-delay: 0.16s; }
.waveform span:nth-child(14){ height: 50%; animation-delay: 0.24s; }
.waveform span:nth-child(15){ height: 80%; animation-delay: 0.12s; }
.waveform span:nth-child(16){ height: 35%; animation-delay: 0.27s; }
.waveform span:nth-child(17){ height: 70%; animation-delay: 0.14s; }
.waveform span:nth-child(18){ height: 55%; animation-delay: 0.19s; }
.waveform span:nth-child(19){ height: 90%; animation-delay: 0.08s; }
.waveform span:nth-child(20){ height: 40%; animation-delay: 0.23s; }
.waveform span:nth-child(21){ height: 60%; animation-delay: 0.17s; }
.waveform span:nth-child(22){ height: 75%; animation-delay: 0.11s; }
.waveform span:nth-child(23){ height: 45%; animation-delay: 0.26s; }
.waveform span:nth-child(24){ height: 85%; animation-delay: 0.09s; }
.waveform span:nth-child(25){ height: 50%; animation-delay: 0.21s; }
.waveform-sm { height: 16px; }
.waveform-sm span { width: 2px; }
@keyframes wave {
    0%, 100% { transform: scaleY(0.6); opacity: 0.7; }
    50%      { transform: scaleY(1);    opacity: 1; }
}

/* Floating tasting chips */
.float-chip {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(196, 163, 90, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
    max-width: 200px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.chip-label {
    display: block;
    font-size: 10px;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}
.float-chip-1 {
    top: 30px;
    right: -30px;
    animation: float-up 0.8s ease 0.6s both, bob 5s ease-in-out infinite;
}
.float-chip-2 {
    top: 200px;
    left: -60px;
    animation: float-up 0.8s ease 0.9s both, bob 5s ease-in-out 1s infinite;
}
@keyframes float-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    transition: color 0.2s ease;
    animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--gold-bright); }
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 6px); }
}

/* Generic teaser section */
.teaser-section {
    position: relative;
    z-index: 1;
    padding: 100px 36px;
}
.teaser-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 16px;
}
.section-headline {
    font-family: var(--serif);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 18px;
    max-width: 700px;
}
.section-lede {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    max-width: 620px;
    margin-bottom: 64px;
}

/* Pillars */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pillar {
    padding: 36px 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.pillar:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 163, 90, 0.3);
    transform: translateY(-4px);
}
.pillar-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-bright);
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.pillar h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.pillar p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

/* Sidney quote block */
.sidney-block { padding: 120px 36px; }
.sidney-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 56px 40px;
    border-radius: 28px;
    background: linear-gradient(160deg,
        rgba(196, 163, 90, 0.12) 0%,
        rgba(114, 47, 55, 0.18) 60%,
        rgba(42, 10, 16, 0.4) 100%);
    border: 1px solid rgba(196, 163, 90, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.sidney-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.25) 0%, transparent 70%);
    pointer-events: none;
}
.sidney-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
}
.sidney-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--inky-wine);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sidney-card-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.sidney-card-role {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
}
.sidney-quote-block {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    margin: 0 0 28px;
    position: relative;
    letter-spacing: -0.2px;
}
.sidney-quote-block em {
    color: var(--gold-bright);
    font-style: italic;
}
.sidney-quote-mark {
    position: absolute;
    top: -32px;
    left: -10px;
    font-size: 100px;
    color: rgba(196, 163, 90, 0.18);
    font-family: var(--serif);
    line-height: 1;
    pointer-events: none;
}
.sidney-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.sidney-card-listen {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
}
.hey-sidney-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.7);
    animation: pulse 2s ease-in-out infinite;
}

/* Ribbon grid for "what's inside" */
.ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ribbon {
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.ribbon:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 163, 90, 0.25);
    transform: translateY(-3px);
}
.ribbon-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(196, 163, 90, 0.12);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ribbon-icon svg { width: 20px; height: 20px; }
.ribbon h4 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.ribbon p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.55);
}

/* Family grid */
.family-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.family-card {
    padding: 40px 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.family-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 163, 90, 0.3);
}
.family-glyph {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(196, 163, 90, 0.1);
}
.family-glyph svg { width: 40px; height: 40px; }
.family-glyph-wine   { color: #B43F4A; }
.family-glyph-whisky { color: #C68843; }
.family-glyph-beer   { color: #D8A93F; }
/* Real app icons, rounded into an iOS-style tile. */
.family-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 22%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.family-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.family-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}

/* Early access card */
.early-access { padding: 80px 36px 100px; }
.ea-card {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
}
.ea-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(114, 47, 55, 0.55) 0%,
        rgba(80, 25, 33, 0.7) 60%,
        rgba(196, 163, 90, 0.25) 100%);
    z-index: -1;
}
.ea-card-bg::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.4) 0%, transparent 70%);
    filter: blur(40px);
}
.ea-card-content {
    padding: 64px 56px;
    text-align: center;
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.ea-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.ea-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 18px;
}
.ea-sub {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto;
}
/* Register-interest form (unused for now — kept for when email is wired up) */
.ea-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}
.ea-input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: var(--sans);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.ea-input::placeholder { color: rgba(255,255,255,0.4); }
.ea-input:focus {
    border-color: var(--gold-bright);
    background: rgba(255,255,255,0.09);
}
.ea-submit { flex-shrink: 0; }
.ea-msg {
    margin-top: 16px;
    font-size: 14px;
    min-height: 20px;
}
.ea-msg-ok  { color: var(--gold-bright); }
.ea-msg-err { color: #E58B92; }
.ea-follow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.ea-follow:hover { color: var(--gold-bright); }
@media (max-width: 520px) {
    .ea-form { flex-direction: column; }
    .ea-submit { justify-content: center; }
}
.ea-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.teaser-footer {
    position: relative;
    z-index: 1;
    padding: 60px 36px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}
.teaser-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
}
.teaser-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.teaser-footer-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}
.teaser-footer-name {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.teaser-footer-tag {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.teaser-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.teaser-footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.teaser-footer-links a:hover { color: var(--gold-bright); }
.teaser-footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.teaser-footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-align: right;
}

/* Social icon row (X / Instagram / TikTok) */
.social-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-link:hover {
    color: var(--gold-bright);
    border-color: rgba(224,189,110,0.45);
    background: rgba(196,163,90,0.1);
    transform: translateY(-2px);
}
.ea-social {
    margin-top: 30px;
}
.ea-social-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
}

/* Restyle the unlock modal for the new dark theme */
.teaser-page .unlock-overlay {
    background: rgba(20, 6, 9, 0.85);
    backdrop-filter: blur(12px);
}
.teaser-page .unlock-modal {
    background: linear-gradient(160deg,
        #1f0710 0%,
        #2a0a13 100%);
    color: #fff;
    border: 1px solid rgba(196, 163, 90, 0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.teaser-page .unlock-close {
    color: rgba(255,255,255,0.5);
}
.teaser-page .unlock-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: rgba(196, 163, 90, 0.12);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
}
.teaser-page .unlock-title {
    color: #fff;
    font-size: 26px;
}
.teaser-page .unlock-subtitle {
    color: rgba(255,255,255,0.55);
}
.teaser-page .unlock-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}
.teaser-page .unlock-input::placeholder {
    color: rgba(255,255,255,0.35);
}
.teaser-page .unlock-input:focus {
    border-color: var(--gold-bright);
    background: rgba(255,255,255,0.08);
}
.teaser-page .unlock-btn {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--inky-wine);
}
.teaser-page .unlock-error { color: #E58B92; }

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
    .hero-teaser-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-teaser-visual { height: 440px; }
    .glass-stage { width: 280px; height: 400px; }
    .float-chip-1, .float-chip-2 {
        position: static;
        margin: 0 auto 8px;
        animation: float-up 0.8s ease 0.4s both;
        max-width: 240px;
    }
    .pillar-grid { grid-template-columns: 1fr; }
    .ribbon-grid { grid-template-columns: repeat(2, 1fr); }
    .family-grid { grid-template-columns: 1fr; }
    .teaser-footer-inner { grid-template-columns: 1fr; text-align: center; }
    .teaser-footer-brand { justify-content: center; }
    .teaser-footer-copy { text-align: center; }
}

@media (max-width: 640px) {
    .teaser-nav { padding: 14px 20px; }
    .teaser-nav-links { gap: 16px; }
    .teaser-nav-links a:not(.teaser-nav-cta) { display: none; }
    .hero-teaser { padding: 110px 20px 60px; }
    .teaser-section { padding: 80px 20px; }
    .sidney-card { padding: 36px 24px 28px; }
    .ea-card-content { padding: 48px 28px; }
    .ribbon-grid { grid-template-columns: 1fr; }
    .voice-card { width: 200px; left: -10px; }
    .hero-trust { font-size: 12px; }
}

/* =================================================================
   SHOWCASE-PAGE-V2  -  the deep-dive page (gated)
   Reuses teaser-page styles; these add the showcase-only components.
   ================================================================= */

/* Step rail (HOW IT WORKS - showcase) */
.step-rail {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
}
.step-rail-item {
    padding: 36px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.step-rail-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 163, 90, 0.3);
    transform: translateY(-4px);
}
.step-rail-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--gold-bright);
    margin-bottom: 24px;
}
.step-rail-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(196, 163, 90, 0.12);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.step-rail-body h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.step-rail-body p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}
.step-rail-connector {
    align-self: center;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(196, 163, 90, 0.6) 50%,
        transparent 100%);
    position: relative;
}
.step-rail-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(196, 163, 90, 0.7);
    font-size: 16px;
    line-height: 1;
}

/* Big feature grid (showcase features section) */
.big-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.big-feature {
    padding: 32px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}
.big-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 163, 90, 0.3);
    transform: translateY(-4px);
}
/* Hero tiles span 1.5 width on desktop to highlight tastings + Hey Sidney */
.big-feature-hero {
    grid-column: span 3;
    background: linear-gradient(140deg,
        rgba(196, 163, 90, 0.10) 0%,
        rgba(114, 47, 55, 0.18) 60%,
        rgba(80, 25, 33, 0.25) 100%);
    border-color: rgba(196, 163, 90, 0.22);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}
.big-feature-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
@media (min-width: 961px) {
    .big-feature-hero { grid-column: span 1.5; }
    .big-feature-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .big-feature { grid-column: span 2; }
    .big-feature-hero { grid-column: span 3; }
}
.big-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(196, 163, 90, 0.12);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.big-feature-icon svg { width: 22px; height: 22px; }
.big-feature h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.big-feature-hero h3 { font-size: 26px; }
.big-feature p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    flex-grow: 1;
}
.big-feature-hero p { font-size: 15px; }
.big-feature-flair {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.big-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    font-size: 12px;
    font-weight: 500;
    color: #8DD89A;
}

/* Partner tiles (showcase) */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.partner-tile {
    padding: 32px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.partner-tile:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 163, 90, 0.3);
    transform: translateY(-3px);
}
.partner-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(196, 163, 90, 0.12);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.partner-tile-icon svg { width: 20px; height: 20px; }
.partner-tile h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}
.partner-tile p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}
.partners-cta-wrap {
    text-align: center;
}

/* Showcase responsive overrides */
@media (max-width: 960px) {
    .step-rail {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-rail-connector { display: none; }
    .big-feature-grid { grid-template-columns: 1fr !important; }
    .big-feature, .big-feature-hero { grid-column: auto !important; }
    .partner-grid { grid-template-columns: 1fr; }
}
