:root {
  --primary: #f2ca50;
  --secondary: #e2725b;
  --tertiary: #1a1a1a;
  --background: #0a0a0a;
  --surface: #201f1f;
  --surface-2: #131313;
  --text: #e5e2e1;
  --muted: #d0c5af;
  --outline: rgba(242, 202, 80, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --card-radius: 8px;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--background);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 82% -10%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 34rem),
    radial-gradient(circle at 0% 12%, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 24rem),
    linear-gradient(180deg, #111 0%, var(--background) 30%, #0f0f0f 100%);
}

button, input { font: inherit; }
button { cursor: pointer; }

.app-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) clamp(18px, 4vw, 44px) 34px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin: -18px calc(clamp(18px, 4vw, 44px) * -1) 24px;
  padding: max(18px, env(safe-area-inset-top)) clamp(18px, 4vw, 44px) 12px;
  background: color-mix(in srgb, var(--background) 82%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--outline) 62%, transparent);
}

.brand { display: flex; align-items: center; }

.brand-title {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(29px, 5.6vw, 42px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.utility {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--outline) 90%, #fff 4%);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  transition: 180ms ease;
}

.icon-button:hover { transform: translateY(-1px); border-color: var(--primary); }

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  box-shadow: var(--shadow);
  border: 1px solid color-mix(in srgb, var(--outline) 45%, transparent);
}

.hero-track {
  display: flex;
  transition: transform 720ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.hero {
  position: relative;
  min-width: 100%;
  min-height: clamp(236px, 40vw, 405px);
  overflow: hidden;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.9);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.42) 54%, rgba(10, 10, 10, 0.7)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.96), transparent 55%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 5vw, 58px);
}

.hero-badge {
  width: fit-content;
  margin-bottom: 13px;
  border: 1px solid color-mix(in srgb, var(--primary) 55%, transparent);
  color: var(--primary);
  background: rgba(0, 0, 0, 0.28);
  border-radius: 8px;
  padding: 7px 10px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h2 {
  max-width: 720px;
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(50px, 12vw, 104px);
  line-height: 0.87;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 3.2vw, 28px);
  line-height: 1.42;
}

.hero-dots {
  position: absolute;
  left: clamp(22px, 5vw, 58px);
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 22px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 40%, transparent);
}

.hero-dots button.active {
  width: 38px;
  background: var(--primary);
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin: 18px 0 0;
}

.search-wrap {
  position: relative;
}

.search-wrap input {
  width: 100%;
  min-height: 48px;
  border: 1px solid color-mix(in srgb, var(--outline) 75%, transparent);
  border-radius: 8px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 78%, #000 20%);
  padding: 0 18px 0 48px;
  outline: none;
}

.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  color: var(--muted);
  transform: translateY(-50%);
}

.count-pill {
  min-height: 48px;
  border: 1px solid color-mix(in srgb, var(--outline) 70%, transparent);
  border-radius: 8px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  padding: 0 17px;
  font-weight: 800;
  white-space: nowrap;
}

.category-rail {
  position: sticky;
  top: 58px;
  z-index: 30;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  margin: 12px calc(clamp(18px, 4vw, 44px) * -1) 24px;
  padding: 12px clamp(18px, 4vw, 44px);
  border-top: 1px solid color-mix(in srgb, var(--outline) 40%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--outline) 28%, transparent);
  background: color-mix(in srgb, var(--background) 92%, transparent);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar { display: none; }

.category-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: color-mix(in srgb, var(--muted) 70%, transparent);
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 8px 0 15px;
}

.category-tab.active { color: var(--primary); }

.category-tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 50px;
  height: 4px;
  border-radius: 4px;
  background: var(--primary);
  transform: translateX(-50%);
  box-shadow: 0 0 24px color-mix(in srgb, var(--primary) 55%, transparent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(9px, 2.1vw, 20px);
  contain: layout paint;
}

.product-card {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--outline) 55%, transparent);
  border-radius: var(--card-radius);
  background: color-mix(in srgb, var(--surface) 84%, #000 12%);
  color: var(--text);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  transform: translateZ(0);
  opacity: 1;
}

