/* ============================================================
   TASTE THE LENS — Landing Page Styles
   Light cream theme with iOS app accent colors
   Inspired by Aromix restaurant aesthetic
   ============================================================ */

/* --- Design Tokens --- */
:root {
    --bg: #0A0A12;
    --bg-alt: #13101E;
    --bg-warm: #1A1530;
    --gold: #E8A832;
    --gold-dim: #A07520;
    --primary: #E8A832;
    --purple: #7B3FA0;
    --purple-bright: #9B5FC0;
    --magenta: #C73B8E;
    --teal: #9B5FC0;
    --terracotta: #C73B8E;
    --card-bg: rgba(35, 28, 58, 0.95);
    --card-border: rgba(123, 63, 160, 0.35);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --text-primary: #F0ECF5;
    --text-secondary: #C8BFD6;
    --text-muted: #9B8FB5;
    --text-dim: #6B5F80;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    --container-max: 1200px;
    --section-padding: 100px;
    --radius-playful: 24px;
    --z-nav: 50;
    --z-overlay: 1;
    --z-content: 10;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Geometric Overlay Canvas --- */
#geometric-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-overlay);
    pointer-events: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Card (replaces glass-card) --- */
.glass-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-playful);
    padding: 20px 16px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* --- Section Base --- */
.section {
    position: relative;
    z-index: var(--z-content);
    padding: var(--section-padding) 0;
}

.section--alt {
    background: var(--bg-warm);
}

.section-label {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 56px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: var(--z-nav);
    transition: transform 0.3s ease;
}

.nav.hidden {
    transform: translateY(-120%);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 63, 160, 0.25);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    padding: 10px 28px;
    border-radius: 100px;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(199, 59, 142, 0.4);
}

/* ============================================================
   HERO — Aromix-inspired split layout
   ============================================================ */
.hero {
    position: relative;
    z-index: var(--z-content);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    object-fit: cover;
    margin-bottom: 28px;
    filter: drop-shadow(0 8px 24px rgba(123, 63, 160, 0.4));
}

.hero-ornament {
    margin-bottom: 24px;
    opacity: 0.5;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0;
    transform: scale(0.9);
}

.hero-title.animate-in {
    animation: fadeScale 0.8s ease-out forwards;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 12px;
    opacity: 0;
}

.hero-tagline.animate-in {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 400;
    color: var(--text-dim);
    margin-bottom: 40px;
    opacity: 0;
}

