/* ===========================================================
   URManager — Marketing site
   Brand colors derived from the logo (orange / amber / teal pin)
   =========================================================== */

:root {
  /* brand */
  --orange:      #ff8a1e;
  --orange-2:    #ff6a00;
  --amber:       #ffb020;
  --teal:        #25b6e8;
  --teal-2:      #1f8fd1;

  --grad:        linear-gradient(100deg, #ff6a00 0%, #ff9a1e 45%, #ffb020 100%);
  --grad-teal:   linear-gradient(120deg, #ff8a1e 0%, #ff6a00 50%, #25b6e8 130%);

  /* surfaces (dark) */
  --bg:          #0a0c12;
  --bg-2:        #0e111a;
  --surface:     #14171f;
  --surface-2:   #1a1e2a;
  --line:        rgba(255,255,255,0.08);
  --line-2:      rgba(255,255,255,0.14);

  /* text */
  --text:        #eef1f8;
  --muted:       #aab2c5;
  --subtle:      #79839a;

  --radius:      16px;
  --radius-lg:   22px;
  --shadow:      0 24px 60px -20px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 0 1px rgba(255,138,30,0.18), 0 30px 80px -28px rgba(255,106,0,0.35);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --max:         1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient background texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(255,106,0,0.13), transparent 60%),
    radial-gradient(800px 600px at 8% 12%, rgba(37,182,232,0.10), transparent 55%);
  z-index: 0; pointer-events: none;
}

h1, h2, h3, h4, h5 { font-family: "Sora", sans-serif; line-height: 1.12; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container.narrow { max-width: 800px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: 0.95rem;
  padding: 11px 20px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: all 0.2s var(--ease); white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1.02rem; border-radius: 14px; }
.btn-primary {
  background: var(--grad); color: #1a0d00; font-weight: 700;
  box-shadow: 0 10px 28px -10px rgba(255,106,0,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(255,106,0,0.7); }
.btn-outline { background: rgba(255,255,255,0.03); border-color: var(--line-2); color: var(--text); }
.btn-outline:hover { background: rgba(255,255,255,0.07); border-color: var(--orange); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn:active { transform: scale(0.97); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(10,12,18,0.78);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 34px; height: 34px; }
.brand-name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand-name span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--muted); font-weight: 500; font-size: 0.93rem;
  padding: 8px 12px; border-radius: 10px; transition: all 0.18s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* login dropdown */
.login-menu { position: relative; }
.login-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0; width: 250px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 14px; padding: 8px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s var(--ease);
}
.login-menu.open .login-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.login-dropdown a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px; transition: background 0.15s var(--ease); }
.login-dropdown a:hover { background: rgba(255,255,255,0.06); }
.login-dropdown strong { display: block; font-size: 0.92rem; }
.login-dropdown small { color: var(--subtle); font-size: 0.78rem; }
.ld-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.ld-host { background: rgba(255,138,30,0.15); color: var(--orange); }
.ld-tenant { background: rgba(37,182,232,0.15); color: var(--teal); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.22), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--amber);
  background: rgba(255,176,32,0.10); border: 1px solid rgba(255,176,32,0.25);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; margin-bottom: 22px; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta.center { justify-content: center; }

.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; color: var(--subtle); font-size: 0.86rem; font-weight: 500; }
.hero-trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--subtle); }