.product-image {
  position: relative;
  aspect-ratio: 1.02 / 1;
  overflow: hidden;
  background: #111;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}

.product-card:hover .product-image img { transform: scale(1.06); }

.featured {
  position: absolute;
  top: 6px;
  right: 6px;
  color: var(--primary);
  background: color-mix(in srgb, #000 74%, var(--primary) 10%);
  border-left: 3px solid var(--primary);
  border-radius: 7px;
  padding: 4px 7px;
  font-weight: 850;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-body {
  padding: clamp(8px, 1.7vw, 13px);
}

.product-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(12px, 2.15vw, 23px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  min-height: 2.15em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title-row { display: block; }

.price {
  color: var(--primary);
  font-weight: 900;
  font-size: clamp(12px, 2vw, 20px);
  white-space: nowrap;
  display: block;
  margin-top: 5px;
}

.description {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
  margin: 11px 0 0;
  min-height: 2.8em;
  line-height: 1.43;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: color-mix(in srgb, var(--muted) 86%, transparent);
  font-size: clamp(9px, 1.55vw, 12px);
  border: 0;
  border-radius: 0;
  padding: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meta-chip svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--primary);
}

.product-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 7px;
}

.product-compliance span {
  border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);
  border-radius: 5px;
  color: color-mix(in srgb, var(--muted) 84%, var(--primary));
  background: rgba(255, 255, 255, 0.035);
  padding: 3px 5px;
  font-size: clamp(8px, 1.25vw, 10px);
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-button,
.ghost-button {
  border-radius: 7px;
  min-height: 31px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: clamp(10px, 1.7vw, 13px);
  transition: 160ms ease;
}

.primary-button {
  background: var(--primary);
  color: #241a00;
  padding: 0 15px;
}

.ghost-button {
  width: 100%;
  margin-top: 9px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-color: color-mix(in srgb, var(--primary) 26%, transparent);
  color: var(--primary);
  padding: 0 8px;
}

.primary-button:active,
.ghost-button:active { transform: scale(.98); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: flex-end;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(7px);
}

.drawer-backdrop.open { display: flex; }

.drawer {
  width: min(100%, 760px);
  margin: 0 auto;
  max-height: 88dvh;
  overflow: auto;
  border-radius: 18px 18px 0 0;
  border: 1px solid color-mix(in srgb, var(--outline) 62%, transparent);
  background: color-mix(in srgb, var(--surface-2) 92%, #000 8%);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, .6);
}

.drawer-hero {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.drawer-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(.72);
}

.drawer-content { padding: 22px; }

.drawer h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: clamp(36px, 8vw, 58px);
  line-height: .96;
}

.drawer-description {
  min-height: auto;
  display: block;
}

.required-info-grid {
  display: grid;
  gap: 10px;
  margin: 18px 0 14px;
}

.required-info-card {
  border: 1px solid color-mix(in srgb, var(--outline) 74%, transparent);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    color-mix(in srgb, var(--surface) 88%, #000 12%);
  padding: 12px 13px;
}

.required-info-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.required-info-card strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.required-info-card.allergen {
  border-color: color-mix(in srgb, var(--secondary) 42%, var(--outline));
}

.legal-info-panel {
  display: grid;
  gap: 12px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 12rem),
    color-mix(in srgb, var(--surface) 74%, #000 20%);
}

.legal-info-panel span,
.nutrition-table dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-info-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.legal-info-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.nutrition-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
  margin: 0;
}

.nutrition-table div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.nutrition-table dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.detail-tile {
  min-height: 74px;
  border: 1px solid color-mix(in srgb, var(--outline) 46%, transparent);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  padding: 12px;
}

.detail-tile span {
  display: block;
  color: var(--primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.detail-tile strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.detail-tile.warning { border-color: color-mix(in srgb, var(--secondary) 52%, transparent); }
.detail-tile.campaign { border-color: color-mix(in srgb, var(--primary) 52%, transparent); }

.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.variation-group {
  margin-top: 20px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--outline) 50%, transparent);
  background: rgba(255, 255, 255, .035);
}

.variation-group h4 {
  margin: 0 0 10px;
  color: var(--text);
}

.option-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

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

.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px dashed color-mix(in srgb, var(--outline) 70%, transparent);
  color: var(--muted);
}

@media (min-width: 860px) {
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .app-shell { padding-bottom: 54px; }
}

@media (min-width: 1180px) {
  .grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .app-shell { padding-inline: 14px; }
  .utility .icon-button:first-child { display: none; }
  .hero { min-height: 278px; }
  .hero-copy { padding: 24px; }
  .grid { gap: 10px; }
  .product-body { padding: 9px; }
  .description { display: none; }
  .toolbar { grid-template-columns: 1fr; margin-top: 14px; }
  .count-pill { display: none; }
  .category-rail { gap: 20px; }
}

@media (max-width: 420px) {
  .brand-title { font-size: 29px; }
  .hero h2 { font-size: 56px; }
  .app-shell { padding-inline: 10px; }
  .grid { gap: 8px; }
  .ghost-button { min-height: 29px; padding-inline: 6px; }
  .detail-grid { grid-template-columns: 1fr; }
}

.top-consumed {
  margin: 22px 0 8px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--outline));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, transparent), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.top-consumed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.top-consumed-eyebrow {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-consumed-head h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 4vw, 30px);
}

.top-consumed-period {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.top-consumed-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 240px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.top-consumed-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--outline) 70%, transparent);
  background: color-mix(in srgb, var(--surface) 88%, #000 12%);
  scroll-snap-align: start;
  cursor: pointer;
}

.top-consumed-card img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
}

.top-consumed-card strong {
  display: block;
  font-size: 15px;
}

.top-consumed-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.top-consumed-card b {
  display: block;
  color: var(--primary);
  margin-top: 8px;
}

.top-consumed-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #151515;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.product-card--consumed {
  border-color: color-mix(in srgb, var(--primary) 42%, var(--outline));
}

.consumed-chip {
  color: var(--primary) !important;
}

.menu-list {
  display: grid;
  gap: 22px;
}

.list-category-block {
  display: grid;
  gap: 12px;
}

.list-category-title {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: -0.02em;
}

.list-stack {
  display: grid;
  gap: 0;
}

.list-item {
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--outline) 55%, transparent);
  cursor: pointer;
}

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

.list-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.list-item-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(17px, 2.4vw, 22px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.list-item-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 52ch;
}

.list-badge {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.list-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 120px;
}

.list-leaders {
  flex: 1;
  min-width: 40px;
  border-bottom: 1px dotted color-mix(in srgb, var(--primary) 55%, transparent);
  transform: translateY(-4px);
}

.list-item--consumed .list-item-copy h3 {
  color: color-mix(in srgb, var(--text) 92%, var(--primary));
}

.list-detail-button {
  margin-top: 10px;
}

.layout-list .toolbar {
  margin-top: 8px;
}

.layout-list .category-rail {
  border-bottom-color: color-mix(in srgb, var(--primary) 24%, transparent);
}

@media (min-width: 860px) {
  .layout-list .menu-list {
    max-width: 920px;
  }

  .layout-list .list-stack {
    column-gap: 48px;
  }
}

.landing-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: max(20px, env(safe-area-inset-top)) clamp(18px, 4vw, 40px) 48px;
}

.landing-shell--narrow {
  min-height: 100dvh;
  display: grid;
  place-items: center;
}

.landing-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px, 6vw, 56px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-brand em {
  color: var(--primary);
  font-style: normal;
}

.landing-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.landing-link:hover { color: var(--primary); }

.landing-hero {
  max-width: 760px;
  margin-bottom: clamp(40px, 8vw, 72px);
}

.landing-eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-hero h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.landing-lead {
  margin: 0 0 28px;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.65;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.landing-cta--primary {
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 72%, #fff));
  color: #151515;
}

.landing-cta--ghost {
  border: 1px solid color-mix(in srgb, var(--outline) 80%, transparent);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.landing-cta:hover { transform: translateY(-1px); }

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

.landing-section-head h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 4.8vw, 38px);
  line-height: 1.12;
}

