:root {
    --coral: #ff766f;
    --coral-dark: #e85653;
    --coral-soft: #ffd9d2;
    --ink: #17324d;
    --ink-soft: #40566b;
    --cream: #fff9ef;
    --paper: #fffdf8;
    --white: #ffffff;
    --mint: #c8eadf;
    --teal: #237b75;
    --sky: #cfe9f5;
    --yellow: #f8df83;
    --line: rgba(23, 50, 77, 0.13);
    --shadow: 0 24px 70px rgba(23, 50, 77, 0.13);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1180px;
}

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

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}

.skip-link {
    background: var(--ink);
    border-radius: 0 0 10px 10px;
    color: var(--white);
    left: 1rem;
    padding: 0.75rem 1rem;
    position: fixed;
    top: -100px;
    transition: top 0.2s ease;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

.container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 28px;
    width: 100%;
}

.site-header {
    background: rgba(255, 253, 248, 0.88);
    border-bottom: 1px solid transparent;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 1000;
    backdrop-filter: blur(18px);
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(23, 50, 77, 0.06);
}

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

.brand {
    align-items: center;
    display: inline-flex;
    font-weight: 800;
    gap: 11px;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.brand img {
    border-radius: 13px;
}

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

.desktop-nav a {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: var(--coral-dark);
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-small {
    min-height: 44px;
    padding: 0 19px;
}

.button-dark {
    background: var(--ink);
    color: var(--white);
}

.button-dark:hover {
    box-shadow: 0 10px 24px rgba(23, 50, 77, 0.2);
}

.button-primary {
    background: var(--coral);
    box-shadow: 0 15px 30px rgba(232, 86, 83, 0.22);
    color: var(--white);
}

.button-primary:hover {
    background: var(--coral-dark);
}

.button-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.button-ghost:hover {
    background: var(--white);
    border-color: rgba(23, 50, 77, 0.3);
}

.hero {
    background:
        radial-gradient(circle at 8% 18%, rgba(248, 223, 131, 0.42), transparent 25%),
        linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
    min-height: 790px;
    overflow: hidden;
    padding: 150px 0 92px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
}

.eyebrow {
    align-items: center;
    color: var(--teal);
    display: flex;
    font-size: 0.75rem;
    font-weight: 800;
    gap: 10px;
    letter-spacing: 0.11em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.eyebrow span {
    background: currentColor;
    border-radius: 999px;
    height: 7px;
    width: 7px;
}

.eyebrow-light {
    color: var(--yellow);
}

.hero h1,
.section-heading h2,
.how-intro h2,
.download-copy h2 {
    font-family: "Fraunces", serif;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.hero h1 {
    font-size: clamp(3.6rem, 6vw, 5.6rem);
    max-width: 680px;
}

.hero h1 em {
    color: var(--coral-dark);
    font-style: normal;
    position: relative;
    white-space: nowrap;
}

.hero h1 em::after {
    background: var(--yellow);
    border-radius: 999px;
    bottom: 0.05em;
    content: "";
    height: 0.13em;
    left: 0;
    opacity: 0.75;
    position: absolute;
    transform: rotate(-1deg);
    width: 100%;
    z-index: -1;
}

.hero-description {
    color: var(--ink-soft);
    font-size: 1.08rem;
    margin-top: 28px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hero-proof {
    align-items: center;
    display: flex;
    gap: 26px;
    margin-top: 38px;
}

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

.proof-item strong {
    font-family: "Fraunces", serif;
    font-size: 1.9rem;
    line-height: 1;
}

.proof-item span {
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 7px;
}

.proof-divider {
    background: var(--line);
    height: 42px;
    width: 1px;
}

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

.visual-orbit {
    border-radius: 50%;
    position: absolute;
}

.orbit-one {
    background: var(--coral-soft);
    height: 490px;
    width: 490px;
}

.orbit-two {
    border: 1px dashed rgba(23, 50, 77, 0.26);
    height: 570px;
    width: 570px;
}

.phone-shell {
    background: #101a26;
    border: 9px solid #101a26;
    border-radius: 46px;
    box-shadow: var(--shadow);
    height: 590px;
    overflow: hidden;
    position: relative;
    transform: rotate(2.5deg);
    width: 292px;
    z-index: 2;
}

.phone-shell img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.phone-speaker {
    background: #101a26;
    border-radius: 0 0 18px 18px;
    height: 24px;
    left: 50%;
    position: absolute;
    top: -1px;
    transform: translateX(-50%);
    width: 102px;
    z-index: 3;
}

.floating-note {
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(23, 50, 77, 0.09);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(23, 50, 77, 0.13);
    display: flex;
    gap: 12px;
    padding: 13px 17px;
    position: absolute;
    z-index: 3;
}

.floating-note span:last-child {
    color: var(--ink-soft);
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
}

.floating-note strong {
    color: var(--ink);
    font-size: 0.78rem;
}

.note-icon {
    align-items: center;
    background: var(--coral-soft);
    border-radius: 12px;
    color: var(--coral-dark);
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.note-icon-green {
    background: var(--mint);
    color: var(--teal);
}

.note-top {
    right: -8px;
    top: 78px;
}

.note-bottom {
    bottom: 95px;
    left: -12px;
}

.value-strip {
    background: var(--ink);
    color: var(--white);
}

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

.value-grid > div {
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    gap: 16px;
    min-height: 128px;
    padding: 25px 42px;
}

.value-grid > div:first-child {
    padding-left: 0;
}

.value-grid > div:last-child {
    border-right: 0;
    padding-right: 0;
}

.value-grid i {
    color: var(--yellow);
    font-size: 1.1rem;
}

.value-grid span {
    color: rgba(255, 255, 255, 0.68);
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
}

.value-grid strong {
    color: var(--white);
    font-size: 0.9rem;
}

.section {
    padding: 112px 0;
}

.section-heading h2,
.how-intro h2,
.download-copy h2 {
    font-size: clamp(2.6rem, 4vw, 4.1rem);
    max-width: 760px;
}

.heading-row {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 52px;
}

.text-link {
    align-items: center;
    color: var(--ink);
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    gap: 9px;
    text-decoration: none;
}

.text-link i {
    transition: transform 0.2s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

.promotion-status {
    align-items: center;
    color: var(--ink-soft);
    display: flex;
    gap: 13px;
    justify-content: center;
    min-height: 280px;
}

.loader {
    animation: spin 0.8s linear infinite;
    border: 3px solid var(--coral-soft);
    border-radius: 50%;
    border-top-color: var(--coral-dark);
    height: 24px;
    width: 24px;
}

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

.promotions-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promotion-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promotion-card:hover {
    box-shadow: 0 18px 44px rgba(23, 50, 77, 0.1);
    transform: translateY(-5px);
}

.promotion-image-link {
    background: #f5f1e9;
    display: block;
    height: 230px;
    overflow: hidden;
    position: relative;
}

.promotion-image-link img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    width: 100%;
}

.promotion-card:hover .promotion-image-link img {
    transform: scale(1.035);
}

.freshness-badge {
    backdrop-filter: blur(10px);
    background: rgba(23, 50, 77, 0.86);
    border-radius: 999px;
    bottom: 14px;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    left: 14px;
    padding: 7px 11px;
    position: absolute;
}

.promotion-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 21px;
}

.promotion-meta {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    min-height: 26px;
}

.promotion-category {
    background: var(--coral-soft);
    border-radius: 999px;
    color: var(--coral-dark);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    text-transform: uppercase;
}

.store-name {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promotion-title {
    display: -webkit-box;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    min-height: 3em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.promotion-title a {
    text-decoration: none;
}

.promotion-price {
    font-family: "Fraunces", serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 17px 0;
}

.promotion-actions {
    display: grid;
    gap: 9px;
    grid-template-columns: 1fr 1fr;
    margin-top: auto;
}

.card-action {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    font-size: 0.74rem;
    font-weight: 800;
    justify-content: center;
    min-height: 43px;
    text-decoration: none;
}

.card-action-primary {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.card-action:hover {
    border-color: var(--coral-dark);
}

.mobile-view-all {
    display: none;
    margin-top: 28px;
}

.categories {
    background: var(--ink);
    color: var(--white);
}

.categories-heading {
    margin-bottom: 50px;
}

.categories-heading p:last-child {
    color: rgba(255, 255, 255, 0.67);
    margin-top: 20px;
    max-width: 610px;
}

.category-bento {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 230px);
}

.category-tile {
    border-radius: var(--radius-md);
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding: 26px;
    position: relative;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
}

.category-large {
    grid-column: span 2;
    grid-row: span 2;
}

.category-wide {
    grid-column: span 2;
}

.category-copy {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.category-copy small {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    opacity: 0.68;
    text-transform: uppercase;
}

.category-copy strong {
    font-family: "Fraunces", serif;
    font-size: 1.65rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 5px;
}

.category-large .category-copy strong,
.category-wide .category-copy strong {
    font-size: 2.2rem;
}

.category-copy em {
    align-items: center;
    display: inline-flex;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    gap: 8px;
    margin-top: 16px;
}

.category-tile > img {
    align-self: flex-end;
    bottom: -12px;
    max-height: 72%;
    max-width: 58%;
    object-fit: contain;
    position: absolute;
    right: -5px;
}

.category-large > img {
    bottom: 5px;
    max-height: 70%;
    max-width: 66%;
    right: 0;
}

.category-pair {
    align-items: flex-end;
    bottom: -14px;
    display: flex;
    gap: 5px;
    height: 88%;
    position: absolute;
    right: 12px;
}

.category-pair img {
    max-height: 80%;
    max-width: 120px;
    object-fit: contain;
}

.category-coral { background: var(--coral-soft); }
.category-blue { background: var(--sky); }
.category-cream { background: #f7eee3; }
.category-yellow { background: var(--yellow); }
.category-mint { background: var(--mint); }

.how-it-works {
    background: var(--paper);
}

.how-grid {
    align-items: start;
    display: grid;
    gap: 100px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.how-intro > p:not(.eyebrow) {
    color: var(--ink-soft);
    margin: 24px 0;
    max-width: 520px;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 24px;
    grid-template-columns: 54px 1fr;
    padding: 27px 0;
}

.steps-list li:first-child {
    padding-top: 0;
}

.steps-list > li > span {
    color: var(--coral-dark);
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.steps-list h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.steps-list p {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

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

.download-card {
    align-items: center;
    background: var(--coral-dark);
    border-radius: var(--radius-lg);
    color: var(--white);
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    min-height: 480px;
    overflow: hidden;
    padding: 70px 78px;
    position: relative;
}

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

.download-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.8);
    margin: 22px 0 28px;
    max-width: 560px;
}

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

.store-buttons a {
    transition: transform 0.2s ease;
}

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

.store-buttons img {
    border-radius: 9px;
    height: 54px;
    width: auto;
}

.download-art {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
}

.download-art > img {
    border: 12px solid rgba(255, 255, 255, 0.92);
    border-radius: 38px;
    box-shadow: 0 28px 60px rgba(113, 34, 35, 0.28);
    position: relative;
    transform: rotate(-6deg);
    width: 190px;
    z-index: 2;
}

.discount-symbol {
    align-items: center;
    background: var(--yellow);
    border-radius: 50%;
    color: var(--ink);
    display: flex;
    font-family: "Fraunces", serif;
    font-size: 2.4rem;
    font-weight: 700;
    height: 92px;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 36px;
    transform: rotate(9deg);
    width: 92px;
    z-index: 3;
}

.download-bubble {
    border-radius: 50%;
    position: absolute;
}

.bubble-one {
    background: var(--coral-soft);
    height: 330px;
    width: 330px;
}

.bubble-two {
    border: 1px dashed rgba(255, 255, 255, 0.5);
    height: 400px;
    width: 400px;
}

.site-footer {
    background: var(--ink);
    color: var(--white);
    padding: 76px 0 24px;
}

.footer-grid {
    display: grid;
    gap: 70px;
    grid-template-columns: 0.85fr 1.15fr;
    padding-bottom: 60px;
}

.brand-footer {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
    margin-top: 16px;
    max-width: 310px;
}

.footer-links {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(3, 1fr);
}

.footer-links div {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links strong {
    font-size: 0.78rem;
    margin-bottom: 7px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.48);
    display: flex;
    font-size: 0.72rem;
    justify-content: space-between;
    padding-top: 23px;
}

@media (max-width: 1024px) {
    .desktop-nav { display: none; }

    .hero-grid {
        gap: 36px;
        grid-template-columns: 1fr 0.82fr;
    }

    .hero h1 { font-size: clamp(3.2rem, 7vw, 4.6rem); }
    .hero-visual { transform: scale(0.88); }
    .note-top { right: -40px; }
    .note-bottom { left: -45px; }

    .value-grid > div { padding: 24px; }
    .value-grid > div:first-child { padding-left: 0; }

    .category-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 230px);
    }

    .category-large { grid-row: span 2; }
    .category-wide { grid-column: span 1; }

    .how-grid { gap: 60px; }
    .download-card { padding: 58px; }
}

@media (max-width: 780px) {
    .container { padding-left: 20px; padding-right: 20px; }
    .header-inner { height: 72px; }
    .brand span { font-size: 0.92rem; }
    .button-small { font-size: 0; padding: 0; width: 44px; }
    .button-small i { font-size: 0.86rem; }

    .hero {
        min-height: auto;
        padding: 118px 0 72px;
    }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 680px; }
    .hero h1 { font-size: clamp(3.05rem, 15vw, 4.5rem); }
    .hero h1 em { white-space: normal; }
    .hero-description { font-size: 1rem; }

    .hero-visual {
        margin: -12px 0 -35px;
        min-height: 570px;
        transform: scale(0.88);
    }

    .value-grid { grid-template-columns: 1fr; padding-bottom: 18px; padding-top: 18px; }
    .value-grid > div,
    .value-grid > div:first-child,
    .value-grid > div:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        border-right: 0;
        min-height: 0;
        padding: 18px 0;
    }
    .value-grid > div:last-child { border-bottom: 0; }

    .section { padding: 82px 0; }
    .section-heading h2,
    .how-intro h2,
    .download-copy h2 { font-size: clamp(2.5rem, 12vw, 3.5rem); }

    .heading-row { align-items: start; margin-bottom: 35px; }
    .desktop-only { display: none; }
    .mobile-view-all { display: flex; }

    .promotions-grid {
        gap: 15px;
        grid-auto-columns: minmax(80%, 330px);
        grid-template-columns: none;
        grid-auto-flow: column;
        overflow-x: auto;
        padding: 0 0 18px;
        scroll-snap-type: x mandatory;
    }

    .promotion-card { scroll-snap-align: start; }

    .category-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 310px 190px 190px;
    }

    .category-large { grid-column: span 2; grid-row: span 1; }
    .category-wide { grid-column: span 2; }
    .category-large > img { max-height: 88%; max-width: 58%; }

    .how-grid { gap: 52px; grid-template-columns: 1fr; }

    .download-section { padding-bottom: 82px; }
    .download-card {
        border-radius: 0;
        grid-template-columns: 1fr;
        margin: 0;
        max-width: none;
        padding: 64px 20px 25px;
    }
    .download-art { min-height: 340px; }

    .footer-grid { gap: 48px; grid-template-columns: 1fr; }
    .footer-links { gap: 28px; }
}

@media (max-width: 520px) {
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-proof { gap: 17px; }
    .proof-item strong { font-size: 1.6rem; }
    .proof-item span { font-size: 0.68rem; }

    .hero-visual { margin-left: -45px; margin-right: -45px; transform: scale(0.78); }
    .note-top { right: -15px; }
    .note-bottom { left: -12px; }

    .category-bento {
        display: flex;
        flex-direction: column;
    }
    .category-tile { min-height: 190px; }
    .category-large { min-height: 280px; }
    .category-wide { min-height: 220px; }

    .store-buttons { flex-direction: column; align-items: flex-start; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
