:root {
  color-scheme: light;
  --ink: #13202c;
  --muted: #66727f;
  --line: #dce2e8;
  --surface: #ffffff;
  --canvas: #edf4f7;
  --brand: #167d89;
  --brand-dark: #0b5661;
  --brand-soft: #dff4f4;
  --success: #16795b;
  --warning: #a66100;
  --danger: #b43c42;
  --shadow: 0 18px 55px rgba(20, 45, 58, 0.13);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.status-pill.cancelled { background: #fff1f1; color: #8e1b1b; border-color: #efb6b6; }
.receipt-cancellation { display: grid; gap: 4px; margin: 16px 0; padding: 14px; border: 1px solid #efb6b6; border-radius: 14px; background: #fff1f1; }
.receipt-cancellation strong { color: #8e1b1b; }
.receipt-cancellation span, .receipt-cancellation small { color: #6f5151; font-size: 0.86rem; }
.receipt-cancellation em { margin-top: 4px; color: #8e1b1b; font-size: 0.86rem; font-style: normal; font-weight: 800; }

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(73, 176, 184, 0.18), transparent 36rem),
    var(--canvas);
}

button,
input,
select {
  font: inherit;
}

a {
  color: var(--brand-dark);
}

.shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(145deg, #21a5ae, #116b78);
  box-shadow: 0 8px 20px rgba(17, 107, 120, 0.25);
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
}

.nav-button {
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.hero {
  padding: clamp(28px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: -0.04em;
}

.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  line-height: 1.6;
}

.actions,
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  appearance: none;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--brand);
  box-shadow: 0 7px 18px rgba(22, 125, 137, 0.22);
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
  text-align: center;
}

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

.button.secondary {
  color: var(--ink);
  background: white;
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.danger {
  background: var(--danger);
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 36px rgba(20, 45, 58, 0.09);
}

.stack {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: white;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.status-box,
.response-box {
  min-height: 76px;
  padding: 16px;
  border-radius: 16px;
  background: #f5f8fa;
  border: 1px solid var(--line);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 750;
  font-size: 0.82rem;
}

.device-stage {
  display: grid;
  min-height: 68vh;
  place-items: center;
}

.device-shell {
  width: min(430px, 100%);
  padding: 20px;
  border-radius: 38px;
  background: #f9fbfc;
  box-shadow: 0 30px 80px rgba(12, 34, 46, 0.2), inset 0 0 0 1px white;
}

.device-screen {
  display: grid;
  min-height: 300px;
  padding: 26px;
  place-items: center;
  text-align: center;
  border-radius: 26px;
  color: white;
  background: linear-gradient(145deg, #143743, #0e6872);
  overflow: hidden;
}

.device-screen.ready {
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 20px;
  text-align: left;
}

.device-screen.offline {
  background: linear-gradient(145deg, #553535, #8e3d3d);
}

.device-screen img {
  display: block;
  width: 150px;
  height: 150px;
  border: 8px solid white;
  border-radius: 12px;
  background: white;
}

.device-amount {
  margin-bottom: 8px;
  font-size: 2.3rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.tap-rings {
  font-size: 3rem;
  line-height: 1;
}

.receipt-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 22px;
}

.receipt-card {
  width: min(430px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.receipt-head {
  padding-bottom: 20px;
  border-bottom: 1px dashed #bcc6ce;
  text-align: center;
}

.receipt-head h1 {
  margin: 10px 0 5px;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.receipt-meta {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.receipt-lines {
  display: grid;
  gap: 13px;
  padding: 20px 0;
  border-bottom: 1px dashed #bcc6ce;
}

.receipt-line,
.total-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.receipt-line small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.receipt-totals {
  display: grid;
  gap: 8px;
  padding-top: 20px;
}

.total-line.grand {
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 850;
}

.receipt-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

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

.get-app-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid rgba(22, 125, 137, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, #effaf8, #f7fbff);
}

.get-app-cta[hidden] { display: none; }
.gac-copy { min-width: 0; }
.gac-copy strong, .gac-copy small { display: block; }
.gac-copy strong { color: #0a0f14; font-size: 0.92rem; }
.gac-copy small { margin-top: 3px; color: var(--muted); font-size: 0.74rem; line-height: 1.35; }
.gac-kicker { display: block; margin-bottom: 4px; color: #167d70; font-size: 0.58rem; font-weight: 850; letter-spacing: 0.1em; }
.gac-button { flex: 0 0 auto; padding: 10px 12px; font-size: 0.78rem; }

.receipt-share-action {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border: 0;
  color: #526268;
  background: transparent;
  font-size: 0.79rem;
  font-weight: 750;
  cursor: pointer;
}
.receipt-share-action span { font-size: 1rem; }
.receipt-share-action:hover { color: #0b5661; }
.receipt-share-action:focus-visible { outline: 3px solid rgba(22,125,137,.32); outline-offset: 2px; border-radius: 9px; }

.receipt-wallet {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(10, 15, 20, 0.1);
  border-radius: 17px;
  background: #f7f9f8;
}
.receipt-wallet[hidden] { display: none; }

.wallet-heading { display: flex; align-items: center; gap: 10px; }
.wallet-heading > div { min-width: 0; }
.wallet-heading strong, .wallet-heading small { display: block; }
.wallet-heading strong { color: #0a0f14; font-size: 0.9rem; }
.wallet-heading small { margin-top: 2px; color: #66727f; font-size: 0.72rem; line-height: 1.35; }
.wallet-mark {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, #167d89, #0a4e58);
}

.wallet-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 13px; }
.wallet-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #292929;
  border-radius: 10px;
  color: #fff;
  background: #050505;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.wallet-button small { display: block; margin-bottom: 2px; color: #d8d8d8; font-size: 0.55rem; font-weight: 500; }
.wallet-provider-mark { flex: 0 0 auto; font-size: 1.25rem; line-height: 1; }
.wallet-provider-mark.apple { font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1.45rem; }
.wallet-provider-mark.google { color: #8ab4f8; font-family: Arial, sans-serif; font-weight: 800; }
.wallet-button[aria-disabled="true"], .wallet-button:disabled { opacity: 0.38; cursor: not-allowed; }
.wallet-button.available:hover { background: #202020; }
.wallet-button:focus-visible { outline: 3px solid rgba(22, 125, 137, 0.35); outline-offset: 2px; }
.wallet-status { margin: 9px 1px 0; color: #66727f; font-size: 0.68rem; line-height: 1.35; }

.receipt-copy-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 12px max(18px, env(safe-area-inset-bottom));
  background: rgba(5, 12, 16, 0.62);
  backdrop-filter: blur(5px);
}
.receipt-copy-sheet {
  width: min(470px, 100%);
  max-height: min(88vh, 780px);
  overflow: auto;
  padding: 10px 16px 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.receipt-copy-handle { width: 42px; height: 4px; margin: 0 auto 12px; border-radius: 9px; background: #d5dcde; }
.receipt-copy-sheet header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.receipt-copy-sheet header span { color: #167d70; font-size: .58rem; font-weight: 850; letter-spacing: .1em; }
.receipt-copy-sheet h2 { margin: 3px 0 0; color: #0a0f14; font-size: 1.08rem; }
.receipt-copy-sheet header button { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 50%; color: #526268; background: #edf1f0; font-size: 1.35rem; cursor: pointer; }
.receipt-copy-instruction { margin: 12px 0; padding: 10px 12px; border-radius: 11px; color: #526268; background: #f1f6f5; font-size: .72rem; line-height: 1.5; }
.receipt-copy-instruction em { color: #0a0f14; font-style: normal; font-weight: 700; }
.receipt-copy-sheet > img { display: block; width: 100%; max-height: 43vh; object-fit: contain; border: 1px solid #dce2e2; border-radius: 12px; background: #f6f7f6; }
.receipt-copy-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.receipt-copy-actions .button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 9px; font-size: .72rem; text-align: center; text-decoration: none; }

@media (max-width: 390px) {
  .get-app-cta { align-items: stretch; flex-direction: column; }
  .gac-button { width: 100%; }
  .wallet-actions { grid-template-columns: 1fr; }
  .receipt-copy-actions { grid-template-columns: 1fr; }
}

.message-state {
  text-align: center;
}

.message-state .symbol {
  margin-bottom: 16px;
  font-size: 3rem;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.auth-card {
  max-width: 460px;
}

.auth-provider-list {
  display: grid;
  gap: 12px;
  padding-top: 24px;
}

.auth-provider {
  display: block;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: white;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.auth-provider.apple {
  color: white;
  background: #111;
  border-color: #111;
}

.auth-provider[aria-disabled="true"] {
  color: var(--muted);
  background: #eef2f4;
  border-color: var(--line);
  cursor: not-allowed;
}

.auth-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 18px 0 4px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  background: #f5f8fa;
  font-size: 0.82rem;
}

.auth-strip button {
  padding: 0;
  border: 0;
  color: var(--brand-dark);
  background: none;
  cursor: pointer;
  font-weight: 750;
}

@media (max-width: 760px) {
  .grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .device-screen.ready {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* --- Local Tapyme company website ------------------------------- */

.marketing-page {
  --site-ink: #071314;
  --site-muted: #5d6a66;
  --site-line: #d7ded9;
  --site-soft: #f3f7f2;
  --site-mint: #d9f45f;
  --site-cyan: #58e0d7;
  --site-deep: #061315;
  --site-cream: #fbfaf4;
  min-height: 100vh;
  color: var(--site-ink);
  background: var(--site-cream);
}

.marketing-page a {
  color: inherit;
}

.marketing-header,
.marketing-hero,
.section-band,
.split-section,
.hardware-strip,
.pricing-section,
.reserve-section,
.faq-section,
.marketing-footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.marketing-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  background: color-mix(in srgb, var(--site-cream) 86%, transparent);
  backdrop-filter: blur(18px);
  transition:
    width 180ms ease,
    padding 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.marketing-header.is-scrolled {
  width: min(1180px, calc(100% - 28px));
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(6, 19, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 44px rgba(6, 19, 21, 0.1);
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.marketing-brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--site-deep);
  background: linear-gradient(145deg, var(--site-cyan), var(--site-mint));
  font-weight: 900;
}

.marketing-nav,
.marketing-actions,
.hero-cta-row,
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.marketing-nav {
  justify-content: center;
  gap: 6px;
}

.marketing-nav a,
.marketing-menu-trigger,
.marketing-link {
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  color: var(--site-ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.marketing-nav a:hover,
.marketing-menu-trigger:hover,
.marketing-menu-trigger[aria-expanded="true"],
.marketing-link:hover {
  background: white;
}

.marketing-menu-trigger::after {
  content: "⌄";
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72rem;
  transform: translateY(-1px);
}

.marketing-menu-trigger[aria-expanded="true"]::after {
  transform: translateY(-1px) rotate(180deg);
}

.marketing-actions {
  justify-content: flex-end;
  gap: 8px;
}

.marketing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.marketing-button-dark {
  color: white;
  background: var(--site-deep);
  box-shadow: 0 13px 30px rgba(6, 19, 21, 0.18);
}

.marketing-button-light {
  color: var(--site-deep);
  background: white;
  border-color: var(--site-line);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px;
  border: 1px solid rgba(6, 19, 21, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(6, 19, 21, 0.18);
  backdrop-filter: blur(20px);
}

.mega-menu-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: stretch;
}

.mega-intro {
  padding: 22px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 244, 95, 0.38), transparent 13rem),
    var(--site-deep);
}

.mega-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3.5vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.mega-intro p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.mega-intro .marketing-eyebrow {
  color: var(--site-mint);
}

.mega-grid,
.mega-column-grid {
  display: grid;
  gap: 12px;
}

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

.mega-card {
  display: grid;
  align-content: end;
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--site-line);
  border-radius: 24px;
  color: var(--site-deep);
  background: var(--site-soft);
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.mega-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 19, 21, 0.2);
  background: white;
}

.mega-card.highlight {
  background:
    radial-gradient(circle at 80% 0%, rgba(88, 224, 215, 0.32), transparent 12rem),
    #e5fbf2;
}

.mega-card span {
  color: #2f746b;
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mega-card strong {
  margin-top: 8px;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.mega-card small {
  margin-top: 8px;
  color: var(--site-muted);
  line-height: 1.45;
}

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

.mega-column-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--site-line);
  border-radius: 24px;
  background: var(--site-soft);
}

.mega-column-grid h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: -0.035em;
}

.mega-column-grid a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(6, 19, 21, 0.08);
  color: var(--site-muted);
  font-weight: 750;
  text-decoration: none;
}

.mega-column-grid a:hover {
  color: var(--site-deep);
}

.mega-column-grid a::after {
  content: "→";
  color: var(--site-deep);
}

.marketing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: 760px;
  padding: clamp(34px, 7vw, 92px) 0 64px;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--site-deep);
  font-size: clamp(4rem, 9.8vw, 8.2rem);
  line-height: 0.86;
  letter-spacing: -0.092em;
}

.marketing-eyebrow,
.product-kicker,
.plan-label {
  margin: 0 0 12px;
  color: #225b55;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.marketing-lede {
  max-width: 680px;
  margin: 0;
  color: var(--site-muted);
  font-size: clamp(1.1rem, 2.3vw, 1.36rem);
  line-height: 1.55;
}

.hero-cta-row {
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  color: var(--site-muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-product-stage {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 46px;
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 224, 215, 0.34), transparent 22rem),
    radial-gradient(circle at 86% 70%, rgba(217, 244, 95, 0.45), transparent 20rem),
    #e8f1e7;
  box-shadow: 0 28px 80px rgba(38, 54, 47, 0.18);
  overflow: hidden;
}

.hero-product-stage::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(6, 19, 21, 0.08);
  border-radius: 34px;
}

.checkout-card,
.phone-card,
.air-device {
  position: absolute;
  box-shadow: 0 24px 55px rgba(6, 19, 21, 0.18);
}

.checkout-card {
  top: 54px;
  left: 38px;
  width: min(330px, calc(100% - 76px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.card-topline,
.item-row,
.receipt-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.card-topline {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.item-row {
  padding: 12px 0;
  border-top: 1px solid var(--site-line);
  color: var(--site-muted);
}

.approval-pill {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #123e2d;
  background: #cbf7d4;
  font-weight: 850;
}

.air-device {
  right: 70px;
  bottom: 64px;
  display: grid;
  width: 210px;
  min-height: 284px;
  padding: 20px;
  border-radius: 34px;
  color: white;
  background: linear-gradient(160deg, #0c1f21, #081111);
}

.device-screen {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 146px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(88, 224, 215, 0.18), transparent),
    #122b2d;
  text-align: center;
}

.device-screen strong {
  margin: 8px 0;
  font-size: 2.2rem;
  letter-spacing: -0.06em;
}

.screen-status {
  color: var(--site-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tap-ring {
  display: grid;
  place-items: center;
  align-self: end;
  width: 84px;
  height: 84px;
  margin: 20px auto 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.tap-ring span {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--site-cyan), var(--site-mint));
}

.phone-card {
  right: 28px;
  top: 72px;
  width: 185px;
  min-height: 270px;
  padding: 18px;
  border: 8px solid #111;
  border-radius: 32px;
  background: white;
}

.phone-notch {
  width: 58px;
  height: 6px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #111;
}

.phone-label {
  margin: 0 0 12px;
  color: #19735f;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-card h3 {
  margin-bottom: 16px;
  letter-spacing: -0.045em;
}

.phone-button {
  margin-top: 42px;
  padding: 12px;
  border-radius: 16px;
  color: white;
  background: var(--site-deep);
  font-weight: 850;
  text-align: center;
}

.section-band,
.split-section,
.hardware-strip,
.pricing-section,
.reserve-section,
.faq-section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.hardware-strip h2,
.reserve-section h2 {
  margin: 0 0 14px;
  color: var(--site-deep);
  font-size: clamp(2.4rem, 5.4vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.section-heading p,
.split-section p,
.hardware-strip p,
.reserve-section p,
.faq-grid p,
.product-card p,
.integration-card p,
.business-grid p,
.price-card li,
.marketing-footer p {
  color: var(--site-muted);
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.integration-card,
.price-card,
.faq-grid article {
  padding: 24px;
  border: 1px solid var(--site-line);
  border-radius: 28px;
  background: white;
}

.product-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.product-card h3,
.integration-card h3,
.business-grid h3,
.price-card h3,
.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.product-card a,
.integration-card a {
  margin-top: auto;
  color: var(--site-deep);
  font-weight: 900;
  text-decoration: none;
}

.featured-product {
  color: white;
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 244, 95, 0.62), transparent 12rem),
    var(--site-deep);
}

.featured-product p,
.featured-product .product-kicker,
.featured-product a {
  color: rgba(255, 255, 255, 0.86);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.split-section .marketing-button {
  margin-top: 22px;
}

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

.flow-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--site-line);
  border-radius: 28px;
  background: white;
}

.flow-list li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--site-deep);
  background: var(--site-mint);
  font-weight: 950;
}

.flow-list h3 {
  margin-bottom: 6px;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--site-deep);
}

.dark-band .section-heading h2,
.dark-band .marketing-eyebrow {
  color: white;
}

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

.business-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.business-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.integration-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.integration-card {
  min-height: 300px;
}

.integration-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 16px;
  background: var(--site-soft);
  font-weight: 950;
}

.integration-card.live {
  border-color: transparent;
  background: #e8f8f6;
}

.hardware-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 32px;
  align-items: center;
}

.hardware-card-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hardware-card-stack article {
  display: grid;
  align-content: end;
  min-height: 230px;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.5), transparent),
    #e9efe7;
}

.hardware-card-stack span {
  color: var(--site-muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hardware-card-stack strong {
  margin-top: 8px;
  font-size: 1.35rem;
  letter-spacing: -0.045em;
}

.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.price-card .price {
  margin: 0;
  color: var(--site-deep);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1rem;
}

.muted-card {
  background: var(--site-soft);
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  margin-bottom: 48px;
  padding: clamp(32px, 6vw, 64px);
  border-radius: 40px;
  color: white;
  background:
    radial-gradient(circle at 8% 6%, rgba(88, 224, 215, 0.34), transparent 18rem),
    radial-gradient(circle at 95% 100%, rgba(217, 244, 95, 0.42), transparent 18rem),
    var(--site-deep);
}

.reserve-section h2,
.reserve-section .marketing-eyebrow {
  color: white;
}

.reserve-section p {
  color: rgba(255, 255, 255, 0.74);
}

.mini-checkout {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-checkout span,
.mini-checkout small {
  color: rgba(255, 255, 255, 0.65);
}

.reserve-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  color: var(--site-deep);
  background: white;
}

.reserve-form label {
  display: grid;
  gap: 8px;
  color: var(--site-muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  color: var(--site-deep);
  background: #fbfcfa;
  resize: vertical;
}

.reserve-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #19735f;
  font-weight: 850;
}

.faq-grid article {
  background: var(--site-soft);
}

.marketing-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
  padding: 36px 0 56px;
  border-top: 1px solid var(--site-line);
}

.marketing-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  max-width: 560px;
}

.marketing-footer nav a {
  color: var(--site-muted);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .marketing-header {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .marketing-nav {
    justify-content: flex-start;
  }

  .marketing-actions {
    justify-content: flex-start;
  }

  .marketing-hero,
  .split-section,
  .hardware-strip,
  .reserve-section {
    grid-template-columns: 1fr;
  }

  .marketing-hero {
    min-height: auto;
  }

  .product-grid,
  .business-grid,
  .integration-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-menu {
    position: static;
    grid-column: 1;
    margin-top: 4px;
  }

  .mega-menu-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .marketing-header,
  .marketing-hero,
  .section-band,
  .split-section,
  .hardware-strip,
  .pricing-section,
  .reserve-section,
  .faq-section,
  .marketing-footer {
    width: min(100% - 28px, 1180px);
  }

  .marketing-header {
    position: static;
    padding: 14px;
    border: 1px solid rgba(6, 19, 21, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 18vw, 5.1rem);
  }

  .hero-product-stage {
    min-height: 690px;
    border-radius: 34px;
  }

  .checkout-card {
    top: 26px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .phone-card {
    top: 300px;
    right: 18px;
  }

  .air-device {
    right: auto;
    left: 20px;
    bottom: 24px;
  }

  .product-grid,
  .business-grid,
  .integration-board,
  .hardware-card-stack,
  .pricing-grid,
  .faq-grid,
  .reserve-form .form-grid,
  .mega-grid,
  .mega-column-grid,
  .marketing-footer {
    grid-template-columns: 1fr;
  }

  .mega-menu {
    padding: 10px;
    border-radius: 24px;
  }

  .mega-card,
  .mega-column-grid > div {
    min-height: auto;
  }

  .marketing-footer nav {
    justify-content: flex-start;
  }
}
.coupon-redemption-panel { display:grid; gap:14px; }
.coupon-redemption-copy h2 { margin:0; }
.coupon-redemption-copy p { margin:6px 0 0; color:#637477; font-size:12px; line-height:1.5; }
.coupon-redemption-form { display:grid; grid-template-columns:minmax(190px,1fr) minmax(150px,.55fr) auto; gap:9px; align-items:end; }
.coupon-redemption-form label { display:grid; gap:5px; color:#526568; font-size:10px; font-weight:800; }
.coupon-redemption-form input { width:100%; padding:11px; border:1px solid rgba(10,15,20,.17); border-radius:10px; color:#102426; background:#fff; font:inherit; }
.coupon-redemption-form button,.coupon-redemption-preview > button { padding:11px 15px; border:0; border-radius:10px; color:#fff; background:#167d89; font-weight:800; cursor:pointer; }
.coupon-redemption-form button:disabled,.coupon-redemption-preview > button:disabled { opacity:.6; cursor:wait; }
.coupon-redemption-preview { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:13px; border:1px solid #a9d9cf; border-radius:12px; background:#f2faf7; }
.coupon-redemption-preview div { min-width:0; }
.coupon-redemption-preview span,.coupon-redemption-preview strong,.coupon-redemption-preview small,.coupon-redemption-preview p,.coupon-redemption-preview em { display:block; }
.coupon-redemption-preview span { color:#0f6e56; font-size:9px; font-weight:900; letter-spacing:.09em; }
.coupon-redemption-preview strong { margin-top:4px; font-size:14px; }
.coupon-redemption-preview small,.coupon-redemption-preview p,.coupon-redemption-preview em { margin:4px 0 0; color:#5d716f; font-size:10px; line-height:1.45; }
.coupon-redemption-preview em { color:#7a5d13; font-style:normal; font-weight:750; }
.coupon-redemption-success { display:grid !important; grid-template-columns:auto 1fr; align-items:center; gap:9px; }
.coupon-redemption-success span { grid-row:1/3; width:34px; height:34px; display:grid; place-items:center; border-radius:50%; color:#fff; background:#16816b; font-size:17px; }
.coupon-redemption-success strong,.coupon-redemption-success small { margin:0; }
.coupon-redemption-status { min-height:17px; margin:0; color:#607476; font-size:11px; }
.coupon-redemption-status.verified { color:#0f6e56; }
.coupon-redemption-status.error { color:#a32d2d; }
@media (max-width:700px) {
  .coupon-redemption-form { grid-template-columns:1fr; }
  .coupon-redemption-preview { display:grid; }
  .coupon-redemption-preview > button { width:100%; }
}