.landing-section-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.landing-features,
.landing-demos,
.landing-steps {
  margin-bottom: clamp(40px, 8vw, 72px);
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.landing-feature-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--outline) 70%, transparent);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    color-mix(in srgb, var(--surface) 88%, #000 12%);
}

.landing-feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.landing-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.landing-demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.landing-demo-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--outline));
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.landing-demo-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.landing-demo-tag {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-demo-card strong {
  font-size: 22px;
  font-family: "Playfair Display", Georgia, serif;
}

.landing-demo-path {
  color: var(--muted);
  font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.landing-demo-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--primary);
  font-size: 20px;
}

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

.landing-step-list li {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--outline) 70%, transparent);
  background: rgba(255, 255, 255, 0.03);
  counter-increment: step;
}

.landing-step-list {
  counter-reset: step;
}

.landing-step-list li strong {
  font-size: 17px;
}

.landing-step-list li strong::before {
  content: counter(step) ". ";
  color: var(--primary);
}

.landing-step-list li span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.landing-footer {
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--outline) 60%, transparent);
  color: var(--muted);
  font-size: 14px;
}

.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.landing-footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.landing-error {
  width: min(100%, 560px);
  padding: clamp(24px, 5vw, 40px);
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--outline) 70%, transparent);
  background: rgba(255, 255, 255, 0.03);
}

.landing-error h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 5vw, 34px);
}

.landing-error p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

/* AZEpos.com mirror landing for Cloudflare Pages root */
body.marketing-landing {
  --lp-bg: #120f0d;
  --lp-bg-soft: #1b1613;
  --lp-surface: rgba(43, 33, 28, 0.72);
  --lp-surface-strong: rgba(54, 40, 32, 0.92);
  --lp-line: rgba(255, 255, 255, 0.08);
  --lp-text: #f7efe9;
  --lp-muted: #cdbdb0;
  --lp-accent: #d8742a;
  --lp-accent-soft: #f2a663;
  --lp-olive: #243424;
  --lp-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  background:
    radial-gradient(circle at top left, rgba(216, 116, 42, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(67, 92, 58, 0.24), transparent 26%),
    linear-gradient(180deg, #223220 0%, #171311 22%, #120f0d 56%, #0e0b09 100%);
  color: var(--lp-text);
  overflow-x: hidden;
}

.marketing-landing .landing-site-v3 {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100dvh;
  padding: 32px 24px 76px;
  color: var(--lp-text);
}

.marketing-landing .landing-ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .4;
  pointer-events: none;
}

.marketing-landing .landing-ambient-left {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 160px;
  background: rgba(216, 116, 42, .18);
}

.marketing-landing .landing-ambient-right {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 40px;
  background: rgba(71, 100, 67, .16);
}

.marketing-landing .landing-topbar,
.marketing-landing .landing-hero,
.marketing-landing .landing-trust,
.marketing-landing .landing-section,
.marketing-landing .landing-quote,
.marketing-landing .landing-cta-band,
.marketing-landing .landing-footer {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.marketing-landing .landing-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.marketing-landing .landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--lp-text);
  text-decoration: none;
  font-weight: 700;
}

.marketing-landing .landing-brand-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 0 16px 30px rgba(0,0,0,.24);
}

.marketing-landing .landing-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketing-landing .landing-brand-copy {
  display: flex;
  flex-direction: column;
}

.marketing-landing .landing-brand-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.marketing-landing .landing-brand-copy small {
  color: var(--lp-muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .7rem;
}

.marketing-landing .landing-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 10px;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  background: rgba(19,15,13,.48);
  backdrop-filter: blur(16px);
}

.marketing-landing .landing-nav a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: .92rem;
}

.marketing-landing .landing-nav a:hover {
  color: var(--lp-text);
}

.marketing-landing .landing-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  min-height: calc(100svh - 142px);
  max-width: min(1180px, 100%);
  margin-bottom: 34px;
}

.marketing-landing .landing-hero-copy {
  position: relative;
  z-index: 2;
}

.marketing-landing .landing-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 20px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--lp-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
}

.marketing-landing .landing-eyebrow-light {
  color: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.22);
}

.marketing-landing .landing-hero h1,
.marketing-landing .landing-section-head h2,
.marketing-landing .landing-quote blockquote,
.marketing-landing .landing-cta-band h2,
.marketing-landing .landing-faq summary,
.marketing-landing .landing-footer strong {
  font-family: "Playfair Display", Georgia, serif;
}

.marketing-landing .landing-hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--lp-text);
  font-size: clamp(3.6rem, 6vw, 6.8rem);
  line-height: .94;
  letter-spacing: -.07em;
}

.marketing-landing .landing-lead {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--lp-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.72;
}

.marketing-landing .landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.marketing-landing .landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.marketing-landing .landing-cta:hover {
  transform: translateY(-2px);
}

.marketing-landing .landing-cta--lg {
  min-height: 58px;
  padding-inline: 26px;
}

.marketing-landing .landing-cta--primary {
  color: #1d130c;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-soft));
  box-shadow: 0 16px 36px rgba(216,116,42,.26);
}

.marketing-landing .landing-cta--ghost {
  color: var(--lp-text);
  border: 1px solid var(--lp-line);
  background: rgba(255,255,255,.04);
}

.marketing-landing .landing-cta--white {
  color: #18110d;
  background: #fff8f1;
}

.marketing-landing .landing-cta--outline-white {
  color: #fff8f1;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}

.marketing-landing .landing-hero-visual {
  position: relative;
  margin: 0;
}

.marketing-landing .landing-hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(19,15,13,.56);
  box-shadow: var(--lp-shadow);
  transform: rotate(1.4deg);
}

.marketing-landing .landing-hero-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 32px;
  pointer-events: none;
}

