/* ============================================================
   CM.com Tables — Static stylesheet
   Brand: CM.com Design System (purple #6610F2 / blue #007FFF /
   cyan #04E4F4 / orange CTA #FFA400 / ink #101E1E)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --color-purple:        #6610F2;
  --color-purple-hover:  #5D11DC;
  --color-blue:          #007FFF;
  --color-cyan:          #04E4F4;
  --color-cyan-bright:   #36E9F6;
  --color-orange:        #FFA400;
  --color-ink:           #101E1E;
  --color-body:          #344055;
  --color-muted:         #707988;
  --color-line:          #EDEEF0;
  --color-surface:       #F7F6FC;
  --color-dark:          #0E0A24;

  --hero-gradient:   linear-gradient(125deg, #160F38 0%, #251662 42%, #3A1E8A 78%, #4C14B1 108%);
  --brand-gradient:  linear-gradient(135deg, #6610F2 0%, #007FFF 100%);
  --footer-gradient: linear-gradient(135deg, #211B48 0%, #4C14B1 100%);

  --radius-card: 16px;
  --radius-lg:   24px;
  --radius-pill: 9999px;

  --shadow-card: 0 24px 56px rgba(16, 30, 30, .12);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, .45);

  --maxw: 1200px;
  --maxw-narrow: 1100px;
  --pad-x: 32px;
  --section-y: 96px;

  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ---------- Reusable layout ---------- */
