/* ========================================
   DISH AI — Brand Design System
   ======================================== */

/* --- CSS Variables --- */
:root {
    /* Brand / Primary */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #FF8F56;
    --accent: #FF4E6A;
    --accent-soft: #FFF0EB;

    /* Backgrounds & Surfaces */
    --bg: #FAF9F6;
    --surface: #FFFFFF;
    --surface-secondary: #F5F3EF;
    --surface-tertiary: #EBEAE5;

    /* Text */
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --text-tertiary: #A0A0A0;

    /* Borders */
    --divider: #E8E7E3;
    --border: #E2E1DC;

    /* Semantic */
    --success: #34C759;
    --warning: #FF9500;
    --error: #FF3B30;

    /* Nutrition */
    --calories: #FF6B35;
    --protein: #5856D6;
    --carbs: #FF9500;
    --fat: #FF3B30;
    --fiber: #34C759;
    --sugar: #AF52DE;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35, #FF8F56);
    --gradient-warm: linear-gradient(90deg, #FF6B35, #FF4E6A);
    --gradient-success: linear-gradient(135deg, #34C759, #30D158);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 800px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 600;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    border-radius: var(--radius-lg);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3), 0 1px 3px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.4), 0 2px 6px rgba(255, 107, 53, 0.3);
}

.btn-primary:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
    border-radius: var(--radius-lg);
    height: 56px;
}

.apple-icon {
    flex-shrink: 0;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--divider);
}

.nav-solid {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--divider);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-cta {
    font-size: 14.5px;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 var(--space-lg) var(--space-lg);
    gap: var(--space-md);
}

.nav-mobile a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
}

.nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    background: var(--gradient-primary);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    margin-top: var(--space-sm);
    font-weight: 600;
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 78, 106, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.hero-title-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--divider);
}

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

.hero-phone {
    position: relative;
    width: 300px;
    animation: float 6s ease-in-out infinite;
}

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

.hero-phone-img {
    width: 100%;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-line {
    width: 2px;
    height: 48px;
    background: var(--divider);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 48px;
    background: var(--gradient-primary);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { top: -48px; }
    100% { top: 48px; }
}

/* --- Social Proof --- */
.social-proof {
    padding: var(--space-3xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--divider);
}

.social-proof-text {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.social-proof-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.star-group {
    display: flex;
    gap: 4px;
}

.star-label {
    font-size: 14.5px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: var(--accent-soft);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Features Bento Grid --- */
.features {
    padding: var(--space-4xl) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card-large {
    grid-column: span 2;
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.bento-icon-orange { background: var(--accent-soft); color: var(--primary); }
.bento-icon-purple { background: #EEEDF9; color: #5856D6; }
.bento-icon-green { background: #E8F9ED; color: #34C759; }
.bento-icon-amber { background: #FFF3E0; color: #FF9500; }
.bento-icon-coral { background: #FFECEF; color: #FF4E6A; }

.bento-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.bento-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* --- How It Works --- */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--surface);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    font-size: 22px;
    font-weight: 800;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

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

.step-connector {
    flex-shrink: 0;
    opacity: 0.5;
}

/* --- App Showcase --- */
.showcase {
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.showcase-text .section-title {
    text-align: left;
}

.showcase-text .section-subtitle {
    margin: 0;
    margin-bottom: var(--space-xl);
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 15px;
    color: var(--text-secondary);
}

.showcase-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-phone-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.showcase-phone {
    position: absolute;
    width: 260px;
}

.showcase-phone-back {
    transform: rotate(6deg) translateX(-40px);
    z-index: 1;
    opacity: 0.85;
}

.showcase-phone-front {
    transform: rotate(-3deg) translateX(40px);
    z-index: 2;
}

.showcase-phone-img {
    width: 100%;
}

/* --- Nutrition --- */
.nutrition {
    padding: var(--space-4xl) 0;
    background: var(--surface);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
}

.nutrition-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.nutrition-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.nutrition-ring {
    width: 72px;
    height: 72px;
    position: relative;
}

.nutrition-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.nutrition-ring circle {
    fill: none;
    stroke: var(--surface-secondary);
    stroke-width: 6;
    cx: 50;
    cy: 50;
    r: 40;
}

.nutrition-ring .nutrition-ring-fill {
    stroke: var(--color);
    stroke-dasharray: 251.3;
    stroke-dashoffset: calc(251.3 - (251.3 * var(--progress) / 100));
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.2, 0, 0, 1);
}

.nutrition-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.nutrition-value {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* --- CTA Section --- */
.cta {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.cta-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--divider);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 14.5px;
    color: var(--text-tertiary);
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: var(--space-md);
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-group a {
    font-size: 14.5px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--divider);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* --- Privacy Page --- */
.privacy-page {
    padding: 140px 0 var(--space-4xl);
}

.privacy-header {
    margin-bottom: var(--space-3xl);
}

.privacy-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-sm);
}

.privacy-meta {
    font-size: 14.5px;
    color: var(--text-tertiary);
}

.privacy-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.privacy-section {
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--divider);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.privacy-section h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.privacy-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    list-style: none;
    margin-bottom: var(--space-md);
    padding-left: 0;
}

.privacy-section ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    padding-left: 24px;
    position: relative;
    margin-bottom: var(--space-sm);
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.privacy-section ul li strong {
    color: var(--text-primary);
}

.privacy-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-section a:hover {
    color: var(--primary-dark);
}

.privacy-contact {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-md) 0;
}

.privacy-contact p {
    margin-bottom: var(--space-xs) !important;
}

/* Privacy Summary Grid */
.privacy-section-summary {
    border-bottom: none;
}

.privacy-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.privacy-summary-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.privacy-summary-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.privacy-summary-green {
    background: #E8F9ED;
    color: #34C759;
}

.privacy-summary-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.privacy-summary-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0 !important;
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.2, 0, 0, 1), transform 0.7s cubic-bezier(0.2, 0, 0, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-phone {
        width: 260px;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

    .bento-card-large {
        grid-column: span 2;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-text .section-title {
        text-align: center;
    }

    .showcase-text .section-subtitle {
        margin: 0 auto var(--space-xl);
    }

    .showcase-features {
        align-items: center;
    }

    .showcase-phone-group {
        min-height: 500px;
    }

    .showcase-phone {
        width: 220px;
    }

    .nutrition-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

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

    .nav-mobile-toggle {
        display: flex;
    }

    .nav-mobile.open {
        display: flex;
    }

    .nav.scrolled, .nav-solid {
        background: rgba(250, 249, 246, 0.95);
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .hero-stat-divider {
        display: none;
    }

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

    .bento-card-large {
        grid-column: span 1;
    }

    .steps {
        flex-direction: column;
    }

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

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

    .privacy-content {
        padding: var(--space-lg);
    }

    .privacy-summary-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .showcase-phone-group {
        min-height: 450px;
    }

    .showcase-phone {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-phone {
        width: 220px;
    }

    .nutrition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .nutrition-card {
        padding: var(--space-md) var(--space-sm);
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
}
