@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --deep: #064e49;
    --deep-2: #033b37;
    --green: #0f766e;
    --mint: #dff3ef;
    --mint-2: #eef9f7;
    --gold: #e9a92f;
    --gold-soft: #fff3d8;
    --coral: #e85d4f;
    --coral-soft: #fff0ee;
    --ink: #12191c;
    --muted: #607184;
    --paper: #f5f8f8;
    --surface: #ffffff;
    --line: #c7dfdb;
    --line-strong: #7fbdb5;
    --shadow: 0 24px 70px rgba(3, 59, 55, .12);
    --shadow-soft: 0 12px 34px rgba(3, 59, 55, .08);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Cairo', Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(127, 189, 181, .38);
    backdrop-filter: blur(18px);
}

.nav-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-link img {
    width: 142px;
    height: 48px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex: 1;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 9px 10px;
    color: #2e4c50;
    font-size: 14px;
    font-weight: 800;
    border-radius: 6px;
    transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--deep);
    background: var(--mint-2);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 5px 0;
    background: var(--deep);
    transition: transform .2s ease, opacity .2s ease;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
    color: #fff;
    background: var(--deep);
    box-shadow: 0 10px 24px rgba(6, 78, 73, .18);
}

.button-gold,
.button.gold {
    color: var(--deep-2);
    background: var(--gold);
}

.button-coral,
.button.coral {
    color: #fff;
    background: var(--coral);
}

.button-ghost,
.button.secondary {
    color: var(--deep);
    background: #fff;
    border-color: var(--line-strong);
}

.button-light {
    color: var(--deep);
    background: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.section {
    position: relative;
    padding: 96px 0;
}

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

.section-head {
    max-width: 720px;
    margin-bottom: 38px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
}

.section-kicker::before {
    content: '';
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.section-head h2,
.story-copy h2,
.merchant-callout h2,
.download-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: 40px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0;
}

.section-head p,
.story-copy > p,
.merchant-callout p,
.download-copy p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: min(680px, calc(100svh - 120px));
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: url('/site/offers/restaurant-photo-1.png') center 54% / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 37, 34, .76);
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 112px;
    background: rgba(3, 59, 55, .74);
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: min(680px, calc(100svh - 120px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
    gap: 64px;
    padding: 38px 0 112px;
}

.hero-content {
    max-width: 740px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(6, 78, 73, .56);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.hero-eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(233, 169, 47, .16);
}

.hero h1 {
    margin: 22px 0 0;
    font-family: Arial, sans-serif;
    font-size: 82px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-tagline {
    margin: 18px 0 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 900;
}

.hero-copy {
    max-width: 650px;
    margin: 18px 0 0;
    color: #dcecea;
    font-size: 18px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: #eaf7f5;
    font-size: 14px;
    font-weight: 800;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-proof span::before {
    content: '✓';
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--deep);
    background: var(--gold);
    font-size: 12px;
}

.hero-device {
    position: relative;
    align-self: end;
    transform: translateY(96px) rotate(-2deg);
    filter: drop-shadow(0 34px 44px rgba(0, 0, 0, .28));
}

.device-shell {
    position: relative;
    width: 290px;
    margin-inline: auto;
    padding: 10px;
    overflow: hidden;
    border: 7px solid #0d2423;
    border-radius: 40px;
    background: #fff;
}

.device-shell::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 6px;
    left: 50%;
    width: 82px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 0 0 13px 13px;
    background: #0d2423;
}

.device-shell img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 27px;
}

.hero-float {
    position: absolute;
    z-index: 3;
    min-width: 138px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    color: var(--deep);
    box-shadow: var(--shadow);
    font-size: 13px;
    font-weight: 900;
}

.hero-float strong {
    display: block;
    color: var(--coral);
    font-size: 19px;
}

.hero-float.one {
    top: 23%;
    right: -44px;
}

.hero-float.two {
    bottom: 18%;
    left: -56px;
}

