/* =============================================================
   Okala — Marketing styles (Apple-clean, Okala-tokenized)
   ============================================================= */

/* ----- Reset/base layering on top of colors_and_type.css ----- */
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--fg-1);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* Visually hidden, still read by assistive tech */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

a { color: var(--brand-600); }
a:hover { color: var(--brand-700); }

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: 6px;
}

/* ----- Layout primitives ----- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

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

h1.display {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  margin: 0;
  text-wrap: balance;
}
h2.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin: 0;
  text-wrap: balance;
}
h3.feature-title {
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 16px;
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--fg-3);
  margin: 20px 0 0;
  max-width: 640px;
  text-wrap: pretty;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px;
  border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600;
  border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { height: 54px; padding: 0 26px; font-size: 16px; }
.btn-primary {
  background: var(--brand-500); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand-600); color: #fff; text-decoration: none; }
.btn-primary:active { background: var(--brand-700); }
.btn-secondary {
  background: var(--bg-0); color: var(--fg-1);
  border-color: var(--border-2);
}
.btn-secondary:hover { background: var(--bg-2); color: var(--fg-1); text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--fg-1);
}
.btn-ghost:hover { background: var(--bg-2); color: var(--fg-1); text-decoration: none; }

/* ----- Header ----- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.header.scrolled {
  border-bottom-color: var(--border-1);
  background: rgba(255, 255, 255, 0.92);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--fg-1);
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
}
.brand img { height: 26px; width: auto; }
.nav {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; font-weight: 500;
}
.nav a {
  color: var(--fg-2); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav a:hover { color: var(--fg-1); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex; align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
}
.lang button {
  border: none; background: transparent; color: var(--fg-3);
  padding: 5px 12px; border-radius: 999px;
  font: inherit; cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.lang button.active {
  background: var(--bg-0); color: var(--fg-1);
  box-shadow: var(--shadow-xs);
}

/* Mobile menu toggle (hamburger) + dropdown */
.nav-toggle {
  display: none;
  width: 40px; height: 40px; flex-shrink: 0;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-1); border-radius: 10px;
  background: var(--bg-0); color: var(--fg-1);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-menu { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

.site-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  display: flex; flex-direction: column;
  padding: 8px 24px 20px;
  background: var(--bg-0);
  border-bottom: 1px solid var(--border-1);
  box-shadow: var(--shadow-lg);
  animation: menuDrop 180ms var(--ease-out) both;
}
.site-menu[hidden] { display: none; }
.site-menu > a {
  padding: 13px 4px; font-size: 16px; font-weight: 500;
  color: var(--fg-1); text-decoration: none;
  border-bottom: 1px solid var(--border-1);
}
.site-menu > a:hover { color: var(--brand-600); }
.site-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.site-menu-actions .btn { width: 100%; justify-content: center; }
@keyframes menuDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

@media (max-width: 860px) {
  .nav { display: none; }
  .header-desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 861px) {
  .site-menu { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .site-menu { animation: none; }
}

/* ----- Hero ----- */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(1100px 500px at 50% -120px, rgba(14, 165, 233, 0.10), transparent 60%),
    var(--bg-0);
}
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(14, 165, 233, 0.2);
  margin-bottom: 24px;
}
.hero .pill .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.35); }
  50% { box-shadow: 0 0 0 6px rgba(14,165,233,0); }
}
.hero .lead { margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 20px;
  font-size: 13px; color: var(--fg-3);
}

/* Hero product visual */
.hero-frame {
  margin: 64px auto 0;
  max-width: 1080px;
  border-radius: 20px;
  background: var(--bg-0);
  border: 1px solid var(--border-1);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}
.hero-frame::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 21px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6) inset;
}
.mock-note {
  margin: 14px auto 0;
  max-width: 520px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-4);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-1);
  background: var(--bg-1);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 11px; height: 11px; border-radius: 999px; background: var(--gray-200); }
.browser-url {
  flex: 1; height: 24px;
  background: var(--bg-0);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--fg-3);
  margin: 0 80px;
}

/* ============================================================
   Product mock — interactive dashboard demo (mirrors the real app)
   Status-tile tokens are scoped here so they stay independent of the
   marketing palette and read correctly in both themes.
   ============================================================ */
