:root {
  --g: #6e7454;
  --g2: #5a5f43;
  --gb: rgba(110,116,84,.06);
  --gb2: rgba(110,116,84,.12);
  --cr: #f3f7f2;
  --cr2: #dfe7dd;
  --band: #f8faf7;
  --band2: #fbfdfb;
  --paper: #ffffff;
  --bg: #ffffff;
  --w: #ffffff;
  --tx: #1d1d1b;
  --tx2: #5e5e59;
  --tx3: #9b9b95;
  --ff: 'Source Serif 4', Georgia, serif;
  --fs: 'IBM Plex Sans', system-ui, sans-serif;
  --r2: 20px;
  --sage: #6e7454;
  --sage-light: #8a9068;
  --sage-pale: #e8ead8;
  --cream: #f8faf7;
  --warm-white: #ffffff;
  --border: #dfe7dd;
  --text-dark: #2a2a28;
  --text-mid: #5a5a56;
  --text-light: #9a9a94;
  --app-bg: #f8faf7;
  --app-sidebar: #ffffff;
  --app-sidebar-hover: #f1f6ef;
  --app-white: #ffffff;
  --app-border: #d8ded4;
  --app-accent: #6e7454;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--fs); color: var(--tx); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
section[id] { scroll-margin-top: 116px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px; display: flex; align-items: center; justify-content: space-between;
  transition: all .35s ease;
}
.nav.scrolled {
  background: var(--bg); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,.06); padding: 13px 48px;
}
.nav-logo {
  font-family: var(--ff); font-size: 27px; font-weight: 600;
  color: var(--g); text-decoration: none; letter-spacing: -.2px;
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--tx2);
  text-decoration: none; transition: color .2s; letter-spacing: .15px;
}
.nav-links a:hover { color: var(--g); }
.lang-sw { display: flex; background: var(--cr); border-radius: 50px; padding: 2px; gap: 1px; }
.mob-lang-sw { margin-top: 12px; }
.lang-btn {
  padding: 5px 13px; border: none; border-radius: 50px; font-size: 11.5px;
  font-weight: 600; cursor: pointer; font-family: var(--fs);
  letter-spacing: .5px; transition: all .2s;
}
.lang-btn.active { background: var(--w); color: var(--g); box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.lang-btn:not(.active) { background: transparent; color: var(--tx3); }
.nav-cta {
  padding: 9px 24px; background: var(--g); color: var(--w); border: none;
  border-radius: 50px; font-size: 13px; font-weight: 500;
  font-family: var(--fs); cursor: pointer; transition: all .3s; text-decoration: none;
}
.nav-cta:hover { background: var(--g2); transform: translateY(-1px); }
.mob-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mob-toggle svg { display: block; }

/* ── MOBILE MENU ── */
.mob-menu {
  display: none; position: fixed; inset: 0; background: rgba(250,250,248,.98);
  backdrop-filter: blur(30px); z-index: 99; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--ff); font-size: 30px; font-weight: 500;
  color: var(--tx); text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .38s cubic-bezier(.16,1,.3,1), transform .38s cubic-bezier(.16,1,.3,1);
}
.reveal-ready .reveal:not(.visible) {
  opacity: .98;
  transform: translateY(10px);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .03s; }
.reveal.d2 { transition-delay: .06s; }
.reveal.d3 { transition-delay: .09s; }
.reveal.d4 { transition-delay: .12s; }
.reveal.d5 { transition-delay: .15s; }
.reveal.d6 { transition-delay: .18s; }

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

/* ── HERO ── */
.hero {
  min-height: 78vh; display: flex; align-items: center; justify-content: center;
  padding: 118px 48px 48px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -180px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(110,116,84,.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: 740px; text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 20px; border-radius: 50px; border: 1px solid var(--gb2);
  color: var(--g); font-size: 10.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 30px;
  opacity: 0; animation: fadeUp .8s .15s forwards;
}
.hero-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--g);
}
.hero h1 {
  font-family: var(--ff); font-size: clamp(36px, 5.5vw, 64px); font-weight: 500;
  line-height: 1.12; color: var(--tx); margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s .35s forwards;
}
.hero h1 em { font-style: italic; color: var(--g); }
.hero-sub {
  font-size: clamp(15px, 1.5vw, 17.5px); line-height: 1.75; color: var(--tx2);
  max-width: 560px; margin: 0 auto 36px; font-weight: 400;
  opacity: 0; animation: fadeUp .8s .55s forwards;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .7s forwards;
}
.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--g); color: var(--w); padding: 14px 34px;
  border-radius: 50px; border: none; font-size: 14.5px; font-weight: 500;
  cursor: pointer; font-family: var(--fs); transition: all .3s; text-decoration: none;
}
.btn-p:hover { background: var(--g2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(110,116,84,.18); }
.btn-p svg { transition: transform .2s; }
.btn-p:hover svg { transform: translateX(3px); }
.btn-s {
  padding: 14px 34px; border-radius: 50px; border: 1.5px solid var(--cr2);
  background: transparent; color: var(--tx); font-size: 14.5px; font-weight: 500;
  cursor: pointer; font-family: var(--fs); transition: all .3s; text-decoration: none;
}
.btn-s:hover { border-color: var(--gb2); background: var(--gb); }
.stats {
  display: flex; justify-content: center; gap: 20px; margin-top: 38px;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}
.stats > div {
  width: 190px;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid var(--cr2);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-v {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-size: 25px;
  font-weight: 600;
  color: var(--g);
  line-height: 1.05;
}
.stat-l {
  font-size: 11.5px;
  color: var(--tx2);
  margin-top: 8px;
  line-height: 1.45;
  letter-spacing: .1px;
  max-width: 150px;
}

/* ── TRUST LINE ── */
.trust {
  text-align: center; padding: 34px 48px; font-size: 12.5px;
  color: var(--tx3); letter-spacing: .3px; border-top: 1px solid var(--cr2);
  border-bottom: 1px solid var(--cr2); background: rgba(255,255,255,.62);
}

/* ── SECTIONS ── */
.sec {
  padding: 104px 48px;
  position: relative;
  border-top: 1px solid rgba(110,116,84,.09);
}
.sec-bg { background: var(--band); }
.section-problem { background: #f8faf7; }
.section-features { background: var(--paper); }
.section-onboarding { background: #f4f8f3; }
.section-pricing {
  background: linear-gradient(180deg, #fff 0%, #f8faf7 100%);
}
.section-problem::before,
.section-features::before,
.section-onboarding::before,
.section-pricing::before,
.contact-section::before,
.arcade-section::before,
.product-section::before {
  content: '';
  position: absolute;
  left: 48px;
  right: 48px;
  top: 0;
  height: 1px;
  background: rgba(110,116,84,.16);
}
.ctr { max-width: 1060px; margin: 0 auto; }
.tag {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--g); margin-bottom: 16px; display: block;
}
.divline { width: 40px; height: 1px; background: var(--g); opacity: .35; margin-bottom: 20px; }
.divline-c { margin-left: auto; margin-right: auto; }
.sec-h {
  font-family: var(--ff); font-size: clamp(27px, 3.2vw, 42px); font-weight: 500;
  line-height: 1.2; color: var(--tx); margin-bottom: 18px;
}
.sec-sub { font-size: 15.5px; line-height: 1.75; color: var(--tx2); max-width: 480px; }

/* ── PROBLEM ── */
.prob-top { margin-bottom: 52px; }
.prob-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--cr2); border-radius: var(--r2); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
}
.prob-card { background: var(--w); padding: 44px 40px; transition: background .3s; }
.prob-card:hover { background: #fdfdfb; }
.prob-num {
  font-family: var(--ff); font-size: 44px; font-weight: 300;
  color: var(--cr2); margin-bottom: 20px; line-height: 1; user-select: none;
}
.prob-card h3 { font-family: var(--ff); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.prob-card p { font-size: 14px; line-height: 1.7; color: var(--tx2); }

/* ── ARCADE SHOWCASE ── */
.arcade-section {
  padding: 96px 24px;
  background: #eee7da;
  position: relative;
  border-top: 1px solid rgba(110,116,84,.12);
  border-bottom: 1px solid rgba(110,116,84,.12);
}
.arcade-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.arcade-head {
  max-width: 760px;
  margin: 0 auto 34px;
}
.arcade-head h2 {
  font-family: var(--ff);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.16;
  font-weight: 500;
  color: #1f1f1b;
  margin-bottom: 14px;
}
.arcade-head p {
  color: var(--tx2);
  font-size: 15.5px;
  line-height: 1.75;
}
.arcade-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: #fffcf7;
  box-shadow: 0 24px 70px rgba(31,31,27,.12);
}
.arcade-frame iframe,
.arcade-frame video,
.demo-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #10130f;
}
.demo-video-frame {
  border: 1px solid rgba(49,90,61,.16);
}
.arcade-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.arcade-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  background: #687246;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.arcade-cta:hover {
  background: #566039;
  transform: translateY(-1px);
}
.arcade-mobile-fallback { display: none; }
.arcade-mobile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
.arcade-mobile-card {
  text-align: left;
  padding: 18px 18px 17px;
  border: 1px solid #e7e0d6;
  border-radius: 14px;
  background: #fffcf7;
}
.arcade-mobile-card strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--ff);
  font-size: 23px;
  line-height: 1.15;
  font-weight: 600;
  color: #1f1f1b;
}
.arcade-mobile-card p {
  color: var(--tx2);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ── FEATURES ── */
.feat-top { text-align: center; margin-bottom: 68px; }
.feat-top .sec-sub { margin: 0 auto; }
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feat-card {
  padding: 36px 30px; border-radius: var(--r2); border: 1px solid var(--cr2);
  background: var(--w); transition: all .4s;
}
.feat-card:hover {
  border-color: var(--gb2); box-shadow: 0 12px 36px rgba(0,0,0,.04);
  transform: translateY(-4px);
}
.feat-icon {
  color: var(--g); margin-bottom: 22px; display: flex; align-items: center;
  justify-content: center; width: 52px; height: 52px; border-radius: 13px; background: var(--gb);
}
.feat-card h3 { font-family: var(--ff); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.feat-card p { font-size: 13.5px; line-height: 1.7; color: var(--tx2); }

.client-collab {
  margin: 0 0 36px;
  padding: 38px;
  border-radius: var(--r2);
  border: 1px solid rgba(110,116,84,.18);
  background: linear-gradient(135deg, rgba(110,116,84,.08), rgba(255,255,255,.96));
}
.client-collab-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .65fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}
.client-collab-label {
  display: block;
  color: var(--g);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.client-collab h3 {
  font-family: var(--ff);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--tx);
}
.client-collab-head p {
  color: var(--tx2);
  font-size: 15px;
  line-height: 1.75;
}
.client-collab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.client-collab-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--cr2);
  border-radius: 18px;
  padding: 24px;
}
.client-collab-card strong {
  display: block;
  font-family: var(--ff);
  color: var(--tx);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.client-collab-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.client-collab-card li {
  display: flex;
  gap: 9px;
  color: var(--tx2);
  font-size: 13.5px;
  line-height: 1.55;
}
.client-collab-card li::before {
  content: '✓';
  color: var(--g);
  font-weight: 800;
  flex-shrink: 0;
}

/* ── EVENT TYPES ── */
.event-scope {
  margin-top: 36px;
  padding: 34px 38px;
  border: 1px solid var(--cr2);
  border-radius: var(--r2);
  background: linear-gradient(135deg, rgba(245,244,240,.78), rgba(255,255,255,.94));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 36px;
  align-items: center;
}
.event-scope-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 12px;
}
.event-scope-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--g);
  opacity: .45;
}
.event-scope h3 {
  font-family: var(--ff);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--tx);
  margin-bottom: 12px;
}
.event-scope p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--tx2);
  max-width: 620px;
}
.event-type-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.event-type-pill {
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(110,116,84,.16);
  border-radius: 999px;
  background: var(--w);
  color: var(--tx2);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
}
.eventbeeno-note {
  border-left: 2px solid var(--g);
  padding: 4px 0 4px 18px;
}
.eventbeeno-note strong {
  display: block;
  font-family: var(--ff);
  font-size: 23px;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 4px;
}
.eventbeeno-note span {
  display: block;
  color: var(--tx2);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ── HOW ── */
.how-top { text-align: center; margin-bottom: 68px; }
.how-top .sec-sub { margin: 18px auto 0; max-width: 660px; }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; position: relative;
}
.how-grid.onboarding-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}
.how-grid::before {
  content: ''; position: absolute; top: 38px;
  left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px; background: var(--cr2);
}
.how-grid.onboarding-grid::before { left: calc(10% + 20px); right: calc(10% + 20px); }
.how-step { text-align: center; }
.how-num {
  width: 76px; height: 76px; border-radius: 50%; background: var(--w);
  border: 1.5px solid var(--cr2); display: flex; align-items: center;
  justify-content: center; font-family: var(--ff); font-size: 22px;
  font-weight: 500; color: var(--g); margin: 0 auto 24px;
  position: relative; z-index: 1; transition: all .35s;
}
.how-step:hover .how-num {
  background: var(--g); color: var(--w); border-color: var(--g);
  box-shadow: 0 8px 24px rgba(110,116,84,.18);
}
.how-step h3 { font-family: var(--ff); font-size: 21px; font-weight: 600; margin-bottom: 8px; }
.how-step p { font-size: 14px; line-height: 1.65; color: var(--tx2); max-width: 250px; margin: 0 auto; }
.how-grid.onboarding-grid .how-step h3 { font-size: 19px; line-height: 1.2; }
.how-grid.onboarding-grid .how-step p { max-width: 190px; font-size: 13.5px; }
.onboarding-detail {
  margin: 42px auto 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.onboarding-detail-card {
  background: var(--w);
  border: 1px solid var(--cr2);
  border-radius: var(--r2);
  padding: 24px;
}
.onboarding-detail-card strong {
  display: block;
  font-family: var(--ff);
  font-size: 24px;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 12px;
}
.onboarding-detail-card ul { list-style: none; display: grid; gap: 9px; }
.onboarding-detail-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--tx2);
}
.onboarding-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--g);
  font-weight: 800;
}

