:root {
  --bg: #ffffff;
  --ink: #0b0d12;
  --muted: #666d7a;
  --soft: #f5f6f8;
  --soft-2: #eef1f6;
  --line: rgba(11, 13, 18, .1);
  --dark: #07080b;
  --dark-2: #10131a;
  --white: #ffffff;
  --accent: #0b0d12;
  --accent-2: #4f7cff;
  --warm: #ff9f43;
  --green: #30d158;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 24px 70px rgba(16, 24, 40, .12);
  --shadow-soft: 0 16px 40px rgba(16, 24, 40, .08);
  --container: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { top: 14px; }
.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;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.section { padding: 88px 0; }
.section-large { padding: 132px 0 78px; }
.dark-section {
  background:
    radial-gradient(circle at top left, rgba(79,124,255,.25), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
}
.dark-section .eyebrow { color: rgba(255,255,255,.65); }
.dark-section p { color: rgba(255,255,255,.72); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(11,13,18,.06);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(16,24,40,.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 28% 28%, #ffffff 0 10%, transparent 11%),
    linear-gradient(135deg, #0b0d12 0%, #303846 56%, #4f7cff 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 10px 26px rgba(11,13,18,.18);
}
.brand-name { font-size: 1.05rem; }
.site-nav { display: none; }
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  gap: 3px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform .22s ease, opacity .22s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.site-nav.is-open {
  position: fixed;
  top: calc(var(--header-h) + 10px);
  left: 16px;
  right: 16px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.site-nav.is-open a {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  color: var(--ink);
}
.site-nav.is-open .nav-cta { background: var(--ink); color: var(--white); text-align: center; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(79,124,255,.15), transparent 28%),
    radial-gradient(circle at 90% 24%, rgba(255,159,67,.13), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}
.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(79,124,255,.14);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 11vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.085em;
  margin-bottom: 24px;
  max-width: 880px;
}
h2 {
  font-size: clamp(2.25rem, 7vw, 5.2rem);
  line-height: .94;
  letter-spacing: -.07em;
  margin-bottom: 22px;
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
p { color: var(--muted); font-size: 1.03rem; }
.hero-subtitle {
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  max-width: 710px;
  margin-bottom: 28px;
  color: #3d4350;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(11,13,18,.22);
}
.btn-secondary {
  background: rgba(255,255,255,.75);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(0,0,0,.24);
}
.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.btn-plan {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--line);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-proof span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,13,18,.08);
  color: #4a5260;
  font-size: .9rem;
  font-weight: 700;
}

.hero-visual {
  min-height: 520px;
  position: relative;
  isolation: isolate;
}
.visual-orbit {
  position: absolute;
  inset: 12% -12% 2% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,124,255,.16), transparent 58%);
  filter: blur(4px);
  z-index: -1;
}
.device {
  background: #10131a;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 42px 90px rgba(15, 23, 42, .22);
}
.tablet-device {
  position: absolute;
  top: 16px;
  right: 0;
  width: min(100%, 610px);
  min-height: 390px;
  border-radius: 36px;
  padding: 18px;
  transform: rotate(-2deg);
}
.device-topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.device-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}
.tablet-layout {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  min-height: 320px;
}
.tablet-layout aside, .tablet-content {
  border-radius: 22px;
  background: #f7f8fb;
  padding: 14px;
}
.tablet-layout aside {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: .82rem;
}
.tablet-layout aside strong { color: var(--ink); margin-bottom: 6px; }
.tablet-layout aside span {
  padding: 10px;
  border-radius: 14px;
  color: #646b76;
  background: #fff;
}
.tablet-layout aside .active { background: var(--ink); color: var(--white); }
.tablet-content { display: grid; gap: 12px; align-content: start; }
.mini-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.mini-head span { color: var(--muted); font-weight: 700; }
.product-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}
.product-row small { display: block; color: var(--muted); }
.product-row em {
  font-style: normal;
  font-size: .72rem;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(79,124,255,.12);
  color: #315acb;
  font-weight: 800;
}
.food-dot {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffb86b, #ff6f61);
}
.food-dot.alt { background: linear-gradient(135deg, #83e4c6, #4f7cff); }
.product-grid-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.product-grid-mini span {
  min-height: 82px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #e9edf5);
}
.phone-device {
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 210px;
  height: 390px;
  border-radius: 34px;
  padding: 18px 14px;
  transform: rotate(5deg);
}
.phone-notch {
  width: 64px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #050609;
  margin: -18px auto 12px;
}
.phone-card {
  background: #fff;
  height: calc(100% - 10px);
  border-radius: 24px;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--ink);
}
.phone-img {
  display: block;
  min-height: 128px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 20%),
    linear-gradient(135deg, #ffc46b, #ff6f61 55%, #2b2f3a);
}
.phone-card small { color: var(--muted); }
.phone-card button {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}
.floating-card {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 220px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
}
.floating-card small, .floating-card span { color: var(--muted); }
.floating-card strong { font-size: 1.5rem; letter-spacing: -.05em; }

.trusted-strip {
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.82);
}
.strip-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.strip-grid::-webkit-scrollbar { display: none; }
.strip-grid span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: #4f5663;
  font-weight: 800;
  font-size: .92rem;
}