.mock {
  display: grid;
  grid-template-columns: 232px 1fr;
  min-height: 560px;
  background: var(--bg-1);
  text-align: left;

  --st-green-tint: var(--success-50);  --st-green-ink: #047857;  --st-green-line: rgba(16,185,129,0.28);
  --st-blue-tint:  #f0f9ff;            --st-blue-ink:  #0369a1;  --st-blue-line:  rgba(14,165,233,0.28);
  --st-slate-tint: var(--bg-2);        --st-slate-ink: var(--fg-1); --st-slate-line: var(--border-2);
  --st-violet-tint:#eef2ff;            --st-violet-ink:#3730a3;  --st-violet-line:rgba(99,102,241,0.30);
  --st-amber-tint: var(--warning-50);  --st-amber-ink: #b45309;  --st-amber-line: rgba(245,158,11,0.32);
  --st-orange-tint:#fff7ed;            --st-orange-ink:#c2410c;  --st-orange-line:rgba(249,115,22,0.28);
  --st-red-tint:   var(--danger-50);   --st-red-ink:   #b91c1c;  --st-red-line:   rgba(239,68,68,0.28);

  --room-available: #10b981;  --room-occupied: #0ea5e9;  --room-cleaning: #f59e0b;
  --room-dirty: #6b7380;      --room-oos: #ef4444;       --accent: #f97316;
}
:root[data-theme="dark"] .mock {
  --st-green-tint: rgba(16,185,129,0.14);  --st-green-ink: #34d399;
  --st-blue-tint:  rgba(59,130,246,0.13);  --st-blue-ink:  #60a5fa;  --st-blue-line:  rgba(96,165,250,0.34);
  --st-slate-tint: var(--bg-2);            --st-slate-ink: var(--fg-1); --st-slate-line: var(--border-2);
  --st-violet-tint:rgba(139,92,246,0.15);  --st-violet-ink:#a78bfa;  --st-violet-line:rgba(167,139,250,0.36);
  --st-amber-tint: rgba(245,158,11,0.14);  --st-amber-ink: #fbbf24;
  --st-orange-tint:rgba(249,115,22,0.14);  --st-orange-ink:#fb923c;  --st-orange-line:rgba(251,146,60,0.36);
  --st-red-tint:   rgba(239,68,68,0.14);   --st-red-ink:   #f87171;
}

/* Sprite icons: <use> clones inherit from the use site, NOT from the <g> that
   wraps the <symbol> definitions — without this the icons paint as filled
   black silhouettes with no stroke. Must stay at the use site. */
.hero-frame svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* status colour classes — each tile pulls tint / ink / line / dot */
.mock .st-green  { --tint: var(--st-green-tint);  --ink: var(--st-green-ink);  --line: var(--st-green-line);  --dot: var(--room-available); }
.mock .st-blue   { --tint: var(--st-blue-tint);   --ink: var(--st-blue-ink);   --line: var(--st-blue-line);   --dot: var(--room-occupied); }
.mock .st-slate  { --tint: var(--st-slate-tint);  --ink: var(--st-slate-ink);  --line: var(--st-slate-line);  --dot: var(--fg-3); }
.mock .st-violet { --tint: var(--st-violet-tint); --ink: var(--st-violet-ink); --line: var(--st-violet-line); --dot: var(--st-violet-ink); }
.mock .st-amber  { --tint: var(--st-amber-tint);  --ink: var(--st-amber-ink);  --line: var(--st-amber-line);  --dot: var(--room-cleaning); }
.mock .st-orange { --tint: var(--st-orange-tint); --ink: var(--st-orange-ink); --line: var(--st-orange-line); --dot: var(--accent); }
.mock .st-red    { --tint: var(--st-red-tint);    --ink: var(--st-red-ink);    --line: var(--st-red-line);    --dot: var(--room-oos); }