/* ── PRICING ── */
.price-top { text-align: center; margin-bottom: 40px; }
.price-top .sec-sub { margin: 0 auto; }
.pricing-pending {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
  background: var(--w);
  border: 1.5px solid rgba(110,116,84,.16);
  border-radius: var(--r2);
  text-align: center;
  box-shadow: 0 22px 70px rgba(38,38,34,.08);
}
.pricing-pending .float-label { margin: 0 auto 14px; }
.pricing-pending h3 {
  font-family: var(--ff);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 12px;
}
.pricing-pending p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--tx2);
  font-size: 15px;
  line-height: 1.75;
}
.pricing-price {
  margin: 18px auto 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 18px 28px;
  border-radius: 18px;
  background: var(--gb);
  border: 1px solid var(--gb2);
}
.pricing-price strong {
  font-family: var(--ff);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: var(--g);
  font-weight: 600;
}
.pricing-price span {
  color: var(--tx2);
  font-size: 13px;
  line-height: 1.4;
}
.pricing-pending-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  text-align: left;
}
.pricing-pending-list li {
  border: 1px solid var(--cr2);
  border-radius: 14px;
  background: rgba(246,244,238,.62);
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--tx2);
}
.pricing-pending-list span:first-child {
  color: var(--g);
  font-weight: 800;
  margin-right: 6px;
}
.pilot-banner {
  max-width: 980px; margin: 0 auto 32px; padding: 28px;
  background: linear-gradient(135deg, rgba(110,116,84,.1), rgba(255,255,255,.72));
  border: 1.5px solid rgba(110,116,84,.22); border-radius: var(--r2);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  box-shadow: 0 18px 46px rgba(110,116,84,.08);
}
.pilot-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pilot-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  background: var(--gb);
  border: 1px solid var(--gb2);
  color: var(--g);
  font-family: var(--fs);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}
.pilot-banner h3 { font-family: var(--ff); font-size: clamp(26px, 3vw, 36px); font-weight: 600; color: var(--tx); }
.pilot-banner p { font-size: 14.5px; line-height: 1.75; color: var(--tx2); max-width: 720px; }
.pilot-status { margin-top: 18px; max-width: 360px; }
.pilot-status-row { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; font-weight: 700; color: var(--g); margin-bottom: 8px; }
.pilot-progress { height: 8px; border-radius: 20px; background: rgba(110,116,84,.14); overflow: hidden; }
.pilot-progress span { display: block; height: 100%; width: 100%; border-radius: inherit; background: var(--g); }
.price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; max-width: 1180px; margin: 0 auto; align-items: stretch; }
.price-card {
  background: var(--w); border-radius: var(--r2); padding: 28px 22px;
  border: 1.5px solid var(--cr2); position: relative; transition: all .4s;
  display: flex; flex-direction: column; min-height: 100%;
}
.price-card.popular { border-color: var(--g); background: linear-gradient(180deg, rgba(110,116,84,.08), #fff 34%); box-shadow: 0 16px 48px rgba(110,116,84,.12); }
.price-bar { height: 3px; border-radius: 3px; margin-bottom: 24px; }
.price-card.popular .price-bar { background: var(--g); }
.price-card:not(.popular) .price-bar { background: var(--cr2); }
.price-card h3 { font-family: var(--ff); font-size: 26px; font-weight: 600; margin-bottom: 14px; }
.price-badge {
  position: absolute; top: 18px; right: 18px; padding: 5px 10px;
  border-radius: 999px; background: var(--g); color: var(--w);
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.price-meta { display: grid; gap: 14px; margin-bottom: 24px; }
.price-meta-item { padding-bottom: 14px; border-bottom: 1px solid var(--cr); }
.price-label { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--tx3); margin-bottom: 5px; }
.price-value { display: block; font-family: var(--ff); font-size: 22px; font-weight: 600; color: var(--g); line-height: 1.1; }
.price-limit { display: block; font-size: 13px; line-height: 1.45; color: var(--tx2); }
.price-list { list-style: none; margin-bottom: 0; flex: 1; }
.price-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 0;
  font-size: 13.5px; color: var(--tx2); border-bottom: 1px solid var(--cr);
}
.price-list li svg { color: var(--g); flex-shrink: 0; margin-top: 2px; }
.price-btn {
  width: 100%; padding: 14px 18px; border-radius: 50px; font-size: 13.5px;
  font-weight: 600; cursor: pointer; font-family: var(--fs); transition: all .3s; border: none;
}
.price-btn.filled { background: var(--g); color: var(--w); }
.price-btn.filled:hover { background: var(--g2); }
.price-btn.outline { background: transparent; border: 1.5px solid var(--g); color: var(--g); }
.price-btn.outline:hover { background: var(--gb); }
.price-enterprise {
  max-width: 1180px; margin: 18px auto 0; padding: 18px 22px;
  border: 1px solid var(--cr2); border-radius: 14px; background: rgba(255,255,255,.58);
  text-align: center; font-size: 14px; color: var(--tx2); font-weight: 600;
}
.price-info {
  max-width: 980px; margin: 30px auto 0; padding: 24px;
  background: var(--w); border: 1px solid var(--cr2); border-radius: var(--r2);
}
.price-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.price-info-item { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; line-height: 1.55; color: var(--tx2); }
.price-info-item span:first-child { color: var(--g); font-weight: 800; }
.pricing-faq {
  max-width: 860px;
  margin: 42px auto 0;
  padding-top: 34px;
  border-top: 1px solid rgba(110,116,84,.14);
}
.pricing-faq h3 { font-family: var(--ff); font-size: 32px; font-weight: 600; text-align: center; margin-bottom: 18px; }
.pricing-faq-item {
  border-bottom: 1px solid var(--cr2); background: rgba(255,255,255,.48);
}
.pricing-faq-item:first-of-type { border-top: 1px solid var(--cr2); }
.pricing-faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 4px;
  font-size: 14.5px; font-weight: 700; color: var(--tx);
}
.pricing-faq-item summary::-webkit-details-marker { display: none; }
.pricing-faq-item summary::after { content: '+'; float: right; color: var(--g); font-size: 20px; line-height: 1; }
.pricing-faq-item[open] summary::after { content: '-'; }
.pricing-faq-item p { padding: 0 28px 18px 4px; font-size: 14px; line-height: 1.7; color: var(--tx2); }
.pricing-cta { display: flex; justify-content: center; gap: 14px; margin: 34px auto 0; max-width: 520px; }

@media (max-width: 1100px) {
  .how-grid.onboarding-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .how-grid.onboarding-grid::before { display: none; }
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; }
  .pilot-banner { grid-template-columns: 1fr; }
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 100px 48px;
  background: #ebe7dd;
  position: relative;
  border-top: 1px solid rgba(110,116,84,.12);
}
.contact-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text h2 { font-family: var(--ff); font-size: clamp(28px, 3vw, 42px); font-weight: 500; line-height: 1.2; color: var(--tx); margin-bottom: 18px; }
.contact-text p { font-size: 15px; line-height: 1.75; color: var(--tx2); margin-bottom: 32px; }
.contact-detail { display: flex; flex-direction: column; gap: 12px; }
.contact-detail-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--tx2); }
.contact-detail-item svg { color: var(--g); flex-shrink: 0; }
.contact-detail-item a { color: inherit; text-decoration: none; transition: color .2s; }
.contact-detail-item a:hover { color: var(--g); }
.contact-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-person strong {
  color: var(--tx);
  font-weight: 600;
}
.contact-person span {
  font-size: 12.5px;
  color: var(--tx3);
}
.contact-form-wrap { background: var(--w); border-radius: var(--r2); padding: 40px; border: 1px solid var(--cr2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx3); }
.form-group input { padding: 12px 14px; border: 1px solid var(--cr2); border-radius: 8px; font-family: var(--fs); font-size: 14px; color: var(--tx); background: var(--bg); outline: none; transition: border-color .2s; width: 100%; }
.form-group input:focus { border-color: var(--g); }
.form-group input::placeholder { color: var(--tx3); }
.form-submit { width: 100%; padding: 14px; background: var(--g); color: var(--w); border: none; border-radius: 50px; font-size: 14px; font-weight: 500; font-family: var(--fs); cursor: pointer; transition: all .3s; margin-top: 4px; }
.form-submit:hover { background: var(--g2); transform: translateY(-1px); }
.form-note { text-align: center; font-size: 12px; color: var(--tx3); margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success svg { color: var(--g); margin-bottom: 12px; }
.form-success h3 { font-family: var(--ff); font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--tx2); }

/* ── FOOTER ── */
footer { padding: 52px 48px 32px; border-top: 1px solid var(--cr2); }
.footer-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr 1fr; gap: 48px; }
.footer-brand { font-family: var(--ff); font-size: 23px; font-weight: 600; color: var(--g); margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: var(--tx3); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--tx); margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 13px; color: var(--tx2); text-decoration: none; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--g); }
.footer-copy {
  max-width: 1060px; margin: 28px auto 0; padding-top: 18px;
  border-top: 1px solid var(--cr2); font-size: 11.5px; color: var(--tx3);
  text-align: center; letter-spacing: .15px;
}
.footer-cookie-link {
  background: none; border: none; color: var(--tx3); font: inherit;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}
.footer-cookie-link:hover { color: var(--g); }