/* hero visual */
.hero-visual { position: relative; }
.shot {
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
}
.shot-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.shot-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.shot-bar i:nth-child(1) { background: #ff5f57; }
.shot-bar i:nth-child(2) { background: #febc2e; }
.shot-bar i:nth-child(3) { background: #28c840; }
.shot-bar span { margin-left: 10px; font-size: 0.74rem; color: var(--subtle); }
.shot-body {
  aspect-ratio: 16 / 10; position: relative;
  background:
    linear-gradient(135deg, rgba(255,138,30,0.10), rgba(37,182,232,0.10)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 14px, transparent 14px 28px);
  display: grid; place-items: center;
}
.shot-body img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-label {
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.92rem;
  color: var(--subtle); letter-spacing: 0.04em; text-transform: uppercase;
  padding: 8px 16px; border: 1px dashed var(--line-2); border-radius: 10px;
  background: rgba(10,12,18,0.4);
}
.hero-visual .shot-browser { transform: perspective(1600px) rotateY(-9deg) rotateX(3deg); }

.shot-phone {
  position: absolute; bottom: -42px; right: -28px; width: 168px;
  border-radius: 26px; border-width: 6px;
}
.shot-phone .shot-body { aspect-ratio: 9 / 18; border-radius: 20px; }

.hero-chip {
  position: absolute; background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 9px 16px; font-size: 0.84rem; font-weight: 600;
  box-shadow: var(--shadow); white-space: nowrap;
}
.chip-1 { top: -18px; left: -26px; color: var(--amber); }
.chip-2 { bottom: 40px; left: -42px; color: var(--teal); }

.float-a { animation: floaty 6s ease-in-out infinite; }
.float-b { animation: floaty 5s ease-in-out infinite 0.4s; }
.float-c { animation: floaty 7s ease-in-out infinite 0.8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =========================================================
   STRIP BAR
   ========================================================= */
.stripbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 38px 24px; }
.stat { text-align: center; }
.stat b { display: block; font-family: "Sora", sans-serif; font-size: 2.6rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: var(--muted); font-size: 0.88rem; }

/* =========================================================
   SECTIONS (generic)
   ========================================================= */
.section { padding: 100px 0; position: relative; }
.section-tight { padding: 70px 0; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.kicker {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.kicker-ai { color: var(--amber); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* =========================================================
   AUDIENCES
   ========================================================= */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aud-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
  transition: all 0.3s var(--ease);
}
.aud-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.aud-card.feature-mid { border-color: rgba(255,138,30,0.3); box-shadow: var(--shadow-glow); }
.aud-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 20px; }
.ico-host { background: rgba(255,138,30,0.14); color: var(--orange); }
.ico-guest { background: rgba(255,176,32,0.14); color: var(--amber); }
.ico-tenant { background: rgba(37,182,232,0.14); color: var(--teal); }
.aud-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.aud-card > p { color: var(--muted); font-size: 0.96rem; margin-bottom: 20px; }
.aud-link { font-weight: 600; color: var(--orange); font-size: 0.92rem; transition: gap 0.2s; }
.aud-link:hover { opacity: 0.85; }

.ticks { list-style: none; margin-bottom: 22px; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; color: var(--muted); font-size: 0.92rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(255,138,30,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff8a1e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / 11px no-repeat;
}

/* =========================================================
   AI SECTION
   ========================================================= */
.section-ai { overflow: hidden; }
.ai-bg {
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 50% 0%, rgba(255,176,32,0.10), transparent 60%);
  pointer-events: none;
}
.ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ai-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; overflow: hidden;
  transition: all 0.3s var(--ease);
}
.ai-card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit;
  background: var(--grad-teal); opacity: 0; transition: opacity 0.3s var(--ease);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.ai-card:hover { transform: translateY(-6px); background: var(--surface-2); }
.ai-card:hover::before { opacity: 1; }
.ai-ico { font-size: 2rem; margin-bottom: 16px; }
.ai-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.ai-card p { color: var(--muted); font-size: 0.94rem; }

.ai-note {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  max-width: 760px; margin: 46px auto 0; text-align: center;
  color: var(--muted); font-size: 0.95rem;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 24px;
}

/* =========================================================
   SPOTLIGHTS
   ========================================================= */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 110px; }
.spotlight:last-child { margin-bottom: 0; }
.spotlight.reverse .spot-copy { order: 2; }
.spot-copy h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 14px 0 16px; }
.spot-copy > p { color: var(--muted); font-size: 1.04rem; margin-bottom: 24px; }
.spot-visual .shot { transform: perspective(1800px) rotateY(-6deg); transition: transform 0.5s var(--ease); }
.spotlight.reverse .spot-visual .shot { transform: perspective(1800px) rotateY(6deg); }
.spot-visual .shot:hover { transform: perspective(1800px) rotateY(0); }

/* Featured spotlight — highlights the unified inbox */
.spotlight-feature .spot-copy .kicker { color: var(--amber); }
.spotlight-feature .spot-visual .shot {
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-border, rgba(255,138,30,0.35));
}

/* =========================================================
   FEATURE GRID
   ========================================================= */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 22px; transition: all 0.25s var(--ease);
}
.feat:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.fi { font-size: 1.6rem; display: block; margin-bottom: 14px; }
.feat h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 0.88rem; }

/* =========================================================
   INTEGRATIONS
   ========================================================= */
.integ-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.integ {
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 1rem;
  color: var(--muted); background: var(--surface); border: 1px solid var(--line);
  padding: 12px 22px; border-radius: 999px; transition: all 0.25s var(--ease);
}
.integ:hover { color: var(--text); border-color: var(--orange); transform: translateY(-3px); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 22px; transition: border-color 0.2s var(--ease);
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.04rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; color: var(--orange); font-weight: 400;
  transition: transform 0.25s var(--ease); flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 20px; font-size: 0.96rem; }

/* =========================================================
   CTA
   ========================================================= */
.cta-section { padding: 60px 0 110px; }
.cta-card {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 70px 40px; box-shadow: var(--shadow);
}
.cta-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 360px;
  background: radial-gradient(circle, rgba(255,106,0,0.28), transparent 65%);
  pointer-events: none;
}
.cta-card h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-card p { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; position: relative; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 60px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.foot-brand p { color: var(--subtle); font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.foot-col h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--subtle); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 5px 0; transition: color 0.15s; }
.foot-col a:hover { color: var(--orange); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); color: var(--subtle); font-size: 0.85rem; }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a:hover { color: var(--text); }