/* ---- Sidebar ---- */
.mock-side {
  background: var(--bg-0);
  border-right: 1px solid var(--border-1);
  padding: 14px 12px 12px;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.mock-brand { display: flex; align-items: center; gap: 9px; padding: 4px 8px 12px; }
.mock-brand img { width: 24px; height: 24px; border-radius: 6px; }
.mock-brand span { font-weight: 800; font-size: 17px; color: var(--fg-1); letter-spacing: -0.01em; }

.nav-section { display: flex; flex-direction: column; }
.nav-section-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: 0; cursor: pointer;
  padding: 10px 8px 6px; font: inherit;
  color: var(--fg-4); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.nav-section-header .chev { width: 13px; height: 13px; transition: transform 0.2s ease; }
.nav-section[data-collapsed="true"] .nav-section-header .chev { transform: rotate(-90deg); }
.nav-section-items { display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.nav-section[data-collapsed="true"] .nav-section-items { display: none; }

.nav-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; text-align: left;
  height: 34px; padding: 0 10px;
  border: 0; background: none; cursor: pointer; font: inherit;
  border-radius: 8px;
  font-size: 13px; color: var(--fg-2); font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-item:hover { background: var(--bg-2); color: var(--fg-1); }
.nav-item[aria-current="page"] { background: var(--brand-50); color: var(--brand-700); font-weight: 600; }
:root[data-theme="dark"] .nav-item[aria-current="page"] { background: var(--brand-soft); color: var(--fg-brand); }
.nav-item .ico { width: 17px; height: 17px; flex-shrink: 0; opacity: 0.9; }
.nav-item .nav-count {
  margin-left: auto;
  background: var(--brand-500); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 1;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
}
.mock-user {
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border-1);
  display: flex; align-items: center; gap: 9px; padding-left: 8px; padding-right: 8px;
}
.mock-user .avatar { width: 26px; height: 26px; font-size: 10px; }
.mock-user .who { min-width: 0; }
.mock-user .who b { display: block; font-size: 12px; color: var(--fg-1); font-weight: 600; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-user .who small { font-size: 11px; color: var(--fg-3); }

.avatar {
  display: inline-grid; place-items: center; flex-shrink: 0;
  border-radius: 999px; font-weight: 700;
  background: var(--brand-50); color: var(--brand-700);
}
:root[data-theme="dark"] .avatar { background: var(--brand-soft); color: var(--fg-brand); }

/* ---- Main column ---- */
.mock-app { display: flex; flex-direction: column; min-width: 0; }
.mock-topbar {
  display: flex; align-items: center; gap: 12px;
  height: 52px; padding: 0 16px;
  border-bottom: 1px solid var(--border-1);
  background: var(--bg-0);
}
.mock-topbar .tb-ico { width: 18px; height: 18px; color: var(--fg-3); flex-shrink: 0; }
.mock-switcher {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 9px; border: 1px solid var(--border-1); border-radius: 9px;
  background: var(--bg-0); min-width: 0;
}
.mock-switcher .dotmark { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, var(--brand-500), #38bdf8); flex-shrink: 0; }
.mock-switcher b { font-size: 12.5px; color: var(--fg-1); font-weight: 600; white-space: nowrap; }
.mock-switcher .chev { width: 13px; height: 13px; color: var(--fg-4); }
.mock-title { flex: 1; min-width: 0; }
.mock-title b { display: block; font-size: 13.5px; font-weight: 600; color: var(--fg-1); line-height: 1.25; }
.mock-title small { font-size: 12px; color: var(--fg-3); }
.mock-search {
  display: flex; align-items: center; gap: 8px;
  height: 34px; width: 210px; padding: 0 12px;
  border: 1px solid var(--border-1); border-radius: 999px;
  color: var(--fg-4); font-size: 12.5px; background: var(--bg-1);
}
.mock-tb-actions { display: flex; align-items: center; gap: 4px; }
.mock-tb-btn {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center; color: var(--fg-3);
  position: relative;
}
.mock-tb-btn .dot-badge { position: absolute; top: 5px; right: 6px; width: 6px; height: 6px; border-radius: 999px; background: var(--room-oos); border: 1.5px solid var(--bg-0); }

/* ---- Screens ---- */
.mock-screens { padding: 20px; overflow: hidden; }
.mock-screen { display: none; flex-direction: column; gap: 14px; }
.mock-screen.is-active { display: flex; animation: mockfade 0.28s ease both; }
@keyframes mockfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* section head (dashboard greeting) */
.mock-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.mock-head .greeting { margin: 6px 0 2px; font-size: 20px; font-weight: 700; color: var(--fg-1); letter-spacing: -0.02em; }
.mock-head .sub { font-size: 13px; color: var(--fg-3); }
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 999px;
  background: var(--success-50); color: var(--success-700);
  font-size: 11px; font-weight: 600;
}
:root[data-theme="dark"] .live-badge { color: #34d399; }
.live-badge .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--room-available); box-shadow: 0 0 0 0 rgba(16,185,129,0.4); animation: livepulse 2.4s infinite; }
@keyframes livepulse { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4);} 50% { box-shadow: 0 0 0 5px rgba(16,185,129,0);} }
.mock-cta {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 13px; border-radius: 9px;
  background: var(--brand-500); color: #fff; font-size: 12.5px; font-weight: 600;
}
.mock-cta svg { width: 15px; height: 15px; }