/* ── COOKIE CONSENT ── */
.cookie-consent {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 120;
  display: none; align-items: center; justify-content: space-between; gap: 18px;
  max-width: 820px; margin: 0 auto; padding: 14px 18px;
  background: rgba(255,255,255,.96); border: 1px solid var(--cr2);
  border-radius: 14px; box-shadow: 0 14px 42px rgba(0,0,0,.12);
  backdrop-filter: blur(18px);
}
.cookie-consent.open { display: flex; animation: fadeUp .35s ease; }
.cookie-copy { max-width: 500px; }
.cookie-copy h2 {
  font-family: var(--ff); font-size: 19px; font-weight: 600;
  line-height: 1.15; margin-bottom: 3px; color: var(--tx);
}
.cookie-copy p { font-size: 12px; line-height: 1.4; color: var(--tx2); }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-btn {
  min-height: 36px; padding: 8px 14px; border-radius: 50px;
  border: 1.5px solid var(--cr2); background: var(--w); color: var(--tx);
  font-family: var(--fs); font-size: 12.5px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.cookie-btn:hover { border-color: var(--gb2); background: var(--gb); }
.cookie-btn.primary { border-color: var(--g); background: var(--g); color: var(--w); }
.cookie-btn.primary:hover { background: var(--g2); border-color: var(--g2); transform: translateY(-1px); }
.cookie-btn.text { border-color: transparent; background: transparent; color: var(--tx2); }
.cookie-btn.text:hover { color: var(--g); background: var(--gb); }
.cookie-modal {
  position: fixed; inset: 0; z-index: 130; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(29,29,27,.34); backdrop-filter: blur(8px);
}
.cookie-modal.open { display: flex; }
.cookie-panel {
  width: min(100%, 560px); background: var(--w); border-radius: var(--r2);
  border: 1px solid var(--cr2); box-shadow: var(--shadow-lg);
  padding: 30px; color: var(--tx);
}
.cookie-panel h2 {
  font-family: var(--ff); font-size: 30px; font-weight: 600;
  line-height: 1.15; margin-bottom: 10px;
}
.cookie-panel > p { font-size: 14px; line-height: 1.65; color: var(--tx2); margin-bottom: 22px; }
.cookie-option {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
  padding: 16px 0; border-top: 1px solid var(--cr2);
}
.cookie-option:last-of-type { border-bottom: 1px solid var(--cr2); }
.cookie-option h3 { font-family: var(--ff); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.cookie-option p { font-size: 13px; line-height: 1.55; color: var(--tx2); }
.cookie-required {
  flex-shrink: 0; padding: 5px 10px; border-radius: 50px;
  background: var(--cr); color: var(--tx3); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}
.cookie-switch { position: relative; display: inline-flex; width: 48px; height: 28px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; inset: 0; border-radius: 50px; cursor: pointer;
  background: var(--cr2); transition: background .2s;
}
.cookie-slider::before {
  content: ''; position: absolute; width: 22px; height: 22px; left: 3px; top: 3px;
  border-radius: 50%; background: var(--w); box-shadow: 0 1px 4px rgba(0,0,0,.15);
  transition: transform .2s;
}
.cookie-switch input:checked + .cookie-slider { background: var(--g); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-panel-actions {
  display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; margin-top: 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 11px 20px; }
  .nav-right > .nav-links, .nav-right > .lang-sw, .nav-right > .nav-cta { display: none; }
  .mob-toggle { display: block; }
  .sec { padding: 64px 20px; }
  .section-problem::before,
  .section-features::before,
  .section-onboarding::before,
  .section-pricing::before,
  .contact-section::before,
  .arcade-section::before,
  .product-section::before {
    left: 20px;
    right: 20px;
  }
  section[id] { scroll-margin-top: 174px; }
  .hero { min-height: auto; padding: 104px 20px 52px; }
  .stats { gap: 10px; flex-wrap: wrap; margin-top: 36px; }
  .stats > div { width: calc(50% - 5px); min-height: 104px; padding: 14px 12px; }
  .stats > div:last-child { width: min(100%, 320px); }
  .prob-grid { grid-template-columns: 1fr; }
  .arcade-section { padding: 64px 20px; }
  .arcade-head h2 { font-size: 34px; }
  .arcade-head p { font-size: 14.5px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-top { margin-bottom: 42px; }
  .feat-card { padding: 26px; }
  .feat-icon { width: 48px; height: 48px; margin-bottom: 18px; }
  .feat-card-wide { flex-direction: column; align-items: flex-start !important; gap: 18px !important; }
  .client-collab { padding: 28px 22px; }
  .client-collab h3 { font-size: 30px; line-height: 1.08; }
  .client-collab-card { padding: 20px; }
  .client-collab-head,
  .client-collab-grid { grid-template-columns: 1fr; }
  .event-scope { grid-template-columns: 1fr; padding: 28px 24px; gap: 24px; }
  .event-type-list { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-grid::before { display: none; }
  .how-grid.onboarding-grid { grid-template-columns: 1fr; }
  .how-grid.onboarding-grid .how-step p { max-width: 300px; }
  .how-top { margin-bottom: 42px; }
  .how-num {
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    font-size: 18px;
  }
  .onboarding-detail { grid-template-columns: 1fr; margin-top: 32px; }
  .onboarding-detail-card { padding: 20px; }
  .pricing-pending { padding: 28px 20px; }
  .pricing-pending-list { grid-template-columns: 1fr; }
  .pricing-price { width: 100%; padding: 16px 18px; }
  .pilot-banner { padding: 24px 20px; }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; }
  .price-info-grid { grid-template-columns: 1fr; }
  .pricing-cta { flex-direction: column; }
  .contact-section { padding: 64px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .trust { padding: 26px 20px; }
  .cookie-consent {
    left: 10px; right: 10px; bottom: 10px; flex-direction: column;
    align-items: stretch; gap: 8px; padding: 12px;
    border-radius: 12px;
  }
  .cookie-copy h2 { display: none; }
  .cookie-copy p {
    font-size: 11.5px;
    line-height: 1.35;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .cookie-actions .cookie-btn {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11.5px;
  }
  .cookie-actions .cookie-btn.text {
    grid-column: 1 / -1;
    min-height: 18px;
    padding: 0;
    border-color: transparent;
  }
  .cookie-panel { padding: 24px; }
  .cookie-panel-actions .cookie-btn { flex: 1 1 100%; }
}

@media (max-width: 680px) {
  .arcade-head { margin-bottom: 22px; }
  .arcade-desktop { display: block; }
  .arcade-mobile-fallback { display: none; }
  .arcade-frame {
    border-radius: 12px;
    box-shadow: 0 16px 42px rgba(31,31,27,.12);
  }
  .arcade-mobile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }
  .arcade-mobile-card {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .arcade-mobile-card strong {
    font-size: 18px;
    line-height: 1.12;
    margin-bottom: 6px;
  }
  .arcade-mobile-card p {
    font-size: 12px;
    line-height: 1.45;
  }
  .arcade-cta-wrap { margin-top: 20px; }
  .arcade-cta { width: 100%; min-height: 46px; }
  .stats { display: none; }
}

.hidden { display: none; }
  /* ─── SECTION WRAPPER ─── */
  .product-section {
    padding: 108px 24px;
    max-width: none;
    margin: 0;
    position: relative;
    background: #fff;
    border-bottom: 1px solid rgba(110,116,84,.1);
  }
  .product-section > .product-intro,
  .product-section > .product-stage {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-label {
    font-family: var(--fs);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--ff);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
  }

  .section-title em {
    font-style: italic;
    color: var(--sage);
  }

  .section-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 64px;
  }

  /* ─── TABS ─── */
  .tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }

  .tab {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--fs);
  }
  .tab:hover { color: var(--text-dark); }
  .tab.active {
    color: var(--sage);
    border-bottom-color: var(--sage);
    font-weight: 500;
  }

  /* ─── MOCKUP CONTAINER ─── */
  .mockup-wrap {
    display: none;
    animation: fadeIn 0.3s ease;
  }
  .mockup-wrap.active { display: block; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .mockup-layout {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(660px, 1.28fr);
    gap: 56px;
    align-items: center;
  }
  .mockup-layout.reverse { direction: ltr; }
  .mockup-layout.reverse .mockup-text {
    grid-column: 2;
    grid-row: 1;
  }
  .mockup-layout.reverse .sv-shell {
    grid-column: 1;
    grid-row: 1;
  }

  .mockup-text { max-width: 440px; }
  .mockup-text h3 {
    font-family: var(--ff);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-dark);
  }
  .mockup-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .feature-list li {
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
  }

  /* ─── APP CHROME WRAPPER ─── */
  .app-chrome {
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,241,232,.94));
    border: 1px solid rgba(110,116,84,.16);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 28px 70px rgba(42,42,37,.14);
    position: relative;
  }

  .app-inner {
    background: var(--app-bg);
    border: 1px solid rgba(110,116,84,.12);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    height: 500px;
  }

  /* ─── APP SIDEBAR ─── */
  .app-sidebar {
    width: 178px;
    background: var(--app-sidebar);
    border-right: 1px solid var(--app-border);
    padding: 18px 12px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
  }
  .sidebar-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fs);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0 6px 16px;
    border-bottom: 1px solid var(--app-border);
    margin-bottom: 14px;
    letter-spacing: 0;
  }
  .sidebar-brand::before {
    content: 'S';
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sage);
    color: white;
    font-family: var(--ff);
    font-size: 17px;
    font-weight: 600;
  }
  .sidebar-section-label {
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 8px 8px 7px;
  }
  .sidebar-item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 8px 10px;
    margin-bottom: 3px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--text-mid);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  }
  .sidebar-item:hover { background: var(--app-sidebar-hover); color: var(--text-dark); }
  .sidebar-item.active {
    background: #e8ead8;
    color: var(--sage);
    box-shadow: inset 0 0 0 1px rgba(110,116,84,.12);
  }
  .sidebar-icon {
    width: 14px;
    height: 14px;
    opacity: 0.78;
    flex-shrink: 0;
  }
  .sidebar-item.active .sidebar-icon { opacity: 1; }

  /* ─── APP MAIN ─── */
  .app-main {
    flex: 1;
    background: var(--app-bg);
    overflow: hidden;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .app-page-title {
    font-family: var(--fs);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
  }
  .app-page-sub {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
  }
  .app-badge {
    font-size: 10px;
    padding: 6px 11px;
    border-radius: 20px;
    background: var(--sage-pale);
    color: var(--sage);
    font-weight: 700;
  }

  /* stat cards */
  .stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .stat-card {
    background: var(--app-white);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--app-border);
    box-shadow: 0 6px 18px rgba(42,42,37,.04);
  }
  .stat-card-label { font-size: 10px; color: var(--text-light); margin-bottom: 6px; }
  .stat-card-value {
    font-family: var(--fs);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
  }
  .stat-card-sub { font-size: 10px; color: var(--text-light); margin-top: 4px; }
  .stat-card.highlight .stat-card-value { color: var(--sage); }

  /* event list */
  .event-list { display: flex; flex-direction: column; gap: 7px; flex: 1; overflow: hidden; }
  .event-row {
    display: grid;
    grid-template-columns: 70px 1fr 80px 70px 60px;
    align-items: center;
    gap: 12px;
    background: var(--app-white);
    border: 1px solid var(--app-border);
    border-radius: 13px;
    padding: 11px 14px;
    font-size: 11px;
    box-shadow: 0 5px 16px rgba(42,42,37,.035);
  }
  .event-row.header {
    background: transparent;
    border: none;
    padding: 0 14px;
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .event-date { color: var(--text-light); font-size: 11px; }
  .event-name { font-weight: 500; color: var(--text-dark); font-size: 12px; }
  .event-venue { color: var(--text-mid); }
  .event-guests { color: var(--text-mid); }
  .status-pill {
    font-size: 9px;
    padding: 5px 9px;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
  }
  .status-confirmed { background: #e6edda; color: #526236; }
  .status-deposit   { background: #fff1d2; color: #8a6424; }
  .status-inquiry   { background: #ecebe6; color: #66635b; }
  .status-concept   { background: #eadff0; color: #6a4d78; }

  /* ─── CALENDAR MOCKUP ─── */
  .cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
  .cal-month { font-family: var(--fs); font-size: 15px; font-weight: 700; }
  .cal-nav { display: flex; gap: 6px; }
  .cal-nav button { width: 24px; height: 24px; border: 1px solid var(--app-border); border-radius: 8px; background: white; font-size: 10px; cursor: pointer; color: var(--text-mid); }
  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
  .cal-day-label { text-align: center; font-size: 9px; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 0; }
  .cal-day { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; color: var(--text-mid); border-radius: 10px; position: relative; cursor: pointer; padding: 2px; }
  .cal-day:hover { background: var(--sage-pale); }
  .cal-day.today { background: var(--sage); color: white; font-weight: 600; }
  .cal-day.has-event::after { content: ''; position: absolute; bottom: 2px; width: 4px; height: 4px; border-radius: 50%; background: var(--sage); }
  .cal-day.today::after { background: white; }
  .cal-day.event-day { background: var(--sage-pale); }
  .cal-day.dimmed { color: #ccc; }

  /* ─── DETAIL MOCKUP ─── */
  .detail-sections { display: flex; flex-direction: column; gap: 12px; }
  .detail-card { background: white; border: 1px solid var(--app-border); border-radius: 14px; padding: 16px; box-shadow: 0 6px 18px rgba(42,42,37,.035); }
  .detail-card-title { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 10px; }
  .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .detail-field-label { font-size: 10px; color: var(--text-light); margin-bottom: 2px; }
  .detail-field-value { font-size: 12px; color: var(--text-dark); font-weight: 400; }
  .detail-field-value.em { font-size: 13px; font-weight: 700; }
  .timeline { display: flex; flex-direction: column; gap: 6px; }
  .timeline-item { display: flex; gap: 10px; align-items: flex-start; }
  .timeline-dot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--sage); margin-top: 3px; flex-shrink: 0; }
  .timeline-dot.filled { background: var(--sage); }
  .timeline-text { font-size: 11px; color: var(--text-mid); }
  .timeline-time { font-size: 10px; color: var(--text-light); }

  /* ─── INVOICE MOCKUP ─── */
  .invoice-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
  .invoice-brand { font-family: var(--fs); font-size: 15px; font-weight: 700; }
  .invoice-meta { text-align: right; font-size: 11px; color: var(--text-mid); }
  .invoice-num { font-size: 12px; font-weight: 500; color: var(--text-dark); }
  .invoice-table { width: 100%; border-collapse: collapse; }
  .invoice-table th { text-align: left; font-size: 9px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); padding: 4px 0; border-bottom: 1px solid var(--app-border); }
  .invoice-table td { font-size: 11px; color: var(--text-mid); padding: 7px 0; border-bottom: 1px solid #f5f4f0; }
  .invoice-table td:last-child { text-align: right; color: var(--text-dark); font-weight: 500; }
  .invoice-total-row td { font-size: 13px; font-weight: 600; color: var(--text-dark); border-bottom: none; padding-top: 10px; }
  .invoice-payments { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
  .payment-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; padding: 9px 12px; border-radius: 12px; background: white; border: 1px solid var(--app-border); box-shadow: 0 5px 14px rgba(42,42,37,.03); }
  .payment-row .amount { font-weight: 600; color: var(--text-dark); }
  .paid-badge { font-size: 9px; padding: 4px 8px; border-radius: 999px; background: #e6edda; color: #526236; font-weight: 700; }
  .due-badge  { font-size: 9px; padding: 4px 8px; border-radius: 999px; background: #fff1d2; color: #8a6424; font-weight: 700; }

  /* ─── SEATING MOCKUP ─── */
  .seating-area { flex: 1; background: #f1eee5; border: 1px solid var(--app-border); border-radius: 16px; position: relative; display: flex; align-items: center; justify-content: center; padding: 16px; overflow: hidden; min-height: 220px; }
  .room-outline { position: absolute; inset: 14px; border: 1.5px dashed #c9c4b7; border-radius: 14px; }
  .dance-floor { position: absolute; width: 100px; height: 70px; left: 50%; transform: translateX(-50%); top: 50%; margin-top: -35px; border: 1.5px solid var(--sage-pale); border-radius: 12px; background: rgba(110,116,84,0.08); display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--sage); letter-spacing: 0.05em; }
  .table-circle { position: absolute; width: 54px; height: 54px; border-radius: 50%; background: white; border: 1.5px solid var(--app-border); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--text-mid); font-weight: 700; box-shadow: 0 6px 16px rgba(42,42,37,.08); cursor: pointer; transition: border-color 0.15s; }
  .table-circle:hover { border-color: var(--sage); }
  .table-circle.selected { border-color: var(--sage); background: var(--sage-pale); color: var(--sage); }
  .seat-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #ddd; border: 1px solid #ccc; }
  .seat-dot.occupied { background: var(--sage-pale); border-color: var(--sage); }
  .seat-dot.special  { background: #fdf3e0; border-color: #d4a040; }
  .seating-legend { display: flex; gap: 14px; margin-top: 8px; }
  .legend-item { display: flex; align-items: center; gap: 5px; font-size: 10px; color: var(--text-light); }
  .legend-dot { width: 8px; height: 8px; border-radius: 50%; }

  /* ─── CURRENT SVATBEENO MOCKUPS ─── */
  .sv-shell {
    background: #f7f6f3;
    border: 1px solid #deddd8;
    border-radius: 16px;
    box-shadow: 0 28px 74px rgba(38,38,34,.12);
    height: 520px;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 150px 1fr;
    color: #1f1f1d;
  }
  .sv-sidebar {
    background: #f2f1ee;
    border-right: 1px solid #deddd8;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .sv-brand {
    padding: 16px 12px 12px;
    border-bottom: 1px solid #e3e1dc;
  }
  .sv-brand-name {
    font-family: var(--ff);
    color: var(--sage);
    font-size: 23px;
    line-height: 1;
    font-weight: 700;
  }
  .sv-brand-sub {
    margin-top: 8px;
    font-size: 9px;
    color: #9b9a95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sv-side-back {
    padding: 13px 12px 10px;
    font-size: 10px;
    color: #999792;
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .sv-side-label {
    padding: 12px 12px 6px;
    color: #aaa8a2;
    font-size: 8px;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  .sv-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 7px;
  }
  .sv-nav-item {
    min-height: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 10px;
    color: #242421;
    font-size: 10.5px;
  }
  .sv-nav-item.active {
    background: #e9e7e1;
    color: var(--sage);
  }
  .sv-nav-item svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    stroke-width: 1.8;
  }
  .sv-user {
    margin-top: auto;
    padding: 12px;
    border-top: 1px solid #e3e1dc;
  }
  .sv-user strong { display: block; font-size: 10px; font-weight: 600; }
  .sv-user span { display: block; margin-top: 3px; font-size: 8px; color: #9b9a95; }
  .sv-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #faf9f7;
  }
  .sv-topbar {
    height: 36px;
    border-bottom: 1px solid #deddd8;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    flex-shrink: 0;
  }
  .sv-topbar span {
    font-size: 10.5px;
    font-weight: 600;
    color: #242421;
  }
  .sv-date {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f0efec;
    color: #9a9994;
    font-size: 9px;
  }
  .sv-content {
    padding: 26px 22px;
    overflow: hidden;
  }
  .sv-content.compact { padding: 20px 22px; }
  .sv-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--sage);
    font-size: 8px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .sv-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--sage);
    opacity: .45;
  }
  .sv-title {
    font-family: var(--ff);
    font-size: 27px;
    line-height: 1.05;
    font-weight: 700;
    color: #20201d;
  }
  .sv-subtitle {
    color: #9a9994;
    font-size: 10.5px;
    margin-top: 5px;
  }
  .sv-button {
    border: none;
    background: var(--sage);
    color: #fff;
    border-radius: 12px;
    padding: 9px 13px;
    font-size: 10.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .sv-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }
  .sv-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }
  .sv-stat {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 14px;
    padding: 10px;
    min-height: 64px;
  }
  .sv-stat-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f1f0ec;
    color: var(--sage);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-bottom: 8px;
  }
  .sv-stat-value {
    font-family: var(--ff);
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
  }
  .sv-stat-label {
    margin-top: 5px;
    color: #9a9994;
    font-size: 8.5px;
  }
  .sv-panel {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 16px;
    overflow: hidden;
  }
  .sv-panel-pad { padding: 15px; }
  .sv-panel-title {
    font-family: var(--ff);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .sv-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid #ededeb;
    border-left: 1px solid #ededeb;
  }
  .sv-cal-label,
  .sv-cal-day {
    min-height: 34px;
    border-right: 1px solid #ededeb;
    border-bottom: 1px solid #ededeb;
    padding: 7px;
    font-size: 9px;
  }
  .sv-cal-label {
    min-height: auto;
    text-align: center;
    color: #999792;
    text-transform: uppercase;
    font-size: 8px;
  }
  .sv-cal-day.dim { background: #f1f0ee; color: #c5c3bf; }
  .sv-cal-day.today span {
    display: inline-flex;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  .sv-detail-grid {
    display: grid;
    grid-template-columns: 1.55fr .85fr;
    gap: 14px;
  }
  .sv-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 18px;
    margin-top: 14px;
  }
  .sv-info {
    color: #777570;
    font-size: 10.5px;
  }
  .sv-info strong {
    color: #242421;
    font-weight: 600;
  }
  .sv-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #deddd8;
    border-radius: 999px;
    padding: 5px 10px;
    background: #f7f6f3;
    font-size: 9px;
    color: #777570;
  }
  .sv-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 18px;
  }
  .sv-mini-stat {
    border: 1px solid #deddd8;
    border-radius: 14px;
    padding: 10px;
    background: #fff;
  }
  .sv-mini-stat span { color: #9a9994; font-size: 8.5px; }
  .sv-mini-stat strong {
    display: block;
    font-family: var(--ff);
    font-size: 20px;
    line-height: 1;
    margin-top: 5px;
  }
  .sv-side-card {
    border: 1px solid #deddd8;
    border-radius: 16px;
    padding: 14px;
    background: #fff;
  }
  .sv-side-card .sv-line {
    padding: 9px 0;
    border-bottom: 1px solid #ecebe7;
    font-size: 10px;
  }
  .sv-side-card .sv-line:last-child { border-bottom: 0; }
  .sv-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 16px;
    overflow: hidden;
    display: table;
  }
  .sv-table th,
  .sv-table td {
    border-bottom: 1px solid #ecebe7;
    padding: 8px 9px;
    font-size: 10px;
    text-align: left;
  }
  .sv-table th {
    color: #9a9994;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 8px;
    font-weight: 600;
  }
  .sv-check {
    width: 11px;
    height: 11px;
    border-radius: 3px;
    border: 1px solid #aaa8a2;
    display: inline-block;
  }
  .sv-check.on { background: #1a73e8; border-color: #1a73e8; box-shadow: inset 0 0 0 2px #1a73e8; }
  .sv-search {
    border: 1px solid #deddd8;
    border-radius: 12px;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #aaa8a2;
    font-size: 10.5px;
    margin-bottom: 12px;
    max-width: 270px;
  }
  .sv-segments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0 18px;
  }
  .sv-segment {
    border: 1px solid #deddd8;
    border-radius: 999px;
    padding: 8px 13px;
    background: #fff;
    color: #242421;
    font-size: 11px;
  }
  .sv-segment.active {
    background: var(--sage);
    color: #fff;
    border-color: var(--sage);
  }
  .sv-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .sv-menu-row {
    border: 1px solid #deddd8;
    border-radius: 18px;
    background: #fff;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sv-menu-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0efec;
    color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sv-menu-name { font-size: 13px; font-weight: 700; }
  .sv-menu-price {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
  }
  .sv-menu-price span { color: #9a9994; font-weight: 400; }
  .sv-message-meta {
    text-align: right;
    color: #9a9994;
    font-size: 9px;
    margin-bottom: 6px;
  }
  .sv-message {
    margin-left: auto;
    width: fit-content;
    max-width: 210px;
    background: var(--sage);
    color: #fff;
    border-radius: 14px;
    padding: 10px 13px;
    font-size: 11px;
  }
  .sv-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #b7baa5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sv-doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sv-doc-card {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 16px;
    padding: 14px;
  }
  .sv-doc-head {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    min-height: 52px;
  }
  .sv-doc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0efec;
    color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .sv-doc-title { font-size: 12px; font-weight: 700; }
  .sv-doc-sub { font-size: 9px; color: #9a9994; margin-top: 4px; line-height: 1.4; }
  .sv-file {
    margin: 12px 0;
    background: #faf9f7;
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 9px;
    color: #242421;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sv-doc-actions {
    display: flex;
    gap: 8px;
  }
  .sv-doc-actions span {
    background: #f7f6f3;
    border-radius: 999px;
    padding: 7px 10px;
    color: #55534f;
    font-size: 9px;
    font-weight: 600;
  }
  .sv-placeholder {
    border: 1px dashed #d2d0c9;
    border-radius: 16px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9994;
    text-align: center;
    padding: 26px;
    background: #fff;
  }
  .sv-placeholder strong {
    display: block;
    color: #242421;
    font-family: var(--ff);
    font-size: 22px;
    margin-bottom: 6px;
  }

  /* ─── PRODUCT STORY ─── */
  .product-intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 46px;
  }
  .product-intro .section-sub { margin-bottom: 0; }
  .product-note {
    border-left: 2px solid var(--sage);
    padding-left: 22px;
    color: var(--text-mid);
    font-size: 14.5px;
    line-height: 1.7;
  }
  .product-note strong {
    display: block;
    color: var(--text-dark);
    font-family: var(--ff);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .product-stage {
    position: relative;
    min-height: 700px;
    margin-bottom: 44px;
  }
  .product-section-compact .product-stage {
    min-height: auto;
    margin-bottom: 0;
  }
  .product-window {
    position: relative;
    width: min(100%, 1120px);
    min-height: 570px;
    background: #f8faf7;
    border: 1px solid #d8ded4;
    border-radius: 22px;
    box-shadow: 0 34px 90px rgba(38,38,34,.13);
    overflow: hidden;
  }
  .product-window::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 42%);
  }
  .product-topbar {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e6e4df;
    padding: 0 22px;
    background: #fff;
  }
  .product-topbar strong {
    font-family: var(--ff);
    color: var(--sage);
    font-size: 26px;
    font-weight: 700;
  }
  .product-topbar span {
    color: #777570;
    font-size: 12px;
    font-weight: 600;
  }
  .product-app {
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 518px;
  }
  .product-side {
    background: #f2f1ee;
    border-right: 1px solid #e2e0da;
    padding: 22px 16px;
  }
  .product-side-label {
    color: #aaa8a2;
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin: 18px 10px 9px;
  }
  .product-nav-row {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    padding: 0 11px;
    color: #55534f;
    font-size: 13px;
  }
  .product-nav-row.active {
    background: #e7e6df;
    color: var(--sage);
    font-weight: 700;
  }
  .product-nav-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    opacity: .65;
  }
  .product-user {
    margin-top: 102px;
    border-top: 1px solid #dfddd6;
    padding: 16px 10px 0;
    color: #777570;
    font-size: 12px;
  }
  .product-user strong {
    display: block;
    color: #242421;
    font-size: 13px;
    margin-bottom: 3px;
  }
  .product-main {
    padding: 28px 30px 34px;
    background: #faf9f7;
  }
  .product-main-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
  }
  .product-kicker {
    color: var(--sage);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .product-main h3 {
    font-family: var(--ff);
    font-size: 38px;
    line-height: 1.05;
    color: #20201d;
    font-weight: 700;
  }
  .product-action {
    border: none;
    border-radius: 999px;
    background: var(--sage);
    color: #fff;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }
  .product-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px;
  }
  .product-metric {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 16px;
    padding: 15px;
  }
  .product-metric span {
    display: block;
    color: #999792;
    font-size: 11px;
    margin-bottom: 7px;
  }
  .product-metric strong {
    font-family: var(--ff);
    color: #242421;
    font-size: 32px;
    line-height: 1;
  }
  .product-board {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
    gap: 16px;
  }
  .product-panel {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 18px;
    padding: 18px;
  }
  .product-panel h4 {
    font-family: var(--ff);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 13px;
  }
  .product-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .product-calendar span {
    min-height: 28px;
    border-radius: 8px;
    background: #f7f6f3;
    color: #8f8d88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }
  .product-calendar .soft { background: #eeece6; color: #c1bfb9; }
  .product-calendar .busy { background: #e6ead6; color: var(--sage); font-weight: 700; }
  .product-event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .product-event-row {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #efede9;
  }
  .product-event-row:last-child { border-bottom: 0; }
  .product-event-date {
    color: #999792;
    font-size: 12px;
  }
  .product-event-name {
    color: #242421;
    font-size: 13px;
    font-weight: 700;
  }
  .product-event-type {
    color: #777570;
    font-size: 11px;
    margin-top: 2px;
  }
  .product-status {
    border-radius: 999px;
    background: #f0efec;
    color: #6f7356;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
  }
  .product-float {
    position: absolute;
    background: rgba(255,255,255,.96);
    border: 1px solid #deddd8;
    border-radius: 18px;
    box-shadow: 0 24px 66px rgba(38,38,34,.16);
    padding: 18px;
  }
  .product-float h4 {
    font-family: var(--ff);
    color: #20201d;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .product-float p {
    color: #777570;
    font-size: 12.5px;
    line-height: 1.55;
  }
  .float-client {
    right: 0;
    top: 148px;
    width: 300px;
  }
  .float-docs {
    right: 56px;
    bottom: 34px;
    width: 360px;
  }
  .float-label {
    display: inline-flex;
    border-radius: 999px;
    background: #eef0e4;
    color: var(--sage);
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .float-doc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }
  .float-doc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 12px;
    background: #faf9f7;
    padding: 10px 12px;
    color: #55534f;
    font-size: 12px;
  }
  .float-message {
    background: var(--sage);
    color: #fff;
    border-radius: 16px 16px 4px 16px;
    padding: 12px 14px;
    font-size: 12.5px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .overview-workspace {
    display: grid;
    gap: 17px;
  }
  .overview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
  }
  .overview-title h3 {
    font-family: var(--ff);
    font-size: 38px;
    line-height: 1.05;
    color: #20201d;
    font-weight: 700;
  }
  .overview-title p {
    color: #777570;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 7px;
  }
  .overview-stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }
  .overview-stat {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 14px;
    min-height: 82px;
    padding: 13px 12px;
  }
  .overview-stat strong {
    display: block;
    color: #242421;
    font-family: var(--ff);
    font-size: 29px;
    line-height: 1;
    margin-bottom: 7px;
  }
  .overview-stat span {
    color: #777570;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.25;
  }
  .overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 15px;
  }
  .overview-card {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 18px;
    overflow: hidden;
  }
  .overview-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 17px;
    border-bottom: 1px solid #e7e5df;
  }
  .overview-card-head h4 {
    font-family: var(--ff);
    color: #242421;
    font-size: 22px;
    line-height: 1.1;
  }
  .overview-card-head span {
    color: #999792;
    font-size: 11px;
    font-weight: 700;
  }
  .overview-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
    padding: 16px;
  }
  .overview-weekday {
    color: #aaa8a2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 5px;
  }
  .overview-day {
    min-height: 58px;
    border: 1px solid #efede9;
    border-radius: 12px;
    background: #faf9f7;
    padding: 7px;
    color: #777570;
    font-size: 11px;
    overflow: hidden;
  }
  .overview-day.muted {
    background: #f4f3ef;
    color: #c0bdb6;
  }
  .overview-day.selected {
    border-color: rgba(111,115,86,.45);
    box-shadow: inset 0 0 0 1px rgba(111,115,86,.25);
  }
  .overview-chip {
    display: block;
    margin-top: 5px;
    border-radius: 999px;
    background: #eef0e4;
    color: var(--sage);
    padding: 4px 6px;
    font-size: 9.5px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .overview-chip.soft {
    background: #f0efec;
    color: #777570;
  }
  .overview-day-panel {
    padding: 17px;
    display: grid;
    gap: 12px;
    align-content: start;
  }
  .overview-day-panel h4 {
    font-family: var(--ff);
    color: #242421;
    font-size: 22px;
    line-height: 1.1;
  }
  .overview-day-panel p {
    color: #777570;
    font-size: 12px;
    line-height: 1.5;
  }
  .overview-event-mini {
    border: 1px solid #e7e5df;
    border-radius: 14px;
    background: #faf9f7;
    padding: 12px;
  }
  .overview-event-mini strong {
    display: block;
    color: #242421;
    font-size: 12.5px;
    line-height: 1.3;
    margin-bottom: 5px;
  }
  .overview-event-mini span {
    color: #777570;
    font-size: 11px;
  }
  .overview-table-wrap {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 18px;
    overflow: hidden;
  }
  .overview-toolbar {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    gap: 10px;
    padding: 14px;
    border-bottom: 1px solid #e7e5df;
  }
  .overview-search,
  .overview-filter {
    min-height: 34px;
    border-radius: 10px;
    border: 1px solid #e5e2dc;
    background: #faf9f7;
    color: #777570;
    display: flex;
    align-items: center;
    padding: 0 11px;
    font-size: 11px;
    font-weight: 600;
  }
  .overview-table {
    min-width: 760px;
  }
  .overview-row {
    display: grid;
    grid-template-columns: minmax(150px, 1.4fr) 88px 96px minmax(130px, 1fr) 105px 105px 44px;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #efede9;
    color: #55534f;
    font-size: 11.5px;
  }
  .overview-row:last-child { border-bottom: 0; }
  .overview-row.header {
    background: #faf9f7;
    color: #aaa8a2;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .overview-event-title {
    color: #242421;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.25;
  }
  .overview-event-title small {
    display: inline-flex;
    margin-right: 7px;
    border-radius: 999px;
    background: #eef0e4;
    color: var(--sage);
    padding: 3px 6px;
    font-size: 8.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    vertical-align: middle;
  }
  .overview-contact {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .overview-pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    background: #eef0e4;
    color: var(--sage);
    padding: 6px 9px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
  }
  .overview-pill.pending {
    background: #f0efec;
    color: #777570;
  }
  .event-workspace {
    display: grid;
    gap: 18px;
  }
  .event-summary {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 20px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 26px;
    align-items: stretch;
  }
  .event-summary h3 {
    font-family: var(--ff);
    font-size: 38px;
    line-height: 1.05;
    color: #20201d;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .event-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    color: #777570;
    font-size: 13px;
  }
  .event-meta-grid strong { color: #242421; font-weight: 600; }
  .event-status-card {
    border: 1px solid #deddd8;
    border-radius: 18px;
    padding: 18px;
    background: #faf9f7;
  }
  .event-status-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e7e5df;
    color: #777570;
    font-size: 13px;
  }
  .event-status-row:last-child { border-bottom: 0; }
  .event-pill {
    border-radius: 999px;
    padding: 6px 10px;
    background: #eef0e4;
    color: var(--sage);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }
  .event-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .event-metric {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 16px;
    padding: 14px;
  }
  .event-metric span {
    display: block;
    color: #999792;
    font-size: 11px;
    margin-bottom: 7px;
  }
  .event-metric strong {
    font-family: var(--ff);
    color: #242421;
    font-size: 31px;
    line-height: 1;
  }
  .event-data-board {
    background: #fff;
    border: 1px solid #deddd8;
    border-radius: 20px;
    overflow: hidden;
  }
  .event-tabs {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid #e7e5df;
  }
  .event-tab {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 14px;
    color: #777570;
    font-size: 12px;
    font-weight: 700;
    background: #f6f5f2;
  }
  .event-tab.active {
    background: var(--sage);
    color: #fff;
  }
  .event-board-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, .9fr);
    gap: 18px;
    padding: 18px;
  }
  .guest-table {
    border: 1px solid #e7e5df;
    border-radius: 16px;
    overflow: hidden;
  }
  .guest-row {
    display: grid;
    grid-template-columns: 1.35fr .7fr .85fr .6fr .55fr;
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid #efede9;
    color: #242421;
    font-size: 12.5px;
  }
  .guest-row:last-child { border-bottom: 0; }
  .guest-row.header {
    background: #faf9f7;
    color: #999792;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .guest-row > span {
    padding: 0 12px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border: 1.5px solid #8f8d88;
    border-radius: 5px;
    color: transparent;
    font-size: 12px;
    line-height: 1;
  }
  .check.on {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
  }
  .event-mini-stack {
    display: grid;
    gap: 14px;
  }
  .mini-panel {
    border: 1px solid #e7e5df;
    border-radius: 16px;
    padding: 16px;
    background: #faf9f7;
  }
  .mini-panel h4 {
    font-family: var(--ff);
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .offer-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid #eceae5;
    color: #777570;
    font-size: 12px;
  }
  .offer-row:last-child { border-bottom: 0; }
  .offer-row strong {
    color: #242421;
    text-align: right;
  }
  .room-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #eceae5;
    font-size: 12px;
  }
  .room-row:last-child { border-bottom: 0; }
  .room-row strong { color: #242421; }
  .room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .room-tags span {
    border: 1px solid #deddd8;
    border-radius: 999px;
    background: #fff;
    padding: 5px 8px;
    color: #55534f;
  }
  .seat-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    align-items: center;
  }
  .seat-table {
    grid-column: 1 / -1;
    min-height: 64px;
    border-radius: 18px;
    border: 1px solid #deddd8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999792;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #fff;
  }
  .seat-card {
    border: 1px solid #deddd8;
    border-radius: 12px;
    background: #fff;
    padding: 9px;
    color: #242421;
    font-size: 12px;
  }
  .seat-card small {
    display: block;
    color: #777570;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .seat-note {
    display: block;
    color: #55534f;
    font-size: 10px;
    line-height: 1.25;
    margin-top: 4px;
  }
  .seat-card.diet .seat-note { color: #8f3636; }
  .seat-card.child .seat-note { color: #385f8f; }
  .seat-card.child { background: #eaf2ff; border-color: #bcd7ff; }
  .seat-card.diet { background: #ffe9e9; border-color: #ffc2c2; }
  .product-callout {
    position: relative;
    width: min(100%, 820px);
    margin: 28px auto 0;
    background: rgba(255,255,255,.97);
    border: 1px solid #deddd8;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(38,38,34,.10);
    padding: 28px 34px;
    text-align: center;
  }
  .product-callout .float-label { margin: 0 auto 14px; }
  .product-callout h4 {
    font-family: var(--ff);
    color: #20201d;
    font-size: clamp(26px, 2.6vw, 36px);
    line-height: 1.12;
    margin-bottom: 10px;
  }
  .product-callout p {
    color: #777570;
    font-size: 14px;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto;
  }
  .dual-view {
    margin: 26px 0 0;
    padding: 28px;
    border: 1px solid #deddd8;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,245,241,.96));
    box-shadow: 0 18px 46px rgba(38,38,34,.08);
  }
  .dual-view-head {
    display: grid;
    grid-template-columns: minmax(0, .48fr) minmax(0, .72fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 24px;
  }
  .dual-view-head .float-label { margin: 0 0 12px; }
  .dual-view h4 {
    font-family: var(--ff);
    color: #20201d;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.08;
  }
  .dual-view-head p {
    color: #777570;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 680px;
  }
  .dual-view-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }
  .dual-view-card {
    position: relative;
    border: 1px solid #d8ded4;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
  }
  .dual-view-card.client {
    background: #f8faf7;
  }
  .dual-client-window {
    background: #f8faf7;
  }
  .dual-client-topbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-bottom: 1px solid #e5e2dc;
    background: #fff;
  }
  .dual-client-topbar span {
    color: #777570;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
  }
  .dual-client-topbar strong {
    color: #242421;
    font-family: var(--ff);
    font-size: 16px;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
  }
  .dual-client-topbar .date-pill {
    border-radius: 999px;
    padding: 5px 9px;
    background: #f0efec;
  }
  .dual-ui-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    border-bottom: 1px solid #e8e5de;
    background: rgba(255,255,255,.82);
  }
  .dual-eyebrow {
    display: block;
    color: #8d8b85;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .dual-ui-head strong {
    display: block;
    color: #242421;
    font-size: 18px;
    line-height: 1.15;
  }
  .dual-status {
    flex-shrink: 0;
    border: 1px solid rgba(110,116,84,.22);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--sage);
    background: rgba(110,116,84,.08);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
  }
  .dual-list {
    display: grid;
    gap: 0;
  }
  .dual-row {
    display: grid;
    grid-template-columns: minmax(105px, .42fr) minmax(0, .9fr);
    gap: 14px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #eeeae3;
  }
  .dual-row:last-child { border-bottom: 0; }
  .dual-row b {
    color: #242421;
    font-size: 13px;
  }
  .dual-row span {
    color: #777570;
    font-size: 13px;
    line-height: 1.35;
  }
  .dual-client-portal {
    display: grid;
    grid-template-columns: 132px 1fr;
    min-height: 410px;
    background: #f8faf7;
  }
  .dual-client-side {
    padding: 18px 12px 16px;
    border-right: 1px solid #d8ded4;
    background: #f1f6ef;
  }
  .dual-client-brand {
    display: block;
    color: var(--sage);
    font-family: var(--ff);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 22px;
  }
  .dual-client-nav {
    display: grid;
    gap: 7px;
  }
  .dual-client-nav span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #34332f;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.25;
  }
  .dual-client-nav i {
    width: 14px;
    color: var(--sage);
    font-style: normal;
    font-size: 12px;
    text-align: center;
  }
  .dual-client-nav em { font-style: normal; }
  .dual-client-nav span.muted { color: #96948e; }
  .dual-client-main {
    padding: 20px 22px 18px;
  }
  .dual-client-hero {
    text-align: center;
    margin: 8px 0 16px;
  }
  .dual-client-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--sage);
    font-size: 14px;
    margin-bottom: 10px;
  }
  .dual-client-mark::before,
  .dual-client-mark::after {
    content: '';
    width: 42px;
    height: 1px;
    background: rgba(110,116,84,.34);
  }
  .dual-client-hero small {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    background: #ecebe7;
    color: #8d8b85;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .dual-client-hero strong {
    display: block;
    color: #242421;
    font-family: var(--ff);
    font-size: 31px;
    line-height: 1.05;
  }
  .dual-doc-card,
  .dual-task {
    border: 1px solid #deddd8;
    border-radius: 14px;
    background: #fff;
  }
  .dual-doc-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
  }
  .dual-doc-card b,
  .dual-task b {
    display: block;
    color: #242421;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 3px;
  }
  .dual-doc-card span,
  .dual-task span,
  .dual-portal-section p {
    color: #8d8b85;
    font-size: 12px;
    line-height: 1.35;
  }
  .dual-doc-card em {
    color: var(--sage);
    font-style: normal;
    font-size: 22px;
    line-height: 1;
  }
  .dual-portal-section {
    margin-top: 14px;
  }
  .dual-portal-section h5 {
    color: #242421;
    font-family: var(--ff);
    font-size: 21px;
    line-height: 1.1;
    margin-bottom: 3px;
  }
  .dual-task-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
  }
  .dual-task {
    padding: 13px 14px;
    min-height: 74px;
  }
  .dual-task.wide {
    grid-column: 1 / -1;
  }
  .dual-task .dual-task-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f0efec;
    color: var(--sage);
    font-size: 16px;
    margin-bottom: 8px;
  }
  .dual-client-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 10px;
    margin-top: 10px;
  }
  .dual-mini-panel {
    border: 1px solid #deddd8;
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    overflow: hidden;
  }
  .dual-mini-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
  }
  .dual-mini-head b {
    color: #242421;
    font-size: 13px;
    line-height: 1.15;
  }
  .dual-mini-head span {
    color: #8d8b85;
    font-size: 10.5px;
    line-height: 1.25;
    text-align: right;
  }
  .dual-mini-guest {
    border-top: 1px solid #eeeae3;
    padding: 8px 0;
  }
  .dual-mini-guest:last-child { padding-bottom: 0; }
  .dual-mini-guest strong {
    display: block;
    color: #242421;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .dual-mini-guest span {
    color: #8d8b85;
    display: block;
    font-size: 11px;
    line-height: 1.3;
  }
  .dual-seat-row {
    display: grid;
    gap: 7px;
  }
  .dual-seat-card {
    border: 1px solid #e2dfd8;
    border-radius: 12px;
    background: #faf9f6;
    padding: 8px 9px;
  }
  .dual-seat-card.diet {
    background: #fff7db;
    border-color: #e8c35e;
  }
  .dual-seat-card.allergy {
    background: #fff0f0;
    border-color: #ee9a9a;
  }
  .dual-seat-card small {
    display: block;
    color: #777570;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 3px;
  }
  .dual-seat-card strong {
    display: block;
    color: #242421;
    font-size: 12px;
    line-height: 1.15;
  }
  .dual-seat-card span {
    color: #6f6d68;
    display: block;
    font-size: 10.5px;
    line-height: 1.25;
    margin-top: 2px;
  }
  .dual-safe-note {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(110,116,84,.18);
    border-radius: 14px;
    color: #5b5f45;
    background: rgba(110,116,84,.07);
    font-size: 13px;
    line-height: 1.55;
  }
  .mobile-product-proof {
    display: none;
    margin-top: 16px;
    gap: 12px;
  }
  .product-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }
  .mobile-proof-card {
    border: 1px solid #deddd8;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
  }
  .mobile-proof-ui {
    padding: 14px;
    background: #f7f5f1;
    border-bottom: 1px solid #e5e2dc;
  }
  .mini-ui-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-size: 12px;
    margin-bottom: 10px;
  }
  .mini-ui-head strong {
    font-family: var(--ff);
    font-size: 18px;
    font-weight: 600;
  }
  .mini-ui-head span {
    border: 1px solid #d8d4cc;
    border-radius: 999px;
    padding: 4px 8px;
    background: #fff;
    color: var(--sage);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
  }
  .mini-event-row,
  .mini-data-row,
  .mini-report-row {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid #e4e1da;
    border-radius: 12px;
    background: #fff;
  }
  .mini-event-row + .mini-event-row,
  .mini-data-row + .mini-data-row,
  .mini-report-row + .mini-report-row { margin-top: 8px; }
  .mini-event-row b,
  .mini-data-row b,
  .mini-report-row b {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
  }
  .mini-event-row em,
  .mini-data-row em,
  .mini-report-row em {
    color: var(--text-mid);
    font-size: 11px;
    font-style: normal;
    line-height: 1.35;
  }
  .mini-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mini-data-row {
    min-height: 72px;
    align-content: center;
  }
  .mobile-proof-copy { padding: 16px; }
  .mobile-proof-card span {
    display: block;
    color: var(--sage);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .mobile-proof-card h4 {
    font-family: var(--ff);
    color: var(--text-dark);
    font-size: 23px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .mobile-proof-card p {
    color: var(--text-mid);
    font-size: 13px;
    line-height: 1.65;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1160px) {
    .mockup-layout,
    .mockup-layout.reverse {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .mockup-layout.reverse .mockup-text,
    .mockup-layout.reverse .sv-shell {
      grid-column: auto;
      grid-row: auto;
    }
    .mockup-text { max-width: 620px; }
    .product-intro { grid-template-columns: 1fr; gap: 28px; }
    .product-stage { min-height: auto; }
    .product-window { width: 100%; }
    .event-summary,
    .event-board-grid,
    .overview-grid { grid-template-columns: 1fr; }
    .overview-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-callout {
      width: auto;
      margin-top: 24px;
    }
    .dual-view-head {
      grid-template-columns: 1fr;
      gap: 14px;
      align-items: start;
    }
    .product-float {
      position: relative;
      inset: auto;
      width: auto;
      margin-top: 14px;
    }
  }

  @media (max-width: 768px) {
    .mockup-layout { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .app-sidebar { display: none; }
    .sv-shell { grid-template-columns: 1fr; height: 560px; }
    .sv-sidebar { display: none; }
    .sv-stat-grid, .sv-doc-grid { grid-template-columns: 1fr 1fr; }
    .sv-detail-grid { grid-template-columns: 1fr; }
    .product-section { padding: 64px 16px; }
    .product-app { grid-template-columns: 1fr; }
    .product-side { display: none; }
    .product-topbar {
      height: auto;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      padding: 13px 18px;
    }
    .product-topbar strong { font-size: 24px; }
    .product-topbar span { font-size: 11px; }
    .product-main { padding: 22px 18px; }
    .product-main-head { flex-direction: column; }
    .product-intro .section-sub,
    .product-note { display: none; }
    .product-stage {
      display: flex;
      flex-direction: column;
    }
    .product-window { display: none; }
    .mobile-product-proof,
    .product-proof-strip {
      order: -1;
      margin-bottom: 12px;
      gap: 10px;
    }
    .product-callout { display: none; }
    .overview-head { flex-direction: column; }
    .overview-title h3 { font-size: 31px; }
    .overview-title p { display: none; }
    .overview-stats { grid-template-columns: 1fr 1fr; }
    .overview-calendar { min-width: 620px; }
    .overview-card:first-child { overflow-x: auto; }
    .overview-toolbar { grid-template-columns: 1fr; }
    .overview-grid,
    .overview-table-wrap { display: none; }
    .mobile-product-proof,
    .product-proof-strip {
      display: grid;
      grid-template-columns: 1fr;
    }
    .mobile-proof-ui { padding: 12px; }
    .mini-ui-head { margin-bottom: 8px; }
    .mini-ui-head strong { font-size: 17px; }
    .mini-event-row,
    .mini-data-row,
    .mini-report-row {
      padding: 8px 10px;
      border-radius: 10px;
    }
    .mini-event-row + .mini-event-row,
    .mini-data-row + .mini-data-row,
    .mini-report-row + .mini-report-row { margin-top: 6px; }
    .mini-data-grid { gap: 6px; }
    .mini-data-row { min-height: 58px; }
    .mobile-proof-copy { padding: 12px 14px; }
    .mobile-proof-card span { margin-bottom: 6px; }
    .mobile-proof-card h4 { font-size: 18px; margin-bottom: 0; }
    .mobile-proof-card p { display: none; }
    .dual-view {
      padding: 18px;
      margin-top: 14px;
    }
    .dual-view h4 { font-size: 24px; }
    .dual-view-head {
      gap: 10px;
      margin-bottom: 16px;
    }
    .dual-view-head p { display: none; }
    .dual-view-grid { grid-template-columns: 1fr; }
    .dual-ui-head { padding: 16px; }
    .dual-ui-head strong { font-size: 17px; }
    .dual-row {
      grid-template-columns: 1fr;
      gap: 4px;
      padding: 12px 16px;
    }
    .dual-client-portal {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .dual-client-side { display: none; }
    .dual-client-main { padding: 16px; }
    .dual-client-hero {
      text-align: left;
      margin-top: 0;
    }
    .dual-client-hero strong { font-size: 24px; }
    .dual-task-grid { grid-template-columns: 1fr; }
    .dual-client-proof-grid { grid-template-columns: 1fr; }
    .dual-safe-note {
      margin-top: 12px;
      font-size: 12.5px;
    }
    .event-summary { padding: 18px; }
    .event-summary h3 { font-size: 31px; }
    .event-meta-grid,
    .event-metric-grid { grid-template-columns: 1fr 1fr; }
    .event-tabs { overflow-x: auto; }
    .event-tab { white-space: nowrap; }
    .guest-table { overflow-x: auto; }
    .guest-row { min-width: 660px; }
    .room-row { grid-template-columns: 1fr; }
    .seat-preview { grid-template-columns: 1fr 1fr; }
    .seat-table { grid-column: 1 / -1; }
    .product-metrics,
    .product-board { grid-template-columns: 1fr; }
    .prob-top { margin-bottom: 24px; }
    .prob-grid {
      gap: 8px;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
    }
    .prob-card {
      display: grid;
      grid-template-columns: 34px 1fr;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border: 1px solid var(--cr2);
      border-radius: 14px;
    }
    .prob-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      margin: 0;
      border-radius: 999px;
      background: var(--gb);
      color: var(--g);
      font-family: var(--fs);
      font-size: 11px;
      font-weight: 700;
      line-height: 1;
    }
    .prob-card h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.25;
    }
    .prob-card p { display: none; }
    .prob-card { min-height: auto; }
    .product-event-row { grid-template-columns: 1fr; gap: 5px; }
  }
/* ── VENUE OPERATIONS REFINEMENT ── */
:root {
  --g: #66704f;
  --g2: #4e573b;
  --gb: rgba(102,112,79,.07);
  --gb2: rgba(102,112,79,.16);
  --cr: #f3f7f2;
  --cr2: #dfe7dd;
  --band: #f8faf7;
  --paper: #ffffff;
  --bg: #ffffff;
  --tx: #20201d;
  --tx2: #5f625b;
  --tx3: #8d8d86;
  --r2: 16px;
  --graphite: #252721;
  --moss-deep: #4e573b;
  --ledger: #d8ded4;
}

body {
  background:
    linear-gradient(180deg, #fff 0%, #f8faf7 52%, #fff 100%);
}

.nav {
  padding: 16px 48px;
}
.nav.scrolled {
  background: rgba(255,255,255,.94);
}
.nav-logo {
  color: var(--graphite);
  font-size: 25px;
  letter-spacing: -.35px;
}
.nav-logo::after {
  content: 'venues';
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--ledger);
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tx3);
  transform: translateY(-1px);
}
.nav-links a {
  color: #51544c;
  font-weight: 600;
}
.nav-cta,
.btn-p,
.price-btn.filled,
.form-submit {
  background: var(--graphite);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(32,32,29,.12);
}
.nav-cta:hover,
.btn-p:hover,
.price-btn.filled:hover,
.form-submit:hover {
  background: var(--moss-deep);
  box-shadow: 0 14px 34px rgba(78,87,59,.18);
}
.btn-s,
.price-btn.outline {
  border-radius: 14px;
  background: rgba(255,255,255,.62);
}
.lang-sw,
.lang-btn,
.cookie-btn,
.cookie-required {
  border-radius: 12px;
}

.hero {
  min-height: 76vh;
  padding-top: 116px;
  background:
    linear-gradient(90deg, rgba(102,112,79,.05) 0 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f8faf7 100%);
  background-size: 76px 100%, auto;
}
.hero::before {
  top: 112px;
  right: 8vw;
  width: 360px;
  height: 360px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(102,112,79,.09), rgba(255,255,255,0));
  transform: rotate(8deg);
}
.hero-inner {
  max-width: 900px;
}
.hero-badge {
  margin-bottom: 24px;
  padding: 8px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  color: var(--moss-deep);
  letter-spacing: .18em;
}
.hero-badge::before {
  border-radius: 2px;
}
.hero h1 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(42px, 5.7vw, 70px);
  letter-spacing: -.025em;
}
.hero h1 em {
  display: inline-block;
  color: var(--moss-deep);
  font-style: normal;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: .05em;
  height: .16em;
  background: rgba(102,112,79,.14);
  z-index: -1;
}
.hero-sub {
  color: #62665f;
  max-width: 640px;
}
.hero-btns {
  margin-bottom: 32px;
}