.container       { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.container--narrow { max-width: var(--maxw-narrow); }
.section         { padding: var(--section-y) 0; }
.section--light  { background: #fff; }
.section--surface{ background: var(--color-surface); }
.section--dark   { background: var(--color-dark); color: #fff; }

.eyebrow {
  font-weight: 700; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; margin: 0 0 16px;
}
.eyebrow--purple { color: var(--color-purple); }
.eyebrow--cyan   { color: var(--color-cyan-bright); }

.section-heading {
  font-weight: 900; line-height: 1.05; letter-spacing: -.025em;
  margin: 0; text-wrap: balance;
  font-size: clamp(32px, 3.6vw, 48px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; cursor: pointer;
  border-radius: var(--radius-pill); border: none;
  transition: filter .2s var(--ease), transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn__chevron { font-weight: 900; }
.btn--primary { background: var(--color-purple); color: #fff; padding: 10px 21px; font-size: 14px; }
.btn--primary:hover { background: var(--color-purple-hover); }
.btn--cta { background: var(--color-orange); color: var(--color-ink); padding: 16px 28px; font-size: 16px; }
.btn--cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; padding: 16px 26px; font-size: 16px; border: 1px solid rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--block { width: 100%; padding: 16px; font-size: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px; height: 74px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo { height: 32px; display: block; }
.brand__divider { width: 1px; height: 22px; background: #D8DBE0; }
.brand__name { font-weight: 800; font-size: 18px; letter-spacing: -.02em; }

.main-nav { display: flex; gap: 4px; margin-left: 10px; }
.main-nav__link {
  font-weight: 600; font-size: 14px; text-decoration: none;
  padding: 9px 13px; border-radius: 8px; transition: background .2s var(--ease);
}
.main-nav__link:hover { background: var(--color-surface); }

.header-spacer { flex: 1; }

.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: #F0F1F4; border-radius: var(--radius-pill); padding: 3px;
}
.lang-switch__btn {
  border: none; background: transparent; color: var(--color-muted);
  border-radius: var(--radius-pill); padding: 6px 13px;
  font-family: inherit; font-weight: 700; font-size: 13px; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-switch__btn[aria-pressed="true"] { background: var(--color-purple); color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--hero-gradient); color: #fff; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(20px); pointer-events: none; }
.hero__glow--violet { top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(110,23,217,.55), transparent 68%); }
.hero__glow--cyan   { bottom: -180px; left: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(4,228,244,.22), transparent 70%); }
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.02fr 1fr;
  gap: 56px; align-items: center; padding: 84px var(--pad-x) 96px;
}
.hero__title {
  font-weight: 900; line-height: 1.02; letter-spacing: -.025em;
  margin: 0 0 22px; text-wrap: balance;
  font-size: clamp(40px, 5vw, 66px);
}
.hero__body { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.86); max-width: 470px; margin: 0 0 34px; }
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__visual { position: relative; }

/* ---------- Floor-plan mockup (hero) ---------- */
.floorplan-card { background: #fff; border-radius: 18px; box-shadow: 0 30px 70px rgba(11,7,40,.45); overflow: hidden; color: var(--color-ink); }
.floorplan-card__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--color-line); background: #FAFAFB; }
.floorplan-card__title { margin-left: 10px; font-weight: 700; font-size: 12.5px; color: var(--color-body); }
.floorplan-card__live { font-weight: 700; font-size: 11px; color: var(--color-purple); background: rgba(102,16,242,.08); padding: 4px 9px; border-radius: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #FF5F57; } .dot--amber { background: #FEBC2E; } .dot--green { background: #28C840; }

.floorplan-canvas {
  position: relative; height: 344px;
  background:
    radial-gradient(circle at 50% 38%, #F3F1FB 0%, #FBFBFD 70%),
    linear-gradient(#EEEFF3 1px, transparent 1px),
    linear-gradient(90deg, #EEEFF3 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px, 32px 32px;
}
.fp-booth { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 150px; height: 30px; border-radius: 8px; background: var(--color-ink); color: #fff; font-weight: 700; font-size: 10px; letter-spacing: .12em; display: flex; align-items: center; justify-content: center; }
.fp-floor { position: absolute; top: 64px; left: 50%; transform: translateX(-50%); width: 188px; height: 112px; border-radius: 12px; border: 1.5px dashed #C7B8F2; background: rgba(102,16,242,.05); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 10px; letter-spacing: .12em; color: #8540F5; }

.fp-table { position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.fp-table small { font-size: 8px; font-weight: 600; }
.fp-table--booked    { background: var(--color-purple); color: #fff; box-shadow: 0 6px 16px rgba(102,16,242,.35); }
.fp-table--booked small { opacity: .85; }
.fp-table--selected  { background: #fff; border: 2.5px solid var(--color-orange); box-shadow: 0 8px 20px rgba(255,164,0,.4); color: var(--color-ink); }
.fp-table--selected small { color: #E79603; font-weight: 700; }
.fp-table--hold      { background: #fff; border: 2px solid #05CFDE; color: #0B8C97; }
.fp-table--available { background: #fff; border: 1.5px solid #C9CDD4; color: var(--color-muted); font-size: 12px; }
.fp-table--sq    { border-radius: 11px; }
.fp-table--round { border-radius: 50%; }

.floorplan-card__legend { display: flex; align-items: center; gap: 18px; padding: 12px 16px; border-top: 1px solid var(--color-line); flex-wrap: wrap; }
.legend-item { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--color-body); }
.legend-swatch { width: 11px; height: 11px; border-radius: 3px; }
.legend-swatch--booked { background: var(--color-purple); }
.legend-swatch--hold { background: #fff; border: 2px solid #05CFDE; }
.legend-swatch--avail { background: #fff; border: 1.5px solid #C9CDD4; }
.floorplan-card__revenue { font-weight: 800; font-size: 12px; color: var(--color-ink); }

.booking-chip {
  position: absolute; bottom: -26px; left: -26px; background: #fff;
  border-radius: 14px; box-shadow: 0 18px 40px rgba(11,7,40,.28);
  padding: 13px 16px; display: flex; align-items: center; gap: 12px;
  animation: float-y 5s ease-in-out infinite;
}
.booking-chip__icon { width: 34px; height: 34px; border-radius: 50%; background: var(--brand-gradient); display: flex; align-items: center; justify-content: center; }
.booking-chip__title { display: block; font-weight: 800; font-size: 13px; color: var(--color-ink); }
.booking-chip__sub { font-size: 11px; color: var(--color-muted); }

/* icon helpers */
.icon { display: block; }
.icon--invert { filter: brightness(0) invert(1); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: #fff; border-bottom: 1px solid var(--color-line); }
.trust__inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; align-items: center; padding: 34px var(--pad-x); }
.trust__lead { font-weight: 700; font-size: 14px; line-height: 1.45; color: var(--color-body); margin: 0; max-width: 230px; }
.stat__value { font-weight: 900; font-size: 34px; letter-spacing: -.02em; line-height: 1; }
.stat__value--purple { color: var(--color-purple); }
.stat__value--blue { color: var(--color-blue); }
.stat__value--ink { color: var(--color-ink); }
.stat__label { font-size: 13px; color: var(--color-muted); margin-top: 6px; }

/* ============================================================
   INTRO
   ============================================================ */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro__lead { font-size: 17px; line-height: 1.65; color: var(--color-body); margin: 0 0 18px; }
.intro__lead:last-of-type { margin-bottom: 28px; }
.intro__highlight { color: var(--color-purple); }
.text-link { color: var(--color-blue); font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.text-link:hover { text-decoration: underline; }

.feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card { background: var(--color-surface); border-radius: var(--radius-card); padding: 24px; }
.mini-card__icon { width: 26px; height: 26px; }
.mini-card__title { font-weight: 800; font-size: 16px; margin: 14px 0 6px; }
.mini-card__body { font-size: 13.5px; line-height: 1.5; color: var(--color-muted); }

/* ============================================================
   FEATURE GRID (dark)
   ============================================================ */
.section-head--center { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head--center .section-heading { color: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.glass-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-card); padding: 30px;
  transition: box-shadow .2s var(--ease);
}
.glass-card:hover { box-shadow: var(--shadow-soft); }
.glass-card__icon { width: 46px; height: 46px; }
.glass-card__title { font-weight: 800; font-size: 19px; margin: 18px 0 9px; }
.glass-card__body { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); margin: 0; }

/* ============================================================
   FLOOR PLANS (deep dive)
   ============================================================ */
.split { display: grid; gap: 64px; align-items: center; }
.split--fp  { grid-template-columns: 1fr 1.05fr; }
.split--res { grid-template-columns: 1.05fr 1fr; }
.split__body { font-size: 16px; line-height: 1.65; color: var(--color-body); margin: 0 0 28px; max-width: 480px; }
.split__heading { font-weight: 900; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 20px; text-wrap: balance; }

.checklist { display: flex; flex-direction: column; gap: 16px; }
.checklist__item { display: flex; gap: 13px; align-items: flex-start; }
.checklist__bullet { width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; flex: 0 0 8px; }
.checklist__bullet--cyan { background: #05CFDE; }
.checklist__bullet--purple { background: var(--color-purple); }
.checklist__label { font-size: 15px; }
.checklist__label b { font-weight: 800; }
.checklist__label span { color: var(--color-body); }

/* editor mock */
.editor-mock { background: var(--color-dark); border-radius: 20px; padding: 18px; box-shadow: 0 24px 56px rgba(102,16,242,.18); }
.editor-mock__row { display: flex; gap: 12px; }
.editor-tools { display: flex; flex-direction: column; gap: 9px; padding-top: 4px; }
.editor-tool { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.editor-tool--active { background: var(--color-purple); }
.editor-tool .icon { width: 19px; height: 19px; opacity: .8; }
.editor-tool--active .icon { opacity: 1; }
.editor-canvas {
  flex: 1; position: relative; height: 330px; border-radius: 12px; overflow: hidden;
  background: #15102E;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.editor-stage { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; border-radius: 7px; background: #fff; color: var(--color-ink); font-weight: 700; font-size: 9px; letter-spacing: .1em; display: flex; align-items: center; justify-content: center; }
.vip-table { position: absolute; width: 56px; height: 56px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 13px; }
.vip-table small { font-size: 8px; opacity: .8; }
.vip-table--1 { top: 56px; left: 34px; background: var(--color-purple); box-shadow: 0 0 0 3px rgba(102,16,242,.25); }
.vip-table--2 { top: 56px; right: 34px; background: var(--color-blue); }
.booth-node { position: absolute; bottom: 30px; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 12px; }
.booth-node--3 { left: 60px; } .booth-node--5 { right: 60px; }
.booth-node--selected { left: 50%; transform: translateX(-50%); width: 54px; height: 54px; border-radius: 12px; background: #fff; border: 2.5px solid var(--color-orange); box-shadow: 0 0 0 4px rgba(255,164,0,.25); color: var(--color-ink); }
.handle { position: absolute; bottom: 24px; width: 9px; height: 9px; border-radius: 50%; background: var(--color-orange); }
.handle--l { left: calc(50% - 33px); } .handle--r { left: calc(50% + 24px); }

/* ============================================================
   RESERVATION CARD
   ============================================================ */
.res-visual { position: relative; display: flex; justify-content: center; }
.res-card { background: #fff; border-radius: 18px; box-shadow: var(--shadow-card); width: 100%; max-width: 420px; overflow: hidden; }
.res-card__head { background: linear-gradient(125deg, #251662, #4C14B1); padding: 20px 22px; color: #fff; }
.res-card__head-row { display: flex; align-items: center; justify-content: space-between; }
.res-card__kicker { font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-cyan-bright); }
.res-card__status { font-weight: 700; font-size: 11px; background: rgba(255,255,255,.15); padding: 4px 10px; border-radius: var(--radius-pill); }
.res-card__title { font-weight: 900; font-size: 24px; letter-spacing: -.02em; margin-top: 10px; }
.res-card__when { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 4px; }
.res-card__body { padding: 20px 22px; }
.res-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--color-line); }
.res-row:last-of-type { border-bottom: none; }
.res-row__key { font-size: 14px; color: var(--color-muted); }
.res-row__val { font-size: 14px; font-weight: 700; }
.res-row__val--paid { color: #2DB67C; }
.door-pass { display: flex; align-items: center; gap: 13px; margin-top: 16px; padding: 14px; background: var(--color-surface); border-radius: 12px; }
.door-pass__qr { width: 46px; height: 46px; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(16,30,30,.08); }
.door-pass__title { display: block; font-weight: 800; font-size: 13px; }
.door-pass__sub { font-size: 11.5px; color: var(--color-muted); }

/* ============================================================
   PLATFORM
   ============================================================ */
.platform-card { border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 430px; }
.platform-orbit { position: relative; background: var(--color-dark); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.platform-orbit__ring { position: absolute; border-radius: 50%; }
.platform-orbit__ring--inner { width: 300px; height: 300px; border: 1.5px solid rgba(102,16,242,.4); }
.platform-orbit__ring--outer { width: 440px; height: 440px; border: 1.5px solid rgba(0,127,255,.22); }
.platform-orbit__core { position: relative; z-index: 2; width: 96px; height: 96px; border-radius: var(--radius-lg); background: var(--brand-gradient); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 40px rgba(102,16,242,.5); }
.platform-orbit__core span { font-weight: 900; font-size: 15px; color: #fff; letter-spacing: -.02em; }
.platform-orbit__node { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.25); display: flex; align-items: center; justify-content: center; }
.platform-orbit__node img { width: 34px; height: 34px; }
.platform-orbit__node--1 { top: 16%; left: 18%; }
.platform-orbit__node--2 { top: 30%; right: 12%; }
.platform-orbit__node--3 { bottom: 16%; left: 14%; }
.platform-orbit__node--4 { bottom: 24%; right: 16%; }
.platform-orbit__node--5 { top: 54%; left: 6%; }
.platform-copy { background: var(--brand-gradient); padding: 56px; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.platform-copy .eyebrow { color: rgba(255,255,255,.85); }
.platform-copy__title { font-weight: 900; font-size: clamp(26px, 2.6vw, 34px); line-height: 1.15; letter-spacing: -.01em; margin: 0 0 18px; color: #fff; }
.platform-copy__body { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.88); margin: 0 0 18px; }
.platform-copy__body:last-child { margin-bottom: 0; }

/* ============================================================
   WHY BAND
   ============================================================ */
.why { background: linear-gradient(135deg, #4C14B1 0%, #6610F2 35%, #007FFF 100%); color: #fff; padding: 88px 0; }
.why__title { font-weight: 900; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.05; letter-spacing: -.02em; text-align: center; margin: 0 0 52px; color: #fff; }
.why__title .why__brand { color: var(--color-cyan-bright); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-stat { background: #fff; border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; min-height: 230px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.why-stat__icon { width: 54px; height: 54px; border-radius: 50%; background: var(--brand-gradient); display: flex; align-items: center; justify-content: center; }
.why-stat__icon img { width: 26px; height: 26px; }
.why-stat__value { font-weight: 900; font-size: 38px; color: var(--color-blue); letter-spacing: -.02em; line-height: 1; margin-top: 4px; }
.why-stat__label { font-size: 14px; color: var(--color-ink); line-height: 1.45; margin: 0; max-width: 170px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.step { text-align: center; }
.step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--color-purple); color: #fff; font-weight: 900; font-size: 19px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step__title { font-weight: 800; font-size: 19px; margin: 0 0 10px; }
.step__body { font-size: 14.5px; line-height: 1.6; color: var(--color-muted); margin: 0; }

/* ============================================================
   DEMO CTA
   ============================================================ */
.demo { background: var(--color-dark); position: relative; overflow: hidden; }
.demo__glow { position: absolute; top: -140px; right: -100px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(110,23,217,.5), transparent 68%); filter: blur(20px); }
.demo__inner { position: relative; display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: center; }
.demo__copy { color: #fff; }
.demo__title { font-weight: 900; font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -.025em; margin: 0 0 22px; color: #fff; text-wrap: balance; }
.demo__body { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.82); margin: 0 0 28px; max-width: 430px; }
.demo__checks { display: flex; flex-direction: column; gap: 13px; }
.demo__check { display: flex; align-items: center; gap: 11px; font-size: 15px; color: rgba(255,255,255,.9); }
.demo__check img { width: 18px; height: 18px; }

.demo-form { background: #fff; border-radius: 20px; padding: 38px; }
.demo-form__title { font-weight: 900; font-size: 26px; letter-spacing: -.01em; margin: 0 0 6px; }
.demo-form__sub { font-size: 13.5px; color: var(--color-muted); margin: 0 0 22px; }
.demo-form__fields { display: flex; flex-direction: column; gap: 13px; }
.demo-form__input, .demo-form__select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-pill);
  border: 1px solid #E1E3E8; background: #fff; font-family: inherit; font-size: 14px; color: var(--color-ink);
}
.demo-form__select { color: var(--color-muted); }
.demo-form__input:focus, .demo-form__select:focus { outline: 2px solid var(--color-blue); outline-offset: 1px; border-color: transparent; }
.demo-form__disclaimer { font-size: 11.5px; color: #AEB3BB; text-align: center; margin: 14px 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--footer-gradient); color: #fff; padding: 64px 0 30px; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand__logo { height: 30px; }
.footer-brand__divider { width: 1px; height: 18px; background: rgba(255,255,255,.3); }
.footer-brand__name { font-weight: 800; font-size: 16px; }
.site-footer__tagline { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.72); margin: 0; max-width: 280px; }
.footer-col__title { font-weight: 800; font-size: 14px; margin: 0 0 14px; }
.footer-col__link { display: block; color: rgba(255,255,255,.78); text-decoration: none; padding: 5px 0; font-size: 13.5px; }
.footer-col__link:hover { color: #fff; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; flex-wrap: wrap; gap: 16px; }
.site-footer__copyright { font-size: 12.5px; color: rgba(255,255,255,.6); }
.site-footer__legal { display: flex; gap: 24px; }
.site-footer__legal a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 12.5px; }
.site-footer__legal a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  :root { --section-y: 60px; --pad-x: 22px; }
  .hero__inner { padding: 52px var(--pad-x) 60px; }
  .hero__inner,
  .intro__grid,
  .split--fp, .split--res,
  .platform-card,
  .demo__inner { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid,
  .why-grid,
  .trust__inner,
  .site-footer__top { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
}
@media (max-width: 620px) {
  .feature-grid,
  .why-grid,
  .trust__inner,
  .site-footer__top,
  .feature-cards,
  .steps { grid-template-columns: 1fr; }
  .site-header__inner { gap: 14px; }
}