/* card shell */
.m-card { background: var(--bg-0); border: 1px solid var(--border-1); border-radius: 14px; overflow: hidden; }
.m-card-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 14px 16px; border-bottom: 1px solid var(--border-1);
}
.m-card-head .t { font-size: 13px; font-weight: 600; color: var(--fg-1); }
.m-card-head .s { font-size: 11.5px; color: var(--fg-3); margin-top: 2px; }
.m-card-total { display: flex; align-items: baseline; gap: 6px; }
.m-card-total b { font-family: var(--font-condensed); font-weight: 700; font-size: 30px; color: var(--fg-1); line-height: 1; letter-spacing: -0.02em; }
.m-card-total span { font-size: 11px; color: var(--fg-3); }
.m-card-body { padding: 16px; }

/* stacked room-state bar */
.rs-bar { display: flex; height: 9px; border-radius: 999px; overflow: hidden; background: var(--bg-2); margin: 2px 0 14px; }
.rs-bar > span { border-right: 1px solid var(--bg-0); }
.rs-bar > span:last-child { border-right: 0; }

/* tile grid (room-state + tickets) */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.st-tile {
  border-radius: 12px; padding: 11px; border: 1px solid var(--line);
  background: var(--tint); color: var(--ink);
}
.st-tile .row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.st-tile .chip { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: color-mix(in srgb, currentColor 15%, transparent); }
.st-tile .chip svg { width: 14px; height: 14px; }
.st-tile .pip { width: 6px; height: 6px; border-radius: 999px; background: var(--dot); }
.st-tile .n { font-family: var(--font-condensed); font-weight: 700; font-size: 26px; line-height: 1; letter-spacing: -0.02em; }
.st-tile .lb { font-size: 11.5px; font-weight: 600; margin-top: 5px; line-height: 1.2; }
.st-tile .hint { font-size: 10.5px; opacity: 0.72; margin-top: 2px; line-height: 1.2; }

/* today's flow */
.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.flow-tile { border-radius: 12px; padding: 13px; border: 1px solid var(--line); background: var(--tint); color: var(--ink); }
.flow-tile .eye { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }
.flow-tile .big { display: flex; align-items: baseline; gap: 5px; margin-top: 7px; }
.flow-tile .big b { font-family: var(--font-condensed); font-weight: 700; font-size: 28px; line-height: 1; letter-spacing: -0.02em; }
.flow-tile .big span { font-size: 13px; opacity: 0.7; }
.flow-tile .hint { font-size: 11px; opacity: 0.78; margin-top: 4px; }
.flow-bar { height: 4px; border-radius: 999px; margin-top: 9px; overflow: hidden; background: color-mix(in srgb, currentColor 16%, transparent); }
.flow-bar > span { display: block; height: 100%; border-radius: 999px; background: var(--ink); }

/* generic list rows (reservations / staff / tickets) */
.m-list { display: flex; flex-direction: column; }
.m-row { display: flex; align-items: center; gap: 11px; padding: 11px 16px; border-top: 1px solid var(--border-1); }
.m-row:first-child { border-top: 0; }
.m-row .avatar { width: 32px; height: 32px; font-size: 11px; }
.m-row .grow { flex: 1; min-width: 0; }
.m-row .grow b { display: block; font-size: 13px; color: var(--fg-1); font-weight: 600; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-row .grow small { font-size: 11.5px; color: var(--fg-3); }
.m-row .rm { font-family: var(--font-condensed); font-weight: 700; font-size: 15px; color: var(--fg-2); }
.m-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--tint); color: var(--ink);
  font-size: 11px; font-weight: 600; white-space: nowrap;
}
.m-tag .pip { width: 6px; height: 6px; border-radius: 999px; background: var(--dot); }

