/* ─── Tiffora Coming Soon — Styling System ─────────────────────────────────── */

/* Global Custom Properties / Tokens */
:root {
    --color-cream: #FAF9F6;
    --color-charcoal: #1E1D1C;
    --color-orange: #D44E00;
    --color-orange-hover: #B84300;
    --color-orange-light: #FFF4EE;
    --color-orange-glow: rgba(212, 78, 0, 0.08);

    --color-dark-bg: #151311;
    --color-dark-card: #1E1B19;
    --color-dark-border: #2E2A26;

    --color-white: #FFFFFF;
    --color-subtext: #5A5550;
    --color-dark-subtext: #968F8A;
    --color-success: #10B981;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-pill: 100px;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

    --gradient-orange: linear-gradient(135deg, #D44E00 0%, #B84300 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Background Decorative Glowing Blobs */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
    animation: floatBlobs 24s infinite alternate ease-in-out;
}

.blob-1 {
    background-color: var(--color-orange);
    top: 5%;
    left: -150px;
    animation-delay: 0s;
}

.blob-2 {
    background-color: #ff8a80;
    top: 35%;
    right: -150px;
    animation-delay: -5s;
    width: 500px;
    height: 500px;
}

.blob-3 {
    background-color: #ffd180;
    bottom: 20%;
    left: 15%;
    animation-delay: -11s;
}

@keyframes floatBlobs {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(60px, 30px) scale(1.1); }
    100% { transform: translate(-30px, -45px) scale(0.95); }
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ─── Typography ──────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--color-charcoal);
}

.text-orange { color: var(--color-orange); }
.text-white  { color: var(--color-white); }

.text-dark-subtext { color: var(--color-dark-subtext); }


/* ─── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 91, 12, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-block {
    width: 100%;
}

.btn-orange-outline {
    background-color: transparent;
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    text-decoration: none;
}

.btn-orange-outline:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 91, 12, 0.2);
}


/* ─── Header ──────────────────────────────────────────────────────────────── */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(252, 249, 244, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 17, 11, 0.05);
    padding: 16px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    height: 38px;
    width: 38px;
    object-fit: contain;
    border-radius: 8px;
    animation: floatLogo 4s ease-in-out infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-family: 'Outfit', var(--font-main);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-subtext);
    margin-top: 1px;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.main-nav a:hover {
    opacity: 1;
    color: var(--color-orange);
}

.header-cta {
    padding: 10px 22px;
    font-size: 0.9rem;
}


/* ─── Section Shared Styles ───────────────────────────────────────────────── */

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.section-tag {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-orange);
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-charcoal);
    margin-top: 12px;
}

.section-title.text-white {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-subtext);
    margin-top: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.section-subtitle-dark {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-dark-subtext);
    max-width: 600px;
    margin: 16px auto 0 auto;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}


/* ─── Hero Section ────────────────────────────────────────────────────────── */

