:root {
  --ink: #241711;
  --ink-soft: #49372e;
  --paper: #f6f0e6;
  --paper-deep: #eee4d5;
  --surface: #fffcf7;
  --orange: #e8662a;
  --orange-dark: #c94b18;
  --apricot: #ffc896;
  --product-loop: #b74713;
  --product-core: #236d78;
  --product-one: #744f7d;
  --product-loop-on-dark: #ff9b68;
  --product-core-on-dark: #8acbd0;
  --product-one-on-dark: #d5b1de;
  --plum: #60374a;
  --pistachio: #a9b96e;
  --bluegray: #a9c4c2;
  --gold: #e7b348;
  --line: #dccdbe;
  --line-dark: rgba(255, 252, 247, .14);
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(64, 35, 22, .13);
  --shadow-small: 0 12px 35px rgba(64, 35, 22, .1);
  --display: "Fraunces", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --container: 1280px;
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 40px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--white); background: var(--orange); }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(36, 23, 17, .08);
  background: rgba(246, 240, 230, .88);
  box-shadow: 0 8px 28px rgba(36, 23, 17, .06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .25s ease;
}

.is-scrolled .nav-wrap { height: 70px; }

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand-copy {
  display: grid;
  padding-left: 13px;
  border-left: 3px solid var(--orange);
  line-height: 1.1;
}

.brand-copy strong { font-size: 16px; letter-spacing: .015em; }
.brand-copy small { margin-top: 4px; color: #806f65; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a:not(.button) {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--orange);
  transition: right .2s ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after { right: 0; }

.nav-toggle { display: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.985); }
.button:focus-visible, .nav-toggle:focus-visible { outline: 3px solid rgba(232, 102, 42, .35); outline-offset: 3px; }

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(232, 102, 42, .24);
}
.button-primary:hover { background: var(--orange-dark); }

.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #3a271f; box-shadow: 0 10px 24px rgba(36, 23, 17, .18); }
.nav-cta { min-height: 44px; padding-inline: 20px; font-size: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  padding: 140px 0 86px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 50%, rgba(255, 200, 150, .33), transparent 34%),
    linear-gradient(rgba(220, 205, 190, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 205, 190, .22) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 780px;
  height: 780px;
  right: -120px;
  top: 80px;
  border-radius: 50%;
  background: #f1dfc9;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 270px;
  height: 270px;
  left: -140px;
  bottom: -90px;
  border: 1px dashed rgba(232, 102, 42, .4);
  border-radius: 50%;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(36, 23, 17, .08);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 480px; height: 480px; right: 80px; top: 168px; }
.orbit-two { width: 610px; height: 610px; right: 12px; top: 98px; border-style: dashed; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(580px, 1.12fr);
  align-items: center;
  gap: 28px;
}

.hero-copy { position: relative; z-index: 3; padding-top: 12px; }

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #745e51;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span { width: 8px; height: 8px; border: 2px solid var(--orange); border-radius: 50%; }
.eyebrow.light { color: rgba(255, 252, 247, .62); }
.eyebrow.dark { color: rgba(36, 23, 17, .62); }

h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 { max-width: 720px; font-size: clamp(54px, 5.45vw, 80px); }
h1 em, h2 em { color: var(--orange); font-style: italic; font-weight: 600; }