.hero-rail {
    position: absolute;
    z-index: 3;
    right: 50%;
    bottom: 0;
    width: min(1180px, calc(100% - 40px));
    height: 112px;
    transform: translateX(50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.rail-item {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    border-inline-start: 1px solid rgba(255, 255, 255, .18);
}

.rail-item:last-child {
    border-inline-start: 0;
}

.rail-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 8px;
    color: var(--gold);
    font-weight: 900;
}

.rail-item b {
    display: block;
    font-size: 14px;
}

.rail-item small {
    display: block;
    color: #bcd8d4;
    font-size: 11px;
    font-weight: 700;
}

.quick-services {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

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

.quick-item {
    min-height: 122px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border-inline-start: 1px solid var(--line);
}

.quick-item:last-child {
    border-inline-start: 0;
}

.quick-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--deep);
    background: var(--mint-2);
    font-size: 19px;
    font-weight: 900;
}

.quick-item:nth-child(2) .quick-icon {
    background: var(--gold-soft);
    border-color: #eccb7d;
}

.quick-item:nth-child(3) .quick-icon {
    background: var(--coral-soft);
    border-color: #f1aaa3;
}

.quick-item b {
    display: block;
    color: var(--deep);
    font-size: 15px;
}

.quick-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.showcase {
    overflow: hidden;
    background: #fff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.screen-stack {
    min-height: 650px;
    position: relative;
}

.screen-stack .device-shell {
    position: absolute;
    width: 270px;
}

.screen-stack .device-shell:nth-child(1) {
    z-index: 3;
    top: 0;
    right: 50%;
    transform: translateX(50%);
}

.screen-stack .device-shell:nth-child(2) {
    z-index: 2;
    top: 66px;
    right: 0;
    transform: rotate(4deg);
    opacity: .94;
}

.screen-stack .device-shell:nth-child(3) {
    z-index: 1;
    top: 66px;
    left: 0;
    transform: rotate(-4deg);
    opacity: .94;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.feature-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.feature-row:last-child {
    border-bottom: 0;
}

.feature-row-num {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--mint);
    color: var(--deep);
    font-weight: 900;
}

.feature-row:nth-child(2) .feature-row-num {
    background: var(--gold-soft);
}

.feature-row:nth-child(3) .feature-row-num {
    background: var(--coral-soft);
}

.feature-row h3 {
    margin: 0;
    color: var(--deep);
    font-size: 17px;
}

.feature-row p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.experience-lab {
    background: var(--mint-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.experience-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.experience-tab {
    min-height: 42px;
    padding: 8px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--deep);
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}

.experience-tab[aria-selected="true"] {
    color: #fff;
    background: var(--deep);
    border-color: var(--deep);
}

.experience-panel {
    display: none;
    grid-template-columns: 1fr .8fr;
    align-items: center;
    gap: 70px;
}

.experience-panel.active {
    display: grid;
}

.panel-copy h3 {
    margin: 0;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.35;
}

.panel-copy p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
}

.panel-points {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.panel-points span {
    display: flex;
    gap: 10px;
    color: #2f5457;
    font-weight: 800;
}

.panel-points span::before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
}

.panel-device .device-shell {
    width: 300px;
}

.delivery-section {
    overflow: hidden;
    color: #fff;
    background: var(--deep-2);
}

.delivery-section .section-head h2,
.delivery-section .section-head p,
.delivery-section .section-kicker {
    color: #fff;
}

.delivery-layout {
    display: grid;
    grid-template-columns: .76fr 1.24fr;
    gap: 72px;
    align-items: center;
}

.delivery-device {
    position: relative;
}

.delivery-device .device-shell {
    width: 300px;
}

.delivery-price {
    position: absolute;
    left: -20px;
    bottom: 78px;
    width: 168px;
    padding: 14px;
    border: 1px solid #f1c76f;
    border-radius: 8px;
    background: var(--gold);
    color: var(--deep-2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.delivery-price small,
.delivery-price strong {
    display: block;
}

.delivery-price strong {
    font-size: 24px;
}

.delivery-timeline {
    display: grid;
    gap: 0;
    margin-top: 32px;
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    min-height: 78px;
}

.timeline-step::after {
    content: '';
    position: absolute;
    top: 42px;
    right: 20px;
    width: 2px;
    height: 36px;
    background: rgba(255, 255, 255, .18);
}

.timeline-step:last-child::after {
    display: none;
}

.timeline-dot {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 255, 255, .08);
    font-weight: 900;
}

.timeline-step h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.timeline-step p {
    margin: 3px 0 0;
    color: #bcd8d4;
    font-size: 13px;
    font-weight: 600;
}

.loyalty-section {
    background: var(--gold-soft);
    border-bottom: 1px solid #efd596;
}

.loyalty-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.loyalty-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 34px;
    border: 1px solid #dbb65d;
    border-radius: 8px;
    color: #fff;
    background: var(--deep);
    box-shadow: var(--shadow);
}