/* =========================================================
   PROPERTY TYPES
   ========================================================= */
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.type-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 22px; text-align: center; transition: all 0.25s var(--ease);
}
.type-card:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--surface-2); }
.type-card .ti { font-size: 2rem; display: block; margin-bottom: 14px; }
.type-card h4 { font-size: 1.06rem; margin-bottom: 8px; }
.type-card p { color: var(--muted); font-size: 0.86rem; }
.type-card.type-custom { border-color: rgba(255,138,30,0.32); box-shadow: var(--shadow-glow); }
.type-card.type-custom h4 { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* =========================================================
   MCP — BRING YOUR OWN AI
   ========================================================= */
.section-mcp { overflow: hidden; }
.mcp-bg {
  position: absolute; inset: 0;
  background: radial-gradient(720px 420px at 50% 0%, rgba(108,142,245,0.10), transparent 60%);
  pointer-events: none;
}
.mcp-platforms { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }
.mcp-plat {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 22px; transition: all 0.25s var(--ease);
}
.mcp-plat:hover { border-color: var(--line-2); transform: translateY(-3px); }
.mcp-pico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; }
.mcp-plat strong { display: block; font-family: "Sora", sans-serif; font-size: 1rem; }
.mcp-plat small { color: var(--subtle); font-size: 0.8rem; }

.mcp-showcase { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.mcp-visual .shot { box-shadow: var(--shadow); }
.shot-body-tall { aspect-ratio: 1340 / 940; }
.mcp-copy h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.mcp-copy > p { color: var(--muted); font-size: 1.02rem; margin-bottom: 20px; }
.mcp-fine {
  font-size: 0.9rem; color: var(--subtle);
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; margin-top: 8px;
}
.mcp-prompts { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 50px; }
.mcp-prompt {
  font-size: 0.9rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; transition: all 0.25s var(--ease);
}
.mcp-prompt:hover { color: var(--text); border-color: var(--orange); transform: translateY(-2px); }

/* =========================================================
   LEGAL PAGES (privacy / terms)
   ========================================================= */
.legal-hero {
  position: relative; padding: 132px 0 40px; border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden;
}
.legal-hero .hero-glow { top: -200px; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; }
.legal-updated { color: var(--subtle); font-size: 0.9rem; margin-top: 14px; }
.legal-wrap { max-width: 840px; margin: 0 auto; padding: 50px 24px 100px; }

.legal-toc {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 26px; margin-bottom: 44px;
}
.legal-toc h2 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--subtle); margin-bottom: 14px; }
.legal-toc ol { margin: 0; padding-left: 18px; columns: 2; column-gap: 30px; }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.legal-toc a:hover { color: var(--orange); }

.legal-body { color: var(--muted); }
.legal-body h2 {
  font-size: 1.32rem; font-weight: 700; color: var(--text);
  margin: 40px 0 14px; scroll-margin-top: 92px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.legal-body p { font-size: 1rem; line-height: 1.78; margin-bottom: 16px; }
.legal-body ul, .legal-body ol { margin: 0 0 18px; padding-left: 24px; }
.legal-body li { font-size: 1rem; line-height: 1.7; margin-bottom: 9px; }
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--orange); }
.legal-body a:hover { text-decoration: underline; }
.legal-callout {
  background: rgba(255,176,32,0.07); border: 1px solid rgba(255,176,32,0.22);
  border-radius: 12px; padding: 16px 18px; font-size: 0.94rem; margin: 26px 0;
}
.legal-table-note { font-size: 0.92rem; }

@media (max-width: 640px) {
  .legal-toc ol { columns: 1; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .lede { max-width: none; }
  .aud-grid, .ai-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .spotlight, .spotlight.reverse { grid-template-columns: 1fr; gap: 32px; }
  .spotlight.reverse .spot-copy { order: 0; }
  .spot-visual .shot, .spotlight.reverse .spot-visual .shot { transform: none; }
  .mcp-showcase { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Hero collage: once stacked, lay the dashboard flat & full-width with the
     phone tucked at the corner, and drop the floating chips so the dashboard
     stays legible. */
  .hero-visual { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .hero-visual .shot-browser { transform: none; width: 100%; }
  .shot-phone { position: static; width: 158px; margin: -44px auto 0; }
  .hero-chip { display: none; }
}

/* Collapse the nav to a burger early enough that the link row never crowds. */
@media (max-width: 1140px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(10,12,18,0.97); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 4px;
  }
  .nav-links.open a { padding: 12px 14px; }
  .nav-actions .btn-primary { display: none; }
}

@media (max-width: 720px) {
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .aud-grid, .ai-grid, .feat-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-a, .float-b, .float-c, .dot { animation: none; }
}