/* rooms grid screen */
.rooms-legend { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 4px; }
.rooms-legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--fg-3); }
.rooms-legend i { width: 9px; height: 9px; border-radius: 3px; }
.rooms-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.room {
  aspect-ratio: 1; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  font-family: var(--font-condensed); font-weight: 700; font-size: 14px;
  border: 1px solid var(--line); background: var(--tint); color: var(--ink);
  position: relative;
}
.room .rpip { position: absolute; top: 6px; right: 6px; width: 6px; height: 6px; border-radius: 999px; background: var(--dot); }

@media (max-width: 820px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(6, 1fr); }
}
/* Mock menu button (opens the mock sidebar on mobile) — plain icon on desktop */
/* Only meaningful on mobile, where it opens the drawer. On desktop the sidebar
   is always visible, so showing it would expose an operable control that does
   nothing. */
.mock-menu-btn {
  display: none; place-items: center; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 8px;
  border: 0; background: transparent; color: var(--fg-3);
}
.mock-scrim { display: none; }

@media (max-width: 768px) {
  .mock { grid-template-columns: 1fr; min-height: 0; position: relative; }
  .mock-title { display: none; }
  .mock-search { display: none; }
  .flow-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: repeat(5, 1fr); }
  .browser-url { margin: 0 12px; }

  /* Sidebar becomes an off-canvas drawer, toggled by the topbar menu button —
     mirrors the real app's mobile sidebar behaviour. */
  .mock-menu-btn { display: inline-grid; border: 1px solid var(--border-1); color: var(--fg-1); }
  .mock-side {
    position: absolute; top: 0; bottom: 0; left: 0; z-index: 6;
    width: 232px; max-width: 84%;
    transform: translateX(-100%);
    /* visibility (not just transform) so the closed drawer's buttons leave the
       tab order — otherwise keyboard users tab into 8 off-screen controls. */
    visibility: hidden;
    transition: transform 0.25s var(--ease-out), visibility 0.25s var(--ease-out);
    box-shadow: var(--shadow-xl);
  }
  .mock[data-side-open="true"] .mock-side { transform: none; visibility: visible; }
  .mock-scrim {
    position: absolute; inset: 0; z-index: 5;
    background: rgba(15, 23, 32, 0.4);
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .mock[data-side-open="true"] .mock-scrim { display: block; opacity: 1; pointer-events: auto; }
}
@media (max-width: 480px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(4, 1fr); }
  .mock-screens { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .mock-screen.is-active { animation: none; }
  .live-badge .dot { animation: none; }
  .nav-item, .nav-section-header .chev, .mock-side, .mock-scrim { transition: none; }
}

/* ----- Trust strip ----- */
.trust {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-1);
  background: var(--bg-1);
}
.trust .label {
  text-align: center;
  font-size: 20px; letter-spacing: -0.01em;
  font-weight: 700; color: var(--fg-1);
  margin-bottom: 20px;
}
.trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  opacity: 0.7;
}
.trust-logo {
  font-family: var(--font-condensed);
  font-weight: 700; font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  text-transform: uppercase;
}

/* ----- Feature sections (alternating Apple-style) ----- */
.feature {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-1);
}
.feature.alt { background: var(--bg-1); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.feature.reverse .feature-grid { grid-template-columns: 1.1fr 1fr; }
.feature.reverse .feature-text { order: 2; }
.feature.reverse .feature-visual { order: 1; }
/* Let grid tracks shrink below their content's intrinsic width on narrow
   screens — without this, a wide child forces horizontal page overflow. */
.feature-text, .feature-visual { min-width: 0; }

.feature-text .eyebrow { color: var(--brand-600); }
.feature-text p { font-size: 17px; line-height: 1.65; color: var(--fg-3); margin: 0 0 24px; max-width: 520px; }

.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--fg-2); line-height: 1.5;
}
.feature-list svg {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--brand-500);
  margin-top: 1px;
}