.loyalty-card::after {
    content: '%';
    position: absolute;
    left: 24px;
    bottom: -64px;
    color: rgba(255, 255, 255, .07);
    font-family: Arial, sans-serif;
    font-size: 250px;
    font-weight: 900;
    line-height: 1;
}

.loyalty-card .brand-mark {
    width: 52px;
    height: 52px;
    padding: 7px;
    border-radius: 8px;
    background: #fff;
}

.loyalty-card h3 {
    position: relative;
    z-index: 2;
    margin: 28px 0 0;
    font-size: 28px;
}

.loyalty-card p {
    position: relative;
    z-index: 2;
    margin: 8px 0 0;
    color: #cfe7e3;
    font-weight: 600;
}

.loyalty-progress {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 7px;
    margin-top: 30px;
}

.loyalty-progress span {
    height: 13px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .18);
}

.loyalty-progress span.filled {
    background: var(--gold);
}

.loyalty-copy h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.3;
}

.loyalty-copy p {
    margin: 14px 0 0;
    color: #655b45;
    font-size: 17px;
    font-weight: 600;
}

.loyalty-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.loyalty-note {
    min-height: 112px;
    padding: 16px;
    border: 1px solid #e2c579;
    border-radius: 8px;
    background: rgba(255, 255, 255, .56);
}

.loyalty-note b {
    display: block;
    color: var(--deep);
}

.loyalty-note span {
    color: #76694e;
    font-size: 13px;
    font-weight: 600;
}

.roles-section {
    background: #fff;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.role-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.role-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-soft);
}

.role-card:nth-child(2) {
    background: var(--mint-2);
}

.role-card:nth-child(3) {
    background: var(--gold-soft);
    border-color: #ecd28f;
}

.role-card:nth-child(4) {
    background: var(--coral-soft);
    border-color: #f0b6b0;
}

.role-index {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: var(--deep);
    font-size: 14px;
    font-weight: 900;
}

.role-card h3 {
    margin: 24px 0 0;
    color: var(--deep);
    font-size: 21px;
}

.role-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.role-card ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 20px 0 0;
    list-style: none;
    color: #35575a;
    font-size: 12px;
    font-weight: 800;
}

.role-card li::before {
    content: '•';
    margin-left: 7px;
    color: var(--coral);
}

.merchant-band {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #fff;
    background: url('/site/offers/cafe-photo-1.png') center / cover no-repeat;
}

.merchant-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 45, 42, .84);
}

.merchant-callout {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    padding: 70px 0;
}

.merchant-callout h2,
.merchant-callout p {
    color: #fff;
}

.merchant-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
}

