:root {
    --bg: #101315;
    --bg-elevated: rgba(18, 22, 25, 0.82);
    --bg-panel: rgba(255, 255, 255, 0.06);
    --bg-panel-strong: rgba(255, 255, 255, 0.1);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f8f3ee;
    --muted: #d6c7b7;
    --muted-strong: #b39d88;
    --orange: #ff6400;
    --orange-soft: #ff9447;
    --orange-pale: #ffd7be;
    --green-soft: #9dd6ba;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --font-display: "Fraunces", Georgia, serif;
    --font-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 100, 0, 0.28), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.08), transparent 22%),
        radial-gradient(circle at 20% 90%, rgba(255, 148, 71, 0.18), transparent 30%),
        linear-gradient(180deg, #121618 0%, #0f1214 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 100%);
    opacity: 0.35;
}

a {
    color: inherit;
}

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

.site-shell,
.page-shell {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 72px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 34px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-lockup img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(255, 100, 0, 0.25);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-tagline {
    color: var(--muted);
    font-size: 0.9rem;
}

.header-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-decoration: none;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.pill-link:hover,
.pill-link:focus-visible {
    color: var(--text);
    border-color: var(--line-strong);
    transform: translateY(-1px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 34px;
    align-items: stretch;
}

.hero-panel,
.feature-card,
.story-card,
.trust-card,
.faq-card,
.cta-panel,
.legal-card,
.app-open-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel {
    padding: 38px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-pale);
    background: rgba(255, 100, 0, 0.16);
    border: 1px solid rgba(255, 100, 0, 0.22);
}

.hero h1,
.page-title {
    margin: 22px 0 18px;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.hero p.lead,
.page-intro {
    margin: 0;
    max-width: 44rem;
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.source-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.source-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 100, 0, 0.12);
    border: 1px solid rgba(255, 148, 71, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #ffe0cc;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff8f2;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    box-shadow: 0 14px 34px rgba(255, 100, 0, 0.28);
}

.button-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.button-tertiary {
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
}

.button-subtext {
    margin-top: 16px;
    color: var(--muted-strong);
    font-size: 0.95rem;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.stat-chip {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.stat-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.stat-chip strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
}

.stat-chip span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 34px;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
}

.hero-visual::before {
    width: 230px;
    height: 230px;
    top: -55px;
    right: -55px;
    background: rgba(255, 100, 0, 0.26);
}

.hero-visual::after {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -40px;
    background: rgba(255, 255, 255, 0.08);
}

.visual-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    min-height: 100%;
}

.icon-cta {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 124px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.icon-link:hover,
.icon-link:focus-visible {
    transform: scale(1.03) rotate(-2deg);
    box-shadow: 0 24px 50px rgba(255, 100, 0, 0.3);
}

.icon-link img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
}

.icon-note {
    display: grid;
    gap: 8px;
}

.icon-note strong {
    font-size: 1.2rem;
}

.icon-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.floating-cards {
    display: grid;
    gap: 14px;
}

.recipe-preview,
.mini-card,
.phone-frame {
    border-radius: 24px;
    background: rgba(15, 18, 20, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.recipe-preview {
    padding: 22px;
}

.recipe-preview-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.recipe-preview-header strong {
    display: block;
    font-size: 1.05rem;
}

.recipe-preview-header span,
.mini-card p,
.phone-frame p {
    color: var(--muted);
}

.recipe-tags,
.mini-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.recipe-tags span,
.mini-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.85rem;
}

.phone-frame {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.phone-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.phone-label {
    color: var(--orange-pale);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.phone-screen {
    display: grid;
    gap: 10px;
}

.phone-block {
    padding: 14px 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-block strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.96rem;
}

.phone-block small {
    display: block;
    color: var(--muted);
    line-height: 1.5;
}

.section {
    padding-top: 76px;
}

.section-intro {
    display: grid;
    gap: 12px;
    max-width: 44rem;
}

.section-kicker {
    color: var(--orange-pale);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
}

.section h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.section-copy {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.feature-grid,
.story-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.feature-card,
.story-card,
.faq-card {
    padding: 24px;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.feature-card:hover,
.story-card:hover,
.faq-card:hover,
.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.feature-card strong,
.story-card strong,
.faq-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.08rem;
}

.feature-card p,
.story-card p,
.faq-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.story-card {
    position: relative;
    overflow: hidden;
}

.story-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
}

.trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 18px;
    margin-top: 30px;
}

.trust-card {
    padding: 28px;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.trust-card ul,
.legal-content ul {
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.trust-card li + li,
.legal-content li + li {
    margin-top: 8px;
}

.trust-card h3,
.legal-content h2,
.legal-content h3 {
    margin: 0;
    font-size: 1.18rem;
}

.trust-card p,
.legal-content p,
.legal-content li {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-top: 76px;
    padding: 30px;
}

.cta-panel h2 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.cta-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    display: grid;
    gap: 18px;
    padding-top: 52px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

.footer-meta {
    color: var(--muted-strong);
    font-size: 0.93rem;
    line-height: 1.7;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.hero-panel,
.feature-card,
.story-card,
.trust-card,
.faq-card,
.cta-panel {
    animation: fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero .hero-panel:nth-child(1) {
    animation-delay: 0.05s;
}

.hero .hero-panel:nth-child(2) {
    animation-delay: 0.14s;
}

.feature-grid .feature-card:nth-child(1),
.story-grid .story-card:nth-child(1),
.faq-grid .faq-card:nth-child(1) {
    animation-delay: 0.08s;
}

.feature-grid .feature-card:nth-child(2),
.story-grid .story-card:nth-child(2),
.faq-grid .faq-card:nth-child(2) {
    animation-delay: 0.14s;
}

.feature-grid .feature-card:nth-child(3),
.story-grid .story-card:nth-child(3),
.faq-grid .faq-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-grid .feature-card:nth-child(4),
.trust-layout .trust-card:nth-child(1),
.faq-grid .faq-card:nth-child(4) {
    animation-delay: 0.26s;
}

.feature-grid .feature-card:nth-child(5),
.trust-layout .trust-card:nth-child(2) {
    animation-delay: 0.32s;
}

.feature-grid .feature-card:nth-child(6),
.cta-panel {
    animation-delay: 0.38s;
}

.page-shell {
    width: min(980px, calc(100% - 32px));
    padding-bottom: 58px;
}

.page-hero {
    padding: 34px 0 28px;
}

.legal-card {
    padding: 32px;
}

.legal-meta {
    margin-top: 18px;
    color: var(--muted-strong);
    font-size: 0.95rem;
}

.legal-content {
    display: grid;
    gap: 26px;
}

.legal-section {
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.legal-section h2 {
    font-size: 1.35rem;
}

.legal-section h3 {
    margin-top: 18px;
    font-size: 1.05rem;
}

.app-open-wrap {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 120px);
    padding: 28px 0 52px;
}

.app-open-shell {
    width: min(620px, 100%);
    padding: 34px;
    text-align: center;
}

.app-open-shell .icon-link {
    margin: 0 auto 18px;
}

.app-open-shell h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 7vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.app-open-shell p {
    margin: 16px auto 0;
    max-width: 34rem;
    color: var(--muted);
    line-height: 1.8;
}

.app-open-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.app-open-note {
    margin-top: 18px;
    color: var(--muted-strong);
    font-size: 0.95rem;
}

.screen-reader-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .hero,
    .trust-layout,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .story-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-panel,
    .hero-visual {
        padding: 30px;
    }
}

@media (max-width: 720px) {
    .site-shell,
    .page-shell {
        width: min(100% - 24px, 100%);
        padding-top: 16px;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 24px;
    }

    .header-links,
    .footer-row {
        justify-content: flex-start;
    }

    .hero-panel,
    .hero-visual,
    .feature-card,
    .story-card,
    .trust-card,
    .faq-card,
    .legal-card,
    .cta-panel,
    .app-open-shell {
        border-radius: 24px;
        padding: 24px;
    }

    .hero h1,
    .page-title {
        margin-top: 18px;
    }

    .icon-cta {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .stat-row,
    .feature-grid,
    .story-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .app-open-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .source-pills {
        gap: 8px;
    }

    .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