.hero-section {
    position: relative;
    padding: 150px 0 100px 0;
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, rgba(231, 91, 12, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(231, 91, 12, 0.04) 0%, transparent 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    text-align: left;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-container {
    margin-bottom: 24px;
}

.badge {
    background-color: var(--color-orange-light);
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(231, 91, 12, 0.15);
    display: inline-block;
}

.badge-coming-soon {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 78, 0, 0.15); }
    50%      { box-shadow: 0 0 0 8px rgba(212, 78, 0, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: 24px;
    color: var(--color-charcoal);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    color: var(--color-subtext);
    max-width: 600px;
    margin-bottom: 36px;
    font-weight: 500;
    line-height: 1.55;
}


/* ─── Hero Waitlist Card ──────────────────────────────────────────────────── */

.waitlist-card-wrapper {
    width: 100%;
    max-width: 520px;
}

/* Role Toggle (Customer / Cook) */
.waitlist-role-toggle {
    display: flex;
    background-color: rgba(26, 17, 11, 0.04);
    border: 1px solid rgba(26, 17, 11, 0.08);
    padding: 5px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 20px;
    width: 100%;
}

.role-toggle-btn {
    flex: 1;
    font-family: var(--font-main);
    background: transparent;
    border: none;
    color: var(--color-subtext);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.role-toggle-btn.active {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(212, 78, 0, 0.25);
}

.role-toggle-btn:hover:not(.active) {
    color: var(--color-charcoal);
    background-color: rgba(26, 17, 11, 0.04);
}

/* Waitlist Form (Light Theme) */
.customer-form {
    background-color: var(--color-white);
    padding: 28px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(26, 17, 11, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form-inputs-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.customer-form input {
    background-color: #FAF9F6;
    border: 1px solid rgba(26, 17, 11, 0.08);
    padding: 13px 18px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    outline: none;
    transition: all var(--transition-fast);
}

.customer-form input:focus {
    border-color: var(--color-orange);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(212, 78, 0, 0.08);
}

.customer-form .input-group {
    background-color: #FAF9F6;
    border: 1px solid rgba(26, 17, 11, 0.08);
    border-radius: var(--border-radius-md);
    width: 100%;
    transition: all var(--transition-fast);
}

.customer-form .input-group:focus-within {
    border-color: var(--color-orange);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(212, 78, 0, 0.08);
}

.customer-form .input-group input {
    border: none;
    background: transparent;
    padding: 13px 10px;
    width: 100%;
}

.customer-form .input-group input:focus {
    box-shadow: none;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-icon {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-subtext);
    padding: 0 6px 0 18px;
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    outline: none;
}

.input-group input::placeholder {
    color: #A69B92;
    font-weight: 500;
}

/* Waitlist Stats */
.waitlist-stats {
    display: none !important;
}

.stats-count {
    color: var(--color-orange);
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-success);
    border-radius: 50%;
    animation: pulse 1.6s infinite ease-in-out;
}

/* Success States */
.waitlist-success {
    display: none;
    background-color: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 16px 40px rgba(26, 17, 11, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    animation: fadeInUp 0.4s var(--transition-slow);
}

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

.success-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}

.checkmark__circle {
    stroke: var(--color-success);
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: checkmarkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    stroke: var(--color-success);
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmarkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes checkmarkStroke {
    100% { stroke-dashoffset: 0; }
}

.success-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.success-message {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-subtext);
    line-height: 1.5;
}


/* ─── Hero Visual / App Mockup ────────────────────────────────────────────── */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(212, 78, 0, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.mockup-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.04);
    border: 4px solid var(--color-white);
    animation: floatMockup 6s ease-in-out infinite alternate;
    transition: transform 0.5s var(--transition-slow);
}

.mockup-img:hover {
    transform: translateY(-8px) scale(1.02);
}

@keyframes floatMockup {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}


/* ─── Features Section ────────────────────────────────────────────────────── */

.features-section {
    padding: 90px 0;
    border-top: 1px solid rgba(212, 78, 0, 0.08);
    border-bottom: 1px solid rgba(212, 78, 0, 0.08);
    background: linear-gradient(180deg, #FAF9F6 0%, #FFF5EE 50%, #FAF9F6 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 28px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 34px 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 78, 0, 0.1);
    border-top: 3px solid rgba(212, 78, 0, 0.25);
    box-shadow: 0 8px 24px rgba(26, 17, 11, 0.02);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(212, 78, 0, 0.12);
    border-color: rgba(212, 78, 0, 0.35);
    border-top-color: var(--color-orange);
}

.feature-icon-wrapper {
    height: 52px;
    width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF6B00 0%, #D44E00 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 6px 18px rgba(212, 78, 0, 0.28);
    transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.08) rotate(-4deg);
}

.feature-title {
    font-size: 1.18rem;
    margin-bottom: 10px;
    color: var(--color-charcoal);
    font-weight: 700;
}

.feature-desc {
    color: var(--color-subtext);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
}


/* ─── Audience / Who Is It For Section ────────────────────────────────────── */

.audience-section {
    padding: 90px 0;
    background-color: var(--color-cream);
    border-top: 1px solid rgba(26, 17, 11, 0.06);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.audience-card {
    padding: 42px 38px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

.audience-card.card-light {
    background-color: var(--color-white);
    border: 1px solid rgba(212, 78, 0, 0.12);
    border-top: 4px solid var(--color-orange);
    box-shadow: 0 8px 24px rgba(26, 17, 11, 0.03);
}

.audience-card.card-dark {
    background-color: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 4px solid var(--color-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.audience-card:hover {
    transform: translateY(-6px);
}

.audience-card.card-light:hover {
    box-shadow: 0 18px 40px rgba(212, 78, 0, 0.12);
    border-color: rgba(212, 78, 0, 0.35);
}

.audience-card.card-dark:hover {
    border-color: rgba(212, 78, 0, 0.45);
    box-shadow: 0 18px 40px rgba(212, 78, 0, 0.18);
}

.audience-icon {
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF6B00 0%, #D44E00 100%);
    color: var(--color-white);
    margin-bottom: 24px;
    box-shadow: 0 6px 18px rgba(212, 78, 0, 0.28);
}

.audience-card.card-dark .audience-icon {
    background: linear-gradient(135deg, #FF6B00 0%, #D44E00 100%);
    color: var(--color-white);
}

.audience-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.25;
}

.audience-card.card-dark .audience-card-title {
    color: var(--color-white);
}

.audience-card-intro {
    font-size: 0.95rem;
    color: var(--color-subtext);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
}

.audience-card.card-dark .audience-card-intro {
    color: var(--color-dark-subtext);
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
}

.list-bullet {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    flex-shrink: 0;
}

.list-bullet.bullet-orange {
    color: #ff8a4d;
}

.list-text {
    flex: 1;
}

.audience-card.card-dark .list-text {
    color: var(--color-dark-subtext);
}

.audience-card.card-dark .list-text strong {
    color: var(--color-white);
}

.audience-cta {
    align-self: flex-start;
    padding: 12px 28px;
    font-size: 0.95rem;
    margin-top: auto;
}


/* ─── Partner Section (Dark Theme) ────────────────────────────────────────── */

.partner-section {
    padding: 100px 0;
    background-color: var(--color-dark-bg);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dark-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 78, 0, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Force white headings on dark backgrounds */
.partner-section h1,
.partner-section h2,
.partner-section h3,
.partner-section h4,
.partner-section h5,
.partner-section h6,
.partner-section .brand-name {
    color: var(--color-white) !important;
}

.tag-dark {
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--color-orange) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
}

/* Stats Cards */
.partner-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.partner-stat-card {
    background-color: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal);
}

.partner-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 78, 0, 0.45);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--color-dark-subtext);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 40px;
    margin: 0 auto 60px auto;
    max-width: 960px;
    text-align: left;
}

.step-item {
    position: relative;
}

.step-number {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--color-dark-subtext);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Partners Form */
.partners-wrapper {
    margin: 0 auto;
}

.partner-form {
    background-color: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-inputs-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.partner-form input {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 13px 18px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-white);
    outline: none;
    flex: 1;
    transition: all var(--transition-fast);
}

.partner-form input::placeholder {
    color: var(--color-dark-subtext);
    opacity: 0.6;
}

.partner-form input:focus {
    border-color: var(--color-orange);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 78, 0, 0.2);
}

.partner-form .input-group {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    flex: 1;
    transition: all var(--transition-fast);
}

.partner-form .input-group:focus-within {
    border-color: var(--color-orange);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 78, 0, 0.2);
}

.partner-form .input-group input {
    border: none;
    background: transparent;
    padding: 13px 10px;
}

.partner-form .input-icon {
    color: var(--color-dark-subtext);
}

.dark-stats {
    color: var(--color-dark-subtext);
}

.partner-section .waitlist-success {
    background-color: var(--color-dark-card);
    border-color: var(--color-dark-border);
}

.partner-section .success-message {
    color: var(--color-white);
}


/* ─── FAQ Section ─────────────────────────────────────────────────────────── */

.faq-section {
    padding: 80px 0;
    background-color: #FAF8F5;
    border-top: 1px solid rgba(26, 17, 11, 0.05);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid rgba(26, 17, 11, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(231, 91, 12, 0.15);
    box-shadow: 0 8px 20px rgba(26, 17, 11, 0.02);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-charcoal);
    cursor: pointer;
    outline: none;
}

.faq-question:hover {
    color: var(--color-orange);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-orange);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--color-subtext);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
}