.merchant-metric {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.merchant-metric b {
    display: block;
    color: var(--gold);
    font-size: 17px;
}

.merchant-metric span {
    color: #d7ebe8;
    font-size: 12px;
    font-weight: 600;
}

.download-section {
    background: #fff;
}

.download-panel {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 54px;
    align-items: center;
    padding: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--mint-2);
    box-shadow: var(--shadow-soft);
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.store-button {
    min-width: 180px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    background: var(--ink);
    font-weight: 900;
}

.store-button small {
    display: block;
    color: #bfc8cb;
    font-size: 10px;
    font-weight: 600;
}

.download-visual {
    position: relative;
    min-height: 330px;
}

.download-visual img {
    position: absolute;
    max-height: 410px;
    border: 6px solid #0b2422;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.download-visual img:first-child {
    z-index: 2;
    top: -78px;
    right: 28%;
    transform: rotate(2deg);
}

.download-visual img:last-child {
    z-index: 1;
    top: -44px;
    right: 5%;
    transform: rotate(-5deg);
    opacity: .85;
}

.faq-section {
    border-top: 1px solid var(--line);
}

.faq-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 70px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.faq-question {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    text-align: right;
    font-weight: 900;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: var(--deep);
    background: var(--mint);
    font-size: 20px;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.faq-item.open .faq-answer {
    display: block;
}

.footer {
    padding: 62px 0 22px;
    color: #d8ece9;
    background: #022f2c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .7fr .7fr .8fr;
    gap: 46px;
}

.footer-brand img {
    width: 180px;
    padding: 9px 12px;
    border-radius: 8px;
    background: #fff;
}

.footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 15px;
}

.footer p {
    max-width: 410px;
    margin: 14px 0 0;
    color: #aacdc8;
    font-size: 13px;
    font-weight: 600;
}

.footer a {
    display: block;
    margin: 8px 0;
    color: #c8e2de;
    font-size: 13px;
    font-weight: 700;
}

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

.footer-city {
    display: inline-flex;
    margin-top: 16px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #82aaa5;
    font-size: 11px;
    font-weight: 700;
}

/* Shared legal, support, account deletion and offer pages. */
.eyebrow {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 58px;
    color: #fff;
    background: var(--deep);
}

.legal-hero::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 8%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.legal-hero h1 {
    margin: 16px 0 0;
    font-size: 42px;
    line-height: 1.3;
}

.legal-hero p {
    max-width: 760px;
    margin: 12px 0 0;
    color: #d2e8e5;
    font-weight: 600;
}

.grid {
    display: grid;
    gap: 22px;
}

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

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

.legal-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

.side-card,
.legal-card,
.card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.side-card {
    position: sticky;
    top: 96px;
    padding: 14px;
}

.side-card a {
    display: block;
    padding: 10px;
    border-radius: 6px;
    color: var(--deep);
    font-size: 13px;
    font-weight: 900;
}

.side-card a:hover {
    background: var(--mint-2);
}

.legal-card {
    padding: 24px;
    margin-bottom: 18px;
}

.legal-card h2,
.card h2,
.card h3 {
    margin: 0;
    color: var(--deep);
}

.legal-card p,
.card p,
.support-note p {
    margin: 8px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.legal-card ul {
    margin: 12px 0 0;
    padding-right: 22px;
    color: var(--muted);
    font-weight: 600;
}

.legal-card li {
    margin: 8px 0;
}

.table {
    width: 100%;
    margin-top: 16px;
    border-collapse: collapse;
    border: 1px solid var(--line);
    background: #fff;
}

.table th,
.table td {
    padding: 13px;
    border-bottom: 1px solid var(--line);
    text-align: right;
    vertical-align: top;
}

.table th {
    color: var(--deep);
    background: var(--mint-2);
    font-weight: 900;
}

.check-list,
.form-grid {
    display: grid;
    gap: 14px;
}

.check-list {
    margin-top: 18px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.check-mark {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    color: var(--deep);
    background: var(--mint);
    font-size: 12px;
    font-weight: 900;
}

label {
    display: grid;
    gap: 7px;
    color: var(--deep);
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    outline: none;
    color: var(--ink);
    background: #fff;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--deep);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, .12);
}

.alert,
.error-list {
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
}

.alert {
    border: 1px solid var(--line-strong);
    color: var(--deep);
    background: var(--mint);
}

.error-list {
    border: 1px solid #efaaa4;
    color: #a33e35;
    background: var(--coral-soft);
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.js [data-reveal].revealed {
    opacity: 1;
    transform: none;
}

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

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

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1040px) {
    .nav-links a {
        padding-inline: 7px;
        font-size: 12px;
    }

    .nav-actions .button {
        padding-inline: 12px;
        font-size: 12px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 28px;
    }

    .hero h1 {
        font-size: 70px;
    }

    .hero-tagline {
        font-size: 27px;
    }

    .screen-stack .device-shell {
        width: 232px;
    }

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

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

    .footer-grid > div:last-child {
        grid-column: 2 / 4;
    }
}

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

    .nav-inner {
        min-height: 66px;
    }

    .brand-link img {
        width: 124px;
        height: 42px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 66px;
        right: 0;
        left: 0;
        height: calc(100vh - 66px);
        display: none;
        align-items: stretch;
        justify-content: flex-start;
        gap: 18px;
        padding: 22px 18px;
        background: #fff;
        overflow-y: auto;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
    }

    .nav-links,
    .nav-actions {
        display: grid;
        gap: 8px;
    }

    .nav-links a {
        padding: 13px;
        border: 1px solid var(--line);
        font-size: 14px;
    }

    .hero {
        min-height: 820px;
        align-items: stretch;
        background-position: 60% center;
    }

    .hero-grid {
        min-height: 820px;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 34px;
        padding: 70px 0 126px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-tagline {
        font-size: 25px;
    }

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

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .hero-device {
        display: none;
    }

    .hero-rail {
        grid-template-columns: repeat(2, 1fr);
        height: 112px;
    }

    .rail-item:nth-child(3),
    .rail-item:nth-child(4) {
        display: none;
    }

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

    .quick-item:nth-child(2) {
        border-inline-start: 0;
    }

    .quick-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 72px 0;
    }

    .section-head h2,
    .story-copy h2,
    .merchant-callout h2,
    .download-copy h2,
    .loyalty-copy h2 {
        font-size: 32px;
    }

    .showcase-grid,
    .experience-panel,
    .delivery-layout,
    .loyalty-layout,
    .download-panel,
    .faq-grid,
    .grid.two,
    .grid.three,
    .legal-wrap {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        gap: 26px;
    }

    .screen-stack {
        min-height: 560px;
        order: 2;
    }

    .experience-panel,
    .delivery-layout,
    .loyalty-layout {
        gap: 38px;
    }

    .panel-device {
        order: -1;
    }

    .delivery-device {
        order: 2;
    }

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

    .merchant-metrics {
        grid-template-columns: 1fr;
    }

    .download-panel {
        padding: 30px;
    }

    .download-visual {
        min-height: 310px;
        order: -1;
    }

    .side-card {
        position: static;
    }

    .table {
        display: block;
        overflow-x: auto;
    }

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

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .container {
        width: calc(100% - 24px);
    }

    .hero {
        min-height: 760px;
    }

    .hero-grid {
        min-height: 760px;
        padding-top: 54px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-tagline {
        font-size: 21px;
    }

    .hero-eyebrow {
        font-size: 11px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        gap: 10px;
        text-align: right;
    }

    .hero-rail {
        width: calc(100% - 24px);
    }

    .rail-item {
        padding-inline: 8px;
    }

    .rail-item small {
        display: none;
    }

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

    .quick-item,
    .quick-item:nth-child(2) {
        min-height: 92px;
        border-inline-start: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-item:last-child {
        border-bottom: 0;
    }

    .section-head h2,
    .story-copy h2,
    .merchant-callout h2,
    .download-copy h2,
    .loyalty-copy h2 {
        font-size: 28px;
    }

    .section-head p,
    .story-copy > p,
    .merchant-callout p,
    .download-copy p,
    .loyalty-copy p {
        font-size: 15px;
    }

    .screen-stack {
        min-height: 500px;
    }

    .screen-stack .device-shell {
        width: 206px;
    }

    .screen-stack .device-shell:nth-child(2) {
        right: -34px;
    }

    .screen-stack .device-shell:nth-child(3) {
        left: -34px;
    }

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

    .experience-tab {
        padding-inline: 8px;
        font-size: 12px;
    }

    .panel-copy h3 {
        font-size: 26px;
    }

    .panel-device .device-shell,
    .delivery-device .device-shell {
        width: 260px;
    }

    .delivery-price {
        left: 0;
    }

    .loyalty-card {
        min-height: 350px;
        padding: 24px;
    }

    .loyalty-card h3 {
        font-size: 24px;
    }

    .loyalty-notes,
    .roles-grid {
        grid-template-columns: 1fr;
    }

    .role-card {
        min-height: 260px;
    }

    .download-panel {
        padding: 22px;
    }

    .download-visual {
        min-height: 260px;
    }

    .download-visual img {
        max-height: 330px;
    }

    .download-visual img:first-child {
        right: 34%;
    }

    .store-button {
        width: 100%;
    }

    .legal-hero {
        padding: 64px 0 42px;
    }

    .legal-hero h1 {
        font-size: 32px;
    }

    .legal-card {
        padding: 18px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }
}