.stats {
  display: none;
}
.hero-ops {
  width: min(100%, 780px);
  margin: 0 auto;
  opacity: 1;
  animation: none;
}
.hero-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--cr2);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: rgba(255,255,255,.66);
}
.hero-flow span {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-flow span + span {
  border-left: 1px solid var(--cr2);
}
.hero-flow span::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--g);
  opacity: .78;
}
.hero-dossier {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) 1fr;
  gap: 0;
  border: 1px solid var(--cr2);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 52px rgba(38,38,34,.07);
  overflow: hidden;
}
.dossier-head {
  padding: 20px 22px;
  border-right: 1px solid var(--cr2);
  text-align: left;
}
.dossier-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--tx3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.dossier-head strong {
  display: block;
  color: var(--graphite);
  font-family: var(--ff);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}
.dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dossier-grid div {
  padding: 20px 18px;
  text-align: left;
}
.dossier-grid div + div {
  border-left: 1px solid var(--cr2);
}
.dossier-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--tx3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.dossier-grid b {
  display: block;
  color: var(--tx);
  font-size: 13px;
  line-height: 1.35;
}

.trust {
  padding: 24px 48px;
  background: #f8faf7;
  color: #777970;
}
.sec,
.product-section,
.arcade-section,
.contact-section {
  padding-top: 92px;
  padding-bottom: 92px;
}
.section-problem,
.section-onboarding,
.contact-section {
  background: #f8faf7;
}
.arcade-section {
  background: #f7faf6;
}
.section-features,
.section-pricing,
.product-section {
  background: var(--paper);
}
.section-problem::before,
.section-features::before,
.section-onboarding::before,
.section-pricing::before,
.contact-section::before,
.arcade-section::before,
.product-section::before {
  left: 72px;
  right: 72px;
  background: rgba(32,32,29,.12);
}
.tag,
.section-label,
.float-label,
.client-collab-label,
.event-scope-label {
  color: var(--moss-deep);
  letter-spacing: .14em;
}
.divline {
  background: var(--graphite);
  opacity: .22;
}
.sec-h,
.section-title,
.arcade-head h2,
.contact-text h2,
.client-collab h3,
.event-scope h3,
.pricing-pending h3 {
  color: var(--graphite);
}
.section-title em {
  font-style: normal;
  color: var(--moss-deep);
}
.prob-grid {
  gap: 0;
  background: var(--ledger);
  border-radius: 16px;
}
.prob-card,
.feat-card,
.client-collab-card,
.event-scope,
.onboarding-detail-card,
.pricing-pending,
.contact-form-wrap,
.product-note,
.product-callout,
.dual-view,
.dual-view-card {
  border-color: var(--cr2);
  border-radius: 16px;
}
.prob-card {
  padding: 36px 32px;
}
.prob-num {
  font-family: var(--fs);
  font-size: 11px;
  font-weight: 800;
  color: var(--moss-deep);
  letter-spacing: .08em;
}
.prob-card h3,
.feat-card h3,
.how-step h3,
.onboarding-detail-card strong,
.client-collab-card strong {
  color: var(--graphite);
}
.feat-card,
.onboarding-detail-card,
.pricing-pending-list li,
.pricing-faq-item {
  background: rgba(255,255,255,.72);
}
.feat-icon {
  border-radius: 12px;
  background: rgba(102,112,79,.08);
}
.client-collab,
.event-scope {
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(244,241,234,.82));
}
.event-type-pill {
  border-radius: 12px;
}
.how-grid::before {
  background: var(--ledger);
}
.how-num {
  border-radius: 14px;
  border-color: var(--ledger);
  color: var(--moss-deep);
}
.how-step:hover .how-num {
  background: var(--graphite);
  border-color: var(--graphite);
}
.pricing-pending {
  text-align: left;
  box-shadow: 0 24px 62px rgba(38,38,34,.08);
}
.pricing-pending .float-label,
.pricing-pending p {
  margin-left: 0;
}
.pricing-price {
  margin-left: 0;
  align-items: flex-start;
  border-radius: 14px;
  background: rgba(102,112,79,.07);
}
.pricing-faq h3 {
  text-align: left;
}
.pricing-cta {
  justify-content: flex-start;
}
.sv-brand-name,
.sv-title,
.sv-panel-title,
.product-main h3,
.dual-ui-head strong,
.dual-client-brand,
.dual-client-hero strong {
  color: var(--graphite);
}
.sv-shell,
.product-window,
.dual-client-window {
  border-color: var(--ledger);
  box-shadow: 0 28px 74px rgba(38,38,34,.10);
}
.dual-client-mark {
  color: var(--moss-deep);
}
.contact-form-wrap {
  box-shadow: 0 20px 54px rgba(38,38,34,.08);
}
.form-group input {
  background: rgba(255,255,255,.76);
}
footer {
  background: #fff;
}