.marketing-landing .landing-hero-frame img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.marketing-landing .landing-hero-visual figcaption {
  margin-top: 14px;
  color: var(--lp-muted);
  text-align: center;
  font-size: .86rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.marketing-landing .landing-trust {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.marketing-landing .landing-partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.marketing-landing .landing-partners span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border-radius: 24px;
  border: 1px solid var(--lp-line);
  color: rgba(255,248,241,.76);
  background: rgba(255,255,255,.035);
  font-weight: 900;
  text-align: center;
}

.marketing-landing .landing-trust p {
  margin: 0;
  color: var(--lp-muted);
}

.marketing-landing .landing-trust strong {
  color: var(--lp-text);
}

.marketing-landing .landing-ticker {
  overflow: hidden;
  margin: 18px -24px 74px;
  padding: 17px 0;
  border-block: 1px solid var(--lp-line);
  color: rgba(247,239,233,.72);
  background: rgba(0,0,0,.18);
}

.marketing-landing .landing-ticker div {
  display: flex;
  width: max-content;
  gap: 38px;
  animation: landingTicker 34s linear infinite;
}

.marketing-landing .landing-ticker span {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
}

@keyframes landingTicker {
  to { transform: translateX(-50%); }
}

.marketing-landing .landing-section {
  margin-bottom: clamp(70px, 9vw, 112px);
}

.marketing-landing .landing-section-alt {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 46px;
  border: 1px solid var(--lp-line);
  background:
    radial-gradient(circle at 100% 0, rgba(216,116,42,.12), transparent 24rem),
    rgba(255,255,255,.035);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}

.marketing-landing .landing-section-head {
  max-width: 760px;
  margin: 0 0 28px;
}

.marketing-landing .landing-section-head h2 {
  margin: 0;
  color: var(--lp-text);
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.marketing-landing .landing-section-head p {
  margin: 16px 0 0;
  max-width: 66ch;
  color: var(--lp-muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

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

.marketing-landing .landing-bento-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid var(--lp-line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    var(--lp-surface);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}

.marketing-landing .landing-bento-card--wide {
  grid-column: span 2;
}

.marketing-landing .landing-bento-card span {
  width: fit-content;
  margin-bottom: auto;
  color: var(--lp-accent-soft);
  font-weight: 900;
  letter-spacing: .16em;
}

.marketing-landing .landing-bento-card h3 {
  margin: 28px 0 10px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -.04em;
}

.marketing-landing .landing-bento-card p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.55;
}

.marketing-landing .landing-qr-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.marketing-landing .landing-qr-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid var(--lp-line);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}

.marketing-landing .landing-demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.marketing-landing .landing-demo-card {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.09);
  color: var(--lp-text);
  text-decoration: none;
  background:
    radial-gradient(circle at 100% 0, rgba(216,116,42,.18), transparent 10rem),
    rgba(18,15,13,.58);
  transition: transform .18s ease, border-color .18s ease;
}

.marketing-landing .landing-demo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216,116,42,.56);
}

.marketing-landing .landing-demo-tag {
  color: var(--lp-accent-soft);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.marketing-landing .landing-demo-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
}

.marketing-landing .landing-demo-path {
  color: var(--lp-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .86rem;
}

.marketing-landing .landing-demo-arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--lp-accent-soft);
  font-size: 1.5rem;
}

.marketing-landing .landing-apps {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.marketing-landing .landing-phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.6vw, 18px);
  align-items: end;
  perspective: 900px;
}

.marketing-landing .landing-phones img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 26px 62px rgba(0,0,0,.36);
}

.marketing-landing .landing-phones img:nth-child(1) { transform: rotate(-6deg) translateY(24px); }
.marketing-landing .landing-phones img:nth-child(2) { transform: translateY(-10px); }
.marketing-landing .landing-phones img:nth-child(3) { transform: rotate(6deg) translateY(28px); }

.marketing-landing .landing-quote {
  margin-bottom: 0;
  padding: clamp(42px, 7vw, 82px) 0;
  text-align: center;
}

.marketing-landing .landing-quote blockquote {
  margin: 0 auto 18px;
  max-width: 940px;
  color: var(--lp-text);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.marketing-landing .landing-quote p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--lp-muted);
  line-height: 1.7;
}

.marketing-landing .landing-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(70px, 9vw, 110px);
  padding: clamp(30px, 5vw, 52px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.22), transparent 18rem),
    linear-gradient(135deg, var(--lp-accent), #a84218);
  color: #fff8f1;
  box-shadow: 0 30px 80px rgba(216,116,42,.25);
}

.marketing-landing .landing-cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.marketing-landing .landing-cta-band p {
  margin: 0;
  color: rgba(255,248,241,.82);
  line-height: 1.6;
}

.marketing-landing .landing-faq-list {
  display: grid;
  gap: 12px;
}

.marketing-landing .landing-faq details {
  border: 1px solid var(--lp-line);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.marketing-landing .landing-faq summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--lp-text);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.marketing-landing .landing-faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--lp-muted);
  line-height: 1.65;
}

.marketing-landing .landing-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-top: 34px;
  border-top: 1px solid var(--lp-line);
  color: var(--lp-muted);
}

.marketing-landing .landing-footer-brand p {
  max-width: 470px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.marketing-landing .landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.marketing-landing .landing-footer-links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-weight: 700;
}

.marketing-landing .landing-footer-links a:hover {
  color: var(--lp-text);
}