@media (max-width: 900px) {
  .feature { padding: 72px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-text { order: 1; }
  .feature.reverse .feature-visual { order: 2; }
  .feature.reverse .feature-grid { grid-template-columns: 1fr; }
}

/* Visual containers (placeholder treatments per feature) */
.visual-card {
  background: var(--bg-0);
  border: 1px solid var(--border-1);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

/* Feature visuals — app-style boards & ticket cards (housekeeping + maintenance) */
.viz-chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500; color: var(--fg-2);
  background: var(--bg-2); border: 1px solid var(--border-1);
  border-radius: 999px; padding: 2px 8px; white-space: nowrap;
}
.viz-chip svg { width: 13px; height: 13px; opacity: 0.85; flex-shrink: 0; }
.badge-oos {
  font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 999px;
  background: var(--danger-50); color: var(--danger-700); white-space: nowrap;
}

/* Ticket card (shared by both boards, mirrors the app's kanban card) */
.tkt {
  background: var(--bg-0); border: 1px solid var(--border-1);
  border-radius: 12px; padding: 10px;
  display: flex; flex-direction: column; gap: 7px; min-width: 0;
}
.tkt-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.tkt-title { font-size: 12.5px; font-weight: 600; color: var(--fg-1); line-height: 1.3; min-width: 0; }
.tkt-urg {
  flex-shrink: 0; font-size: 10px; font-weight: 700; letter-spacing: 0.03em;
  padding: 2px 7px; border-radius: 999px; white-space: nowrap;
}
.tkt-urg.high { background: var(--danger-50); color: var(--danger-700); }
.tkt-urg.med  { background: var(--warning-50); color: var(--warning-700); }
.tkt-urg.low  { background: var(--bg-3); color: var(--fg-3); }
.tkt-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--fg-3); flex-wrap: wrap; }
.tkt-meta .id { font-family: var(--font-condensed); font-weight: 700; letter-spacing: 0.04em; color: var(--fg-2); }
.tkt-chips { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.tkt-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 11px; color: var(--fg-3);
  padding-top: 7px; border-top: 1px solid var(--border-1);
}
.tkt-foot .who { display: inline-flex; align-items: center; gap: 5px; min-width: 0; }
.tkt-foot .who svg { width: 13px; height: 13px; opacity: 0.85; flex-shrink: 0; }
.tkt-foot .who.muted { color: var(--fg-4); }
.tkt-foot .eta { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-condensed); white-space: nowrap; }
.tkt-foot .eta svg { width: 13px; height: 13px; }

