/* StaffOnAI marketing site — v3: derived from the live product's visual language.
   Sources: apps/web design-tokens (#1677FF, Plus Jakarta Sans, radius 8–20, soft shadows),
   Chat page sky gradient (#EAF2FE→#FAFBFF), Home agent cards (135° theme→light gradient,
   hero figure anchored bottom), glassmorphism overlays, pill inputs/chips. */
:root {
  --ink: #191919;
  --ink-soft: #666666;
  --ink-faint: #999999;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --line: #e5e5e5;
  --primary: #1677ff;
  --primary-dark: #1060d0;
  --sky1: #eaf2fe;
  --sky2: #f5f8fe;
  --sky3: #fafbff;
  --green: #07c160;
  --radius: 20px;
  --maxw: 1140px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, .btn:focus-visible, summary:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 6px;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,229,229,.7);
}
.nav-row { display: flex; align-items: center; gap: 28px; height: 70px; }
.logo { font-weight: 800; font-size: 22px; letter-spacing: -.03em; display: inline-flex; align-items: center; }
.logo img { width: 30px; height: 30px; margin-right: 10px; }
.logo span { color: var(--primary); }
.main-nav { display: flex; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 9px 15px; border-radius: 999px;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.nav-item > a:hover { background: var(--sky1); color: var(--primary); }
.nav-item > a.nav-active { background: var(--sky1); color: var(--primary); font-weight: 700; }
.nav-item .menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 60;
}
.nav-item:hover .menu { display: block; }
.menu a { display: block; padding: 10px 12px; border-radius: 12px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.menu a:hover { background: var(--bg-soft); color: var(--ink); }
.menu a.disabled { color: var(--ink-faint); cursor: default; }
.menu a.disabled:hover { background: none; }
.menu.menu-panel { width: 640px; padding: 20px 12px; }
.nav-item:hover .menu-panel { display: flex; gap: 8px; }
.menu-panel .menu-col { flex: 1; padding: 0 16px; }
.menu-panel .menu-col + .menu-col { border-left: 1px solid var(--line); }
.menu-col h5 {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700; margin: 4px 8px 12px;
}
.menu a.menu-entry { display: flex; gap: 12px; padding: 10px 8px; border-radius: 12px; align-items: flex-start; }
.menu-entry:hover { background: var(--bg-soft); }
.menu-entry .entry-icon { font-size: 20px; line-height: 1.3; filter: grayscale(1); }
.menu-entry strong { display: block; font-size: 15px; color: var(--ink); font-weight: 700; }
.menu-entry small { display: block; font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.menu.menu-platform { width: 620px; padding: 24px 20px; }
.nav-item:hover .menu-platform { display: block; }
.menu-platform .panel-title {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700; margin: 0 8px 6px;
}
.menu-platform .panel-sub { font-size: 14.5px; color: var(--ink-soft); margin: 0 8px 18px; }
.platform-agent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; }
.menu a.agent-entry { align-items: center; }
.agent-entry img {
  width: 44px; height: 44px; border-radius: 12px; object-fit: cover;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent, #1677ff) 30%, white), color-mix(in srgb, var(--accent, #1677ff) 10%, white));
}
.menu a.panel-link { display: inline-block; margin: 16px 8px 0; padding: 0; font-size: 14.5px; font-weight: 700; color: var(--primary); }
.menu a.panel-link:hover { background: none; text-decoration: underline; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 15px; font-weight: 600; }
.nav-cta .login:hover { color: var(--primary); }
.nav-cta a.nav-active { color: var(--primary); }

/* ---------- buttons / badges ---------- */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -.01em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(22,119,255,.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary { border: 1.5px solid var(--ink); color: var(--ink); background: rgba(255,255,255,.6); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 16px 38px; font-size: 17px; }
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
}
.badge-live { background: #e6f9ef; color: #059a4e; }
.badge-soon { background: #eef1f7; color: var(--ink-faint); }

/* ---------- hero ---------- */
.hero {
  padding: 88px 0 72px; text-align: center;
  background: linear-gradient(180deg, var(--sky1), var(--sky2) 46%, #ffffff);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.85); border: 1px solid rgba(22,119,255,.18);
  border-radius: 999px; padding: 7px 16px; box-shadow: var(--shadow-sm);
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--primary); text-transform: uppercase; margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 66px); line-height: 1.06; letter-spacing: -.035em;
  font-weight: 800; max-width: 880px; margin: 0 auto 22px;
}
.hero .sub { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 700px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero-visual { margin: 56px auto 0; max-width: 1020px; position: relative; }
.hero-visual .hero-img {
  width: 100%; border-radius: 24px; box-shadow: 0 20px 48px rgba(22,119,255,.18);
  border: 1px solid rgba(255,255,255,.8);
}
.glass-chip {
  position: absolute; left: 26px; bottom: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 11px 20px; box-shadow: var(--shadow-md);
  font-size: 14.5px; font-weight: 700;
}
.glass-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(7,193,96,.18); }

/* ---------- placeholder visuals (still used where no real art yet) ---------- */
.ph {
  background: linear-gradient(135deg, var(--sky1), var(--sky3));
  border: 2px dashed #bcd4f6; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #7ba3d9; font-size: 14px; font-weight: 600;
  text-align: center; padding: 16px; line-height: 1.6;
}
.ph-hero { height: 430px; }
.ph-feature { height: 300px; }
.ph-map { height: 260px; }

/* ---------- generic sections ---------- */
section { padding: 78px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -.03em; line-height: 1.12; font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 18px; }

/* ---------- trust strip ---------- */
.trust-bar {
  background: #fff; border-bottom: 1px solid var(--line);
  color: var(--ink-soft); padding: 15px 0; text-align: center;
  font-size: 14.5px; font-weight: 500;
}
.trust-bar strong { color: var(--primary); font-weight: 700; }

/* ---------- product-style gradient agent cards (roster) ---------- */
.roster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.agent-v3 {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.agent-v3:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.agent-v3-top {
  position: relative; height: 250px;
  background: linear-gradient(135deg, var(--c1, #1677ff), var(--c2, #69b9ff));
  display: flex; align-items: flex-end; justify-content: center;
}
.agent-v3-top img {
  height: 212px; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
}
.agent-v3-id { position: absolute; top: 16px; left: 18px; color: #fff; text-align: left; text-shadow: 0 1px 6px rgba(0,0,0,.18); }
.agent-v3-id h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.agent-v3-id .r { font-size: 12.5px; font-weight: 600; opacity: .95; margin-top: 2px; }
.agent-v3 .badge { position: absolute; top: 16px; right: 16px; }
.agent-v3 .badge-live { background: rgba(255,255,255,.94); color: #059a4e; }
.agent-v3 .badge-soon { background: rgba(255,255,255,.28); color: #fff; backdrop-filter: blur(4px); }
.agent-v3-body { padding: 16px 18px 18px; }
.agent-v3-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* legacy simple agent cards (kept for any remaining usage) */
.agent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.agent-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; text-align: center; position: relative; box-shadow: var(--shadow-sm); }
.agent-card .avatar { width: 96px; height: 96px; border-radius: 50%; margin: 6px auto 16px; }
.agent-card h3 { font-size: 21px; font-weight: 800; }
.agent-card .role { font-size: 12px; font-weight: 700; color: var(--accent, var(--primary)); text-transform: uppercase; letter-spacing: .08em; margin: 4px 0 10px; }
.agent-card .tagline { font-size: 15px; color: var(--ink-soft); }
.agent-card .badge { position: absolute; top: 16px; right: 16px; }

/* ---------- alternating feature blocks ---------- */
.feature { display: flex; align-items: center; gap: 60px; padding: 44px 0; }
.feature:nth-child(even) { flex-direction: row-reverse; }
.feature > div { flex: 1; }
.feature h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -.025em; line-height: 1.18; margin-bottom: 14px; }
.feature p { color: var(--ink-soft); font-size: 17px; }
.feature .kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 12px;
}
.feature img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.feature ul.checks { list-style: none; margin-top: 14px; }
.feature ul.checks li { padding: 7px 0 7px 32px; position: relative; color: var(--ink-soft); font-size: 16.5px; }
.feature ul.checks li::before { content: "✓"; position: absolute; left: 0; top: 7px; color: var(--green); font-weight: 700; }

/* ---------- stats band ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card {
  background: linear-gradient(180deg, var(--sky1), #ffffff 70%);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm);
}
.stat-card .num { font-size: 46px; font-weight: 800; letter-spacing: -.04em; color: var(--primary); line-height: 1.1; margin-bottom: 10px; }
.stat-card .label { font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
.stat-card .desc { font-size: 14px; color: var(--ink-soft); }
.fineprint { font-size: 12.5px; color: var(--ink-faint); text-align: center; margin-top: 24px; }

/* ---------- services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card .icon {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 16px;
  background: var(--sky1);
}
.service-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--ink-soft); }

/* ---------- final CTA: giant product-style gradient card ---------- */
.cta-final { background: #fff; padding: 40px 0 90px; text-align: center; }
.cta-final .container {
  background: linear-gradient(135deg, #1677ff, #69b9ff);
  border-radius: 28px; padding: 84px 48px; color: #fff;
  box-shadow: 0 20px 48px rgba(22,119,255,.28);
}
.cta-final h2 { font-size: clamp(30px, 3.8vw, 48px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 16px; }
.cta-final p { color: rgba(255,255,255,.88); font-size: 18px; max-width: 640px; margin: 0 auto 34px; }
.cta-final .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.cta-final .btn-primary:hover { background: var(--sky1); }
.cta-final .btn-secondary { border-color: rgba(255,255,255,.8); color: #fff; background: transparent; }
.cta-final .btn-secondary:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 58px 0 28px; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-grid h4 {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink-faint); margin-bottom: 14px;
}
.footer-grid a { display: block; padding: 4px 0; color: var(--ink-soft); font-weight: 500; }
.footer-grid a:hover { color: var(--primary); }
.footer-brand p { color: var(--ink-soft); margin: 12px 0 6px; max-width: 260px; }
.footer-brand .fineprint { text-align: left; margin-top: 8px; }
.footer-meta {
  border-top: 1px solid var(--line); padding-top: 22px; color: var(--ink-faint);
  font-size: 13px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------- product page ---------- */
.lily-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.flow-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.flow-step .step-no {
  width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff;
  font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(22,119,255,.3);
}
.flow-step h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.flow-step p { font-size: 15px; color: var(--ink-soft); }
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.platform-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.platform-card .icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--sky1); margin-bottom: 14px; }
.platform-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.platform-card p { font-size: 14px; color: var(--ink-soft); }
.lily-feature { display: flex; gap: 56px; align-items: center; }
.lily-feature img { border-radius: var(--radius); max-width: 420px; }
.lily-feature h2 { font-weight: 800; }

/* ---------- solutions page ---------- */
.solution { padding: 64px 0; }
.solution .inner { display: flex; gap: 60px; align-items: center; }
.solution:nth-child(even) { background: var(--bg-soft); }
.solution:nth-child(even) .inner { flex-direction: row-reverse; }
.solution .inner > div { flex: 1; }
.solution h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -.025em; line-height: 1.16; margin: 10px 0 18px; }
.solution .eyebrow { margin-bottom: 0; }
.solution img.sol-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.solution ul { list-style: none; }
.solution li { padding: 8px 0 8px 32px; position: relative; color: var(--ink-soft); }
.solution li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--green); font-weight: 700; }
.solution .agents-row { display: flex; gap: 10px; margin-top: 22px; align-items: center; }
.solution .agents-row img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #fff; box-shadow: var(--shadow-md); }
.solution .agents-row .note { font-size: 13px; font-weight: 600; color: var(--ink-faint); margin-left: 6px; }

/* ---------- resources page ---------- */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card {
  background: linear-gradient(180deg, var(--sky1), #ffffff 60%);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.story-card .num { font-size: 42px; font-weight: 800; letter-spacing: -.04em; color: var(--primary); margin-bottom: 6px; }
.story-card .tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.story-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -.015em; margin-bottom: 10px; }
.story-card p { font-size: 15px; color: var(--ink-soft); }

/* ---------- company page ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); font-size: 17.5px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.value-card .no { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--primary); margin-bottom: 10px; }
.value-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.value-card p { font-size: 15px; color: var(--ink-soft); }
.team-block { max-width: 780px; margin: 0 auto 36px; }
.team-block h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.team-block p { color: var(--ink-soft); }
.job-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.job-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.job-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.job-card .dept { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 14px; }
.job-card h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); font-weight: 700; margin-bottom: 8px; }
.job-card ul { list-style: none; }
.job-card li { padding: 4px 0 4px 24px; position: relative; font-size: 15px; color: var(--ink-soft); }
.job-card li::before { content: "·"; position: absolute; left: 8px; font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 32px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-card .icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--sky1); margin: 0 auto 12px; }
.contact-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.contact-card p { font-size: 15px; color: var(--ink-soft); }

.map-embed { display: block; width: 100%; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---------- pricing page ---------- */
.pricing-cta-card {
  background: linear-gradient(135deg, #1677ff, #69b9ff);
  border: none; border-radius: 28px;
  max-width: 680px; margin: 0 auto; padding: 52px 44px; text-align: center; color: #fff;
  box-shadow: 0 20px 48px rgba(22,119,255,.28);
}
.pricing-cta-card h2 { font-size: 30px; font-weight: 800; letter-spacing: -.025em; margin-bottom: 12px; }
.pricing-cta-card p { color: rgba(255,255,255,.88); margin-bottom: 26px; }
.pricing-cta-card .btn-primary { background: #fff; color: var(--primary); }
.pricing-cta-card .btn-primary:hover { background: var(--sky1); }
.pricing-cta-card .note { font-size: 13px; color: rgba(255,255,255,.75); margin: 16px 0 0; }
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 4px; }
.faq summary { font-weight: 700; font-size: 17px; letter-spacing: -.01em; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); padding-top: 12px; font-size: 16px; }

/* ---------- legal pages ---------- */
.legal-body { max-width: 780px; margin: 0 auto; padding: 64px 24px; }
.legal-body h1 { font-size: 36px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 20px; }
.legal-body p { color: var(--ink-soft); margin-bottom: 16px; }


/* ---------- material symbols (Google icon library) ---------- */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal; font-style: normal; line-height: 1;
  letter-spacing: normal; text-transform: none; display: inline-block;
  white-space: nowrap; word-wrap: normal; direction: ltr;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  -webkit-font-smoothing: antialiased;
}
.service-card .icon .material-symbols-rounded,
.platform-card .icon .material-symbols-rounded,
.contact-card .icon .material-symbols-rounded { font-size: 26px; color: var(--primary); }
.menu-entry .entry-icon.material-symbols-rounded { font-size: 22px; color: var(--ink-soft); filter: none; margin-top: 2px; }

/* ---------- motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .agent-v3, .service-card { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .agent-grid, .roster-grid, .services-grid, .stats-grid, .story-grid,
  .value-grid, .contact-grid, .lily-flow { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature, .feature:nth-child(even), .solution .inner, .solution:nth-child(even) .inner,
  .lily-feature { flex-direction: column; }
  .main-nav { display: none; } /* mockup: mobile menu omitted */
}
@media (max-width: 620px) {
  .agent-grid, .roster-grid, .services-grid, .stats-grid, .story-grid,
  .value-grid, .contact-grid, .lily-flow, .platform-grid,
  .two-col, .job-grid { grid-template-columns: 1fr; }
  .glass-chip { left: 14px; bottom: 14px; padding: 8px 14px; font-size: 13px; }
  .cta-final .container { padding: 56px 24px; }
}
