:root {
    --ivory: #f7f2e8;
    --paper: #fffdf8;
    --ink: #20251f;
    --muted: #6f746e;
    --green: #173f2b;
    --green-soft: #dce7d7;
    --burgundy: #951e23;
    --caramel: #ab5a31;
    --line: rgba(32, 37, 31, .13);
    --radius-lg: 34px;
    --radius-md: 24px;
    --shadow: 0 24px 70px rgba(39, 35, 25, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(23, 63, 43, .08) .7px, transparent .7px);
    background-size: 18px 18px;
    content: "";
    pointer-events: none;
    opacity: .35;
}

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

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.section-pad {
    padding: 112px 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: white;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(247, 242, 232, .88);
    backdrop-filter: blur(18px);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 12px 30px rgba(32, 37, 31, .06);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: block;
    width: 148px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    mix-blend-mode: multiply;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a,
.site-footer nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    transition: color .2s ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
    color: var(--burgundy);
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-small {
    min-height: 44px;
    padding: 11px 19px;
    font-size: .9rem;
}

.button-dark {
    background: var(--green);
    color: #fff;
    box-shadow: 0 9px 24px rgba(23, 63, 43, .2);
}

.button-primary {
    background: var(--burgundy);
    color: #fff;
    box-shadow: 0 14px 28px rgba(149, 30, 35, .22);
}

.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--green);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 25px;
    height: 2px;
    background: currentColor;
}

h1,
h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: .98;
}

h1 {
    max-width: 650px;
    font-size: clamp(4rem, 7.4vw, 7.2rem);
}

h1 em,
h2 em {
    color: var(--burgundy);
    font-weight: 600;
}

.hero-lede {
    max-width: 590px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 34px;
}

.text-link {
    font-weight: 700;
    text-underline-offset: 5px;
}

.hero-proof {
    display: flex;
    gap: 0;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.hero-proof > div {
    display: grid;
    gap: 1px;
    padding: 0 22px;
    border-right: 1px solid var(--line);
}

.hero-proof > div:first-child {
    padding-left: 0;
}

.hero-proof > div:last-child {
    border-right: 0;
}

.hero-proof strong {
    font-size: .95rem;
}

.hero-proof span {
    color: var(--muted);
    font-size: .75rem;
}

.hero-visual {
    position: relative;
    min-height: 650px;
}

.hero-visual::before {
    position: absolute;
    top: 4%;
    right: -15%;
    width: 75%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--green-soft);
    content: "";
}

.food-card {
    position: absolute;
    inset: 7% 0 5% 12%;
    overflow: hidden;
    border-radius: 42% 42% var(--radius-lg) var(--radius-lg);
    background: var(--ink);
    box-shadow: var(--shadow);
}

.food-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(6, 14, 9, .82));
    content: "";
}

.food-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
}

.food-label {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    display: grid;
    color: #fff;
    text-align: right;
}

.food-label span {
    color: rgba(255,255,255,.7);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.food-label strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
}

.phone {
    position: absolute;
    z-index: 4;
    filter: drop-shadow(0 24px 32px rgba(0,0,0,.24));
}

.phone img {
    width: 100%;
}

.phone-main {
    bottom: -2%;
    left: -4%;
    width: 46%;
    transform: rotate(-4deg);
}

.phone-side {
    top: -2%;
    right: -3%;
    width: 34%;
    opacity: .96;
    transform: rotate(6deg);
}

.floating-note {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 999px;
    padding: 10px 15px;
    background: rgba(255, 253, 248, .92);
    box-shadow: 0 13px 35px rgba(32,37,31,.15);
    backdrop-filter: blur(12px);
    font-size: .78rem;
    font-weight: 700;
}

.floating-note span {
    color: var(--burgundy);
}

.note-top {
    top: 15%;
    left: 3%;
}

.note-bottom {
    right: -2%;
    bottom: 15%;
}

.ticker {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: var(--green);
    color: white;
}