/* Housekeeping — kanban board */
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 16px; }
.kan-col { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.kan-head {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  padding-bottom: 7px; border-bottom: 2px solid var(--accent, var(--border-2));
}
.kan-head b { font-size: 11.5px; font-weight: 700; color: var(--fg-1); }
.kan-count {
  font-size: 11px; font-weight: 700; color: var(--fg-3);
  background: var(--bg-2); border-radius: 999px; padding: 0 6px; min-width: 18px; text-align: center;
}

/* Maintenance — stacked ticket cards */
.mt-board { padding: 16px; display: flex; flex-direction: column; gap: 10px; }

@media (max-width: 560px) {
  .kanban { grid-template-columns: 1fr; }
}

/* Sync visual — three connected panes */
.sync-panes { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sync-pane {
  background: var(--bg-1); border: 1px solid var(--border-1);
  border-radius: 12px; padding: 14px;
}
.sync-pane.full { grid-column: 1 / -1; }
.sync-pane .pane-h { margin: 0 0 10px; font-size: 12px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.sync-pane .item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  background: var(--bg-0); border: 1px solid var(--border-1);
  margin-bottom: 6px;
  font-size: 12px;
}
.sync-pane .item:last-child { margin-bottom: 0; }
.sync-pane .item .dot { width: 8px; height: 8px; border-radius: 999px; }
.sync-pane .item.front .dot { background: var(--brand-500); }
.sync-pane .item.house .dot { background: var(--warning-500); }
.sync-pane .item.maint .dot { background: var(--danger-500); }
.sync-pane .item b { font-weight: 600; color: var(--fg-1); }
.sync-pane .item span.t { margin-left: auto; color: var(--fg-3); font-family: var(--font-condensed); }

/* ----- Benefit cards ----- */
.benefits { padding: 120px 0; }
.benefits-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.benefits-points { max-width: 620px; margin: 28px auto 0; text-align: left; }
.benefits-points b { color: var(--fg-1); font-weight: 600; }
.benefit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.benefit-card {
  background: var(--bg-0);
  border: 1px solid var(--border-1);
  border-radius: 18px;
  padding: 28px;
  transition: all var(--dur-base) var(--ease-out);
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}
.benefit-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit-card .icon svg { width: 22px; height: 22px; }
.benefit-card h3 { font-size: 18px; font-weight: 700; color: var(--fg-1); margin: 0 0 8px; letter-spacing: -0.01em; }
.benefit-card p { font-size: 14px; line-height: 1.6; color: var(--fg-3); margin: 0; }

@media (max-width: 900px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ----- More-features section ----- */
.more { padding: 96px 0; background: var(--bg-1); border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); }
.more-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.more-card {
  background: var(--bg-0);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  display: flex; flex-direction: column;
}
.more-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.more-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand-600);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.more-card .icon svg { width: 22px; height: 22px; }
.more-card h3 { font-size: 18px; font-weight: 700; color: var(--fg-1); margin: 0 0 8px; letter-spacing: -0.01em; }
.more-card p { font-size: 14px; line-height: 1.6; color: var(--fg-3); margin: 0; }
.more-card .tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-700);
  border: 1px solid rgba(14,165,233,0.2);
}
.more-card.span-2 { grid-column: span 2; }
.more-card.feature {
  background: linear-gradient(180deg, var(--brand-50), var(--bg-0) 60%);
  border-color: rgba(14,165,233,0.25);
}
.more-card.feature .big {
  margin-top: 14px; font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--brand-700);
}
.more-card.feature .big small { font-size: 14px; font-weight: 600; color: var(--fg-3); margin-left: 6px; letter-spacing: 0; }

@media (max-width: 900px) {
  .more-grid { grid-template-columns: 1fr; }
  .more-card.span-2 { grid-column: auto; }
}

/* ----- About ----- */
.about { padding: 120px 0; background: var(--bg-0); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { font-size: 17px; line-height: 1.7; color: var(--fg-2); margin: 0 0 16px; max-width: 560px; }
.about-card {
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px;
}
.about-fact dt { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px; }
.about-fact dd { font-size: 18px; font-weight: 600; color: var(--fg-1); margin: 0; letter-spacing: -0.01em; line-height: 1.3; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card { grid-template-columns: 1fr 1fr; }
}

/* ----- Pricing ----- */
.pricing { padding: 120px 0; background: var(--bg-1); border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); }
.pricing-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }

.promo-banner {
  max-width: 720px;
  margin: 0 auto 48px;
  background: var(--bg-0);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex; align-items: center; gap: 18px;
  box-shadow: var(--shadow-sm);
}
.promo-banner .ico {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--brand-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.promo-banner .ico svg { width: 22px; height: 22px; }
.promo-banner .copy { flex: 1; }
.promo-banner .copy b { display: block; font-size: 15px; font-weight: 700; color: var(--fg-1); margin-bottom: 2px; letter-spacing: -0.01em; }
.promo-banner .copy span { font-size: 13px; color: var(--fg-3); }

.tier-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 760px; margin: 0 auto;
}
.tier {
  background: var(--bg-0);
  border: 1px solid var(--border-1);
  border-radius: 18px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.tier.featured {
  border: 2px solid var(--brand-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.tier .featured-badge {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-500); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tier h3 { font-size: 18px; font-weight: 700; color: var(--fg-1); margin: 0 0 6px; letter-spacing: -0.01em; }
.tier .scope { font-size: 13px; color: var(--fg-3); margin-bottom: 20px; min-height: 38px; }
.tier .price-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-1); }
.tier .price {
  font-size: 48px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--fg-1); line-height: 1;
}
.tier .price .currency { font-size: 24px; font-weight: 600; vertical-align: top; margin-right: 2px; }
.tier .price .period { font-size: 14px; font-weight: 500; color: var(--fg-3); margin-left: 6px; letter-spacing: normal; }
.tier .price-note { font-size: 13px; color: var(--brand-600); font-weight: 600; margin-top: 8px; }
.tier .price-custom { font-size: 36px; font-weight: 800; color: var(--fg-1); letter-spacing: -0.02em; line-height: 1; }
.tier ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tier ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--fg-2); line-height: 1.5;
}
.tier ul svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--brand-500); margin-top: 1px; }
.tier .btn { width: 100%; }