@media (max-width: 900px) {
  .nav-logo::after {
    display: none;
  }
  .hero {
    padding-top: 104px;
  }
  .hero h1 {
    font-size: clamp(35px, 10vw, 48px);
  }
  .hero-ops {
    margin-top: 8px;
  }
  .hero-flow {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }
  .hero-flow span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--cr2);
  }
  .hero-flow span:nth-child(4) {
    border-top: 1px solid var(--cr2);
  }
  .hero-dossier {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--cr2);
    border-radius: 16px;
    margin-top: 10px;
  }
  .dossier-head {
    border-right: 0;
    border-bottom: 1px solid var(--cr2);
  }
  .dossier-grid {
    grid-template-columns: 1fr;
  }
  .dossier-grid div + div {
    border-left: 0;
    border-top: 1px solid var(--cr2);
  }
  .pricing-cta {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .hero-badge {
    width: 100%;
    justify-content: center;
    font-size: 9.5px;
    letter-spacing: .12em;
  }
  .hero-flow {
    grid-template-columns: 1fr;
  }
  .hero-flow span + span,
  .hero-flow span:nth-child(3),
  .hero-flow span:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--cr2);
  }
  .hero-flow span {
    justify-content: flex-start;
  }
}

/* ── SIGNATURE VENUE LEDGER ── */
:root {
  --g: #4b6048;
  --g2: #244731;
  --gb: rgba(75,96,72,.07);
  --gb2: rgba(75,96,72,.16);
  --cr: #f1f5ef;
  --cr2: #d8ded4;
  --band: #f8faf7;
  --band2: #fbfcfa;
  --paper: #ffffff;
  --bg: #ffffff;
  --w: #ffffff;
  --tx: #1d211b;
  --tx2: #526052;
  --tx3: #828d80;
  --ff: 'Source Serif 4', Georgia, serif;
  --fs: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r2: 12px;
  --sage: #4b6048;
  --sage-light: #70836c;
  --sage-pale: #edf3eb;
  --cream: #f8faf7;
  --warm-white: #ffffff;
  --border: #d8ded4;
  --text-dark: #1d211b;
  --text-mid: #526052;
  --text-light: #828d80;
  --app-bg: #f8faf7;
  --app-sidebar: #ffffff;
  --app-sidebar-hover: #edf3eb;
  --app-white: #ffffff;
  --app-border: #d8ded4;
  --app-accent: #4b6048;
  --graphite: #1d211b;
  --moss-deep: #4b6048;
  --ledger: #d8ded4;
  --porcelain: #f8faf7;
  --ink-soft: #526052;
  --line-strong: #bdcbbd;
  --shadow-sm: 0 2px 8px rgba(18,30,18,.05);
  --shadow-md: 0 12px 34px rgba(18,30,18,.08);
  --shadow-lg: 0 28px 80px rgba(18,30,18,.12);
}