.ticker-track {
    width: max-content;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    padding: 17px 24px;
}

.ticker span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: .98rem;
    white-space: nowrap;
}

.ticker i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e6b36e;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 55px;
}

h2 {
    font-size: clamp(3rem, 5.6vw, 5.2rem);
}

.section-heading > p {
    margin: 0 0 6px;
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px;
    background: rgba(255, 253, 248, .78);
}

.feature-card-highlight {
    background: #ebdfce;
}

.feature-card-dark {
    background: var(--burgundy);
    color: white;
}

.feature-number {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 700;
}

.feature-image {
    position: absolute;
    top: -58px;
    right: -20px;
    width: 62%;
    transform: rotate(5deg);
    filter: drop-shadow(0 18px 22px rgba(39,35,25,.18));
}

.feature-card h3 {
    margin: 190px 0 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.6rem;
    line-height: 1.15;
}

.feature-card > p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.feature-card-dark > p {
    color: rgba(255,255,255,.72);
}

.feature-mark {
    margin: 56px 0 22px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: -.08em;
    line-height: 1;
    color: var(--green);
}

.feature-mark-light {
    color: #ffd8a0;
}

.feature-card:not(.feature-card-highlight) h3 {
    margin-top: 0;
}

.offer-pill,
.points-row {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: grid;
    gap: 2px;
    border-radius: 16px;
    padding: 16px 18px;
    background: var(--green-soft);
}

.offer-pill span,
.points-row span {
    color: var(--muted);
    font-size: .72rem;
}

.offer-pill strong,
.points-row strong {
    font-size: .88rem;
}

.points-row {
    background: rgba(255,255,255,.12);
}

.points-row span {
    color: rgba(255,255,255,.7);
}

.showcase {
    position: relative;
    overflow: hidden;
    background: var(--green);
    color: white;
}

.showcase::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.02);
    content: "";
}

.showcase-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 75px;
}

.eyebrow-light {
    color: #d9b586;
}

.showcase h2 em,
.download h2 em {
    color: #e6b36e;
}

.showcase-copy > p:not(.eyebrow) {
    max-width: 570px;
    color: rgba(255,255,255,.68);
    font-size: 1.02rem;
}

.steps {
    display: grid;
    gap: 0;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.14);
}

.steps li > span {
    color: #e6b36e;
    font-size: .72rem;
    font-weight: 700;
}

.steps li > div {
    display: grid;
    gap: 2px;
}

.steps small {
    color: rgba(255,255,255,.58);
}

.showcase-phones {
    position: relative;
    min-height: 650px;
}

.showcase-phones::before {
    position: absolute;
    inset: 11% 3% 3% 13%;
    border-radius: 48% 48% 28px 28px;
    background: #d7b079;
    content: "";
}

.showcase-phone {
    position: absolute;
    z-index: 2;
    width: 43%;
    filter: drop-shadow(0 28px 35px rgba(0,0,0,.28));
}

.showcase-phone-back {
    top: 8%;
    right: 7%;
    transform: rotate(8deg);
}

.showcase-phone-front {
    bottom: -12%;
    left: 17%;
    transform: rotate(-5deg);
}

.showcase-caption {
    position: absolute;
    z-index: 3;
    right: 4%;
    bottom: 5%;
    width: 138px;
    padding-left: 16px;
    border-left: 2px solid #e6b36e;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.3;
}

.download {
    background: var(--paper);
}

.download-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    border-radius: var(--radius-lg);
    padding: 70px clamp(35px, 7vw, 85px);
    background: var(--burgundy);
    color: white;
    box-shadow: var(--shadow);
}

.download-card::before {
    position: absolute;
    top: 10%;
    right: 37%;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    content: "";
}

.download-copy {
    position: relative;
    z-index: 3;
}

