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

:root {
    --red: #C8473A;
    --red-light: #D9574A;
    --cream: #EDE0CC;
    --cream-dark: #D8CAB2;
    --dark: #111010;
    --dark2: #1C1B1B;
    --dark3: #252424;
    --white: #F5EFE6;
    --gray: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(17, 16, 16, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-logo img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.nav-logo span {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: var(--red-light);
    transform: translateY(-1px);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 80px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 71, 58, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 71, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 71, 58, 0.15);
    border: 1px solid rgba(200, 71, 58, 0.3);
    color: #E8877E;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.1s ease both;
}

h1 em {
    font-style: italic;
    color: var(--red);
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(245, 239, 230, 0.65);
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

.btn-appstore {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-appstore:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.btn-appstore svg {
    width: 28px;
    height: 28px;
}

.btn-appstore-text {
    display: flex;
    flex-direction: column;
}

.btn-appstore-text small {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.6;
    line-height: 1;
}

.btn-appstore-text strong {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    animation: fadeUp 0.8s 0.4s ease both;
}

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

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(245, 239, 230, 0.5);
    margin-top: 4px;
}

/* ── PHONE MOCKUP ── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: fadeUp 0.9s 0.15s ease both;
}

.phone-wrap {
    position: relative;
    width: 280px;
}

.phone-wrap img {
    width: 100%;
    border-radius: 40px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.7));
}

.phone-float {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-60%);
    width: 200px;
    border-radius: 28px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    opacity: 0.8;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 71, 58, 0.25), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

/* ── FEATURES ── */
.section {
    padding: 100px 80px;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    color: rgba(245, 239, 230, 0.55);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.feature-card {
    background: var(--dark2);
    padding: 40px 36px;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 71, 58, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover {
    background: #202020;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(245, 239, 230, 0.5);
    line-height: 1.6;
}

.feature-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

/* ── SCREENS SHOWCASE ── */
.screens-section {
    padding: 80px 0;
    overflow: hidden;
}

.screens-header {
    padding: 0 80px;
    margin-bottom: 60px;
}

.screens-scroll {
    display: flex;
    gap: 24px;
    padding: 20px 80px 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.screens-scroll::-webkit-scrollbar {
    display: none;
}

.screen-item {
    flex-shrink: 0;
    width: 240px;
}

.screen-item img {
    width: 100%;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

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

.screen-caption {
    text-align: center;
    margin-top: 14px;
    font-size: 0.8rem;
    color: rgba(245, 239, 230, 0.4);
}

/* ── INGREDIENTS ── */
.ingredients-section {
    padding: 100px 80px;
    background: var(--dark2);
}

.ingredients-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}

.ingredient-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ingredient-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    transition: border-color 0.2s, background 0.2s;
}

.ingredient-chip:hover {
    border-color: rgba(200, 71, 58, 0.4);
    background: rgba(200, 71, 58, 0.08);
}

.ingredient-chip span:first-child {
    font-size: 1.2rem;
}

.measures-block {}

.measures-block .section-title {
    font-size: 2rem;
}

.measure-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.measure-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.measure-row span:last-child {
    color: rgba(245, 239, 230, 0.55);
}

/* ── CTA ── */
.cta-section {
    padding: 120px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(200, 71, 58, 0.12), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
}

.cta-section h2 em {
    font-style: italic;
    color: var(--red);
}

.cta-section p {
    color: rgba(245, 239, 230, 0.55);
    font-size: 1rem;
    margin-bottom: 48px;
}

.cta-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-app-btn:hover {
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(200, 71, 58, 0.35);
}

.cta-app-btn svg {
    width: 24px;
    height: 24px;
}

/* ── FOOTER ── */
footer {
    padding: 32px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(245, 239, 230, 0.3);
    font-size: 0.82rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(245, 239, 230, 0.6);
}

.footer-logo img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 32px 60px;
        gap: 50px;
    }

    .hero-visual {
        order: -1;
    }

    .phone-float {
        display: none;
    }

    .section,
    .cta-section,
    .ingredients-section {
        padding: 70px 32px;
    }

    .screens-header {
        padding: 0 32px;
    }

    .screens-scroll {
        padding: 20px 32px 40px;
    }

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

    .ingredients-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 24px 32px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}