.product-name { font-weight: 800; }
.product-name.product-loop { color: var(--product-loop); }
.product-name.product-core { color: var(--product-core); }
.product-name.product-one { color: var(--product-one); }

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: #655247;
  font-size: 19px;
  line-height: 1.6;
}

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

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 40px 0 0;
}
.hero-chips li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #6f5c51;
  background: rgba(255, 252, 247, .5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.product-stage {
  position: relative;
  min-height: 650px;
  transform: translateX(22px);
}

.cc-hero-stage {
  display: grid;
  align-content: center;
  min-height: 650px;
  padding: 82px 0 62px;
  isolation: isolate;
}

.cc-hero-stage .stage-halo {
  z-index: -1;
  width: 590px;
  height: 590px;
  top: 50%;
  right: auto;
  left: 50%;
  background: radial-gradient(circle, rgba(96,55,74,.24), rgba(255,252,247,.55) 58%, transparent 72%);
  transform: translate(-50%,-50%);
}

.cc-proof-badge {
  position: absolute;
  z-index: 8;
  top: 24px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(36,23,17,.11);
  border-radius: 15px;
  background: rgba(255,252,247,.92);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}
.cc-proof-badge > span:last-child { display:grid; line-height:1.25; }
.cc-proof-badge strong { font-size:10px; }
.cc-proof-badge small { color:#806f65; font-size:8px; }
.cc-proof-dot { width:12px; height:12px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 5px rgba(232,102,42,.13); }

.cc-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  width: 100%;
  perspective: 1200px;
}

.cc-hero-shot {
  position: relative;
  aspect-ratio: 1150 / 761;
  margin: 0;
  overflow: hidden;
  border: 4px solid #101827;
  border-radius: 18px;
  background: #070b12;
  box-shadow: 0 20px 48px rgba(30,25,22,.22);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cc-hero-shot::after { content:""; position:absolute; inset:50% 0 0; background:linear-gradient(transparent,rgba(2,5,10,.72)); pointer-events:none; }
.cc-hero-shot img { width:100%; height:100%; object-fit:cover; }
.cc-hero-shot figcaption { position:absolute; z-index:2; left:11px; bottom:9px; display:flex; align-items:baseline; gap:7px; color:var(--white); line-height:1; }
.cc-hero-shot figcaption span { color:rgba(255,253,249,.64); font-size:7px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; }
.cc-hero-shot figcaption strong { font-size:10px; }
.cc-shot-featured { grid-column:1 / -1; }
.cc-shot-featured figcaption { left:17px; bottom:14px; }
.cc-shot-featured figcaption span { font-size:8px; }
.cc-shot-featured figcaption strong { font-size:13px; }
.cc-shot-ordering { transform:translateY(-7px) rotate(-1deg); }
.cc-shot-product { transform:translateY(10px) rotate(1deg); }
.cc-shot-tiers { transform:translateY(-3px) rotate(.7deg); }
.cc-hero-shot:hover { z-index:5; transform:translateY(-5px) scale(1.025); box-shadow:0 28px 62px rgba(30,25,22,.3); }

.cc-hero-note { position:absolute; z-index:8; left:50%; bottom:12px; display:flex; align-items:center; gap:8px; padding:7px 11px; border-radius:999px; color:#6f5c51; background:rgba(255,252,247,.82); font-size:8px; font-weight:700; transform:translateX(-50%); white-space:nowrap; }
.cc-hero-note span { width:7px; height:7px; border-radius:50%; background:#37c984; box-shadow:0 0 0 4px rgba(55,201,132,.12); }

.stage-halo {
  position: absolute;
  width: 430px;
  height: 430px;
  top: 80px;
  right: 85px;
  border-radius: 50%;
  background: rgba(255, 252, 247, .56);
  filter: blur(1px);
}

.marquee {
  height: 58px;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.09);
  color: var(--paper);
  background: var(--ink);
}
.marquee-track { width: max-content; height: 100%; display: flex; align-items: center; gap: 25px; animation: marquee 34s linear infinite; }
.marquee span { font-family: var(--display); font-size: 16px; font-style: italic; }
.marquee .product-name.product-loop { color: var(--product-loop-on-dark); }
.marquee .product-name.product-core { color: var(--product-core-on-dark); }
.marquee .product-name.product-one { color: var(--product-one-on-dark); }
.marquee i { color: var(--orange); font-size: 6px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.trust-strip { padding:34px 0 38px; border-bottom:1px solid var(--line); background:var(--surface); }
.trust-wrap { display:grid; grid-template-columns:330px 1fr; align-items:center; gap:42px; }
.trust-intro h2 { margin:8px 0 6px; font-family:var(--display); font-size:29px; line-height:1.08; letter-spacing:-.025em; }
.trust-intro > p:last-child { max-width:310px; margin:0; color:#88766a; font-size:10px; line-height:1.5; }
.trust-label { display:flex; align-items:center; gap:9px; margin:0; color:#806d61; font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.trust-label span { width:18px; height:1px; background:var(--orange); }
.trust-logos { list-style:none; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; margin:0; padding:0; }
.trust-logo { min-height:126px; overflow:hidden; border:1px solid var(--line); border-radius:17px; text-align:center; background:#fbf7f1; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.trust-logo:hover { z-index:2; border-color:rgba(232,102,42,.35); transform:translateY(-3px); box-shadow:0 16px 32px rgba(36,23,17,.12); }
.trust-logo > a { width:100%; min-height:126px; display:grid; place-content:center; justify-items:center; gap:13px; padding:18px 14px 14px; }
.trust-logo > a > img { display:block; width:auto; max-width:100%; height:auto; max-height:46px; object-fit:contain; }
.trust-logo-dark { color:#fff; border-color:#111827; background:#111827; }
.trust-logo-dark:hover { border-color:rgba(255,200,150,.45); }
.trust-status { color:#9a877a; font-size:7px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.trust-logo-dark .trust-status { color:var(--apricot); }
.brand-lockup { display:flex; align-items:center; justify-content:center; gap:10px; }
.brand-lockup > img { width:43px; height:43px; flex:0 0 auto; border-radius:10px; object-fit:contain; }
.brand-lockup > span { display:grid; justify-items:start; line-height:1; }
.brand-lockup strong { font-size:17px; letter-spacing:.035em; }
.brand-lockup small { margin-bottom:3px; color:#79675d; font-size:7px; font-weight:700; letter-spacing:.12em; }
.brand-dstrct .brand-lockup strong { font-family:Impact,"Arial Narrow",sans-serif; font-size:21px; font-weight:400; letter-spacing:.045em; }
.brand-dstrct .brand-lockup small { margin:3px 0 0; font-size:6px; }
.brand-lasertron > a > img { max-width:190px; max-height:38px; }
.brand-nowayout > a > img { max-width:180px; max-height:42px; }
.brand-cookieclub > a > img { max-width:150px; max-height:55px; }

.foodculture-profile { display:grid; grid-template-columns:minmax(270px,.72fr) minmax(0,1.28fr); gap:34px; margin-top:34px; padding:38px; border-radius:24px; color:#fff; background:var(--ink); box-shadow:var(--shadow-small); }
.foodculture-profile-copy .trust-label { color:var(--apricot); }
.foodculture-profile-copy h3 { margin:24px 0 15px; font-family:var(--display); font-size:clamp(34px,3.2vw,46px); line-height:1.02; }
.foodculture-profile-copy h3 em { color:var(--apricot); }
.foodculture-profile-copy > p:not(.trust-label) { max-width:540px; margin:0; color:rgba(255,255,255,.61); font-size:13px; line-height:1.7; }
.foodculture-profile-copy > .foodculture-breadth { margin-top:13px; color:rgba(255,255,255,.43); font-size:10px; }
.foodculture-profile-copy .text-link { margin-top:25px; color:#fff; }
.foodculture-solutions { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.foodculture-solutions article { min-height:230px; display:flex; flex-direction:column; padding:22px; border:1px solid rgba(255,255,255,.12); border-radius:17px; background:rgba(255,255,255,.055); }
.foodculture-solutions article > span { color:var(--orange); font-size:8px; font-weight:700; letter-spacing:.12em; }
.foodculture-solutions article:nth-child(2) > span { color:var(--apricot); }
.foodculture-solutions article:nth-child(3) > span { color:#c9da89; }
.foodculture-solutions h4 { margin:auto 0 10px; font-family:var(--display); font-size:21px; line-height:1.08; }
.foodculture-solutions p { margin:0; color:rgba(255,255,255,.5); font-size:10px; line-height:1.55; }
.foodculture-audiences { grid-column:1/-1; display:flex; flex-wrap:wrap; gap:8px; padding-top:18px; border-top:1px solid rgba(255,255,255,.1); }
.foodculture-audiences span { padding:7px 10px; border:1px solid rgba(255,255,255,.14); border-radius:999px; color:rgba(255,255,255,.68); font-size:8px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }

.section { padding: 120px 0; }
.section-heading { margin-bottom: 58px; }
.split-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 70px; }
.section-heading h2 { font-size: clamp(48px, 5vw, 70px); }
.section-heading > p, .split-heading > p { max-width: 520px; margin: 0; color: #715e52; font-size: 18px; }
.split-heading > div > .eyebrow { margin-bottom: 22px; }
.product-worlds-section { background:#efe4d8; }
.payments-section { position:relative; overflow:hidden; color:#fff; background:#0b1424; }
.payments-section::before { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size:32px 32px; }
.payments-section::after { content:""; position:absolute; top:-260px; left:58%; width:620px; height:620px; border-radius:50%; background:radial-gradient(circle,rgba(232,102,42,.22),rgba(232,102,42,0) 67%); pointer-events:none; }
.payments-section .container { position:relative; z-index:1; }
.payments-section h2 { color:#fff; }
.payments-section .split-heading > p { color:rgba(255,255,255,.62); }
.payments-layout { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); align-items:stretch; gap:22px; }
.checkout-card,.pos-connection-card { min-height:690px; border-radius:var(--radius); overflow:hidden; box-shadow:0 30px 75px rgba(0,0,0,.28); }

.checkout-card { display:flex; flex-direction:column; padding:34px; color:var(--ink); background:#fffdf9; }
.checkout-header { display:flex; align-items:center; justify-content:space-between; gap:18px; padding-bottom:22px; border-bottom:1px solid #e4d8cc; }
.checkout-header > div { display:grid; gap:3px; }
.checkout-header > div span { color:var(--orange); font-size:8px; font-weight:700; letter-spacing:.13em; }
.checkout-header > div strong { font-family:var(--display); font-size:24px; }
.checkout-status { display:inline-flex; align-items:center; gap:7px; padding:7px 10px; border-radius:999px; color:#45632b; background:#edf2db; font-size:8px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.checkout-status i { width:7px; height:7px; border-radius:50%; background:#7d9b45; box-shadow:0 0 0 4px rgba(125,155,69,.14); }
.checkout-summary { display:grid; gap:11px; margin:24px 0 26px; padding:20px; border:1px solid #e8ddd2; border-radius:18px; background:#f7f1e9; }
.checkout-summary > div { display:flex; align-items:center; justify-content:space-between; gap:20px; color:#725e52; font-size:12px; }
.checkout-summary strong { color:var(--ink); font-size:13px; font-variant-numeric:tabular-nums; }
.checkout-summary .checkout-total { margin-top:3px; padding-top:14px; border-top:1px solid #ded0c3; color:var(--ink); font-weight:700; }
.checkout-summary .checkout-total strong { font-family:var(--display); font-size:23px; }
.checkout-label { margin:0 0 12px; color:#6d594d; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.payment-method-grid { list-style:none; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; margin:0; padding:0; }
.payment-method-grid li { min-height:84px; display:grid; grid-template-columns:38px 1fr; align-items:center; gap:10px; padding:13px; border:1px solid #e5d8cb; border-radius:15px; background:#fff; }
.payment-method-grid li > div { display:grid; gap:2px; }
.payment-method-grid strong { font-size:12px; line-height:1.2; }
.payment-method-grid small { color:#8b786d; font-size:8px; line-height:1.3; }
.payment-method-grid li > i { color:#a18d81; font-style:normal; font-size:20px; }
.payment-mark { width:38px; height:38px; display:grid; place-items:center; border-radius:11px; color:#fff; font-family:var(--display); font-size:16px; font-weight:700; }
.paypal-mark { background:#0b5cab; }
.apple-mark { background:#141414; }
.google-mark { background:linear-gradient(135deg,#4285f4,#34a853 48%,#fbbc05 70%,#ea4335); }
.card-mark { color:#37235c; background:#e8e0fb; font-family:var(--sans); font-size:18px; }
.checkout-pay-button { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:auto; padding:17px 19px; border-radius:14px; color:#fff; background:var(--orange); box-shadow:0 12px 28px rgba(232,102,42,.25); font-size:13px; font-weight:700; }
.checkout-pay-button span { font-size:18px; }
.checkout-note { display:flex; align-items:center; justify-content:center; gap:7px; margin:12px 0 0; color:#8b786d; font-size:8px; }

.pos-connection-card { display:flex; flex-direction:column; padding:42px; border:1px solid rgba(255,255,255,.13); background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.055)); backdrop-filter:blur(14px); }
.pos-label { align-self:flex-start; padding:7px 10px; border:1px solid rgba(255,255,255,.18); border-radius:999px; color:var(--apricot); font-size:8px; font-weight:700; letter-spacing:.12em; }
.pos-connection-card h3 { max-width:650px; margin:34px 0 14px; font-family:var(--display); font-size:clamp(36px,4vw,52px); line-height:1.02; }
.pos-connection-card > p { max-width:670px; margin:0; color:rgba(255,255,255,.6); font-size:14px; line-height:1.7; }
.api-flow { display:grid; grid-template-columns:minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr); align-items:center; gap:9px; margin:34px 0; }
.api-flow > i { color:var(--orange); font-style:normal; font-size:20px; }
.api-node { min-height:116px; display:flex; flex-direction:column; justify-content:center; padding:17px; border:1px solid rgba(255,255,255,.14); border-radius:16px; background:rgba(255,255,255,.06); }
.api-node span { color:var(--orange); font-size:8px; font-weight:700; }
.api-node strong { margin-top:13px; font-family:var(--display); font-size:16px; line-height:1.1; }
.api-node small { margin-top:5px; color:rgba(255,255,255,.42); font-size:8px; }
.api-core { border-color:rgba(232,102,42,.45); background:rgba(232,102,42,.13); }
.api-pos { border-color:rgba(169,185,110,.38); background:rgba(169,185,110,.1); }
.api-capabilities { list-style:none; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; margin:auto 0 0; padding:0; }
.api-capabilities li { min-height:145px; display:grid; align-content:start; padding:17px; border-top:1px solid rgba(255,255,255,.14); }
.api-capabilities li > span { color:var(--orange); font-size:8px; font-weight:700; }
.api-capabilities li > div { display:grid; gap:6px; margin-top:20px; }
.api-capabilities strong { font-family:var(--display); font-size:15px; line-height:1.15; }
.api-capabilities small { color:rgba(255,255,255,.43); font-size:9px; line-height:1.5; }
.integration-status-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; margin-top:20px; }
.integration-status-grid article { min-height:158px; display:flex; flex-direction:column; align-items:flex-start; padding:20px; border:1px solid rgba(255,255,255,.12); border-radius:17px; background:rgba(255,255,255,.055); }
.integration-status-grid article > span { padding:5px 8px; border-radius:999px; font-size:7px; font-weight:700; letter-spacing:.1em; }
.integration-status-grid .status-live { color:#263614; background:#c9da89; }
.integration-status-grid .status-flex { color:#48240f; background:var(--apricot); }
.integration-status-grid strong { margin-top:auto; font-family:var(--display); font-size:17px; line-height:1.15; }
.integration-status-grid small { margin-top:7px; color:rgba(255,255,255,.46); font-size:9px; line-height:1.5; }
.payment-integration-note { display:flex; gap:8px; margin:18px 0 0; padding:14px 17px; border:1px solid rgba(255,255,255,.1); border-radius:13px; color:rgba(255,255,255,.5); background:rgba(255,255,255,.04); font-size:10px; }
.payment-integration-note strong { color:#fff; }

.implementation-section { background:var(--paper); }
.implementation-grid { list-style:none; display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin:0; padding:0; }
.implementation-grid li { min-height:270px; padding:34px; border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); }
.implementation-grid li:nth-child(2),.implementation-grid li:nth-child(3){background:#efe4d8}
.implementation-grid span { color:var(--orange); font-size:11px; font-weight:700; font-variant-numeric:tabular-nums; }
.implementation-grid h3 { margin:75px 0 10px; font-family:var(--display); font-size:29px; }
.implementation-grid p { max-width:420px; margin:0; color:#715e53; }

.faq-wrap { margin-top:88px; padding-top:62px; border-top:1px solid var(--line); }
.faq-heading { display:grid; grid-template-columns:.72fr 1.28fr; align-items:end; gap:45px; margin-bottom:34px; }
.faq-heading h3 { max-width:720px; margin:0; font-family:var(--display); font-size:clamp(36px,4.2vw,56px); line-height:1.03; }
.faq-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.faq-grid details { border:1px solid var(--line); border-radius:16px; background:var(--surface); }
.faq-grid summary { min-height:76px; display:grid; grid-template-columns:1fr 28px; align-items:center; gap:16px; padding:18px 21px; cursor:pointer; list-style:none; font-family:var(--display); font-size:18px; line-height:1.2; }
.faq-grid summary::-webkit-details-marker { display:none; }
.faq-grid summary span { width:28px; height:28px; display:grid; place-items:center; border-radius:50%; color:var(--orange); background:#f5e8db; font-family:var(--sans); transition:transform .2s ease; }
.faq-grid details[open] summary span { transform:rotate(45deg); }
.faq-grid details p { margin:0; padding:0 21px 21px; color:#715e53; font-size:13px; line-height:1.65; }

.demo-section { padding-top:40px; background:var(--paper); }
.demo-ticket { position:relative; display:grid; grid-template-columns:1fr .85fr; gap:70px; padding:70px; color:var(--ink); background:var(--orange); clip-path:polygon(0 0,100% 0,100% 96%,98% 100%,96% 96%,94% 100%,92% 96%,90% 100%,88% 96%,86% 100%,84% 96%,82% 100%,80% 96%,78% 100%,76% 96%,74% 100%,72% 96%,70% 100%,68% 96%,66% 100%,64% 96%,62% 100%,60% 96%,58% 100%,56% 96%,54% 100%,52% 96%,50% 100%,48% 96%,46% 100%,44% 96%,42% 100%,40% 96%,38% 100%,36% 96%,34% 100%,32% 96%,30% 100%,28% 96%,26% 100%,24% 96%,22% 100%,20% 96%,18% 100%,16% 96%,14% 100%,12% 96%,10% 100%,8% 96%,6% 100%,4% 96%,2% 100%,0 96%); }
.demo-ticket::before { content:""; position:absolute; width:350px;height:350px;left:-160px;bottom:-160px;border:1px dashed rgba(36,23,17,.22);border-radius:50%; }
.demo-copy { position:relative; z-index:1; }
.demo-copy h2 { max-width:710px; font-size:clamp(46px,4.7vw,66px); }
.demo-copy h2 em { color:var(--ink); text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:6px; }
.demo-copy > p:not(.eyebrow) { max-width:630px; margin:28px 0 0; color:rgba(36,23,17,.7); font-size:17px; }
.demo-points { display:flex; flex-wrap:wrap; gap:8px; margin-top:34px; }
.demo-points span { padding:7px 10px; border:1px solid rgba(36,23,17,.2); border-radius:999px; font-size:9px; font-weight:700; }
.demo-form { position:relative; z-index:1; padding:28px; border-radius:22px; background:var(--surface); box-shadow:0 24px 50px rgba(97,38,15,.18); }
.demo-form label { display:grid; gap:7px; color:#6a564b; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.demo-form input,.demo-form select { width:100%; height:50px; padding:0 13px; border:1px solid #e3d5c8; border-radius:10px; color:var(--ink); outline:0; background:#fff; font-size:13px; text-transform:none; letter-spacing:0; }
.demo-form input:focus,.demo-form select:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(232,102,42,.13); }
.demo-form > label { margin-top:13px; }
.form-submit { width:100%; margin-top:20px; }
.contact-card-label { align-self:flex-start; padding:6px 9px; border:1px solid var(--line); border-radius:999px; color:var(--orange-dark); font-size:8px; font-weight:700; letter-spacing:.1em; }
.contact-page-link { margin-top:13px; color:#806d61; font-size:10px; font-weight:700; text-align:center; text-decoration:underline; text-underline-offset:3px; }

.site-footer { padding:65px 0 28px; color:rgba(255,252,247,.65); background:var(--ink); }
.footer-main { display:grid; grid-template-columns:1fr 1fr 1fr; align-items:center; gap:30px; padding-bottom:50px; }
.footer-brand { color:#fff; }
.footer-brand .brand-copy small { color:rgba(255,255,255,.45); }
.footer-main > p { margin:0; font-family:var(--display); font-size:21px; font-style:italic; text-align:center; }
.footer-links { display:flex; justify-content:flex-end; gap:20px; font-size:12px; }
.footer-links a:hover { color:#fff; }
.footer-company { display:grid; grid-template-columns:1fr auto; align-items:end; gap:30px; padding:30px 0; border-top:1px solid rgba(255,255,255,.1); }
.footer-company address { display:grid; gap:4px; font-style:normal; font-size:10px; line-height:1.5; }
.footer-company address strong { color:#fff; font-family:var(--display); font-size:16px; }
.footer-company > div { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:9px 18px; font-size:10px; }
.footer-company a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); font-size:9px; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity:1; transform:none; }
.reveal-delay { transition-delay:.12s; }

/* Responsive rules for the active page structure */
@media (min-width:721px) {
  .implementation-grid {
    align-items:stretch;
    grid-auto-rows:1fr;
  }

  .implementation-grid > li {
    height:100%;
    display:flex;
    flex-direction:column;
  }

  .implementation-grid > li p { margin-top:auto; }
}

@media (max-width:720px) {
  .trust-strip { padding:24px 0; }
  .trust-wrap { grid-template-columns:1fr; gap:16px; }
  .trust-logos { grid-template-columns:none; grid-auto-flow:column; grid-auto-columns:72%; gap:9px; overflow-x:auto; padding-bottom:8px; scroll-snap-type:x mandatory; scrollbar-width:none; }
  .trust-logos::-webkit-scrollbar { display:none; }
  .trust-logo,.trust-logo > a { min-height:112px; }
  .trust-logo { scroll-snap-align:start; }
}

@media (max-width:1120px) {
  .hero { min-height:auto; padding-top:135px; }
  .primary-nav { gap:18px; }
  .hero-grid { grid-template-columns:1fr; gap:60px; }
  .hero-copy { max-width:850px; }
  .product-stage { width:min(760px,100%); min-height:620px; margin-inline:auto; transform:none; }
  .product-stage.cc-hero-stage { width:min(880px,100%); min-height:620px; }
  .cc-hero-grid { gap:18px; }
  .foodculture-profile { grid-template-columns:1fr; }
  .foodculture-profile-copy { max-width:820px; }
  .payments-layout { grid-template-columns:1fr; }
  .checkout-card,.pos-connection-card { min-height:auto; }
  .checkout-pay-button { margin-top:28px; }
  .integration-status-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (min-width:721px) and (max-width:1120px) {
  .product-stage.cc-hero-stage { min-height:auto; padding:82px 0 55px; }
  .cc-hero-grid { grid-template-columns:1fr; }
  .cc-hero-shot:not(.cc-shot-featured) { display:none; }
}

@media (max-width:960px) {
  .section { padding:90px 0; }
  .split-heading { grid-template-columns:1fr; gap:25px; }
  .trust-wrap { grid-template-columns:1fr; gap:22px; }
  .trust-intro > p:last-child { max-width:620px; }
  .demo-ticket { grid-template-columns:1fr; }
}

@media (max-width:720px) {
  .container { width:min(calc(100% - 30px), var(--container)); }
  .hero { padding:118px 0 64px; }
  .hero::before { width:500px; height:500px; right:-300px; top:300px; }
  .orbit-one,.orbit-two { display:none; }
  h1 { font-size:clamp(43px,12vw,58px); }
  .hero-lead { font-size:17px; }
  .hero-actions { align-items:flex-start; flex-direction:column; gap:20px; }
  .hero-actions .button { width:100%; }
  .hero-chips { margin-top:30px; }
  .product-stage { min-height:520px; margin-top:-10px; }
  .product-stage.cc-hero-stage { width:100%; min-height:auto; margin-top:24px; padding:70px 0 46px; }
  .cc-hero-stage .stage-halo { width:430px; height:430px; }
  .cc-proof-badge { top:5px; left:0; }
  .cc-hero-grid { grid-template-columns:none; grid-auto-flow:column; grid-auto-columns:86%; gap:12px; margin-inline:-15px; padding:12px 15px 24px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; }
  .cc-hero-grid::-webkit-scrollbar { display:none; }
  .cc-hero-shot { scroll-snap-align:center; border-width:3px; border-radius:16px; transform:none; }
  .cc-shot-featured { grid-column:auto; }
  .cc-hero-note { position:static; justify-self:center; margin-top:0; transform:none; }
  .marquee { height:50px; }
  .section { padding:72px 0; }
  .section-heading { margin-bottom:40px; }
  .section-heading h2 { font-size:clamp(40px,11vw,52px); }
  .section-heading > p,.split-heading > p { font-size:16px; }
  .foodculture-profile { padding:25px; }
  .foodculture-solutions { grid-template-columns:1fr; }
  .foodculture-solutions article { min-height:190px; }
  .checkout-card,.pos-connection-card { padding:24px; }
  .checkout-header { align-items:flex-start; flex-direction:column; }
  .payment-method-grid { grid-template-columns:1fr; }
  .api-flow { grid-template-columns:1fr; }
  .api-flow > i { justify-self:center; transform:rotate(90deg); }
  .api-node { min-height:105px; }
  .api-capabilities { grid-template-columns:1fr; }
  .api-capabilities li { min-height:auto; grid-template-columns:24px 1fr; gap:8px; }
  .api-capabilities li > div { margin-top:0; }
  .integration-status-grid { grid-template-columns:1fr; }
  .payment-integration-note { align-items:flex-start; flex-direction:column; }
  .implementation-grid { grid-template-columns:1fr; }
  .implementation-grid li { min-height:220px; padding:27px; }
  .implementation-grid h3 { margin-top:55px; }
  .faq-wrap { margin-top:64px; padding-top:45px; }
  .faq-heading { grid-template-columns:1fr; gap:17px; }
  .faq-grid { grid-template-columns:1fr; }
  .demo-section { padding-top:20px; }
  .demo-ticket { gap:42px; padding:42px 23px 60px; clip-path:polygon(0 0,100% 0,100% 98%,95% 100%,90% 98%,85% 100%,80% 98%,75% 100%,70% 98%,65% 100%,60% 98%,55% 100%,50% 98%,45% 100%,40% 98%,35% 100%,30% 98%,25% 100%,20% 98%,15% 100%,10% 98%,5% 100%,0 98%); }
  .demo-copy h2 { font-size:43px; }
  .demo-form { padding:20px; }
  .footer-main { grid-template-columns:1fr; text-align:center; }
  .footer-brand { justify-self:center; }
  .footer-links { justify-content:center; flex-wrap:wrap; }
  .footer-company { grid-template-columns:1fr; justify-items:center; text-align:center; }
  .footer-company > div { justify-content:center; }
  .footer-bottom { align-items:center; flex-direction:column; gap:8px; text-align:center; }
}

@media (max-width:420px) {
  .cc-hero-grid { grid-auto-columns:92%; }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
/* 2026 sales-focused structure */
[hidden] { display:none !important; }

.reference-proof {
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);
  align-items:center;
  gap:42px;
  margin-top:34px;
  padding:34px;
  border-radius:24px;
  color:var(--white);
  background:var(--ink);
  box-shadow:var(--shadow-small);
}
.reference-proof-copy { min-width:0; }
.reference-proof-copy h3 { max-width:560px; margin:18px 0 15px; overflow-wrap:anywhere; font-family:var(--display); font-size:clamp(31px,3vw,45px); line-height:1.04; }
.reference-proof-copy > p:not(.trust-label) { margin:0; color:rgba(255,255,255,.64); font-size:14px; line-height:1.65; }
.reference-proof-copy ul { list-style:none; display:flex; flex-wrap:wrap; gap:7px; margin:23px 0 0; padding:0; }
.reference-proof-copy li { padding:7px 10px; border:1px solid rgba(255,255,255,.15); border-radius:999px; color:var(--apricot); font-size:8px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.reference-proof figure { min-width:0; max-width:100%; margin:0; overflow:hidden; border:1px solid rgba(255,255,255,.15); border-radius:18px; background:#07101d; }
.reference-proof figure img { display:block; width:100%; aspect-ratio:1150/761; object-fit:contain; }
.reference-proof figcaption { display:flex; justify-content:space-between; gap:18px; padding:12px 14px; color:rgba(255,255,255,.58); font-size:9px; }
.reference-proof figcaption strong { color:var(--white); }

.top-features-section { background:var(--paper); }
.top-feature-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.top-feature-card { min-height:700px; display:flex; flex-direction:column; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); box-shadow:var(--shadow-small); }
.top-feature-primary { grid-column:1/-1; min-height:500px; display:grid; grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr); color:var(--white); background:var(--ink); }
.top-feature-copy { display:flex; flex:1; flex-direction:column; padding:38px; }
.top-feature-copy header { display:flex; align-items:center; justify-content:space-between; gap:15px; color:var(--orange); font-size:9px; font-weight:700; letter-spacing:.1em; }
.top-feature-copy header span { width:34px; height:34px; display:grid; place-items:center; border:1px solid currentColor; border-radius:50%; }
.top-feature-copy h3 { margin:52px 0 14px; font-family:var(--display); font-size:clamp(34px,3.4vw,50px); line-height:1.02; }
.top-feature-copy > p { margin:0; color:#715e53; font-size:15px; line-height:1.65; }
.top-feature-primary .top-feature-copy > p { color:rgba(255,255,255,.64); }
.top-feature-copy ul { list-style:none; display:flex; flex-wrap:wrap; gap:7px; margin:auto 0 0; padding:28px 0 0; }
.top-feature-copy li { padding:7px 10px; border:1px solid currentColor; border-radius:999px; font-size:8px; font-weight:700; opacity:.68; }
.top-feature-card figure { position:relative; margin:0; padding:0 18px 18px; }
.top-feature-card figure img { display:block; width:100%; aspect-ratio:1150/761; object-fit:contain; border:1px solid rgba(36,23,17,.12); border-radius:17px; background:#07101d; box-shadow:0 16px 34px rgba(36,23,17,.14); }
.top-feature-primary figure { display:flex; align-items:center; padding:24px; }
.top-feature-primary figure img { border-color:rgba(255,255,255,.13); }
.top-feature-card figcaption { position:absolute; right:31px; bottom:31px; padding:6px 9px; border-radius:999px; color:#fff; background:rgba(4,8,15,.78); font-size:8px; font-weight:700; backdrop-filter:blur(7px); }

.package-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.package-card { min-height:610px; display:flex; flex-direction:column; padding:34px; border:1px solid rgba(36,23,17,.12); border-radius:var(--radius); background:var(--surface); box-shadow:var(--shadow-small); }
.package-card header { display:flex; justify-content:space-between; gap:12px; color:var(--orange); font-size:9px; font-weight:700; letter-spacing:.1em; }
.package-card header strong { padding:6px 9px; border:1px solid currentColor; border-radius:999px; font-size:8px; }
.package-audience { margin:48px 0 10px !important; color:#927d6f !important; font-size:9px !important; font-weight:700; letter-spacing:.09em; text-transform:uppercase; }
.package-card h3 { margin:0 0 18px; font-family:var(--display); font-size:clamp(34px,3vw,46px); line-height:1.02; }
.package-card > p:not(.package-audience) { margin:0; color:#715e53; font-size:14px; line-height:1.65; }
.package-card ul { list-style:none; display:grid; gap:0; margin:30px 0 30px; padding:0; border-top:1px solid var(--line); }
.package-card li { position:relative; padding:14px 0 14px 24px; border-bottom:1px solid var(--line); color:#5f4d43; font-size:12px; line-height:1.45; }
.package-card li::before { content:"✓"; position:absolute; left:0; color:var(--orange); font-weight:700; }
.package-card > a { margin-top:auto; }
.package-featured { color:var(--white); background:var(--ink); }
.package-featured > p:not(.package-audience),.package-featured li { color:rgba(255,255,255,.64); }
.package-featured ul,.package-featured li { border-color:rgba(255,255,255,.12); }
.package-featured .package-audience { color:var(--apricot) !important; }
.package-pricing-note { margin:18px 0 0; padding:18px 21px; border:1px solid rgba(36,23,17,.12); border-radius:16px; color:#715e53; background:rgba(255,255,255,.48); font-size:12px; line-height:1.6; }

.combined-clarity { margin-top:24px; padding:44px; border-radius:var(--radius); color:var(--white); background:var(--plum); box-shadow:var(--shadow); }
.combined-clarity-heading { display:grid; grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr); gap:45px; align-items:end; }
.combined-clarity-heading .eyebrow { grid-column:1/-1; }
.combined-clarity-heading h3 { margin:0; font-family:var(--display); font-size:clamp(39px,4vw,58px); line-height:1.01; }
.combined-clarity-heading h3 em { color:var(--apricot); }
.combined-clarity-heading > p:last-child { margin:0; color:rgba(255,255,255,.64); font-size:15px; line-height:1.7; }
.combined-facts { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin:42px 0 0; }
.combined-facts div { min-height:185px; padding:24px; border:1px solid rgba(255,255,255,.13); border-radius:18px; background:rgba(255,255,255,.055); }
.combined-facts dt { color:var(--apricot); font-family:var(--display); font-size:20px; }
.combined-facts dd { margin:38px 0 0; color:rgba(255,255,255,.62); font-size:12px; line-height:1.65; }
.combined-summary { display:flex; align-items:center; justify-content:center; gap:12px; margin-top:14px; padding:17px; border-radius:16px; background:rgba(0,0,0,.14); }
.combined-summary span { font-size:9px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; }
.combined-summary i { color:var(--apricot); font-style:normal; }

.integration-facts { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; margin:10px 0 0; }
.integration-facts div { padding:17px 19px; border:1px solid rgba(255,255,255,.12); border-radius:15px; background:rgba(255,255,255,.04); }
.integration-facts dt { color:var(--apricot); font-size:8px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; }
.integration-facts dd { margin:9px 0 0; color:rgba(255,255,255,.64); font-size:11px; line-height:1.45; }

.project-readiness { display:grid; grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr); gap:35px; margin-top:24px; padding:36px; border-radius:var(--radius); color:var(--white); background:var(--ink); }
.project-readiness h3 { margin:18px 0 0; font-family:var(--display); font-size:clamp(31px,3vw,44px); line-height:1.03; }
.project-readiness ul { list-style:none; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; margin:0; padding:0; }
.project-readiness li { position:relative; padding:14px 14px 14px 34px; border:1px solid rgba(255,255,255,.12); border-radius:13px; color:rgba(255,255,255,.72); font-size:10px; }
.project-readiness li::before { content:"✓"; position:absolute; left:14px; color:var(--apricot); font-weight:700; }
.project-readiness > p { grid-column:1/-1; margin:0; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.5); font-size:10px; line-height:1.55; }

.demo-lead-form h3 { margin:24px 0 10px; font-family:var(--display); font-size:31px; line-height:1.05; }
.demo-lead-form .form-intro { margin:0 0 22px; color:#725e52; font-size:12px; line-height:1.55; }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:13px; }
.demo-form .form-grid label { margin:0; }
.form-wide { grid-column:1/-1; }
.demo-form textarea { width:100%; min-height:112px; resize:vertical; padding:13px; border:1px solid #e3d5c8; border-radius:10px; color:var(--ink); outline:0; background:#fff; font:13px/1.5 var(--sans); text-transform:none; letter-spacing:0; }
.demo-form textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(232,102,42,.13); }
.form-consent { display:grid !important; grid-template-columns:20px 1fr; align-items:start; gap:10px !important; margin:18px 0 0 !important; color:#6a564b !important; font-size:10px !important; line-height:1.45; letter-spacing:0 !important; text-transform:none !important; }
.form-consent input { width:18px !important; height:18px !important; margin:0; accent-color:var(--orange); }
.demo-lead-form .form-submit { width:100%; display:flex; justify-content:space-between; margin-top:18px; border:0; cursor:pointer; }
.form-status { min-height:18px; margin:10px 0 0; color:#2f6e45; font-size:10px; font-weight:700; }
.form-privacy { margin:6px 0 0; color:#8b776a; font-size:9px; line-height:1.5; }

@media (max-width:1120px) {
  .reference-proof { grid-template-columns:minmax(0,1fr); }
  .top-feature-primary { grid-template-columns:1fr; }
  .top-feature-primary figure { padding-top:0; }
  .package-grid { grid-template-columns:1fr; }
  .package-card { min-height:auto; }
  .combined-clarity-heading { grid-template-columns:1fr; }
  .project-readiness { grid-template-columns:1fr; }
}

@media (max-width:720px) {
  .reference-proof { gap:26px; padding:23px; }
  .reference-proof figcaption { align-items:flex-start; flex-direction:column; gap:3px; }
  .top-feature-grid { grid-template-columns:1fr; }
  .top-feature-primary { grid-column:auto; }
  .top-feature-card { min-height:auto; }
  .top-feature-copy { min-height:390px; padding:27px; }
  .top-feature-primary figure,.top-feature-card figure { padding:0 14px 14px; }
  .top-feature-copy h3 { margin-top:38px; }
  .package-card { padding:27px; }
  .combined-clarity { padding:27px; }
  .combined-facts { grid-template-columns:1fr; }
  .combined-facts div { min-height:auto; }
  .combined-facts dd { margin-top:22px; }
  .combined-summary { align-items:stretch; flex-direction:column; }
  .combined-summary i { transform:rotate(90deg); text-align:center; }
  .integration-facts { grid-template-columns:1fr; }
  .project-readiness { padding:27px; }
  .project-readiness ul { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .form-wide { grid-column:auto; }
}

/* Self-service kiosk */
.kiosk-section { position:relative; overflow:hidden; background:#e9e4dc; }
.kiosk-section::before { content:""; position:absolute; width:620px; height:620px; top:-350px; right:-210px; border:1px dashed rgba(36,23,17,.13); border-radius:50%; pointer-events:none; }
.kiosk-section .container { position:relative; z-index:1; }
.kiosk-flow { list-style:none; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin:0 0 28px; padding:0; }
.kiosk-flow li { min-height:150px; display:grid; grid-template-columns:42px 1fr; gap:16px; padding:24px; border:1px solid rgba(36,23,17,.12); border-radius:18px; background:rgba(255,255,255,.58); }
.kiosk-flow li > span { width:42px; height:42px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--ink); font-size:9px; font-weight:700; }
.kiosk-flow li div { display:flex; flex-direction:column; gap:10px; }
.kiosk-flow strong { font-family:var(--display); font-size:21px; line-height:1.05; }
.kiosk-flow small { color:#715e53; font-size:10px; line-height:1.55; }

.kiosk-gallery { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.kiosk-screen { margin:0; padding:18px; border:1px solid rgba(36,23,17,.12); border-radius:24px; background:var(--surface); box-shadow:var(--shadow-small); }
.kiosk-screen-primary { grid-column:1/-1; padding:24px; }
.kiosk-device { position:relative; padding:10px; overflow:hidden; border-radius:20px; background:#171717; box-shadow:0 18px 40px rgba(36,23,17,.2); }
.kiosk-device::before { content:""; position:absolute; z-index:2; top:4px; left:50%; width:5px; height:5px; border-radius:50%; background:#4f4f4f; transform:translateX(-50%); }
.kiosk-device img { display:block; width:100%; aspect-ratio:1536/769; object-fit:contain; border-radius:12px; background:#f7f3ec; }
.kiosk-screen figcaption { display:grid; grid-template-columns:auto 1fr; column-gap:18px; row-gap:7px; padding:20px 4px 4px; }
.kiosk-screen figcaption > span { grid-row:1/3; color:var(--orange); font-size:9px; font-weight:700; letter-spacing:.08em; }
.kiosk-screen figcaption strong { font-family:var(--display); font-size:23px; line-height:1.05; }
.kiosk-screen figcaption small { color:#715e53; font-size:10px; line-height:1.5; }
.kiosk-screen-primary figcaption strong { font-size:29px; }

.kiosk-note { display:flex; align-items:center; justify-content:space-between; gap:34px; margin-top:18px; padding:24px; border-radius:18px; color:#fff; background:var(--ink); }
.kiosk-note > div { display:grid; gap:7px; }
.kiosk-note strong { color:var(--apricot); font-family:var(--display); font-size:20px; }
.kiosk-note span { max-width:760px; color:rgba(255,255,255,.58); font-size:10px; line-height:1.55; }
.kiosk-note .button { flex:0 0 auto; color:var(--ink); background:var(--white); }

@media (max-width:960px) {
  .kiosk-flow { grid-template-columns:1fr; }
  .kiosk-flow li { min-height:auto; }
  .kiosk-gallery { grid-template-columns:1fr; }
  .kiosk-screen-primary { grid-column:auto; }
  .kiosk-note { align-items:flex-start; flex-direction:column; }
}

@media (max-width:720px) {
  .kiosk-flow li { padding:20px; }
  .kiosk-screen,.kiosk-screen-primary { padding:10px; }
  .kiosk-device { padding:6px; border-radius:14px; }
  .kiosk-device img { border-radius:9px; }
  .kiosk-screen figcaption { grid-template-columns:1fr; padding:17px 5px 7px; }
  .kiosk-screen figcaption > span { grid-row:auto; }
  .kiosk-screen-primary figcaption strong,.kiosk-screen figcaption strong { font-size:22px; }
  .kiosk-note { padding:21px; }
  .kiosk-note .button { width:100%; justify-content:space-between; }
}

/* 2026 technical audit fixes: responsive navigation, accessibility and media */

/* Keep the page itself free of accidental horizontal scrolling while preserving
   the deliberately scrollable screenshot rails below. */
html,
body {
  max-width:100%;
  overflow-x:clip;
}

main,
section,
.container,
.hero-grid,
.top-feature-grid,
.package-grid,
.payments-layout,
.kiosk-gallery,
.footer-main,
.footer-company {
  min-width:0;
  max-width:100%;
}

.footer-company a,
.integration-facts dd {
  overflow-wrap:anywhere;
}

/* Explicit automatic image heights prevent HTML dimensions and responsive widths
   from ever stretching the product screenshots. */
.top-feature-card figure,
.kiosk-device {
  min-width:0;
}

.top-feature-card figure img,
.kiosk-device img {
  width:100%;
  height:auto;
  max-height:none;
}

/* Progressive enhancement: content is readable without JavaScript. A future
   html/body .js class can opt back into the existing reveal animation. */
.reveal,
.reveal.is-visible {
  opacity:1;
  transform:none;
}

.js .reveal {
  opacity:0;
  transform:translateY(22px);
}

.js .reveal.is-visible {
  opacity:1;
  transform:none;
}

/* Accessible touch/focus targets for all compact navigation and legal links. */
.brand,
.text-link,
.primary-nav > a:not(.button),
.footer-links a,
.footer-company a,
.contact-page-link {
  min-height:44px;
}

.primary-nav > a:not(.button),
.footer-links a,
.footer-company a,
.contact-page-link {
  display:inline-flex;
  align-items:center;
}

.form-consent {
  min-height:44px;
}

.trust-logo > a:focus-visible,
.text-link:focus-visible,
.footer-links a:focus-visible,
.footer-company a:focus-visible,
.contact-page-link:focus-visible,
.faq-grid summary:focus-visible {
  outline:3px solid rgba(232,102,42,.55);
  outline-offset:3px;
}

.trust-logo > a:focus-visible {
  outline-offset:-5px;
}

/* Improve the smallest labels and muted copy without changing the visual hierarchy. */
.brand-copy small {
  color:#745f53;
  font-size:11px;
}

.eyebrow.light {
  color:rgba(255,255,255,.72);
}

.eyebrow.dark {
  color:#4d2f22;
}

.cc-proof-badge strong { font-size:11px; }
.cc-proof-badge small { color:#715d51; font-size:10px; }
.cc-hero-shot figcaption span,
.cc-shot-featured figcaption span { font-size:10px; }
.cc-hero-shot figcaption strong { font-size:12px; }
.cc-shot-featured figcaption strong { font-size:14px; }
.cc-hero-note { color:#604d43; font-size:10px; }

.trust-intro > p:last-child {
  color:#6d594e;
  font-size:12px;
}

.trust-label {
  color:#675247;
  font-size:11px;
}

.trust-status {
  color:#6d594e;
  font-size:10px;
}

.brand-lockup small,
.brand-dstrct .brand-lockup small { font-size:10px; }

.foodculture-profile-copy > .foodculture-breadth {
  color:rgba(255,255,255,.68);
  font-size:12px;
}

.foodculture-solutions article > span,
.foodculture-audiences span { font-size:10px; }
.foodculture-solutions p { color:rgba(255,255,255,.68); font-size:12px; }

.reference-proof-copy li { font-size:10px; }
.reference-proof figcaption { color:rgba(255,255,255,.68); font-size:11px; }

.top-feature-copy header {
  color:var(--orange-dark);
  font-size:11px;
}

.top-feature-primary .top-feature-copy header { color:var(--orange); }
.top-feature-copy li { font-size:10px; opacity:.86; }
.top-feature-card figcaption { font-size:10px; }

.package-card header {
  color:var(--orange-dark);
  font-size:11px;
}

.package-card header strong { font-size:10px; }
.package-featured header { color:var(--apricot); }
.package-audience {
  color:#6d594e !important;
  font-size:11px !important;
}

.package-featured .package-audience { color:var(--apricot) !important; }

.checkout-header > div span {
  color:var(--orange-dark);
  font-size:10px;
}

.checkout-status { font-size:10px; }
.checkout-label { color:#604d43; font-size:11px; }
.payment-method-grid small,
.checkout-note { color:#6d594e; font-size:11px; }
.pos-label { font-size:10px; }
.api-node span,
.api-capabilities li > span { font-size:10px; }
.api-node small,
.api-capabilities small { color:rgba(255,255,255,.64); font-size:11px; }
.integration-status-grid article > span { font-size:10px; }
.integration-status-grid small { color:rgba(255,255,255,.68); font-size:11px; }
.payment-integration-note { color:rgba(255,255,255,.7); font-size:12px; }
.integration-facts dt { font-size:10px; }
.integration-facts dd { color:rgba(255,255,255,.7); font-size:12px; }

.project-readiness li,
.project-readiness > p { font-size:12px; }
.project-readiness > p { color:rgba(255,255,255,.68); }

.demo-form label,
.form-consent,
.form-status,
.form-privacy,
.contact-page-link { font-size:11px !important; }
.form-privacy { color:#715e53; }
.contact-card-label { font-size:10px; }
.demo-points span { font-size:11px; }

.footer-company address,
.footer-company > div,
.footer-links { font-size:12px; }
.footer-brand .brand-copy small { color:rgba(255,255,255,.7); }
.footer-bottom { font-size:11px; }

.kiosk-flow li > span,
.kiosk-screen figcaption > span { font-size:10px; }
.kiosk-flow small,
.kiosk-screen figcaption small,
.kiosk-note span { font-size:12px; }
.kiosk-screen figcaption > span { color:var(--orange-dark); }
.kiosk-note span { color:rgba(255,255,255,.68); }

/* Tablet and mobile share one reliable overlay navigation. */
@media (max-width:960px) {
  .site-header {
    background:rgba(246,240,230,.94);
    backdrop-filter:blur(15px);
  }

  .menu-open .site-header {
    height:100dvh;
    background:var(--paper);
    backdrop-filter:none;
  }

  .nav-wrap,
  .is-scrolled .nav-wrap { height:72px; }

  .nav-toggle {
    position:relative;
    z-index:3;
    width:44px;
    height:44px;
    display:grid;
    place-content:center;
    gap:7px;
    flex:0 0 auto;
    padding:0;
    border:1px solid var(--line);
    border-radius:50%;
    background:var(--surface);
  }

  .nav-toggle span:not(.sr-only) {
    width:18px;
    height:1.5px;
    background:var(--ink);
    transition:.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform:translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-4px) rotate(-45deg); }

  .primary-nav {
    position:fixed;
    z-index:2;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    gap:10px;
    padding:max(96px,12vh) 25px 34px;
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    visibility:hidden;
    opacity:0;
    background:var(--paper);
    transform:translateY(-15px);
    transition:.25s ease;
  }

  .primary-nav.is-open {
    visibility:visible;
    opacity:1;
    transform:none;
  }

  .primary-nav > a:not(.button) {
    width:100%;
    min-height:48px;
    display:flex;
    align-items:center;
    font-family:var(--display);
    font-size:clamp(27px,4.2vw,32px);
  }

  .primary-nav .nav-cta {
    width:100%;
    min-height:52px;
    margin-top:12px;
  }
}

/* A menu opened before a desktop resize must not keep the desktop page locked. */
@media (min-width:961px) {
  body.menu-open {
    overflow-x:clip;
    overflow-y:auto;
  }
}

/* Short phone/landscape viewports keep every menu item reachable. */
@media (max-width:960px) and (max-height:560px) {
  .primary-nav {
    gap:5px;
    padding:80px 20px 24px;
  }

  .primary-nav > a:not(.button) {
    min-height:40px;
    font-size:24px;
  }

  .primary-nav .nav-cta {
    min-height:46px;
    margin-top:6px;
  }
}

/* Visible, contained scroll rails make the mobile carousels discoverable and
   preserve focus indication for keyboard users. */
@media (max-width:720px) {
  .cc-hero-grid,
  .trust-logos {
    max-width:none;
    overscroll-behavior-inline:contain;
    scroll-padding-inline:15px;
    scrollbar-width:thin;
    scrollbar-color:var(--orange) rgba(36,23,17,.12);
  }

  .cc-hero-shot,
  .trust-logo { scroll-snap-stop:always; }

  .cc-hero-grid::-webkit-scrollbar,
  .trust-logos::-webkit-scrollbar {
    display:block;
    width:6px;
    height:6px;
  }

  .cc-hero-grid::-webkit-scrollbar-track,
  .trust-logos::-webkit-scrollbar-track {
    border-radius:999px;
    background:rgba(36,23,17,.12);
  }

  .cc-hero-grid::-webkit-scrollbar-thumb,
  .trust-logos::-webkit-scrollbar-thumb {
    border-radius:999px;
    background:var(--orange);
  }

  .top-feature-copy { min-height:auto; }
}

@media (prefers-reduced-motion:reduce) {
  .js .reveal,
  .js .reveal.is-visible {
    opacity:1;
    transform:none;
  }
}

/* Compact navigation for the standalone legal pages. */
.legal-page .primary-nav {
  position:static;
  inset:auto;
  width:auto;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:10px;
  padding:0;
  overflow:visible;
  visibility:visible;
  opacity:1;
  background:transparent;
  transform:none;
}

.legal-page .primary-nav > a:not(.button) {
  width:auto;
  min-height:44px;
  display:flex;
  align-items:center;
  padding-inline:8px;
  font-family:var(--sans);
  font-size:13px;
  font-weight:700;
}

.legal-page address { font-style:normal; }

.reference-proof figure img { height:auto; }

@media (max-width:520px) {
  .legal-page .nav-wrap { gap:8px; }
  .legal-page .brand-copy small { display:none; }
  .legal-page .primary-nav { gap:0; }
  .legal-page .primary-nav > a:not(.button) { padding-inline:6px; font-size:12px; }
}

/* Version 2 positioning proposal: retention, owner benefits and public prices. */
.language-switch {
  min-height:38px;
  display:inline-flex;
  align-items:center;
  gap:3px;
  padding:4px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.6);
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
}

.language-switch span,
.language-switch a {
  min-width:30px;
  min-height:28px;
  display:grid;
  place-items:center;
  border-radius:999px;
  color:var(--ink);
}

.language-switch span[aria-current="page"] { color:#fff; background:var(--ink); }
.language-switch a:hover,
.language-switch a:focus-visible { color:#fff; background:var(--orange-dark); outline:none; }

.hero-lead strong { color:var(--ink); font-weight:800; }

.retention-section {
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 88% 15%,rgba(232,102,42,.23),transparent 31%),
    linear-gradient(135deg,#241711,#101a28 72%);
}

.retention-section::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.12;
  background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);
  background-size:48px 48px;
  pointer-events:none;
}

.retention-layout,
.retention-status,
.efficiency-proof { position:relative; z-index:1; }

.retention-layout {
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  align-items:center;
  gap:72px;
}

.retention-copy { min-width:0; }

.retention-copy h2 {
  max-width:100%;
  margin:22px 0 20px;
  font-family:var(--display);
  font-size:clamp(40px,4.3vw,60px);
  line-height:1;
  letter-spacing:-.025em;
  text-wrap:balance;
}

.retention-copy h2 em { color:var(--apricot); font-weight:400; }
.retention-copy > p:not(.eyebrow) { max-width:620px; margin:0 0 28px; color:rgba(255,255,255,.7); font-size:16px; line-height:1.7; }

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

.retention-steps li {
  min-height:136px;
  display:grid;
  grid-template-columns:54px 1fr;
  align-items:center;
  gap:18px;
  padding:24px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
}

.retention-steps li > span {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:1px solid var(--orange);
  border-radius:50%;
  color:var(--apricot);
  font-size:11px;
  font-weight:800;
}

.retention-steps strong { display:block; margin-bottom:7px; font-family:var(--display); font-size:25px; }
.retention-steps small { display:block; color:rgba(255,255,255,.67); font-size:13px; line-height:1.55; }

.retention-status {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:38px;
}

.retention-status > div {
  min-height:96px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  padding:18px;
  border-top:1px solid rgba(255,255,255,.2);
}

.retention-status span { color:var(--apricot); font-size:10px; font-weight:800; letter-spacing:.08em; }
.retention-status strong { color:rgba(255,255,255,.82); font-size:13px; line-height:1.4; }

.efficiency-proof {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(220px,.62fr) minmax(0,.9fr);
  align-items:stretch;
  margin-top:30px;
  overflow:hidden;
  color:#fff;
  border:1px solid rgba(255,255,255,.13);
  border-radius:24px;
  background:linear-gradient(135deg,#243244 0%,#111923 70%);
  box-shadow:0 24px 58px rgba(18,24,33,.2);
}

.efficiency-proof-lead,
.efficiency-proof-metric,
.efficiency-proof-points { min-width:0; padding:30px; }

.efficiency-kicker {
  margin:0;
  color:var(--apricot);
  font-size:10px;
  font-weight:800;
  letter-spacing:.11em;
}

.efficiency-proof h3 {
  margin:15px 0 14px;
  font-family:var(--display);
  font-size:clamp(31px,3vw,46px);
  line-height:1;
  letter-spacing:-.025em;
  text-wrap:balance;
}

.efficiency-proof h3 em { color:var(--apricot); font-weight:400; }
.efficiency-proof-lead > p:last-child { max-width:600px; margin:0; color:rgba(255,255,255,.68); font-size:12px; line-height:1.65; }

.efficiency-proof-metric {
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-right:1px solid rgba(255,255,255,.11);
  border-left:1px solid rgba(255,255,255,.11);
  background:linear-gradient(155deg,rgba(232,102,42,.25),rgba(232,102,42,.07));
}

.efficiency-proof-metric span { color:var(--apricot); font-size:9px; font-weight:800; letter-spacing:.09em; }
.efficiency-proof-metric strong { display:block; margin:9px 0 7px; font-family:var(--display); font-size:clamp(48px,5vw,72px); line-height:.9; }
.efficiency-proof-metric p { margin:0; color:rgba(255,255,255,.78); font-size:12px; line-height:1.45; }

.efficiency-proof-points {
  list-style:none;
  display:grid;
  align-content:center;
  gap:16px;
  margin:0;
}

.efficiency-proof-points li { padding-left:17px; border-left:2px solid var(--orange); }
.efficiency-proof-points strong { display:block; margin-bottom:6px; font-size:13px; line-height:1.35; }
.efficiency-proof-points span { display:block; color:rgba(255,255,255,.63); font-size:11px; line-height:1.55; }

.efficiency-proof-note {
  grid-column:1/-1;
  margin:0;
  padding:12px 24px;
  color:rgba(255,255,255,.54);
  border-top:1px solid rgba(255,255,255,.1);
  background:rgba(5,10,16,.32);
  font-size:9px;
  line-height:1.55;
}

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

.case-kpis > div {
  min-height:116px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:16px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:13px;
  background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
}

.case-kpis strong { overflow-wrap:anywhere; color:#fff; font-family:var(--display); font-size:clamp(19px,1.7vw,25px); line-height:1.05; }
.case-kpis span { margin-top:9px; overflow-wrap:anywhere; color:var(--apricot); font-size:10px; font-weight:700; line-height:1.45; letter-spacing:.025em; }
.case-cta { margin-top:18px; }

.pilot-use-cases {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}

.pilot-use-case {
  min-height:260px;
  display:flex;
  flex-direction:column;
  padding:25px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fffaf5;
  box-shadow:0 12px 30px rgba(36,23,17,.06);
}

.pilot-use-case > span {
  color:var(--orange-dark);
  font-size:10px;
  font-weight:800;
  letter-spacing:.09em;
}

.pilot-use-case h4 {
  margin:26px 0 13px;
  font-family:var(--display);
  font-size:clamp(23px,2vw,29px);
  line-height:1.04;
  letter-spacing:-.02em;
}

.pilot-use-case p { margin:auto 0 0; color:#715e53; font-size:12px; line-height:1.65; }

.pilot-use-case-complete {
  color:#fff;
  border-color:rgba(255,255,255,.1);
  background:linear-gradient(145deg,#202a38,#111923);
}

.pilot-use-case-complete > span { color:var(--apricot); }
.pilot-use-case-complete p { color:rgba(255,255,255,.68); }

.pilot-proof-note {
  grid-column:1/-1;
  margin:4px 0 0;
  padding:13px 16px;
  border-left:3px solid var(--orange);
  color:#715e53;
  background:rgba(255,255,255,.55);
  font-size:10px;
  line-height:1.55;
}

.package-card { min-height:760px; }

.package-price {
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:end;
  gap:2px 8px;
  margin:20px 0 10px;
  padding:18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.package-price > span { align-self:center; color:var(--orange-dark); font-size:10px; font-weight:800; text-transform:uppercase; }
.package-price > strong { font-family:var(--display); font-size:38px; line-height:1; }
.package-price > small { grid-column:2; color:#715e53; font-size:11px; }
.package-price > em { grid-column:1/-1; margin-top:8px; color:#715e53; font-size:11px; font-style:normal; font-weight:700; }

.package-featured .package-price { border-color:rgba(255,255,255,.16); }
.package-featured .package-price > span,
.package-featured .package-price > em { color:var(--apricot); }
.package-featured .package-price > small { color:rgba(255,255,255,.65); }
.package-featured .product-name.product-loop { color:var(--product-loop-on-dark); }
.package-featured .product-name.product-core { color:var(--product-core-on-dark); }
.package-featured .product-name.product-one { color:var(--product-one-on-dark); }

.package-tier-options {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin:12px 0 18px;
}

.package-tier-options span {
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:11px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:11px;
  color:rgba(255,255,255,.7);
  font-size:11px;
}

.package-tier-options strong { color:#fff; }
.package-tier-options small { color:rgba(255,255,255,.58); font-size:9px; line-height:1.35; }

@media (max-width:1100px) {
  .retention-layout { gap:38px; }
  .package-card { min-height:auto; }
}

@media (max-width:960px) {
  .language-switch { width:100%; min-height:46px; justify-content:center; margin-top:4px; }
  .language-switch span,
  .language-switch a { min-width:54px; min-height:36px; }
  .retention-layout { grid-template-columns:1fr; }
  .retention-copy { max-width:720px; }
  .retention-status { grid-template-columns:1fr; }
  .retention-status > div { min-height:auto; }
  .efficiency-proof { grid-template-columns:minmax(0,1fr) minmax(220px,.7fr); }
  .efficiency-proof-points { grid-column:1/-1; grid-template-columns:repeat(2,minmax(0,1fr)); padding-top:22px; padding-bottom:22px; border-top:1px solid rgba(255,255,255,.1); }
  .pilot-use-cases { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width:720px) {
  .retention-copy h2 { font-size:clamp(34px,10vw,40px); line-height:1.02; }
  .retention-steps li { min-height:auto; grid-template-columns:44px 1fr; padding:19px; }
  .retention-steps li > span { width:42px; height:42px; }
  .retention-steps strong { font-size:21px; }
  .efficiency-proof { grid-template-columns:1fr; border-radius:19px; }
  .efficiency-proof-lead,
  .efficiency-proof-metric,
  .efficiency-proof-points { padding:23px; }
  .efficiency-proof-metric { border:0; border-top:1px solid rgba(255,255,255,.11); border-bottom:1px solid rgba(255,255,255,.11); }
  .efficiency-proof-points { grid-column:auto; grid-template-columns:1fr; border-top:0; }
  .efficiency-proof-note { grid-column:auto; padding:12px 18px; }
  .case-kpis { grid-template-columns:1fr; }
  .case-kpis > div { min-height:104px; }
  .pilot-use-cases { grid-template-columns:1fr; }
  .pilot-use-case { min-height:auto; padding:22px; }
  .pilot-use-case h4 { margin-top:22px; }
  .pilot-use-case p { margin-top:32px; }
  .package-price > strong { font-size:34px; }
}

/* Honeypot-Feld: für Menschen unsichtbar, Bots füllen es aus */
.form-hp { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap; }