body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--fs);
}

.nav {
  padding: 18px 48px;
  background: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(216,222,212,.55);
  backdrop-filter: blur(18px);
}
.nav.scrolled {
  background: rgba(255,255,255,.94);
  border-bottom-color: var(--cr2);
}
.nav-logo,
.footer-brand {
  color: var(--graphite);
  font-family: var(--ff);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.04em;
}
.nav-logo::after {
  border-left-color: var(--line-strong);
  color: var(--moss-deep);
  font-family: var(--fs);
}
.nav-links a {
  color: var(--tx2);
  font-family: var(--fs);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: var(--moss-deep);
}

.nav-cta,
.btn-p,
.price-btn.filled,
.form-submit,
.arcade-cta {
  background: var(--graphite);
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
  font-family: var(--fs);
  font-weight: 600;
}
.nav-cta:hover,
.btn-p:hover,
.price-btn.filled:hover,
.form-submit:hover,
.arcade-cta:hover {
  background: var(--moss-deep);
  box-shadow: 0 14px 34px rgba(75,96,72,.14);
}
.btn-s,
.price-btn.outline {
  background: #fff;
  border: 1px solid var(--cr2);
  border-radius: 10px;
  color: var(--graphite);
  font-family: var(--fs);
  font-weight: 600;
}
.btn-s:hover,
.price-btn.outline:hover {
  background: var(--porcelain);
  border-color: var(--line-strong);
}
.lang-sw {
  background: var(--porcelain);
  border: 1px solid var(--cr2);
  border-radius: 10px;
}
.lang-btn {
  border-radius: 8px;
  font-family: var(--fs);
}
.lang-btn.active {
  color: var(--moss-deep);
  box-shadow: 0 1px 4px rgba(18,30,18,.08);
}