@media (max-width: 980px) {
  .marketing-landing .landing-topbar {
    align-items: flex-start;
  }

  .marketing-landing .landing-nav {
    display: none;
  }

  .marketing-landing .landing-hero,
  .marketing-landing .landing-apps,
  .marketing-landing .landing-cta-band,
  .marketing-landing .landing-footer {
    grid-template-columns: 1fr;
  }

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

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

  .marketing-landing .landing-cta-band .landing-actions,
  .marketing-landing .landing-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .marketing-landing .landing-site-v3 {
    padding: 18px 14px 52px;
  }

  .marketing-landing .landing-topbar {
    margin-bottom: 32px;
  }

  .marketing-landing .landing-brand-copy small,
  .marketing-landing .landing-top-cta {
    display: none;
  }

  .marketing-landing .landing-brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .marketing-landing .landing-hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .marketing-landing .landing-hero-frame {
    border-radius: 30px;
    transform: none;
  }

  .marketing-landing .landing-partners,
  .marketing-landing .landing-qr-showcase,
  .marketing-landing .landing-bento {
    grid-template-columns: 1fr;
  }

  .marketing-landing .landing-bento-card--wide {
    grid-column: auto;
  }

  .marketing-landing .landing-section-alt,
  .marketing-landing .landing-cta-band {
    border-radius: 30px;
    padding: 24px 18px;
  }

  .marketing-landing .landing-section-head h2,
  .marketing-landing .landing-quote blockquote {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .marketing-landing .landing-phones {
    grid-template-columns: repeat(3, 45%);
    overflow-x: auto;
    padding: 16px 8px 30px;
    margin-inline: -8px;
  }

  .marketing-landing .landing-phones img {
    min-width: 170px;
  }

  .marketing-landing .landing-phones img:nth-child(n) {
    transform: none;
  }
}

/* Designer pass: meaningful product art, premium sales strip and calmer detail sheet */
.product-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
  color: color-mix(in srgb, var(--primary) 84%, #fff 10%);
  background:
    radial-gradient(circle at 58% 34%, rgba(255,255,255,.32), transparent 0 28%, transparent 29%),
    radial-gradient(circle at 30% 18%, color-mix(in srgb, var(--primary) 34%, transparent), transparent 42%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 68%, #fff 18%), color-mix(in srgb, var(--background) 80%, #000));
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  opacity: .72;
}

.product-visual svg {
  position: relative;
  z-index: 2;
  width: 74%;
  height: 74%;
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.22));
}

.product-visual-glow {
  position: absolute;
  right: -18%;
  bottom: -20%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  filter: blur(2px);
}