.download-copy > p:not(.eyebrow) {
    color: rgba(255,255,255,.7);
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.store-buttons a {
    display: flex;
    width: 170px;
    height: 52px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 10px;
    background: #050706;
    transition: transform .2s ease;
}

.store-buttons a:hover {
    transform: translateY(-2px);
}

.store-buttons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-art {
    position: absolute;
    z-index: 2;
    right: 2%;
    bottom: -38%;
    width: 42%;
}

.download-art img {
    position: relative;
    z-index: 2;
    width: 75%;
    margin: 0 auto;
    transform: rotate(4deg);
    filter: drop-shadow(0 25px 28px rgba(0,0,0,.28));
}

.download-circle {
    position: absolute;
    z-index: 1;
    top: 7%;
    left: 0;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #e0b277;
}

.site-footer {
    padding: 70px 0 26px;
    background: var(--paper);
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--line);
}

.brand-footer {
    width: 130px;
}

.footer-top p {
    margin: 0;
    color: var(--muted);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    color: var(--muted);
    font-size: .82rem;
}

.footer-bottom a {
    text-decoration: none;
}

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

.reveal-delay {
    transition-delay: .12s;
}

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

@media (max-width: 980px) {
    .section-pad {
        padding: 88px 0;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 700px;
    }

    .hero-visual {
        width: min(680px, 100%);
        min-height: 650px;
        margin: 0 auto;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading > p {
        max-width: 600px;
    }

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

    .feature-card:last-child {
        grid-column: 1 / -1;
        min-height: 390px;
    }

    .showcase-copy {
        max-width: 650px;
    }

    .showcase-phones {
        width: min(680px, 100%);
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: auto 1fr;
    }

    .site-footer nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .section-pad {
        padding: 72px 0;
    }

    .nav-wrap {
        min-height: 74px;
    }

    .brand {
        width: 112px;
    }

    .desktop-nav {
        display: none;
    }

    .button-small {
        min-height: 40px;
        padding: 10px 15px;
    }

    .hero {
        min-height: auto;
        padding-top: 48px;
    }

    h1 {
        font-size: clamp(3.55rem, 17vw, 5.2rem);
    }

    h2 {
        font-size: clamp(2.7rem, 12vw, 4rem);
    }

    .hero-lede {
        margin-top: 23px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-proof {
        overflow-x: auto;
        margin-top: 40px;
    }

    .hero-proof > div {
        min-width: 120px;
        padding: 0 16px;
    }

    .hero-visual {
        min-height: 510px;
    }

    .food-card {
        inset: 7% 0 8% 7%;
    }

    .phone-main {
        left: -5%;
        width: 52%;
    }

    .phone-side {
        right: -5%;
        width: 38%;
    }

    .note-bottom {
        right: 0;
        bottom: 10%;
    }

    .floating-note {
        padding: 8px 12px;
        font-size: .69rem;
    }

    .ticker-track {
        justify-content: flex-start;
    }

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

    .feature-card,
    .feature-card:last-child {
        grid-column: auto;
        min-height: 430px;
    }

    .showcase-grid {
        gap: 30px;
    }

    .showcase-phones {
        min-height: 480px;
    }

    .download-card {
        min-height: 720px;
        grid-template-columns: 1fr;
        align-items: start;
        padding: 48px 26px;
    }

    .download-art {
        right: -3%;
        bottom: -33%;
        width: 76%;
    }

    .store-buttons a {
        width: 145px;
        height: 45px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .site-footer nav {
        grid-column: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .button-small {
        font-size: .78rem;
    }

    .hero-visual {
        min-height: 450px;
    }

    .food-card {
        border-radius: 38% 38% 24px 24px;
    }

    .food-label {
        right: 18px;
        bottom: 18px;
    }

    .food-label strong {
        font-size: 1rem;
    }

    .note-top {
        top: 11%;
        left: 0;
    }

    .note-bottom {
        display: none;
    }

    .showcase-phones {
        min-height: 410px;
    }

    .download-card {
        min-height: 690px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