.hero {
  min-height: auto;
  padding: 142px 48px 84px;
  background:
    linear-gradient(90deg, rgba(75,96,72,.07) 0 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #fff 62%, #f8faf7 100%);
  background-size: 88px 100%, auto;
}
.hero::before {
  top: 116px;
  right: 5vw;
  width: 420px;
  height: 520px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(75,96,72,.08) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(75,96,72,.06) 0 1px, transparent 1px),
    rgba(248,250,247,.78);
  background-size: 64px 100%, 100% 48px, auto;
  border: 1px solid rgba(75,96,72,.10);
  transform: rotate(4deg);
}
.hero-inner {
  width: min(100%, 1240px);
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .6fr);
  gap: 48px;
  align-items: center;
  text-align: left;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-badge {
  margin-bottom: 22px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--cr2);
  border-radius: 10px;
  color: var(--moss-deep);
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.hero-badge::before {
  width: 8px;
  height: 8px;
  border: 1px solid var(--moss-deep);
  border-radius: 2px;
  background: transparent;
}
.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--graphite);
  font-family: var(--ff);
  font-size: 58px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: .98;
}
.hero h1 span,
.hero h1 em {
  white-space: nowrap;
}
.hero h1 em {
  display: inline;
  color: var(--moss-deep);
  font-style: normal;
}
.hero h1 em::after {
  content: none;
}
.hero-sub {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--tx2);
  font-family: var(--fs);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.72;
}
.hero-btns {
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero-ops {
  width: 100%;
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--ledger);
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(18,30,18,.12);
  position: relative;
  z-index: 2;
}
.hero-ops::before {
  content: 'VENUE LEDGER';
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0 10px 12px;
  color: var(--tx3);
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}
.hero-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--ledger);
  border-radius: 10px;
  background: var(--porcelain);
}
.hero-flow span {
  justify-content: flex-start;
  min-height: 48px;
  padding: 0 13px;
  color: var(--graphite);
  font-family: var(--fs);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
}
.hero-flow span + span {
  border-left-color: var(--ledger);
}
.hero-flow span::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--moss-deep);
  border-radius: 2px;
  background: #fff;
  opacity: 1;
}
.hero-dossier {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  margin-top: 12px;
  border: 1px solid var(--ledger);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}
.dossier-head {
  padding: 24px 22px;
  border-right: 1px solid var(--ledger);
}
.dossier-head span,
.dossier-grid span {
  color: var(--tx3);
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}
.dossier-head strong {
  color: var(--graphite);
  font-family: var(--ff);
  font-size: 34px;
  font-weight: 560;
  letter-spacing: -.04em;
  line-height: .96;
}
.dossier-head small {
  display: block;
  margin-top: 14px;
  color: var(--tx2);
  font-family: var(--fs);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
}
.dossier-grid {
  grid-template-columns: 1fr 1fr;
}
.dossier-grid div {
  min-height: 104px;
  padding: 20px 18px;
}
.dossier-grid div + div {
  border-left: 0;
}
.dossier-grid div:nth-child(even) {
  border-left: 1px solid var(--ledger);
}
.dossier-grid div:nth-child(n+3) {
  border-top: 1px solid var(--ledger);
}
.dossier-grid b {
  color: var(--graphite);
  font-family: var(--fs);
  font-size: 13px;
  font-weight: 700;
}

.trust {
  border-top: 1px solid var(--ledger);
  border-bottom: 1px solid var(--ledger);
  background: #fff;
  color: var(--tx2);
  font-family: var(--fs);
  font-size: 13px;
}

.sec,
.product-section,
.arcade-section,
.contact-section {
  padding-top: 94px;
  padding-bottom: 94px;
}
.section-problem,
.section-onboarding,
.contact-section,
.arcade-section {
  background: var(--porcelain);
}
.section-features,
.section-pricing,
.product-section,
footer {
  background: #fff;
}
.section-pricing {
  background: linear-gradient(180deg, #fff 0%, #f8faf7 100%);
}
.section-problem::before,
.section-features::before,
.section-onboarding::before,
.section-pricing::before,
.contact-section::before,
.arcade-section::before,
.product-section::before {
  background: var(--ledger);
  opacity: 1;
}

.tag,
.section-label,
.float-label,
.client-collab-label,
.event-scope-label,
.price-label,
.form-group label {
  color: var(--moss-deep);
  font-family: var(--fs);
  font-weight: 700;
  letter-spacing: .14em;
}
.sec-h,
.section-title,
.arcade-head h2,
.contact-text h2,
.pricing-pending h3,
.pricing-faq h3,
.pilot-banner h3 {
  color: var(--graphite);
  font-family: var(--ff);
  font-weight: 560;
  letter-spacing: -.035em;
}
.section-title em,
.hero h1 em {
  color: var(--moss-deep);
}
.sec-sub,
.section-sub,
.arcade-head p,
.contact-text p,
.pricing-pending p,
.pricing-faq-item p,
.footer-desc {
  color: var(--tx2);
  font-family: var(--fs);
}

.prob-grid {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--ledger);
  border-radius: 14px;
  background: var(--ledger);
}
.prob-card,
.feat-card,
.client-collab-card,
.event-scope,
.onboarding-detail-card,
.pricing-pending,
.pricing-pending-list li,
.pricing-faq-item,
.contact-form-wrap,
.product-note,
.product-callout,
.dual-view,
.dual-view-card,
.price-info-grid,
.cookie-banner,
.cookie-panel {
  border-color: var(--ledger);
  border-radius: 12px;
  background: #fff;
}
.prob-card {
  padding: 34px 30px;
}
.prob-num {
  color: var(--moss-deep);
  font-family: var(--fs);
  font-size: 11px;
  font-weight: 700;
}
.prob-card h3,
.feat-card h3,
.how-step h3,
.onboarding-detail-card strong,
.client-collab-card strong,
.product-main h3,
.sv-panel-title,
.dual-ui-head strong {
  color: var(--graphite);
  font-family: var(--fs);
  font-weight: 700;
}
.prob-card p,
.feat-card p,
.how-step p,
.onboarding-detail-card p,
.client-collab-card p {
  color: var(--tx2);
  font-family: var(--fs);
}
.feat-card,
.onboarding-detail-card,
.pricing-pending-list li,
.pricing-faq-item {
  background: #fff;
}
.feat-icon {
  background: var(--porcelain);
  border: 1px solid var(--ledger);
  border-radius: 10px;
  color: var(--moss-deep);
}
.client-collab,
.event-scope,
.pilot-banner {
  border-color: var(--ledger);
  background:
    linear-gradient(90deg, rgba(75,96,72,.055) 0 1px, transparent 1px),
    #fff;
  background-size: 72px 100%, auto;
}
.event-type-pill {
  border-color: var(--ledger);
  border-radius: 10px;
  background: #fff;
}
.how-grid::before,
.pilot-progress {
  background: var(--ledger);
}
.how-num {
  border-color: var(--ledger);
  border-radius: 10px;
  color: var(--moss-deep);
  font-family: var(--fs);
}
.how-step:hover .how-num,
.pilot-progress span {
  background: var(--moss-deep);
}

.pricing-pending {
  box-shadow: 0 24px 64px rgba(18,30,18,.08);
}
.pricing-price {
  border-color: var(--ledger);
  border-radius: 10px;
  background: var(--porcelain);
}
.pricing-price strong,
.price-value {
  color: var(--moss-deep);
  font-family: var(--ff);
}
.pricing-pending-list span:first-child,
.price-info-item span:first-child,
.price-list li svg {
  color: var(--moss-deep);
}

.sv-shell,
.product-window,
.dual-client-window {
  border-color: var(--ledger);
  border-radius: 14px;
  box-shadow: 0 28px 74px rgba(18,30,18,.10);
}
.sv-brand-name,
.sv-title,
.dual-client-brand,
.dual-client-hero strong {
  color: var(--graphite);
}
.sv-brand-name,
.sv-title,
.dual-client-brand {
  font-family: var(--fs);
  letter-spacing: -.01em;
}
.dual-client-hero strong {
  font-family: var(--ff);
}
.sv-sidebar,
.dual-client-top,
.dual-client-side {
  background: #fff;
}
.sv-main,
.dual-client-body,
.product-window {
  background: var(--porcelain);
}
.sv-nav-item.active,
.sidebar-item.active {
  background: var(--sage-pale);
  color: var(--moss-deep);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(75,96,72,.055) 0 1px, transparent 1px),
    var(--porcelain);
  background-size: 88px 100%, auto;
}
.contact-form-wrap {
  box-shadow: 0 20px 60px rgba(18,30,18,.10);
}
.form-group input {
  background: #fff;
  border-color: var(--ledger);
  border-radius: 10px;
  font-family: var(--fs);
}
.form-group input:focus {
  border-color: var(--moss-deep);
  box-shadow: 0 0 0 3px rgba(75,96,72,.10);
}

.cookie-banner {
  background: rgba(255,255,255,.97);
}
.cookie-copy h3,
.cookie-panel h2,
.cookie-option h3,
.form-success h3 {
  color: var(--graphite);
  font-family: var(--ff);
}
.cookie-btn,
.cookie-required {
  border-radius: 10px;
  font-family: var(--fs);
}
.cookie-btn.primary,
.cookie-switch input:checked + .cookie-slider {
  background: var(--moss-deep);
  border-color: var(--moss-deep);
}

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-copy,
  .hero-inner {
    text-align: center;
  }
  .hero h1,
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-ops {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 1240px) and (min-width: 1001px) {
  .hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 14px 20px;
  }
  .hero {
    padding: 108px 20px 58px;
    background-size: 64px 100%, auto;
  }
  .hero::before {
    display: none;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 1.04;
  }
  .hero h1 span {
    white-space: normal;
  }
  .hero h1 em {
    white-space: nowrap;
  }
  .hero-dossier {
    grid-template-columns: 1fr;
  }
  .dossier-head {
    border-right: 0;
    border-bottom: 1px solid var(--ledger);
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 680px) {
  .hero-badge {
    width: auto;
    max-width: 100%;
  }
  .hero-flow {
    grid-template-columns: 1fr 1fr;
  }
  .hero-flow span + span {
    border-top: 0;
  }
  .hero-flow span:nth-child(odd) {
    border-left: 0;
  }
  .hero-flow span:nth-child(n+3) {
    border-top: 1px solid var(--ledger);
  }
  .dossier-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dossier-grid div:nth-child(even) {
    border-left: 1px solid var(--ledger);
  }
  .dossier-grid div + div {
    border-top: 0;
  }
  .dossier-grid div:nth-child(n+3) {
    border-top: 1px solid var(--ledger);
  }
}