.product-visual--coffee,
.product-visual--tea {
  color: #b7773c;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.72), transparent 0 18%, transparent 19%),
    radial-gradient(circle at 30% 30%, rgba(203,146,82,.35), transparent 48%),
    linear-gradient(145deg, #fff4de, #e7c99d);
}

.product-visual--cold-drink {
  color: #58aee4;
  background: linear-gradient(145deg, #eef9ff, #bfe7ff 54%, #8fd1f3);
}

.product-visual--pasta,
.product-visual--pizza,
.product-visual--fries {
  color: #df8b16;
  background: linear-gradient(145deg, #fff2ca, #ffd384 54%, #e79b24);
}

.product-visual--burger,
.product-visual--grill,
.product-visual--wrap {
  color: #e77732;
  background: linear-gradient(145deg, #241610, #5a2d16 58%, #c56e2f);
}

.product-visual--sushi,
.product-visual--salad {
  color: #56b979;
  background: linear-gradient(145deg, #f7fff4, #cfe9c8 54%, #88ca83);
}

.product-visual--dessert {
  color: #d887a6;
  background: linear-gradient(145deg, #fff6fb, #f5ccd9 54%, #df93ac);
}

.product-image .product-visual {
  border-radius: 0;
  min-height: 100%;
}

.product-card-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-consumed {
  margin: 18px 0 18px;
  padding: clamp(16px, 4vw, 22px);
  border-radius: 26px;
  border-color: color-mix(in srgb, var(--primary) 24%, rgba(255,255,255,.16));
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 24rem),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    color-mix(in srgb, var(--background) 84%, #101010 16%);
  box-shadow: 0 20px 52px rgba(0,0,0,.28);
}

.top-consumed-head {
  align-items: center;
  margin-bottom: 16px;
}

.top-consumed-eyebrow {
  letter-spacing: .16em;
}

.top-consumed-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.035em;
}

.top-consumed-rail {
  grid-auto-columns: minmax(170px, 220px);
  gap: 13px;
  scrollbar-width: thin;
}

.top-consumed-card {
  min-height: 196px;
  grid-template-rows: 92px minmax(0, 1fr);
  gap: 11px;
  padding: 10px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    color-mix(in srgb, var(--surface) 78%, #080808 22%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.top-consumed-media {
  height: 92px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}

.top-consumed-media img,
.top-consumed-media .product-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-consumed-media .product-visual svg {
  width: 58%;
  height: 58%;
  stroke-width: 8;
}

.top-consumed-card strong {
  min-height: 2.3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.14;
}

.top-consumed-rank {
  top: 14px;
  left: 14px;
  z-index: 2;
  color: color-mix(in srgb, var(--background) 88%, #000);
  box-shadow: 0 10px 20px rgba(0,0,0,.24);
}

.drawer {
  width: min(100%, 720px);
  max-height: 91dvh;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 18rem),
    color-mix(in srgb, var(--surface-2) 92%, #090909 8%);
}

.drawer-hero {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 46px 22px 26px;
  background:
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 0 40%, transparent 41%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.drawer-hero::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 40%, transparent), transparent);
}

.drawer-visual-frame {
  width: min(310px, 70vw);
  aspect-ratio: 1.18;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, rgba(255,255,255,.18));
  box-shadow: 0 24px 58px rgba(0,0,0,.28);
}

.drawer-product-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-visual-frame > img.drawer-product-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: none;
}

.drawer-brand-mini {
  position: absolute;
  left: 18px;
  top: 18px;
  max-width: calc(100% - 92px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.drawer-close {
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
}

.drawer-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  color: color-mix(in srgb, var(--primary) 86%, #fff 8%);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.drawer h2 {
  max-width: 11ch;
  color: color-mix(in srgb, var(--primary) 78%, #fff 12%);
  text-wrap: balance;
}

.product-title-row .price {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 6vw, 40px);
}

.required-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.required-info-card {
  min-height: 108px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    color-mix(in srgb, var(--surface) 80%, #050505 20%);
}

.required-info-card span {
  font-size: 10px;
}

.required-info-card strong {
  font-size: 13px;
}

.legal-info-panel {
  border-radius: 20px;
}

.variation-group {
  border-radius: 20px;
}

@media (max-width: 560px) {
  .top-consumed {
    margin-inline: 0;
    border-radius: 22px;
  }

  .top-consumed-rail {
    grid-auto-columns: minmax(156px, 176px);
  }

  .top-consumed-card {
    min-height: 186px;
  }

  .drawer {
    border-radius: 24px 24px 0 0;
  }

  .drawer-content {
    padding: 20px 18px max(24px, env(safe-area-inset-bottom));
  }

  .required-info-grid {
    grid-template-columns: 1fr;
  }

  .drawer h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
}

/* QR menu customer-facing polish: compact sales cards and calmer product drawer. */
.top-consumed-rail {
  scrollbar-width: none;
}

.top-consumed-rail::-webkit-scrollbar {
  display: none;
}

.template-coffee-chain .top-consumed {
  margin: 10px 0 16px;
  border-color: rgba(173, 112, 51, .2);
  background:
    radial-gradient(circle at 84% 2%, rgba(185, 121, 58, .18), transparent 10rem),
    linear-gradient(180deg, rgba(255, 249, 238, .96), rgba(247, 233, 208, .93));
  box-shadow: 0 18px 44px rgba(83, 54, 24, .18);
}

.template-coffee-chain .top-consumed-eyebrow,
.template-coffee-chain .top-consumed-period {
  color: #9f632b;
}

.template-coffee-chain .top-consumed-head h2 {
  color: #2a1f14;
}

.template-coffee-chain .top-consumed-card {
  min-height: 166px;
  border-color: rgba(83, 54, 24, .12);
  background:
    radial-gradient(circle at 84% 8%, rgba(185, 121, 58, .12), transparent 62%),
    rgba(255, 253, 247, .76);
  color: #2a1f14;
}

.template-coffee-chain .top-consumed-card strong,
.template-coffee-chain .top-consumed-card b {
  color: #2a1f14;
}

.template-coffee-chain .top-consumed-card span {
  color: rgba(42, 31, 20, .62);
}

.template-coffee-chain .top-consumed-media {
  height: 76px;
  background: linear-gradient(145deg, #fff7e8, #f3d7a9);
}

.template-coffee-chain .top-consumed-media .product-visual {
  color: #a96c31;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.74), transparent 34%),
    linear-gradient(145deg, #fff7e8, #f3d7a9);
}

.template-coffee-chain .top-consumed-rank {
  color: #fff8ec;
  background: #b9793a;
}

.drawer {
  overflow: hidden;
}

.drawer-hero {
  min-height: 210px;
  padding: 42px 22px 22px;
}

.drawer-visual-frame {
  width: min(260px, 68vw);
  border-radius: 26px;
}

.drawer-visual-frame .product-visual {
  color: color-mix(in srgb, var(--primary) 72%, #fff 10%);
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--primary) 18%, #171717), color-mix(in srgb, var(--surface) 82%, #050505));
}

.drawer h2 {
  max-width: 16ch;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 900;
  letter-spacing: -.045em;
}

.product-title-row .price {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 950;
}

.required-info-card {
  min-height: 86px;
}

.legal-info-panel,
.variation-group {
  background:
    linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    color-mix(in srgb, var(--surface) 86%, #070707 14%);
}

@media (max-width: 560px) {
  .template-coffee-chain .top-consumed {
    padding: 14px;
  }

  .template-coffee-chain .top-consumed-head {
    margin-bottom: 12px;
  }

  .template-coffee-chain .top-consumed-rail {
    grid-auto-columns: minmax(132px, 148px);
    gap: 10px;
  }

  .template-coffee-chain .top-consumed-card {
    grid-template-rows: 70px minmax(0, 1fr);
    min-height: 156px;
    padding: 9px;
    border-radius: 18px;
  }

  .template-coffee-chain .top-consumed-media {
    height: 70px;
    border-radius: 14px;
  }

  .template-coffee-chain .top-consumed-card strong {
    min-height: 0;
    font-size: 13px;
  }

  .template-coffee-chain .top-consumed-card span {
    font-size: 11px;
  }

  .template-coffee-chain .top-consumed-card b {
    font-size: 13px;
  }

  .drawer-hero {
    min-height: 174px;
    padding: 38px 16px 18px;
  }

  .drawer-visual-frame {
    width: min(210px, 62vw);
    border-radius: 22px;
  }

  .drawer-brand-mini {
    left: 14px;
    top: 14px;
    max-width: calc(100% - 76px);
    padding: 7px 10px;
    font-size: 10px;
  }

  .drawer-content {
    padding: 18px 18px max(24px, env(safe-area-inset-bottom));
  }

  .drawer h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .required-info-card {
    min-height: 74px;
  }
}

/* Product detail sheet UX lock:
   - page behind the sheet never scrolls
   - the sheet fits the viewport
   - long content scrolls inside the sheet only */
html.qr-modal-open,
body.qr-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.drawer-backdrop.open {
  overflow: hidden;
  overscroll-behavior: contain;
}

.drawer {
  display: flex;
  flex-direction: column;
  max-height: min(92dvh, calc(100dvh - max(10px, env(safe-area-inset-top))));
  overflow: hidden !important;
  overscroll-behavior: contain;
}

.drawer-hero {
  flex: 0 0 auto;
}

.drawer-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 560px) {
  .drawer {
    max-height: calc(100dvh - max(8px, env(safe-area-inset-top)));
  }
}

/* AZEpos QR Menu product landing — minimalist reference style */
body.marketing-landing.qr-marketing-page {
  --qr-page: #f9f9f9;
  --qr-card: #ffffff;
  --qr-soft: #f5f5f7;
  --qr-soft-2: #eeeeee;
  --qr-ink: #070707;
  --qr-muted: #6e6e73;
  --qr-line: #e5e5e5;
  --qr-gold: #eab308;
  --qr-gold-2: #f4c430;
  --qr-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background: var(--qr-page);
  color: var(--qr-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.qr-landing-v4 {
  width: 100%;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 50% 8%, rgba(234, 179, 8, 0.07), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f9f9f9 52%, #f4f4f4 100%);
  color: var(--qr-ink);
  overflow-x: hidden;
}

.qr-landing-v4 * {
  box-sizing: border-box;
}

.qr-landing-nav,
.qr-hero,
.qr-micro-strip,
.qr-section,
.qr-showcase-panel,
.qr-template-section,
.qr-process,
.qr-contact-card,
.qr-faq,
.qr-footer {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}

.qr-landing-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--qr-line);
  background: rgba(249, 249, 249, 0.82);
  backdrop-filter: blur(18px);
}

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

.qr-landing-brand span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--qr-ink);
  color: white;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.qr-landing-brand strong {
  font-size: 18px;
}

.qr-landing-nav nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.qr-landing-nav nav a {
  position: relative;
  color: var(--qr-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .18s ease;
}

.qr-landing-nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--qr-gold);
  transition: transform .18s ease;
}

.qr-landing-nav nav a:hover {
  color: var(--qr-ink);
}

.qr-landing-nav nav a:hover::after {
  transform: scaleX(1);
}

.qr-landing-nav > .qr-button {
  justify-self: end;
}

.qr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--qr-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.qr-button--large {
  min-height: 56px;
  padding-inline: 30px;
}

.qr-button--dark {
  color: #fff;
  background: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.qr-button--ghost {
  background: #fff;
  border-color: var(--qr-line);
}

.qr-button--light {
  color: #000;
  background: #fff;
}

.qr-button--outline {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: transparent;
}

.qr-hero {
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: center;
  gap: clamp(42px, 8vw, 96px);
  padding: clamp(72px, 10vw, 132px) 0 clamp(64px, 8vw, 96px);
}

.qr-kicker {
  margin: 0 0 16px;
  color: var(--qr-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qr-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--qr-ink);
  font-size: clamp(48px, 8vw, 92px);
  line-height: .96;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.qr-hero-copy > p:not(.qr-kicker) {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--qr-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

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

.qr-phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 16%, rgba(0,0,0,.06), transparent 10rem),
    radial-gradient(circle at 84% 80%, rgba(234,179,8,.16), transparent 12rem),
    #f0f0f0;
  box-shadow: inset 0 0 0 1px var(--qr-line), var(--qr-shadow);
}

.qr-phone-stage::before,
.qr-phone-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
}

.qr-phone-stage::before {
  width: 210px;
  height: 210px;
  right: 8%;
  top: 12%;
}

.qr-phone-stage::after {
  width: 300px;
  height: 1px;
  left: 12%;
  bottom: 18%;
  transform: rotate(-18deg);
}

.qr-phone {
  position: relative;
  z-index: 2;
  width: min(320px, 72vw);
  padding: 16px;
  border: 10px solid #141414;
  border-radius: 38px;
  background: #fbfaf7;
  box-shadow: 0 32px 80px rgba(0,0,0,.18);
  transform: rotate(-4deg);
}

.qr-phone-top,
.qr-phone-tabs,
.qr-phone-list article {
  display: flex;
  align-items: center;
}

.qr-phone-top {
  justify-content: space-between;
  margin-bottom: 18px;
}

.qr-phone-top span,
.qr-phone-top i {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #111;
}

.qr-phone-top i {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(#111, #111) center / 16px 2px no-repeat,
    linear-gradient(#111, #111) center 11px / 16px 2px no-repeat,
    linear-gradient(#111, #111) center 22px / 16px 2px no-repeat,
    #fff;
  border: 1px solid var(--qr-line);
}

.qr-phone-top b {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.qr-phone-hero {
  min-height: 190px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.25)),
    radial-gradient(circle at 82% 28%, rgba(234,179,8,.22), transparent 7rem),
    #f2eee6;
  border: 1px solid #dedbd4;
}

.qr-phone-hero small {
  display: block;
  color: var(--qr-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qr-phone-hero strong {
  display: block;
  margin-top: 28px;
  font-size: 46px;
  line-height: .88;
  letter-spacing: -0.08em;
}

.qr-phone-tabs {
  gap: 8px;
  margin: 14px 0;
  overflow: hidden;
}

.qr-phone-tabs span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--qr-line);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.qr-phone-tabs .active {
  color: #fff;
  background: #111;
}

.qr-phone-list {
  display: grid;
  gap: 9px;
}

.qr-phone-list article {
  gap: 10px;
  min-height: 70px;
  padding: 10px;
  border: 1px solid var(--qr-line);
  border-radius: 18px;
  background: #fff;
}

.qr-phone-list div {
  min-width: 0;
  flex: 1;
}

.qr-phone-list b,
.qr-phone-list small {
  display: block;
}

.qr-phone-list b {
  font-size: 13px;
}

.qr-phone-list small {
  margin-top: 4px;
  color: var(--qr-muted);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qr-phone-list strong {
  font-size: 12px;
  white-space: nowrap;
}

.qr-food-dot {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.7), transparent 42%),
    linear-gradient(135deg, #d7d7d7, #f7f7f7);
  border: 1px solid #ddd;
}

.qr-food-dot--gold {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.72), transparent 42%),
    linear-gradient(135deg, #dfb13b, #fff1bf);
}

.qr-food-dot--dark {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), transparent 42%),
    linear-gradient(135deg, #070707, #3a3a3a);
}

.qr-micro-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: clamp(72px, 10vw, 128px);
}

.qr-micro-strip span {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 14px 10px;
  border: 1px solid var(--qr-line);
  border-radius: 18px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--qr-shadow);
}

.qr-section,
.qr-template-section,
.qr-process,
.qr-faq {
  margin-bottom: clamp(72px, 9vw, 128px);
}

.qr-section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.qr-section-head h2,
.qr-showcase-copy h2,
.qr-contact-card h2 {
  margin: 0;
  color: var(--qr-ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.qr-section-head p:not(.qr-kicker),
.qr-showcase-copy p,
.qr-contact-card p {
  margin: 18px 0 0;
  color: var(--qr-muted);
  font-size: 16px;
  line-height: 1.7;
}

.qr-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 16px;
}

.qr-feature-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 22px;
  background: var(--qr-soft);
  box-shadow: var(--qr-shadow);
}

.qr-feature-card:nth-child(2),
.qr-feature-card:nth-child(3) {
  min-height: 340px;
}

.qr-feature-card--dark {
  color: white;
  background: #000;
}

.qr-feature-card--gold {
  background: var(--qr-gold);
}

.qr-feature-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 40px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 22px;
}

.qr-feature-card--light span {
  background: #000;
  color: #fff;
}

.qr-feature-card h3 {
  margin: auto 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.04em;
}

.qr-feature-card p {
  max-width: 560px;
  margin: 0;
  color: inherit;
  opacity: .68;
  line-height: 1.62;
}

.qr-showcase-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: clamp(72px, 9vw, 128px);
}

.qr-showcase-copy {
  padding: clamp(26px, 4vw, 48px);
  border-radius: 24px;
  background: #000;
  color: #fff;
}

.qr-showcase-copy .qr-kicker,
.qr-showcase-copy p {
  color: rgba(255,255,255,.64);
}

.qr-showcase-copy h2 {
  color: #fff;
}

.qr-showcase-copy .qr-button {
  margin-top: 28px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

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

.qr-demo-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--qr-line);
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: var(--qr-shadow);
}

.qr-demo-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -42px;
  bottom: -42px;
  border-radius: 999px;
  background: rgba(234,179,8,.12);
}

.qr-demo-card span,
.qr-demo-card strong,
.qr-demo-card small,
.qr-demo-card i {
  position: relative;
  z-index: 1;
  display: block;
}

.qr-demo-card span {
  max-width: 250px;
  min-height: 38px;
  color: var(--qr-muted);
  font-size: 12px;
  line-height: 1.35;
}

.qr-demo-card strong {
  margin-top: 26px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: .9;
  letter-spacing: -0.06em;
}

.qr-demo-card small {
  margin-top: 10px;
  color: var(--qr-muted);
  font-weight: 700;
}

.qr-demo-card i {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-style: normal;
  font-size: 28px;
}

.qr-demo-card--pango,
.qr-demo-card--raff-pango {
  color: #fff;
  border-color: #3b0807;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,199,64,.2), transparent 9rem),
    linear-gradient(135deg, #ca170d, #6e0806);
}

.qr-demo-card--pango span,
.qr-demo-card--pango small,
.qr-demo-card--raff-pango span,
.qr-demo-card--raff-pango small {
  color: rgba(255,255,255,.74);
}

.qr-demo-card--pure-black {
  color: #fff;
  border-color: #2c2c2c;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 28%),
    #030303;
}

.qr-demo-card--pure-black span,
.qr-demo-card--pure-black small {
  color: rgba(255,255,255,.68);
}

.qr-demo-card--yahyakaptan-pilavcisi {
  background:
    radial-gradient(circle at 82% 24%, rgba(250,206,90,.22), transparent 9rem),
    #fffaf0;
}

.qr-template-board {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--qr-line);
  background: #111;
  box-shadow: 0 26px 70px rgba(0,0,0,.12);
}

.qr-template-board img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.qr-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.qr-process li {
  min-height: 260px;
  padding: 28px;
  border-radius: 22px;
  background: var(--qr-soft);
}

.qr-process li span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--qr-muted);
  font-weight: 900;
  letter-spacing: .12em;
}

