:root {
  color-scheme: dark;
  --bg: #08090a;
  --bg-deep: #050607;
  --surface: #0d0e10;
  --surface-2: #111216;
  --surface-3: #15171b;
  --line: #27292f;
  --line-soft: #1b1d21;
  --text: #f4f4f5;
  --muted: #9a9ca3;
  --quiet: #686b73;
  --blue: #6798ff;
  --blue-bright: #8cb3ff;
  --green: #72d49a;
  --max: 1200px;
  --radius: 8px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 62%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; border-radius: 6px; background: #fff; color: #000; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(8,9,10,.74);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line-soft); background: rgba(8,9,10,.92); }
.nav-shell { min-height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { display: inline-flex; width: fit-content; align-items: center; gap: 10px; font-size: 18px; font-weight: 620; letter-spacing: -.04em; }
.brand-mark { width: 27px; height: 27px; fill: currentColor; }
.brand-pulse { fill: var(--blue); }
.primary-nav { display: flex; align-items: center; gap: 30px; color: #b6b8be; font-size: 14px; }
.primary-nav a, .footer-links a { transition: color .16s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible, .footer-links a:hover, .footer-links a:focus-visible { color: #fff; }
.nav-cta { justify-self: end; display: inline-flex; gap: 8px; align-items: center; padding: 9px 14px; border: 1px solid #36383f; border-radius: 6px; background: #15161a; font-size: 13px; font-weight: 560; transition: border-color .18s, background .18s; }
.nav-cta:hover { border-color: #565962; background: #1b1d21; }
.menu-button { display: none; border: 0; background: transparent; }

.hero { min-height: 850px; padding-block: 136px 88px; text-align: center; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  z-index: -1;
  width: min(900px, 96vw);
  height: 540px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(69,111,205,.16), rgba(8,9,10,0) 68%);
  pointer-events: none;
}
.hero-copy { max-width: 920px; margin-inline: auto; }
.announcement { width: fit-content; min-height: 30px; display: inline-flex; align-items: center; gap: 9px; margin: 0 auto 24px; padding: 4px 10px 4px 5px; border: 1px solid #2b2d33; border-radius: 999px; background: rgba(17,18,22,.72); color: #a6a8af; font-size: 10px; transition: border-color .18s, background .18s; }
.announcement:hover { border-color: #454850; background: #15171b; }
.announcement span { padding: 3px 7px; border-radius: 999px; background: rgba(103,152,255,.1); color: var(--blue-bright); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.announcement i { color: #6c6f76; font-style: normal; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: #a8aab1; font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.hero .eyebrow, .closing .eyebrow { justify-content: center; }
.live-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(103,152,255,.1); }
.hero h1 { max-width: 900px; margin: 26px auto 24px; font-size: clamp(54px, 7.2vw, 92px); line-height: .97; letter-spacing: -.072em; font-weight: 620; }
.hero h1 span { color: #92949c; }
.hero-lede { max-width: 690px; margin: 0 auto; color: #a7a9b0; font-size: clamp(18px, 2vw, 21px); line-height: 1.55; letter-spacing: -.015em; }
.hero-actions { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 44px; padding: 0 18px; border: 1px solid var(--line); border-radius: 7px; font-size: 14px; font-weight: 580; transition: transform .16s, border-color .16s, background .16s; }
.button:hover { transform: translateY(-1px); }
.button-primary { border-color: #e9e9ec; background: #f0f0f2; color: #0a0b0d; }
.button-primary:hover { background: #fff; }
.button-quiet { background: #111216; color: #d3d4d8; }
.button-quiet:hover { border-color: #4b4e55; background: #17181c; }
.hero-note { margin: 18px 0 0; color: #5f6269; font-size: 12px; }

.hero-product { position: relative; max-width: 1050px; margin: 92px auto 0; border: 1px solid #32343b; border-radius: 10px; background: rgba(12,13,15,.96); box-shadow: 0 36px 110px rgba(0,0,0,.54); text-align: left; overflow: hidden; }
.hero-product::before { position: absolute; top: 0; left: 0; width: 32%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: .8; }
.window-bar { min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid var(--line-soft); color: #8c8e95; font-size: 11px; }
.window-brand, .window-status { display: flex; align-items: center; gap: 8px; }
.mini-mark { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid #3b3d44; border-radius: 5px; color: #d8d9dc; font-size: 10px; font-weight: 700; }
.window-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(114,212,154,.08); }
.command-area { padding: 27px 28px 24px; border-bottom: 1px solid var(--line-soft); background: linear-gradient(180deg, rgba(103,152,255,.025), transparent); }
.command-label { color: #676a72; font-size: 10px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.command-area p { margin: 11px 0 17px; color: #ececef; font-size: 17px; letter-spacing: -.02em; }
.command-meta { display: flex; justify-content: space-between; align-items: center; color: #555860; font-size: 10px; }
.model-pill { padding: 4px 8px; border: 1px solid #30323a; border-radius: 999px; color: #9ea0a7; }
.workflow-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-soft); }
.workflow-card { position: relative; min-height: 194px; padding: 22px; background: #0d0e10; overflow: hidden; }
.workflow-card.active { background: linear-gradient(145deg, rgba(103,152,255,.09), #0d0e10 60%); }
.workflow-card.active::after { position: absolute; inset: auto 0 0; height: 2px; content: ""; background: linear-gradient(90deg, var(--blue), transparent 80%); }
.card-top { display: flex; align-items: center; justify-content: space-between; }
.step-number { color: #555860; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.status-chip { padding: 3px 7px; border: 1px solid rgba(103,152,255,.3); border-radius: 999px; background: rgba(103,152,255,.08); color: var(--blue-bright); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.status-chip.muted { border-color: #292b31; background: #141519; color: #696c73; }
.status-chip.gate { border-color: rgba(224,184,90,.25); background: rgba(224,184,90,.06); color: #d6b86d; }
.workflow-card h3 { margin: 27px 0 7px; font-size: 15px; letter-spacing: -.02em; }
.workflow-card p { margin: 0; color: #777a82; font-size: 12px; line-height: 1.55; }
.source-row { display: flex; gap: 6px; margin-top: 20px; }
.source-row span { padding: 4px 7px; border: 1px solid #25272c; border-radius: 4px; color: #767981; font-size: 9px; }
.progress-track { width: 100%; height: 3px; margin-top: 25px; border-radius: 2px; background: #1d1f24; overflow: hidden; }
.progress-track span { display: block; width: 42%; height: 100%; background: #62656e; }
.demo-approve { width: 100%; margin-top: 18px; padding: 8px 10px; display: flex; justify-content: space-between; border: 1px solid #2b2d33; border-radius: 5px; background: #15161a; color: #a9abb2; font-size: 10px; cursor: pointer; }
.demo-approve:hover, .demo-approve.approved { border-color: rgba(114,212,154,.35); color: #b8e8cb; background: rgba(114,212,154,.06); }
.activity-line { min-height: 56px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 0 20px; border-top: 1px solid var(--line-soft); background: #0a0b0d; color: #aaa; font-size: 10px; }
.activity-icon { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(103,152,255,.22); border-radius: 50%; background: rgba(103,152,255,.07); color: var(--blue); }
.activity-line strong, .activity-line small { display: block; }
.activity-line strong { color: #bfc0c5; font-size: 10px; font-weight: 560; }
.activity-line small { margin-top: 2px; color: #5c5f66; }
.activity-time { color: #53565d; }

.proof-strip { border-block: 1px solid var(--line-soft); background: #090a0c; }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-grid > div { min-height: 120px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 14px; padding: 0 26px; border-right: 1px solid var(--line-soft); }
.proof-grid > div:first-child { border-left: 1px solid var(--line-soft); }
.proof-grid span { grid-row: 1 / 3; align-self: start; color: #4d5057; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.proof-grid strong { color: #dedfe2; font-size: 13px; font-weight: 570; }
.proof-grid small { color: #65686f; font-size: 11px; }

.section { padding-block: 150px; }
.section-heading { max-width: 720px; }
.centered-heading { margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading p { margin-inline: auto; }
.section h2 { margin: 18px 0 24px; font-size: clamp(42px, 5.4vw, 68px); font-weight: 590; line-height: 1.03; letter-spacing: -.055em; }
.section-heading p, .trust-copy > p, .future-copy > p { max-width: 650px; margin: 0; color: #92949c; font-size: 17px; line-height: 1.65; }
.platform-board { position: relative; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 72px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.board-rail { position: absolute; left: 10%; right: 10%; top: 49px; z-index: 2; display: grid; grid-template-columns: 10px 1fr 10px 1fr 10px; align-items: center; }
.rail-dot { width: 9px; height: 9px; border: 2px solid #4c4f57; border-radius: 50%; background: #111216; }
.rail-dot.active { border-color: var(--blue); box-shadow: 0 0 0 5px rgba(103,152,255,.08); }
.rail-line { height: 1px; background: linear-gradient(90deg, #3a3d44, #23252a); }
.board-stage { min-height: 430px; padding: 84px 30px 30px; border-right: 1px solid var(--line); background: #0c0d0f; }
.board-stage:last-child { border: 0; }
.board-stage.focal-stage { background: linear-gradient(180deg, rgba(103,152,255,.045), #0c0d0f 55%); }
.stage-kicker, .feature-index { color: #676a72; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .06em; text-transform: uppercase; }
.board-stage h3 { margin: 48px 0 13px; font-size: 22px; letter-spacing: -.035em; }
.board-stage p { max-width: 310px; margin: 0; color: #777a81; font-size: 13px; line-height: 1.65; }
.context-stack { margin-top: 36px; border: 1px solid #24262b; border-radius: 7px; overflow: hidden; }
.context-stack > div { min-height: 45px; display: flex; align-items: center; gap: 10px; padding: 0 12px; border-bottom: 1px solid #202227; color: #a4a6ac; font-size: 11px; }
.context-stack > div:last-child { border: 0; }
.context-stack b { margin-left: auto; color: #5d7c6a; font-size: 9px; font-weight: 600; }
.context-icon { width: 17px; height: 17px; border: 1px solid #353840; border-radius: 4px; background: #17191d; }
.reasoning-map { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; margin-top: 52px; }
.reasoning-map span { color: #696c73; font-size: 9px; text-transform: uppercase; }
.reasoning-map strong { display: grid; place-items: center; width: 68px; height: 68px; border: 1px solid rgba(103,152,255,.35); border-radius: 50%; background: radial-gradient(circle, rgba(103,152,255,.14), rgba(103,152,255,.025)); color: #bdcfff; font-size: 10px; font-weight: 600; box-shadow: 0 0 36px rgba(64,111,208,.12); }
.reasoning-map i { height: 1px; background: linear-gradient(90deg, #292b31, var(--blue), #292b31); opacity: .6; }
.policy-list { margin-top: 38px; }
.policy-list div { display: flex; gap: 9px; padding-block: 10px; border-bottom: 1px solid #1e2024; color: #85888f; font-size: 11px; }
.policy-list span { color: #6aa783; }
.policy-list span.lock { color: #d1b56f; }

.zero-section { border-block: 1px solid var(--line-soft); background: #0a0b0d; }
.zero-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 70px; }
.product-label { display: flex; align-items: center; gap: 10px; color: #8e9097; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.zero-glyph { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid #3a3c43; border-radius: 6px; color: var(--blue-bright); font-size: 11px; font-weight: 700; }
.zero-intro h2 { margin-bottom: 0; }
.zero-intro > p { max-width: 500px; margin: 0 0 8px; color: #a1a3aa; font-size: 18px; line-height: 1.6; }
.zero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 72px; }
.feature { min-height: 490px; padding: 34px; border: 1px solid var(--line); border-radius: 9px; background: #0d0e10; overflow: hidden; }
.feature-wide { grid-column: 1 / -1; min-height: 470px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.feature h3 { max-width: 480px; margin: 22px 0 15px; font-size: 30px; line-height: 1.1; letter-spacing: -.045em; }
.feature > p, .feature-copy p { max-width: 500px; margin: 0; color: #85878e; font-size: 14px; line-height: 1.65; }
.day-view { border: 1px solid #292b30; border-radius: 8px; background: #0a0b0d; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.day-head { min-height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; border-bottom: 1px solid #24262b; color: #8d9097; font-size: 10px; }
.day-head span:last-child { color: var(--green); }
.day-row { min-height: 83px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 8px; padding: 0 16px; border-bottom: 1px solid #1f2125; }
.day-row:last-child { border: 0; }
.day-row time { color: #555860; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.day-row strong, .day-row small { display: block; }
.day-row strong { color: #c7c8cc; font-size: 11px; font-weight: 570; }
.day-row small { margin-top: 4px; color: #60636a; font-size: 9px; }
.focus-row { background: linear-gradient(90deg, rgba(103,152,255,.045), transparent); }
.ready-tag { padding: 3px 6px; border: 1px solid #292c32; border-radius: 999px; color: #6d7077; font-size: 8px; text-transform: uppercase; }
.channel-preview { display: flex; flex-direction: column; gap: 13px; margin: 54px auto 0; max-width: 440px; }
.bubble { padding: 13px 15px; border-radius: 12px; font-size: 11px; line-height: 1.45; }
.bubble-user { align-self: flex-end; max-width: 320px; border: 1px solid rgba(103,152,255,.2); border-bottom-right-radius: 3px; background: rgba(103,152,255,.08); color: #b7c9ee; }
.bubble-zero { align-self: flex-start; max-width: 370px; display: grid; grid-template-columns: 25px 1fr; gap: 10px; border: 1px solid #292b31; border-bottom-left-radius: 3px; background: #141519; color: #a9abb2; }
.bubble-zero span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 6px; background: #202329; color: var(--blue); font-size: 9px; font-weight: 700; }
.bubble-zero p { margin: 0; }
.approval-card { max-width: 430px; margin: 58px auto 0; border: 1px solid #2a2c32; border-radius: 8px; background: #111216; overflow: hidden; }
.approval-card > div:first-child { display: flex; align-items: center; gap: 12px; padding: 17px; }
.approval-icon { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #353840; border-radius: 7px; color: #d5b86f; }
.approval-card p { margin: 0; }
.approval-card strong, .approval-card small { display: block; }
.approval-card strong { color: #c7c8cd; font-size: 11px; }
.approval-card small { margin-top: 3px; color: #676a71; font-size: 9px; }
.approval-actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #292b30; text-align: center; }
.approval-actions span, .approval-actions strong { padding: 11px; color: #72757c; font-size: 9px; font-weight: 560; }
.approval-actions strong { border-left: 1px solid #292b30; color: #b5c9f0; background: rgba(103,152,255,.035); }
.capability-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.capability-row span { padding: 8px 11px; border: 1px solid #25272c; border-radius: 999px; color: #74777e; font-size: 10px; }

.work-section { border-bottom: 1px solid var(--line-soft); background: #08090a; }
.work-showcase { margin-top: 70px; border: 1px solid var(--line); border-radius: 10px; background: #0a0b0d; overflow: hidden; }
.work-tabs { min-height: 60px; display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); background: #0b0c0e; }
.work-tab { position: relative; border: 0; border-right: 1px solid var(--line); background: transparent; color: #6f7279; font-size: 11px; cursor: pointer; transition: color .18s, background .18s; }
.work-tab:last-child { border-right: 0; }
.work-tab span { margin-right: 10px; color: #45484f; font: 9px ui-monospace, SFMono-Regular, Menlo, monospace; }
.work-tab:hover { color: #b2b4ba; background: #101115; }
.work-tab.active { color: #e0e1e4; background: linear-gradient(180deg, rgba(103,152,255,.04), transparent); }
.work-tab.active::after { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; content: ""; background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.work-panel { min-height: 610px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 56px; align-items: center; padding: 54px; }
.work-panel[hidden] { display: none; }
.work-panel-copy h3 { margin: 18px 0 15px; font-size: 35px; line-height: 1.08; letter-spacing: -.045em; }
.work-panel-copy > p { margin: 0; color: #85888f; font-size: 14px; line-height: 1.7; }
.work-panel-copy ul { margin: 28px 0 0; padding: 0; list-style: none; }
.work-panel-copy li { position: relative; padding: 9px 0 9px 20px; border-bottom: 1px solid #1c1e22; color: #777a81; font-size: 11px; }
.work-panel-copy li::before { position: absolute; left: 2px; top: 13px; width: 6px; height: 6px; border: 1px solid #5c76a8; border-radius: 50%; content: ""; }
.product-surface { border: 1px solid #2a2c32; border-radius: 8px; background: #0d0e10; box-shadow: 0 28px 70px rgba(0,0,0,.32); overflow: hidden; }
.surface-head { min-height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid #25272c; color: #a6a8ae; font-size: 10px; }
.ready-state { display: flex; align-items: center; gap: 7px; color: #6f927d; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.ready-state i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(114,212,154,.07); }
.brief-layout { display: grid; grid-template-columns: 128px 1fr; min-height: 445px; }
.brief-layout aside { display: flex; flex-direction: column; gap: 4px; padding: 16px 10px; border-right: 1px solid #222429; background: #0a0b0d; }
.brief-layout aside span { padding: 8px 9px; border-radius: 4px; color: #555860; font-size: 8px; }
.brief-layout aside .selected { background: #17191d; color: #a5a7ae; }
.brief-document { padding: 30px; }
.document-kicker { color: #5a5d64; font: 8px ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; letter-spacing: .05em; }
.brief-document h4 { margin: 10px 0 26px; font-size: 22px; letter-spacing: -.035em; }
.decision-item { min-height: 76px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; border-top: 1px solid #222429; }
.decision-item b { color: #4e5158; font: 8px ui-monospace, SFMono-Regular, Menlo, monospace; }
.decision-item p { margin: 0; }
.decision-item strong, .decision-item small { display: block; }
.decision-item strong { color: #b8bac0; font-size: 10px; font-weight: 560; }
.decision-item small { margin-top: 4px; color: #5d6067; font-size: 8px; line-height: 1.45; }
.decision-item > span { padding: 3px 6px; border: 1px solid #2a2c31; border-radius: 999px; color: #696c73; font-size: 7px; text-transform: uppercase; }
.source-summary { display: flex; gap: 6px; margin-top: 22px; }
.source-summary span { padding: 4px 7px; border: 1px solid #24262b; border-radius: 4px; color: #585b62; font-size: 7px; }
.calendar-days { display: grid; grid-template-columns: 48px repeat(4,1fr); min-height: 48px; align-items: center; border-bottom: 1px solid #202227; text-align: center; }
.calendar-days strong { color: #777a81; font-size: 8px; font-weight: 560; }
.calendar-body { height: 365px; display: grid; grid-template-columns: 48px repeat(4,1fr); background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 59px, #1d1f23 60px); }
.time-axis { display: flex; flex-direction: column; justify-content: space-around; border-right: 1px solid #202227; color: #4f5259; font-size: 7px; text-align: center; }
.day-column { position: relative; border-right: 1px solid #1e2024; }
.day-column:last-child { border: 0; }
.day-column i, .day-column button { position: absolute; left: 8px; right: 8px; top: var(--top); }
.day-column i { height: var(--height); border-radius: 4px; background: #17191d; }
.day-column button { padding: 8px 5px; border: 1px solid #2a2d33; border-radius: 4px; background: #121418; color: #7b7e85; font-size: 7px; }
.day-column button.recommended { border-color: rgba(103,152,255,.35); background: rgba(103,152,255,.08); color: #a9c2f2; }
.calendar-foot { min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-top: 1px solid #24262b; color: #555860; font-size: 8px; }
.calendar-foot strong { color: #9db9ed; font-weight: 560; }
.follow-summary { display: flex; align-items: center; gap: 14px; padding: 24px; border-bottom: 1px solid #23252a; }
.summary-ring { display: grid; place-items: center; width: 58px; height: 58px; border: 3px solid #2d4776; border-right-color: #1c1e23; border-radius: 50%; color: #a9c3f4; font-size: 15px; font-weight: 600; }
.summary-ring small { font-size: 7px; }
.follow-summary > div { transform: translateX(0); }
.follow-summary strong, .follow-summary small { display: block; }
.follow-summary strong { color: #b7b9bf; font-size: 11px; }
.follow-summary small { margin-top: 4px; color: #62656c; font-size: 8px; }
.action-list { padding: 10px 20px 22px; }
.action-list > div { min-height: 74px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid #202227; }
.action-list > div:last-child { border: 0; }
.check { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid #33363d; border-radius: 6px; color: #73767d; font-size: 9px; }
.check.done { border-color: rgba(114,212,154,.22); background: rgba(114,212,154,.05); color: #7fb493; }
.action-list p { margin: 0; }
.action-list strong, .action-list small { display: block; }
.action-list strong { color: #aeb0b6; font-size: 9px; font-weight: 560; }
.action-list small { margin-top: 4px; color: #565960; font-size: 8px; }
.action-list b { color: #55585f; font-size: 7px; font-weight: 600; text-transform: uppercase; }
.action-list b.needs-approval { color: #c2a863; }

.connector-section { border-bottom: 1px solid var(--line-soft); background: #0a0b0d; overflow: hidden; }
.connector-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.connector-copy h2 { margin-top: 18px; font-size: clamp(40px, 4.7vw, 62px); }
.connector-copy p { margin: 0; color: #8c8f96; font-size: 16px; line-height: 1.65; }
.integration-map { position: relative; min-height: 560px; display: grid; place-items: center; }
.integration-map::before { position: absolute; inset: 12%; content: ""; background: radial-gradient(circle, rgba(103,152,255,.1), transparent 65%); }
.integration-orbit { position: absolute; border: 1px solid #272a30; border-radius: 50%; }
.outer-orbit { width: 510px; height: 510px; }
.middle-orbit { width: 320px; height: 320px; border-color: #30333a; }
.integration-core { position: relative; z-index: 2; width: 132px; height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(103,152,255,.35); border-radius: 50%; background: radial-gradient(circle, #182039, #0e1014 70%); box-shadow: 0 0 70px rgba(63,105,196,.17); }
.integration-core .brand-mark { width: 25px; margin-bottom: 8px; }
.integration-core strong { font-size: 11px; }
.integration-core small { margin-top: 3px; color: #667086; font-size: 7px; }
.integration-node { position: absolute; display: grid; place-items: center; min-width: 78px; min-height: 32px; padding: 0 9px; border: 1px solid #303239; border-radius: 7px; background: #111216; color: #898c93; font-size: 8px; box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.node-outlook { left: -33px; top: 39%; }
.node-google { right: 4%; top: 6%; }
.node-web { right: -24px; bottom: 26%; }
.node-whatsapp { left: -35px; bottom: 22%; }
.node-granola { right: -42px; top: 27%; }

.trust-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.trust-copy { position: sticky; top: 130px; }
.trust-copy h2 { font-size: clamp(40px, 4.8vw, 62px); }
.text-link { display: inline-flex; gap: 13px; margin-top: 30px; color: #b5c8ef; font-size: 13px; }
.trust-grid { border-top: 1px solid var(--line); }
.trust-grid article { display: grid; grid-template-columns: 48px 1fr; padding: 28px 0; border-bottom: 1px solid var(--line); }
.trust-number { grid-row: 1 / 3; color: #50535a; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.trust-grid h3 { margin: 0 0 9px; font-size: 17px; letter-spacing: -.025em; }
.trust-grid p { max-width: 520px; margin: 0; color: #7e8188; font-size: 13px; line-height: 1.65; }

.future-section { padding-top: 0; }
.future-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding: 70px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(135deg, #0e1014, #0a0b0d 66%); }
.future-copy h2 { font-size: clamp(38px, 4.5vw, 56px); }
.role-list { border: 1px solid #292b31; border-radius: 8px; background: #0b0c0e; overflow: hidden; }
.role { min-height: 66px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid #222429; color: #74777e; font-size: 11px; }
.role:last-child { border: 0; }
.role span { display: flex; align-items: center; gap: 10px; }
.role i { width: 7px; height: 7px; border: 1px solid #52555d; border-radius: 50%; }
.role strong { color: #4f5259; font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.role.active { background: rgba(103,152,255,.045); color: #c0c2c7; }
.role.active i { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 4px rgba(103,152,255,.08); }
.role.active strong { color: var(--blue-bright); }

.closing { position: relative; padding-block: 170px 190px; text-align: center; overflow: hidden; }
.closing::before { position: absolute; inset: 15% 0 auto; z-index: -1; height: 500px; content: ""; background: radial-gradient(ellipse at center, rgba(79,123,220,.11), transparent 68%); }
.closing h2 { margin: 22px 0; font-size: clamp(54px, 7vw, 88px); line-height: .98; letter-spacing: -.068em; }
.closing p { margin: 0 0 34px; color: #8b8e95; font-size: 16px; }
.closing-orbit { position: absolute; top: 50%; left: 50%; z-index: -1; width: 720px; height: 720px; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.025); border-radius: 50%; }
.closing-orbit span { position: absolute; inset: 14%; border: 1px solid rgba(255,255,255,.025); border-radius: 50%; }
.closing-orbit span:nth-child(2) { inset: 29%; }
.closing-orbit span:nth-child(3) { inset: 44%; border-color: rgba(103,152,255,.1); }

.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-block: 70px 54px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid > div:first-child p { max-width: 260px; color: #62656c; font-size: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h3 { margin: 0 0 5px; color: #6a6d74; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a { color: #9b9da4; font-size: 12px; }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-soft); color: #4f5259; font-size: 10px; }

.legal-main { min-height: 70vh; padding-block: 110px 140px; }
.legal-header { max-width: 790px; padding-bottom: 55px; border-bottom: 1px solid var(--line); }
.legal-header h1 { margin: 20px 0 18px; font-size: clamp(44px, 6vw, 72px); line-height: 1; letter-spacing: -.06em; }
.legal-header p { color: #8f9299; font-size: 16px; }
.legal-content { max-width: 790px; padding-top: 46px; }
.legal-content h2 { margin: 46px 0 13px; font-size: 21px; letter-spacing: -.03em; }
.legal-content p, .legal-content li { color: #92949c; font-size: 14px; line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: #b8caf0; text-decoration: underline; text-underline-offset: 3px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-top: 56px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.contact-card h2 { margin: 0 0 10px; font-size: 17px; }
.contact-card p { margin: 0 0 24px; color: #7d8087; font-size: 13px; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-button { display: grid; width: 38px; height: 38px; place-content: center; gap: 5px; padding: 0; border: 1px solid #2b2d33; border-radius: 6px; cursor: pointer; }
  .menu-button span:not(.sr-only) { width: 16px; height: 1px; background: #c3c4c8; }
  .primary-nav { position: absolute; top: 67px; left: 24px; right: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 8px; background: #0e0f12; box-shadow: 0 24px 50px rgba(0,0,0,.5); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px; border-radius: 5px; }
  .primary-nav a:hover { background: #16171b; }
  .nav-cta { display: none; }
  .workflow-grid, .platform-board, .zero-intro, .trust-section, .future-panel, .work-panel, .connector-shell { grid-template-columns: 1fr; }
  .workflow-card { min-height: 175px; }
  .board-rail { display: none; }
  .board-stage { min-height: 360px; padding-top: 38px; border-right: 0; border-bottom: 1px solid var(--line); }
  .board-stage h3 { margin-top: 28px; }
  .zero-intro { gap: 32px; }
  .feature-wide { grid-template-columns: 1fr; gap: 44px; }
  .trust-section { gap: 60px; }
  .trust-copy { position: static; }
  .future-panel { gap: 60px; padding: 50px 36px; }
  .work-panel { gap: 44px; padding: 38px; }
  .connector-shell { gap: 40px; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .nav-shell { min-height: 62px; }
  .primary-nav { top: 61px; left: 16px; right: 16px; }
  .hero { min-height: auto; padding-block: 96px 64px; }
  .hero h1 { font-size: clamp(44px, 12.4vw, 54px); letter-spacing: -.06em; }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-product { margin-top: 64px; }
  .window-status, .command-meta > span:first-child { display: none; }
  .command-area { padding: 22px 18px; }
  .command-area p { font-size: 15px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 100px; padding: 0 14px; border-bottom: 1px solid var(--line-soft); }
  .proof-grid > div:nth-child(odd) { border-left: 1px solid var(--line-soft); }
  .section { padding-block: 105px; }
  .section h2 { font-size: 42px; }
  .platform-board { margin-top: 52px; }
  .zero-grid { grid-template-columns: 1fr; }
  .feature, .feature-wide { grid-column: auto; min-height: auto; padding: 25px; }
  .feature:not(.feature-wide) { min-height: 440px; }
  .feature h3 { font-size: 27px; }
  .day-row { grid-template-columns: 44px 1fr; }
  .ready-tag { display: none; }
  .trust-grid article { grid-template-columns: 38px 1fr; }
  .future-panel { padding: 36px 22px; }
  .work-tabs { grid-template-columns: 1fr; }
  .work-tab { min-height: 48px; border-right: 0; border-bottom: 1px solid var(--line); }
  .work-tab:last-child { border-bottom: 0; }
  .work-panel { min-height: auto; padding: 26px 18px 18px; }
  .work-panel-copy h3 { font-size: 29px; }
  .brief-layout { grid-template-columns: 1fr; }
  .brief-layout aside { display: none; }
  .brief-document { padding: 21px; }
  .decision-item small { max-width: 205px; }
  .source-summary { flex-wrap: wrap; }
  .calendar-days, .calendar-body { grid-template-columns: 38px repeat(4,1fr); }
  .calendar-days strong { font-size: 7px; }
  .day-column button { left: 3px; right: 3px; font-size: 6px; }
  .integration-map { min-height: 400px; transform: scale(.78); margin: -35px; }
  .outer-orbit { width: 430px; height: 430px; }
  .middle-orbit { width: 275px; height: 275px; }
  .closing { padding-block: 130px 145px; }
  .closing h2 { font-size: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .legal-main { padding-block: 80px 100px; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