.hero-sub.animate-in {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    padding: 18px 40px;
    border-radius: 100px;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta.animate-in {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-cta:hover {
    opacity: 0.92;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(199, 59, 142, 0.4);
}

/* Hero visual — Impact stats card */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.hero-visual.animate-in {
    animation: fadeScale 1s ease-out 0.4s forwards;
}

.hero-impact-card {
    width: 100%;
    max-width: 460px;
    padding: 44px 36px;
    text-align: center;
    border: 2px solid rgba(123, 63, 160, 0.3);
    border-radius: var(--radius-playful);
    box-shadow: 0 8px 32px rgba(123, 63, 160, 0.15);
    background: rgba(35, 28, 58, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-impact-heading {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.hero-impact-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 28px;
}

.hero-impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.hero-impact-number {
    font-family: var(--font-sans);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-impact-number--terracotta {
    color: var(--terracotta);
}

.hero-impact-number--gold {
    color: var(--gold);
}

.hero-impact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
}

.hero-impact-divider {
    width: 1px;
    height: 56px;
    background: rgba(123, 63, 160, 0.3);
    flex-shrink: 0;
}

.hero-impact-progress {
    margin-bottom: 20px;
}

.hero-impact-tagline {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-impact-link {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.hero-impact-link:hover {
    color: var(--gold);
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    opacity: 0;
    animation: bounce 2s ease-in-out infinite;
    animation-delay: 2s;
}

.scroll-hint.animate-in {
    animation: fadeUp 0.6s ease-out forwards, bounce 2s ease-in-out infinite 2.6s;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
    text-align: center;
    padding: 0;
    position: relative;
    z-index: var(--z-content);
    height: 0;
}

/* ============================================================
   HOOK
   ============================================================ */
.hook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.hook-card {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.hook-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(123, 63, 160, 0.2);
}

.hook-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

[data-accent="teal"] .hook-accent { background: var(--teal); }
[data-accent="teal"] { border-color: rgba(155, 95, 192, 0.4); background: rgba(35, 28, 58, 0.95); }
[data-accent="terracotta"] .hook-accent { background: var(--terracotta); }
[data-accent="terracotta"] { border-color: rgba(199, 59, 142, 0.4); background: rgba(35, 28, 58, 0.95); }
[data-accent="gold"] .hook-accent { background: var(--gold); }
[data-accent="gold"] { border-color: rgba(232, 168, 50, 0.4); background: rgba(35, 28, 58, 0.95); }

.hook-question {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.hook-hint {
    font-family: var(--font-accent);
    font-size: 15px;
    color: var(--text-dim);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    background: var(--bg-warm);
}

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

.step {
    text-align: center;
    max-width: 280px;
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 3px solid transparent;
}

.step-icon--teal { background: rgba(155, 95, 192, 0.12); color: var(--teal); border-color: rgba(155, 95, 192, 0.25); }
.step-icon--gold { background: rgba(232, 168, 50, 0.12); color: var(--gold); border-color: rgba(232, 168, 50, 0.25); }
.step-icon--terracotta { background: rgba(199, 59, 142, 0.12); color: var(--terracotta); border-color: rgba(199, 59, 142, 0.25); }

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 28px;
    color: var(--text-dim);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   TRANSLATION MATRIX
   ============================================================ */
.matrix-card {
    padding: 36px 28px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(123, 63, 160, 0.2);
}

.matrix-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(123, 63, 160, 0.2);
}

.matrix-col-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.matrix-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}

.matrix-visual {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--teal);
    font-weight: 500;
}

.matrix-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(123, 63, 160, 0.25);
}

.matrix-arrow {
    color: var(--text-dim);
    flex-shrink: 0;
}

.matrix-culinary {
    flex: 1;
    font-size: 15px;
    color: var(--terracotta);
    font-weight: 500;
}

.matrix-divider {
    height: 1px;
    background: rgba(123, 63, 160, 0.15);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
    background: var(--bg-warm);
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    border: 2px solid rgba(123, 63, 160, 0.2);
}

.feature-card:hover {
    transform: translateY(-6px) rotate(1deg);
    border-color: rgba(123, 63, 160, 0.4);
    box-shadow: 0 8px 24px rgba(123, 63, 160, 0.15);
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   WAITLIST CTA
   ============================================================ */
.waitlist-section {
    padding-bottom: 80px;
}

.waitlist-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 56px 36px;
    text-align: center;
    background: linear-gradient(135deg, rgba(123, 63, 160, 0.6), rgba(199, 59, 142, 0.6));
    border-color: rgba(199, 59, 142, 0.4);
    border-width: 3px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.waitlist-card .waitlist-subtitle,
.waitlist-card .waitlist-message.success {
    color: rgba(255, 255, 255, 0.8);
}

.waitlist-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 12px;
}

.waitlist-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    max-width: 480px;
    margin: 0 auto;
}

.waitlist-input-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.waitlist-input {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: #F0ECF5;
    background: rgba(10, 10, 18, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.waitlist-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 168, 50, 0.2);
}

.waitlist-input.error {
    border-color: #E85D3A;
    box-shadow: 0 0 0 3px rgba(232, 93, 58, 0.2);
}

.waitlist-button {
    position: relative;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: #0A0A12;
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 100px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    min-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.waitlist-button:hover:not(:disabled) {
    opacity: 0.92;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(232, 168, 50, 0.3);
}

.waitlist-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.waitlist-button-text,
.waitlist-button-spinner,
.waitlist-button-check {
    transition: opacity 0.2s ease;
}

.waitlist-button-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(10, 10, 18, 0.3);
    border-top-color: #0A0A12;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
}

.waitlist-button-check {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* States */
.waitlist-button.loading .waitlist-button-text { opacity: 0; }
.waitlist-button.loading .waitlist-button-spinner { display: block; }

.waitlist-button.success {
    background: #34C759;
}
.waitlist-button.success .waitlist-button-text { opacity: 0; }
.waitlist-button.success .waitlist-button-check { display: block; }

.waitlist-message {
    margin-top: 12px;
    font-size: 14px;
    min-height: 20px;
}

.waitlist-message.success {
    color: #34C759;
}

.waitlist-message.error {
    color: var(--terracotta);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    z-index: var(--z-content);
    padding: 48px 0;
    background: #050508;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(123, 63, 160, 0.15);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
}

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

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

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: #FFFFFF;
}

/* ============================================================
   HOW DONATIONS WORK
   ============================================================ */
.donation-section {
    background: var(--bg-warm);
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto 36px;
}

.donation-card {
    padding: 36px 28px;
    text-align: center;
    border: 2px solid rgba(123, 63, 160, 0.2);
    transition: transform 0.3s ease;
}

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

.donation-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid transparent;
}

.donation-card-icon--terracotta {
    background: rgba(199, 59, 142, 0.12);
    color: var(--terracotta);
    border-color: rgba(199, 59, 142, 0.2);
}

.donation-card-icon--gold {
    background: rgba(232, 168, 50, 0.12);
    color: var(--gold);
    border-color: rgba(232, 168, 50, 0.2);
}

.donation-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.donation-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.donation-card-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(10, 10, 18, 0.4);
    border-radius: 100px;
    border: 1px solid rgba(123, 63, 160, 0.15);
}