.qr-process li strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.qr-process li p {
  margin: 12px 0 0;
  color: var(--qr-muted);
  line-height: 1.62;
}

.qr-contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(72px, 9vw, 128px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(234,179,8,.22), transparent 18rem),
    #000;
}

.qr-contact-card .qr-kicker,
.qr-contact-card p {
  color: rgba(255,255,255,.68);
}

.qr-contact-card h2 {
  max-width: 720px;
  color: #fff;
}

.qr-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.qr-faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-inline: auto;
}

.qr-faq-list details {
  border-radius: 18px;
  background: var(--qr-soft);
}

.qr-faq-list summary {
  cursor: pointer;
  padding: 24px 28px;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.qr-faq-list p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--qr-muted);
  line-height: 1.65;
}

.qr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 96px;
  border-top: 1px solid var(--qr-line);
  color: var(--qr-muted);
}

.qr-footer strong {
  color: #111;
  font-size: 18px;
}

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

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

.qr-footer a:hover {
  color: #111;
}

@media (max-width: 980px) {
  .qr-landing-nav,
  .qr-hero,
  .qr-micro-strip,
  .qr-section,
  .qr-showcase-panel,
  .qr-template-section,
  .qr-process,
  .qr-contact-card,
  .qr-faq,
  .qr-footer {
    width: min(100% - 40px, 760px);
  }

  .qr-landing-nav {
    grid-template-columns: 1fr auto;
  }

  .qr-landing-nav nav {
    display: none;
  }

  .qr-hero,
  .qr-showcase-panel,
  .qr-contact-card {
    grid-template-columns: 1fr;
  }

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

  .qr-phone-stage {
    min-height: 480px;
  }

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

  .qr-feature-grid,
  .qr-process ol {
    grid-template-columns: 1fr;
  }

  .qr-feature-card,
  .qr-feature-card:nth-child(2),
  .qr-feature-card:nth-child(3),
  .qr-process li {
    min-height: 220px;
  }

  .qr-contact-actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .qr-landing-nav,
  .qr-hero,
  .qr-micro-strip,
  .qr-section,
  .qr-showcase-panel,
  .qr-template-section,
  .qr-process,
  .qr-contact-card,
  .qr-faq,
  .qr-footer {
    width: min(100% - 28px, 440px);
  }

  .qr-landing-nav {
    min-height: 58px;
  }

  .qr-landing-brand strong {
    font-size: 16px;
  }

  .qr-landing-nav > .qr-button {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .qr-hero {
    gap: 34px;
    padding-top: 56px;
  }

  .qr-hero h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .qr-hero-copy > p:not(.qr-kicker) {
    font-size: 16px;
  }

  .qr-hero-actions,
  .qr-contact-actions {
    flex-direction: column;
  }

  .qr-button--large {
    width: 100%;
  }

  .qr-phone-stage {
    min-height: 430px;
    border-radius: 26px;
  }

  .qr-phone {
    width: min(298px, 86vw);
    transform: rotate(-2deg);
  }

  .qr-micro-strip {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .qr-demo-grid {
    grid-template-columns: 1fr;
  }

  .qr-demo-card {
    min-height: 180px;
  }

  .qr-template-board {
    margin-inline: -6px;
    padding: 10px;
    border-radius: 20px;
  }

  .qr-process li span {
    margin-bottom: 34px;
  }

  .qr-contact-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .qr-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 0;
  }

  .qr-footer nav {
    justify-content: flex-start;
  }
}