/* ─── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
    background-color: var(--color-cream);
    border-top: 1px solid rgba(26, 17, 11, 0.05);
    padding: 40px 0;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand-logo {
    animation: none;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-subtext);
    margin-top: 4px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.instagram-link:hover {
    color: var(--color-orange);
}

.insta-icon {
    stroke-width: 2px;
}

.footer-copy {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-subtext);
}


/* ─── Keyframes & Animations ──────────────────────────────────────────────── */

@keyframes pulse {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes floatLogo {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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


/* ─── Scroll Reveal ───────────────────────────────────────────────────────── */

.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal delays */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.25s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.35s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.45s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.55s; }


/* ─── Loading States ──────────────────────────────────────────────────────── */

.waitlist-form button.loading {
    color: transparent !important;
    pointer-events: none;
    position: relative;
}

.waitlist-form button.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: buttonSpin 0.8s ease-in-out infinite;
}

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


/* ─── Mobile Menu ─────────────────────────────────────────────────────────── */

.mobile-menu-toggle {
    display: none;
}

body.menu-open {
    overflow: hidden;
}


/* ─── Responsive: Tablet ──────────────────────────────────────────────────── */

@media (max-width: 992px) {
    .main-nav {
        gap: 20px;
    }
}


/* ─── Responsive: Mobile ──────────────────────────────────────────────────── */