@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
}

/* ----- FAQ ----- */
.faq { padding: 120px 0; }
.faq-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 18px; font-weight: 600; color: var(--fg-1);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 999px; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-slow) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
  color: var(--fg-2);
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--brand-50); color: var(--brand-700); }
.js .faq-item[open]:not(.is-open) summary .plus { transform: none; background: var(--bg-2); color: var(--fg-2); }
.faq-item summary:hover .plus { background: var(--brand-50); color: var(--brand-700); }
.faq-item .answer {
  padding: 0 0 28px;
  font-size: 16px; color: var(--fg-3); line-height: 1.65;
  max-width: 720px;
}
.faq-item .answer p { margin: 0 0 12px; }
.faq-item .answer p:last-child { margin: 0; }
.faq-item .answer ul { margin: 8px 0 0; padding-left: 20px; }
.faq-item .answer ul li { margin-bottom: 4px; }

/* ----- Contact ----- */
.contact {
  padding: 120px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border-1);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info p { font-size: 17px; color: var(--fg-3); line-height: 1.65; margin: 16px 0 32px; max-width: 460px; }
.contact-info dl { display: flex; flex-direction: column; gap: 18px; margin: 0; }
.contact-info dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--fg-3); margin-bottom: 4px; }
.contact-info dd { margin: 0; font-size: 15px; color: var(--fg-1); font-weight: 500; }
.contact-info dd a { color: var(--fg-1); text-decoration: none; }
.contact-info dd a:hover { color: var(--brand-600); }

.contact-form {
  background: var(--bg-0);
  border: 1px solid var(--border-1);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.field-group { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .field .lbl { display: block; font-size: 13px; font-weight: 500; color: var(--fg-2); }
.field input, .field select, .field textarea {
  height: 44px; padding: 0 14px;
  background: var(--bg-0);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  font-size: 15px; color: var(--fg-1);
  transition: all var(--dur-fast);
}
.field textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-500); box-shadow: var(--shadow-focus);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-4); }
.contact-form .btn { width: 100%; margin-top: 8px; }

.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-group .radio {
  display: flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 14px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  font-size: 14px; color: var(--fg-2);
  cursor: pointer;
  transition: border-color var(--dur-fast), background-color var(--dur-fast), color var(--dur-fast);
}
.radio:hover { border-color: var(--brand-400); }
.radio input {
  width: 16px; height: 16px;
  margin: 0; padding: 0;
  flex-shrink: 0;
  accent-color: var(--brand-500);
}
.radio:has(input:checked) { border-color: var(--brand-500); background: var(--brand-50); color: var(--fg-1); }

.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--fg-3); line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--brand-500); }
.consent a { color: var(--brand-600); }
.form-provider { margin: 10px 0 0; font-size: 12px; line-height: 1.5; color: var(--fg-4); }
.form-provider a { color: var(--fg-3); text-decoration: underline; text-underline-offset: 2px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 999px; background: var(--success-50); color: var(--success-700);
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { margin: 0 0 8px; font-size: 22px; font-weight: 700; color: var(--fg-1); letter-spacing: -0.01em; }
.form-success p { margin: 0; color: var(--fg-3); font-size: 15px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ----- Footer ----- */
.footer {
  padding: 64px 0 40px;
  background: var(--bg-0);
  border-top: 1px solid var(--border-1);
  font-size: 14px;
  color: var(--fg-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { margin: 0; max-width: 320px; line-height: 1.6; }
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--fg-2); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--fg-3); text-decoration: none; }
.footer ul a:hover { color: var(--fg-1); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border-1);
  font-size: 13px;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ----- Reveal animation on scroll ----- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