.formula-item {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.formula-item--highlight {
    color: var(--terracotta);
}

.formula-arrow {
    color: var(--text-dim);
    flex-shrink: 0;
}

.donation-footnote {
    text-align: center;
    font-size: 14px;
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

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

    .donation-card {
        padding: 28px 20px;
    }
}

/* ============================================================
   COMMUNITY IMPACT (legacy styles)
   ============================================================ */
.impact-section {
    background: var(--bg-warm);
}

.impact-card {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 44px 36px;
}

.impact-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.impact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.impact-icon--terracotta {
    background: rgba(199, 59, 142, 0.12);
    color: var(--terracotta);
}

.impact-icon--gold {
    background: rgba(232, 168, 50, 0.12);
    color: var(--gold);
}

.impact-number {
    font-family: var(--font-sans);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.impact-stat:first-child .impact-number {
    color: var(--terracotta);
}

.impact-stat:last-child .impact-number {
    color: var(--gold);
}

.impact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
}

.impact-divider {
    width: 1px;
    height: 56px;
    background: rgba(123, 63, 160, 0.3);
    flex-shrink: 0;
}

.impact-progress-wrap {
    margin-bottom: 24px;
}

.impact-progress-track {
    height: 6px;
    background: rgba(123, 63, 160, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.impact-progress-bar {
    height: 100%;
    background: var(--terracotta);
    border-radius: 3px;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.impact-progress-text {
    font-size: 12px;
    color: var(--text-dim);
}

.impact-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 639px) {
    .impact-card {
        padding: 28px 20px;
    }

    .impact-stats {
        gap: 24px;
    }

    .impact-number {
        font-size: 28px;
    }

    .impact-divider {
        height: 44px;
    }
}

/* ============================================================
   BRAND BAND — Scrolling marquee
   ============================================================ */
.brand-band {
    position: relative;
    z-index: var(--z-content);
    overflow: hidden;
    padding: 28px 0;
    background: linear-gradient(90deg, rgba(123, 63, 160, 0.2), rgba(199, 59, 142, 0.2), rgba(123, 63, 160, 0.2));
    border-top: 1px solid rgba(123, 63, 160, 0.2);
    border-bottom: 1px solid rgba(123, 63, 160, 0.2);
}

.brand-band-track {
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brand-band-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.6;
}

.brand-band-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   FOOD VIBE — Decorative Elements
   ============================================================ */

/* Decorative pseudo-elements on sections */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(123, 63, 160, 0.08);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(199, 59, 142, 0.06);
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(123, 63, 160, 0.06);
    pointer-events: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll-triggered animation classes */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-animate="fade-scale"] {
    transform: scale(0.9);
}

[data-animate="fade"] {
    transform: none;
}

[data-animate="matrix-row"] {
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) scale(1) translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (640px+) */
@media (min-width: 640px) {
    .hook-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .waitlist-input-group {
        flex-wrap: nowrap;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-arrow {
        display: flex;
    }

    .steps {
        flex-wrap: nowrap;
    }
}

/* Mobile adjustments */
@media (max-width: 639px) {
    :root {
        --section-padding: 80px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual {
        order: -1;
    }

    .hero-impact-card {
        max-width: 340px;
        margin: 0 auto;
        padding: 28px 20px;
    }

    .hero-impact-stats {
        gap: 24px;
    }

    .hero-impact-number {
        font-size: 30px;
    }

    .hero-impact-divider {
        height: 44px;
    }

    .step-arrow {
        display: none;
    }

    .steps {
        gap: 36px;
    }

    .matrix-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .matrix-arrow {
        transform: rotate(90deg);
        align-self: center;
    }

    .matrix-header {
        display: none;
    }

    .matrix-visual {
        font-size: 13px;
    }

    .matrix-culinary {
        font-size: 13px;
        padding-left: 44px;
    }

    .waitlist-card {
        padding: 36px 20px;
    }

    .nav-inner {
        padding: 10px 16px;
    }

    .hero::before,
    .hero::after,
    .features-section::after {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .scroll-hint {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    .scroll-hint {
        animation: none;
        opacity: 0.3;
    }

    .brand-band-track {
        animation: none;
    }
}