@media (max-width: 680px) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero {
    padding-bottom: 44px;
  }
  .hero-inner {
    gap: 30px;
  }
  .hero-sub {
    margin-bottom: 26px;
  }
  .hero-ops {
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(18,30,18,.09);
  }
  .hero-flow span {
    min-height: 42px;
    padding: 0 12px;
    font-size: 10px;
  }
  .dossier-head {
    padding: 18px 20px;
  }
  .dossier-head strong {
    font-size: 30px;
  }
  .dossier-grid div {
    min-height: 82px;
    padding: 14px 15px;
  }
  .dossier-grid b {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .trust {
    display: none;
  }

  .sec,
  .product-section,
  .arcade-section,
  .contact-section {
    padding: 54px 20px;
  }
  .sec-h,
  .section-title,
  .arcade-head h2,
  .contact-text h2,
  .pricing-pending h3,
  .pricing-faq h3 {
    font-size: 30px;
    line-height: 1.08;
  }
  .sec-sub,
  .section-sub,
  .arcade-head p {
    font-size: 14.5px;
    line-height: 1.58;
  }
  .prob-top,
  .feat-top,
  .how-top,
  .price-top {
    margin-bottom: 26px;
  }

  .prob-grid {
    border-radius: 12px;
  }
  .prob-card {
    padding: 20px 18px;
  }
  .prob-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.18;
  }
  .prob-card p {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .arcade-mobile-grid {
    gap: 0;
    border: 1px solid var(--ledger);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }
  .arcade-mobile-card {
    min-height: auto;
    padding: 15px 16px;
    border: 0;
    border-radius: 0;
  }
  .arcade-mobile-card + .arcade-mobile-card {
    border-top: 1px solid var(--ledger);
  }
  .arcade-mobile-card p {
    display: none;
  }

  .product-section {
    padding-top: 58px;
  }
  .product-intro {
    margin-bottom: 24px;
  }
  .product-stage-compact {
    gap: 18px;
  }
  .mobile-product-proof {
    gap: 12px;
  }
  .mobile-proof-card {
    border-radius: 12px;
  }
  .mobile-proof-ui {
    padding: 12px;
  }
  .mini-data-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mini-report-row:nth-of-type(3) {
    display: none;
  }
  .dual-view {
    display: none;
  }

  .client-collab {
    padding: 20px 18px;
  }
  .client-collab-head {
    gap: 8px;
    margin-bottom: 16px;
  }
  .client-collab-head p {
    display: none;
  }
  .client-collab-grid {
    gap: 10px;
  }
  .client-collab-card {
    padding: 15px 16px;
  }
  .client-collab-card ul {
    margin-top: 8px;
  }
  .client-collab-card li + li {
    margin-top: 5px;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .feat-card {
    min-height: 0;
    padding: 16px;
  }
  .feat-icon {
    display: none;
  }
  .feat-card h3 {
    font-size: 15px;
    line-height: 1.22;
    margin: 0;
  }
  .feat-card p {
    display: none;
  }
  .event-scope {
    padding: 16px;
    margin-top: 16px;
  }
  .event-scope h3,
  .event-scope p,
  .eventbeeno-note {
    display: none;
  }
  .event-type-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .event-type-pill {
    padding: 8px 9px;
    font-size: 12px;
    text-align: center;
  }

  .how-top {
    margin-bottom: 22px;
  }
  .how-grid,
  .how-grid.onboarding-grid {
    gap: 0;
    border: 1px solid var(--ledger);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }
  .how-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    text-align: left;
  }
  .how-step + .how-step {
    border-top: 1px solid var(--ledger);
  }
  .how-num {
    width: 34px;
    height: 34px;
    margin: 0;
    font-size: 11px;
  }
  .how-step h3,
  .how-grid.onboarding-grid .how-step h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
  }
  .how-step p {
    display: none;
  }
  .onboarding-detail {
    display: none;
  }

  .pricing-pending {
    padding: 22px 18px;
  }
  .pricing-pending h3 {
    margin-bottom: 18px;
  }
  .pricing-price {
    padding: 14px 16px;
  }
  .pricing-price strong {
    font-size: 34px;
    line-height: 1;
  }
  .pricing-pending p,
  .pricing-pending-list {
    display: none;
  }
  .pricing-faq {
    margin-top: 34px;
  }
  .pricing-faq h3 {
    margin-bottom: 12px;
    text-align: left;
  }
  .pricing-faq-item:nth-of-type(4),
  .pricing-faq-item:nth-of-type(5),
  .pricing-faq-item:nth-of-type(6) {
    display: none;
  }
  .pricing-faq-item summary {
    padding: 15px 4px;
    font-size: 14.5px;
    line-height: 1.25;
  }
  .pricing-cta {
    margin-top: 22px;
  }
}

.mobile-product-story {
  display: none;
}

@media (max-width: 680px) {
  .nav {
    padding: 10px 16px;
  }
  .nav.scrolled {
    padding: 9px 16px;
  }
  .nav-logo {
    font-size: 19px;
  }
  .mob-toggle {
    padding: 6px;
  }

  .hero {
    padding: 82px 16px 34px;
  }
  .hero-inner {
    gap: 20px;
  }
  .hero-badge {
    padding: 6px 12px;
    margin-bottom: 14px;
    font-size: 8.5px;
  }
  .hero h1 {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.05;
  }
  .hero-sub {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
  }
  .hero-btns {
    gap: 8px;
    margin-bottom: 18px;
  }
  .btn-p,
  .btn-s {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 11px 18px;
    font-size: 13px;
  }
  .hero-ops {
    padding: 9px;
    border-radius: 12px;
  }
  .hero-ops::before {
    height: 22px;
    padding: 0 6px 7px;
    font-size: 8.5px;
  }
  .hero-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hero-flow span {
    min-height: 34px;
    justify-content: center;
    padding: 0 4px;
    font-size: 8px;
    letter-spacing: .02em;
    text-align: center;
  }
  .hero-flow span::before {
    display: none;
  }
  .hero-flow span + span,
  .hero-flow span:nth-child(odd),
  .hero-flow span:nth-child(n+3) {
    border-top: 0;
    border-left: 1px solid var(--ledger);
  }
  .hero-flow span:first-child {
    border-left: 0;
  }
  .hero-dossier {
    margin-top: 8px;
    border-radius: 9px;
  }
  .dossier-head {
    padding: 13px 14px;
  }
  .dossier-head span,
  .dossier-grid span {
    margin-bottom: 4px;
    font-size: 8px;
    letter-spacing: .1em;
  }
  .dossier-head strong {
    font-size: 23px;
    letter-spacing: -.03em;
  }
  .dossier-head small {
    margin-top: 6px;
    font-size: 11px;
  }
  .dossier-grid div {
    min-height: 58px;
    padding: 10px 11px;
  }
  .dossier-grid b {
    font-size: 11px;
    line-height: 1.2;
  }

  .sec,
  .product-section,
  .arcade-section,
  .contact-section {
    padding: 42px 16px;
  }
  .sec-h,
  .section-title,
  .arcade-head h2,
  .contact-text h2,
  .pricing-pending h3,
  .pricing-faq h3 {
    font-size: 27px;
    line-height: 1.08;
  }
  .tag,
  .section-label,
  .float-label,
  .client-collab-label,
  .event-scope-label {
    margin-bottom: 10px;
    font-size: 9px;
  }
  .divline {
    margin-bottom: 14px;
  }

  .prob-top,
  .feat-top,
  .how-top,
  .price-top,
  .arcade-head {
    margin-bottom: 18px;
  }
  .prob-top .sec-sub {
    display: none;
  }
  .prob-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
    padding: 13px 14px;
  }
  .prob-card:nth-child(4) {
    display: none;
  }
  .prob-num {
    margin: 0;
  }
  .prob-card h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.22;
  }
  .prob-card p {
    display: none;
  }

  .arcade-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .arcade-head p {
    display: none;
  }
  .arcade-frame {
    border-radius: 10px;
  }
  .arcade-cta-wrap {
    margin-top: 14px;
  }

  .product-section {
    padding-top: 42px;
  }
  .product-intro {
    margin-bottom: 14px;
  }
  .product-intro .section-sub {
    display: none;
  }
  .mobile-product-story {
    display: block;
    margin: 0;
    color: var(--tx2);
    font-size: 14px;
    line-height: 1.5;
  }
  .product-stage-compact {
    gap: 12px;
  }
  .mobile-product-proof,
  .product-proof-strip {
    gap: 8px;
    margin-bottom: 0;
  }
  .mobile-proof-card {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mobile-proof-card:nth-child(n+2) .mobile-proof-ui {
    display: none;
  }
  .mobile-proof-ui {
    padding: 10px;
  }
  .mini-ui-head {
    margin-bottom: 6px;
  }
  .mini-ui-head strong {
    font-size: 15px;
  }
  .mini-event-row,
  .mini-data-row,
  .mini-report-row {
    padding: 7px 8px;
  }
  .mini-event-row + .mini-event-row,
  .mini-data-row + .mini-data-row,
  .mini-report-row + .mini-report-row {
    margin-top: 5px;
  }
  .mobile-proof-copy {
    padding: 11px 12px;
  }
  .mobile-proof-card span {
    margin-bottom: 4px;
    font-size: 8.5px;
  }
  .mobile-proof-card h4 {
    font-size: 16px;
    line-height: 1.18;
  }

  .section-features {
    padding-top: 40px;
  }
  .client-collab,
  .event-scope {
    display: none;
  }
  .feat-top .sec-sub {
    display: none;
  }
  .feat-grid {
    gap: 8px;
    margin-top: 0;
  }
  .feat-card {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 13px 12px;
  }
  .feat-card h3 {
    font-size: 14px;
  }

  .how-step {
    grid-template-columns: 36px 1fr;
    padding: 12px 14px;
  }
  .how-num {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .how-step h3,
  .how-grid.onboarding-grid .how-step h3 {
    font-size: 15px;
  }

  .pricing-pending {
    padding: 18px 16px;
  }
  .pricing-pending h3 {
    margin-bottom: 12px;
  }
  .pricing-price {
    width: 100%;
    margin: 0;
    padding: 12px 14px;
  }
  .pricing-price strong {
    font-size: 29px;
  }
  .pricing-price span {
    font-size: 12px;
  }
  .pricing-faq {
    margin-top: 24px;
    padding-top: 22px;
  }
  .pricing-faq-item:nth-of-type(n+4) {
    display: none;
  }
  .pricing-faq-item summary {
    padding: 13px 4px;
    font-size: 13.5px;
  }
  .pricing-cta {
    margin-top: 18px;
    gap: 8px;
  }

  .contact-section {
    padding-top: 42px;
    padding-bottom: 34px;
  }
  .contact-inner {
    gap: 22px;
  }
  .contact-text p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.55;
  }
  .contact-detail {
    gap: 8px;
  }
  .contact-detail-item {
    font-size: 12.5px;
  }
  .contact-detail-item:last-child {
    display: none;
  }
  .contact-form-wrap {
    padding: 17px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .form-group {
    margin-bottom: 10px;
  }
  .form-group label {
    font-size: 9px;
  }
  .form-group input {
    padding: 10px 11px;
    font-size: 13px;
  }
  .form-submit {
    padding: 12px 14px;
    font-size: 13px;
  }
  .form-note {
    margin-top: 8px;
  }

  footer {
    padding: 34px 16px 24px;
  }
  .footer-inner {
    gap: 16px;
  }
  .footer-desc {
    max-width: none;
  }
  .footer-copy {
    margin-top: 18px;
  }
}

/* ── FINAL MOBILE TIGHTENING ── */
@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .nav,
  .hero,
  .trust,
  .sec,
  .arcade-section,
  .product-section,
  .contact-section,
  footer {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    padding: 78px 16px 30px;
    background-size: 64px 100%, auto;
  }
  .hero-inner {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: center;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-badge {
    width: auto;
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }
  .hero h1 {
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 7.4vw, 32px);
    line-height: 1.08;
    overflow-wrap: normal;
  }
  .hero h1 span,
  .hero h1 em {
    white-space: normal;
  }
  .hero h1 .mobile-line {
    display: block;
  }
  .hero h1 em {
    display: block;
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    width: 100%;
  }
  .btn-p,
  .btn-s,
  .arcade-cta,
  .price-btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-ops {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    overflow: hidden;
  }
  .hero-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-flow span {
    min-width: 0;
    min-height: 34px;
    padding: 0 6px;
    font-size: 7.2px;
    letter-spacing: .04em;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.15;
  }
  .hero-flow span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--ledger);
  }
  .hero-flow span:nth-child(4) {
    border-top: 1px solid var(--ledger);
  }
  .hero-dossier,
  .dossier-grid,
  .dossier-grid div {
    min-width: 0;
  }
  .dossier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dossier-grid div {
    min-height: 64px;
  }
  .dossier-grid div + div {
    border-top: 0;
  }
  .dossier-grid div:nth-child(odd) {
    border-left: 0;
  }
  .dossier-grid div:nth-child(n+3) {
    border-top: 1px solid var(--ledger);
  }
  .dossier-grid b {
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: 9px;
    line-height: 1.18;
  }

  .trust {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.5;
  }

  .sec,
  .arcade-section,
  .product-section,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sec-h,
  .section-title,
  .arcade-head h2,
  .contact-text h2,
  .pricing-pending h3,
  .pricing-faq h3 {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .tag,
  .section-label,
  .float-label {
    text-align: center;
  }
  .divline {
    margin-left: auto;
    margin-right: auto;
  }

  .prob-grid,
  .feat-grid,
  .how-grid,
  .pricing-pending,
  .pricing-faq,
  .contact-inner,
  .contact-form-wrap {
    width: 100%;
    max-width: 100%;
  }
  .prob-card:nth-child(3) {
    display: none;
  }

  .arcade-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .arcade-frame,
  .demo-video-frame {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
  .arcade-frame video {
    width: 100%;
    height: 100%;
  }

  .product-section {
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .product-intro {
    text-align: center;
  }
  .product-section .section-title em {
    display: block;
  }
  .mobile-product-story {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
  }
  .mobile-product-proof,
  .product-proof-strip {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .mobile-proof-card:nth-child(3) {
    display: none;
  }
  .dual-view {
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .dual-view-head {
    display: none;
  }
  .dual-view-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .dual-view-card {
    border-radius: 12px;
  }
  .dual-ui-head {
    min-height: 78px;
    padding: 12px;
  }
  .dual-ui-head strong {
    font-size: 15px;
  }
  .dual-status,
  .dual-list,
  .dual-client-topbar,
  .dual-client-hero,
  .dual-portal-section p,
  .dual-task span {
    display: none;
  }
  .dual-client-portal {
    min-height: auto;
  }
  .dual-client-main {
    padding: 12px;
  }
  .dual-portal-section {
    margin: 0;
  }
  .dual-portal-section h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .dual-task-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 0;
  }
  .dual-task {
    min-height: 0;
    padding: 9px 10px;
  }
  .dual-task .dual-task-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
    border-radius: 8px;
    font-size: 12px;
  }
  .dual-task b {
    margin: 0;
    font-size: 12px;
  }

  .feat-card {
    gap: 11px;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .feat-icon {
    width: 36px;
    height: 36px;
    margin: 0;
  }
  .feat-icon svg {
    width: 20px;
    height: 20px;
  }
  .feat-card p {
    display: none;
  }

  .section-onboarding {
    padding-top: 38px;
  }
  .how-top .sec-sub {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .how-grid {
    gap: 0;
  }
  .how-step:nth-child(5) {
    display: none;
  }

  .section-pricing {
    padding-top: 40px;
  }
  .price-top .sec-sub {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .pricing-pending h3 {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .pricing-price strong {
    font-size: clamp(25px, 7.4vw, 29px);
    white-space: nowrap;
  }
  .pricing-price span {
    display: none;
  }

  .contact-text {
    text-align: center;
  }
  .contact-text p {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-detail {
    align-items: center;
  }
  .contact-detail-item {
    max-width: 100%;
  }
  .contact-detail-item a,
  .contact-person strong,
  .contact-person span {
    overflow-wrap: anywhere;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    max-width: calc(100vw - 20px);
  }
  .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-actions .cookie-btn {
    min-width: 0;
  }
  .footer-copy {
    overflow-wrap: anywhere;
  }
}