.two-col, .product-grid, .tablet-grid, .trust-grid, .faq-grid {
  display: grid;
  gap: 34px;
}
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading p { font-size: 1.12rem; }
.strategy-section { background: #fff; }
.strategy-list {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid rgba(11,13,18,.06);
}
.strategy-list p:last-child { margin-bottom: 0; }

.card-grid, .problem-grid, .usecase-grid, .plans-grid {
  display: grid;
  gap: 16px;
}
.feature-card, .problem-card, .usecase-card, .plan-card, .trust-card {
  border-radius: var(--radius);
  padding: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.feature-card p, .problem-card p, .usecase-card p, .plan-card p { margin-bottom: 0; }
.problem-grid { margin-top: 18px; }
.problem-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(16px);
}
.problem-card h3 { color: #fff; }

.product-section { background: var(--soft); }
.capability-list {
  display: grid;
  gap: 12px;
}
.capability-list div, .mockup-list div {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  gap: 5px;
  box-shadow: 0 10px 24px rgba(16,24,40,.04);
}
.capability-list strong, .mockup-list strong { letter-spacing: -.03em; }
.capability-list span, .mockup-list span { color: var(--muted); }
.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
}

.usecase-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 14px 14px 24px;
}
.usecase-card h3, .usecase-card p { padding-inline: 10px; }
.usecase-image {
  min-height: 220px;
  border-radius: 22px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
}
.usecase-image.restaurant {
  background:
    linear-gradient(135deg, rgba(11,13,18,.08), rgba(11,13,18,.34)),
    radial-gradient(circle at 20% 20%, #ffd89a, transparent 22%),
    linear-gradient(135deg, #f7efe5, #cab39f);
}
.usecase-image.cafe {
  background:
    linear-gradient(135deg, rgba(11,13,18,.05), rgba(11,13,18,.28)),
    radial-gradient(circle at 68% 32%, #fff, transparent 18%),
    linear-gradient(135deg, #f3dec4, #7b5f47);
}
.usecase-image.hotel {
  background:
    linear-gradient(135deg, rgba(11,13,18,.05), rgba(11,13,18,.28)),
    radial-gradient(circle at 70% 24%, #b7ecff, transparent 22%),
    linear-gradient(135deg, #e6f6ff, #86aeb8 50%, #d8b27b);
}

.tablet-grid { align-items: center; }
.tablet-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0;
}
.tablet-points span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  font-size: .92rem;
}
.orders-demo {
  display: grid;
  gap: 14px;
}
.orders-panel {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}
.orders-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.orders-head span { color: rgba(255,255,255,.66); font-weight: 800; }
.orders-head strong {
  color: #10131a;
  background: var(--green);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .8rem;
}
.order-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  margin-top: 10px;
}
.order-item span { color: var(--muted); }
.order-item em {
  font-style: normal;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: .75rem;
  font-weight: 900;
  background: rgba(79,124,255,.14);
  color: #315acb;
}
.order-item.new em { background: rgba(48,209,88,.18); color: #0b7d32; }
.order-item.done em { background: rgba(255,159,67,.2); color: #9a5700; }
.orders-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.orders-stats div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.orders-stats small { display: block; color: rgba(255,255,255,.62); font-weight: 800; }
.orders-stats strong { font-size: 1.4rem; letter-spacing: -.05em; }

.plans-section { background: #fff; }
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.plan-card.highlighted {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 34px 90px rgba(11,13,18,.28);
  transform: translateY(-4px);
}
.plan-card.highlighted p, .plan-card.highlighted li { color: rgba(255,255,255,.72); }
.plan-kicker {
  display: inline-block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  margin-bottom: 10px;
}
.highlighted .plan-kicker { color: rgba(255,255,255,.58); }
.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .76rem;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}
.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.plan-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: #4e5562;
}
.plan-card li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--green), #a8ffbd);
  margin-top: 3px;
}
.plan-card .btn { margin-top: auto; }

.trust-section { background: var(--soft); }
.trust-cards { display: grid; gap: 14px; }
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.trust-card span { color: var(--muted); }
.mockups-section { background: #fff; }
.mockup-list { display: grid; gap: 12px; }

.faq-section { background: var(--soft); }
.faq-list { display: grid; gap: 12px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(16,24,40,.04);
}
summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.03em;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--ink);
  flex: 0 0 auto;
}
details[open] summary::after { content: "−"; }
details p { margin: 14px 0 0; }

.final-cta { text-align: center; max-width: 860px; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { margin-inline: auto; }
.final-cta p { max-width: 680px; margin-inline: auto; }
.center-actions { justify-content: center; }
.site-footer {
  padding: 46px 0;
  background: #050609;
  color: #fff;
}
.footer-grid {
  display: grid;
  gap: 28px;
}
.footer-brand .brand-mark { background: linear-gradient(135deg, #fff, #4f7cff); }
.site-footer p, .footer-note { color: rgba(255,255,255,.58); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

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

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
  .orders-stats { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 820px) {
  .section { padding: 112px 0; }
  .section-large { padding: 162px 0 105px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .site-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: #414855;
    font-size: .94rem;
    font-weight: 800;
  }
  .site-nav a:hover { background: var(--soft); color: var(--ink); }
  .site-nav .nav-cta {
    background: var(--ink);
    color: #fff;
    margin-left: 6px;
    padding-inline: 16px;
  }
  .hero-grid { grid-template-columns: 1fr .92fr; }
  .two-col, .product-grid, .tablet-grid, .trust-grid, .faq-grid {
    grid-template-columns: .85fr 1.15fr;
    align-items: start;
  }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(3, 1fr); }
  .plans-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .footer-grid { grid-template-columns: 1.15fr .85fr 1fr; align-items: start; }
  .footer-note { text-align: right; }
}
@media (min-width: 1100px) {
  .card-grid.four { grid-template-columns: repeat(4, 1fr); }
  .feature-card, .problem-card, .plan-card { padding: 30px; }
}
@media (max-width: 520px) {
  .hero-visual { min-height: 470px; }
  .tablet-device {
    width: 100%;
    min-height: 340px;
    padding: 12px;
    border-radius: 26px;
  }
  .tablet-layout { grid-template-columns: 88px 1fr; gap: 9px; min-height: 285px; }
  .tablet-layout aside, .tablet-content { padding: 10px; border-radius: 18px; }
  .tablet-layout aside span { padding: 8px; font-size: .72rem; }
  .product-row { grid-template-columns: 32px 1fr; }
  .product-row em { grid-column: 2; width: fit-content; }
  .food-dot { width: 32px; height: 32px; border-radius: 12px; }
  .product-grid-mini { grid-template-columns: repeat(2, 1fr); }
  .product-grid-mini span { min-height: 58px; }
  .phone-device { width: 158px; height: 302px; }
  .phone-img { min-height: 84px; }
  .floating-card { width: 168px; right: 0; bottom: 8px; padding: 14px; }
  .floating-card strong { font-size: 1.2rem; }
  .popular-badge { position: static; width: fit-content; margin-bottom: 8px; }
}
@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; }
}