@media (max-width: 768px) {

    /* Section padding */
    .hero-section       { padding: 130px 0 50px 0 !important; }
    .features-section   { padding: 55px 0 !important; background: #FFFFFF !important; }
    .audience-section   { padding: 55px 0 !important; background-color: #FAF7F2 !important; }
    .partner-section    { padding: 70px 0 !important; }
    .faq-section        { padding: 55px 0 !important; background-color: #FAF7F2 !important; }

    .section-header {
        margin-bottom: 30px !important;
    }

    /* Typography scaling */
    body { font-size: 15px !important; }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }

    .hero-subtitle {
        font-size: 0.96rem !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
        text-align: center !important;
    }

    .section-title {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
    }

    .audience-card-title {
        font-size: 1.3rem !important;
    }

    .audience-card-intro {
        font-size: 0.92rem !important;
        margin-bottom: 18px !important;
    }

    .feature-desc {
        font-size: 0.86rem !important;
        line-height: 1.5 !important;
    }

    .faq-answer p {
        font-size: 0.88rem !important;
    }

    /* Tighter card padding */
    .feature-card       { padding: 24px 20px !important; }
    .audience-card      { padding: 28px 20px !important; }
    .partner-stat-card  { padding: 24px 20px !important; }

    /* Header */
    .site-header { padding: 14px 0; }

    .header-container {
        justify-content: space-between !important;
    }

    .logo-area {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        text-align: left !important;
    }

    .logo-text { align-items: flex-start !important; }

    .brand-tagline {
        font-size: 0.68rem !important;
        margin-top: 1px !important;
    }

    .header-cta { display: none; }

    /* Mobile nav drawer */
    .main-nav {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background-color: #FFFFFF;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
        padding: 90px 0 32px 0;
        gap: 0;
        z-index: 99;
        transform: translateX(100%);
        will-change: transform;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav.active { transform: translateX(0); }

    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 98;
        opacity: 0;
        transition: opacity 0.28s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .main-nav a {
        font-size: 1rem;
        font-weight: 600;
        color: #1E1D1C;
        padding: 16px 24px;
        border-bottom: 1px solid #EDEBE8;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        opacity: 1;
        background-color: transparent;
        transition: background-color 0.15s ease;
    }

    .main-nav a:first-child { border-top: 1px solid #EDEBE8; }
    .main-nav a:active { background-color: #F5F3F0; }

    .main-nav a::after {
        content: "›";
        font-size: 1.3rem;
        font-weight: 300;
        color: #B0A9A2;
        line-height: 1;
    }

    /* Hamburger */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 28px;
        height: 28px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 101;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .hamburger-bar {
        width: 20px;
        height: 2px;
        background-color: #1E1D1C;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease;
        transform-origin: center;
    }

    .mobile-menu-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Hero layout */
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .hero-content { align-items: center !important; }

    .hero-visual { order: -1; }

    .mockup-wrapper { max-width: 260px; }

    /* Audience grid */
    .audience-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Partner form */
    .partner-form {
        border-radius: var(--border-radius-md);
        padding: 20px;
    }

    .process-steps { gap: 30px; }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .waitlist-form {
        border-radius: var(--border-radius-md);
        padding: 16px;
    }

    .waitlist-form button {
        width: 100%;
    }

    .role-toggle-btn {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}
