:root {
  color-scheme: dark;
  --ink: #f5f4ee;
  --muted: #979b93;
  --faint: #696e67;
  --surface: #121512;
  --surface-2: #181b18;
  --surface-3: #20241f;
  --line: rgba(255, 255, 255, 0.11);
  --lime: #b7d66f;
  --coral: #ff8b67;
  --purple: #c973e1;
  --blue: #8ccde2;
  --radius: 24px;
  --page: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #0d0f0d;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(183, 214, 111, 0.045), transparent 25rem),
    #0d0f0d;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, a { font: inherit; }
a { color: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #111;
}

.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  width: min(1100px, calc(100vw - 28px));
  height: 62px;
  padding: 0 10px 0 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(18, 21, 18, .66);
  box-shadow: 0 14px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(20px) saturate(140%);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  transform: translateX(-50%);
}

.site-header.scrolled {
  background: rgba(18, 21, 18, .91);
  border-color: rgba(255,255,255,.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-weight: 750;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand img { border-radius: 9px; }

.nav { display: flex; gap: 30px; }
.nav a {
  color: #b2b5af;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
  transition: color .2s ease;
}
.nav a:hover { color: var(--ink); }

.nav-cta {
  justify-self: end;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: #151715;
  font-size: 13px;
  font-weight: 740;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); background: white; }

.hero {
  position: relative;
  width: var(--page);
  min-height: 920px;
  margin: 0 auto;
  padding: 164px 0 90px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 95px;
  left: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(transparent, rgba(255,255,255,.12), transparent);
}

.hero-glow {
  position: absolute;
  top: 260px;
  left: 50%;
  width: min(900px, 95vw);
  height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(183,214,111,.11), rgba(201,115,225,.035) 42%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow, .kicker {
  color: #b6bab2;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69db82;
  box-shadow: 0 0 0 5px rgba(105,219,130,.1);
}

.hero h1 {
  margin: 30px 0 24px;
  font-size: clamp(60px, 8.2vw, 104px);
  line-height: .91;
  letter-spacing: -.068em;
  font-weight: 790;
}

.hero h1 span {
  color: #8f948c;
  font-weight: 620;
}

.hero-lede {
  width: min(650px, 90%);
  margin: 0 auto;
  color: #a8aca5;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  letter-spacing: -.015em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 33px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 49px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: #151715; }
.button-primary:hover { background: white; }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.03); color: #d8dad5; }
.button-secondary:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }

.hero-footnote {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  color: #6f746d;
  font-size: 12px;
  font-weight: 580;
}

.app-stage {
  position: relative;
  z-index: 3;
  width: min(1060px, 100%);
  margin: 78px auto 0;
  perspective: 1200px;
}

.window-shadow {
  position: absolute;
  inset: 14% 5% -4%;
  border-radius: 50%;
  background: rgba(0,0,0,.8);
  filter: blur(55px);
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: #111411;
  box-shadow: 0 24px 90px rgba(0,0,0,.5), inset 0 1px rgba(255,255,255,.04);
  text-align: left;
  transform: rotateX(2deg);
  transform-origin: center top;
}

.titlebar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #6f736d;
  font-size: 11px;
  font-weight: 660;
}

.traffic-lights { display: flex; gap: 7px; }
.traffic-lights i { width: 10px; height: 10px; border-radius: 50%; background: #3b3e3a; }
.traffic-lights i:first-child { background: #ee6a5e; }
.traffic-lights i:nth-child(2) { background: #e8bf52; }
.traffic-lights i:last-child { background: #5bc15a; }

.status-pill { justify-self: end; display: flex; align-items: center; gap: 6px; }
.status-pill b { width: 6px; height: 6px; border-radius: 50%; background: #54d777; }

.app-shell { display: grid; grid-template-columns: 185px 1fr; min-height: 490px; }

.app-sidebar {
  position: relative;
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,.07);
  background: #0e100e;
}

.sidebar-brand { display: flex; align-items: center; gap: 9px; padding: 0 8px 22px; font-size: 13px; }
.sidebar-brand img { width: 26px; height: 26px; border-radius: 7px; }

.sidebar-link {
  height: 37px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 3px 0;
  padding: 0 11px;
  border-radius: 9px;
  color: #7f837d;
  font-size: 11px;
  font-weight: 650;
}
.sidebar-link span { width: 15px; color: #636761; }
.sidebar-link em { margin-left: auto; padding: 2px 6px; border-radius: 99px; background: #292d28; font-size: 9px; font-style: normal; }
.sidebar-link.active { background: #f1f0eb; color: #151715; }
.sidebar-link.active span { color: #151715; }
.sidebar-motto { position: absolute; bottom: 18px; left: 22px; color: #4e524d; font-size: 9px; }

.app-main { padding: 24px; min-width: 0; }
.app-heading { display: flex; align-items: end; justify-content: space-between; }
.app-heading small, .card-title small { color: #666b64; font-size: 8px; letter-spacing: .13em; }
.app-heading h2 { margin: 5px 0 0; font-size: 20px; letter-spacing: -.03em; }
.rate { text-align: right; }
.rate span { display: block; color: #6e736c; font-size: 9px; }
.rate strong { font-size: 15px; font-variant-numeric: tabular-nums; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 19px 0 12px; }
.metric { min-width: 0; padding: 13px 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: #151815; }
.metric span { display: block; color: #747972; font-size: 9px; font-weight: 650; }
.metric strong { display: block; margin-top: 7px; font-size: 19px; letter-spacing: -.035em; }
.metric strong small { color: #696e67; font-size: 10px; }

.map-card { padding: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: #151815; }
.card-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 11px; font-weight: 730; }
.treemap { height: 248px; display: grid; grid-template-columns: 2fr .9fr .76fr; grid-template-rows: 1.2fr .8fr; gap: 6px; }
.tile { position: relative; display: flex; align-items: flex-end; padding: 10px; overflow: hidden; border: 0; border-radius: 9px; background: #29312a; text-align: left; cursor: default; }
.tile span { display: grid; gap: 2px; }
.tile strong { font-size: 10px; }
.tile small { color: rgba(10,12,10,.55); font-size: 8px; font-weight: 650; }
.tile.chrome { grid-row: 1 / 3; background: #b7caba; }
.tile.spark { background: #adc5cf; }
.tile.codex { background: #cfb8d0; }
.tile.slack { background: #d9cda1; }
.tile.more { background: #e2b797; }
.fake-icon { position: absolute; top: 9px; left: 9px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; background: #f5f4ee; color: #151715; font-size: 9px; font-style: normal; box-shadow: 0 2px 5px rgba(0,0,0,.15); }
.chrome-icon { background: conic-gradient(#e84639 0 33%, #f7ca43 0 66%, #42a960 0); }
.chrome-icon::after { content: ""; width: 10px; height: 10px; border: 3px solid white; border-radius: 50%; background: #3084e5; }
.spark-icon { background: #168ee0; color: white; font-size: 15px; }
.codex-icon { background: #161817; color: white; }
.slack-icon { color: #5b9862; }

.menu-preview {
  position: absolute;
  right: -24px;
  top: -28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(29,32,29,.96);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  color: #dcded9;
  font-size: 10px;
  font-weight: 700;
}
.mini-bars { height: 20px; display: flex; align-items: end; gap: 2px; }
.mini-bars i { width: 3px; height: 20%; border-radius: 2px; background: var(--lime); animation: bars 1.8s ease-in-out infinite alternate; }
.mini-bars i:nth-child(2) { height: 55%; animation-delay: -.5s; }
.mini-bars i:nth-child(3) { height: 90%; animation-delay: -1s; }
.mini-bars i:nth-child(4) { height: 38%; animation-delay: -.2s; background: var(--coral); }
.mini-bars i:nth-child(5) { height: 70%; animation-delay: -.8s; background: var(--coral); }
.mini-bars i:nth-child(6) { height: 30%; animation-delay: -.4s; }
.mini-bars i:nth-child(7) { height: 62%; animation-delay: -1.2s; }
.mini-bars i:nth-child(8) { height: 42%; animation-delay: -.7s; }
@keyframes bars { to { height: 95%; } }

.trust-strip {
  width: var(--page);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #787c76;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .04em;
}
.trust-strip i { width: 3px; height: 3px; border-radius: 50%; background: #444842; }

.section { width: var(--page); margin: 0 auto; padding: 140px 0; }
.section-intro { max-width: 700px; margin-bottom: 55px; }
.section h2 { margin: 14px 0 18px; font-size: clamp(42px, 5vw, 66px); line-height: 1; letter-spacing: -.055em; }
.section-intro p, .incident-copy > p, .privacy-card > p, .availability > p { color: #90958e; font-size: 18px; line-height: 1.65; }

.feature-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 14px; }
.feature {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.feature-map { grid-row: span 2; min-height: 760px; }
.feature-copy { position: relative; z-index: 2; padding: 34px; }
.feature-number { margin-bottom: 70px; color: #5f645e; font-size: 11px; font-weight: 720; letter-spacing: .14em; }
.feature h3 { margin: 0 0 13px; font-size: 29px; line-height: 1.08; letter-spacing: -.04em; }
.feature p { max-width: 500px; margin: 0; color: #8f948d; font-size: 15px; line-height: 1.62; }

.bubble-demo { position: absolute; inset: 325px 0 0; }
.bubble { position: absolute; display: grid; place-items: center; align-content: center; border-radius: 50%; color: #10120f; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), 0 18px 50px rgba(0,0,0,.16); }
.bubble span { font-weight: 760; letter-spacing: -.03em; }
.bubble small { margin-top: 3px; opacity: .55; font-weight: 650; }
.b1 { width: 300px; height: 300px; left: 36px; top: 50px; background: #b9cbbb; }
.b2 { width: 176px; height: 176px; right: 28px; top: 8px; background: #d2bcd3; }
.b3 { width: 142px; height: 142px; right: 42px; top: 190px; background: #adc8d3; }
.b4 { width: 74px; height: 74px; left: 320px; top: 280px; background: #e1bd9f; }

.feature-menu { background: radial-gradient(circle at 85% 85%, rgba(140,205,226,.1), transparent 50%), var(--surface); }
.menubar-card { position: absolute; left: 30px; right: 30px; bottom: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 17px; background: rgba(25,28,25,.9); box-shadow: 0 24px 50px rgba(0,0,0,.3); }
.menubar-top { height: 35px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border-bottom: 1px solid rgba(255,255,255,.07); color: #686d66; font-size: 8px; }
.menubar-widget { position: relative; height: 145px; }
.menubar-widget canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.menubar-widget > div { position: absolute; left: 18px; top: 18px; display: grid; }
.menubar-widget strong { font-size: 20px; font-variant-numeric: tabular-nums; }
.menubar-widget small { margin-top: 3px; color: #626760; font-size: 7px; letter-spacing: .12em; }

.feature-budget { min-height: 340px; }
.feature-budget .feature-number { margin-bottom: 40px; }
.budget-demo { margin: 28px 34px 0; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: #171a17; }
.budget-head, .budget-labels { display: flex; justify-content: space-between; color: #858a83; font-size: 10px; }
.budget-head strong { color: var(--ink); }
.budget-track { height: 7px; margin: 13px 0 9px; overflow: hidden; border-radius: 99px; background: #2b2f2a; }
.budget-track i { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--lime), #d8d398); }
.budget-labels { color: #555a54; font-size: 8px; }

.incident-section { display: grid; grid-template-columns: .77fr 1.23fr; align-items: center; gap: 80px; }
.incident-copy h2 { font-size: clamp(40px, 4.2vw, 60px); }
.check-list { display: grid; gap: 14px; margin: 31px 0 0; padding: 0; list-style: none; color: #b0b4ad; font-size: 14px; }
.check-list li { display: flex; align-items: center; gap: 11px; }
.check-list span { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid rgba(183,214,111,.2); border-radius: 50%; background: rgba(183,214,111,.08); color: var(--lime); font-size: 10px; }

.incident-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #151815; box-shadow: 0 35px 90px rgba(0,0,0,.25); }
.incident-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.incident-panel-head > div:first-child { display: grid; gap: 4px; }
.incident-panel-head small { color: #62675f; font-size: 8px; letter-spacing: .12em; }
.incident-panel-head strong { font-size: 17px; }
.severity { padding: 8px 11px; border-radius: 9px; background: rgba(255,139,103,.11); color: var(--coral); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; font-weight: 700; }
.incident-chart { position: relative; height: 250px; margin: 15px 18px 0; }
.incident-chart svg { position: absolute; inset: 0; width: 100%; height: 215px; overflow: visible; }
.incident-chart .fill { fill: url(#latencyFill); }
.incident-chart .line { fill: none; stroke: var(--coral); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.incident-chart .event-line { stroke: rgba(255,139,103,.35); stroke-width: 1; stroke-dasharray: 4 5; }
.incident-chart circle { fill: var(--coral); stroke: #151815; stroke-width: 4; }
.chart-grid { position: absolute; inset: 20px 0 47px; display: flex; flex-direction: column; justify-content: space-between; }
.chart-grid i { display: block; border-top: 1px solid rgba(255,255,255,.07); }
.chart-axis { position: absolute; inset: auto 2px 15px; display: flex; justify-content: space-between; color: #545951; font: 8px ui-monospace, SFMono-Regular, Menlo, monospace; }
.explanation { display: flex; gap: 12px; margin: 0 20px 14px; padding: 15px; border: 1px solid rgba(255,139,103,.13); border-radius: 12px; background: rgba(255,139,103,.045); }
.explanation-icon { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,139,103,.12); color: var(--coral); font-weight: 800; }
.explanation strong { font-size: 11px; }
.explanation p { margin: 4px 0 0; color: #747a72; font-size: 9px; line-height: 1.45; }
.app-snapshot { margin: 0 20px 20px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; overflow: hidden; }
.app-snapshot > div { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-top: 1px solid rgba(255,255,255,.06); }
.app-snapshot > div:first-child { border-top: 0; }
.app-chip { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; background: #b9cbbb; color: #141614; font-size: 9px; font-weight: 800; }
.app-chip.cloud { background: #adc8d3; }
.app-chip.system { background: #d2bcd3; }
.app-snapshot p { display: grid; flex: 1; gap: 2px; margin: 0; }
.app-snapshot strong { font-size: 10px; }
.app-snapshot small { color: #5c615a; font-size: 8px; }
.app-snapshot b { color: #797e77; font-size: 9px; }

.privacy { padding-top: 70px; }
.privacy-card { position: relative; overflow: hidden; min-height: 590px; padding: 90px 8%; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, #161916, #101210); }
.privacy-card .kicker, .privacy-card h2, .privacy-card > p, .privacy-facts { position: relative; z-index: 2; max-width: 650px; }
.privacy-card > p { max-width: 690px; }
.privacy-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 45px; }
.privacy-facts div { padding: 19px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.025); }
.privacy-facts strong { display: block; margin-bottom: 3px; font-size: 24px; letter-spacing: -.04em; }
.privacy-facts span { color: #747971; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.privacy-orbit { position: absolute; right: -80px; top: 30px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.045); border-radius: 50%; }
.privacy-orbit::before, .privacy-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; }
.privacy-orbit::before { inset: 85px; }
.privacy-orbit::after { inset: 165px; }
.privacy-orbit span, .privacy-orbit i, .privacy-orbit b { position: absolute; border-radius: 50%; background: #8f948c; box-shadow: 0 0 35px rgba(183,214,111,.18); }
.privacy-orbit span { width: 14px; height: 14px; left: 74px; top: 155px; }
.privacy-orbit i { width: 8px; height: 8px; right: 101px; top: 95px; }
.privacy-orbit b { width: 11px; height: 11px; right: 127px; bottom: 92px; }

.availability { padding-bottom: 150px; text-align: center; }
.availability > img { margin-bottom: 28px; border-radius: 21px; box-shadow: 0 24px 50px rgba(0,0,0,.25); }
.availability h2 { max-width: 790px; margin-left: auto; margin-right: auto; }
.availability > p { margin-bottom: 28px; }
.store-badge { display: inline-flex; align-items: center; min-height: 50px; padding: 0 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.035); color: #d9dcd6; font-size: 14px; font-weight: 680; }

footer { width: var(--page); min-height: 100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); color: #656a63; font-size: 11px; }
.footer-brand { color: #bfc2bd; font-size: 13px; }
.footer-links { display: flex; justify-content: center; gap: 20px; }
.footer-links a { color: #737871; text-decoration: none; transition: color .2s ease; }
.footer-links a:hover, .footer-links a[aria-current="page"] { color: #d4d7d1; }
footer > span { justify-self: end; }

.policy-page { width: var(--page); margin: 0 auto; padding: 165px 0 120px; }
.policy-hero { max-width: 850px; padding-bottom: 75px; }
.policy-hero h1 { margin: 18px 0 22px; font-size: clamp(58px, 8vw, 94px); line-height: .93; letter-spacing: -.065em; }
.policy-hero > p { max-width: 650px; color: #959a93; font-size: 20px; line-height: 1.55; }
.policy-meta { display: flex; gap: 10px; margin-top: 30px; }
.policy-meta span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 9px; color: #6f746d; font-size: 10px; font-weight: 650; }
.policy-layout { display: grid; grid-template-columns: 210px minmax(0, 760px); justify-content: space-between; align-items: start; gap: 70px; }
.policy-nav { position: sticky; top: 105px; display: grid; gap: 5px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.02); }
.policy-nav strong { margin: 0 0 8px 10px; color: #c5c8c2; font-size: 11px; }
.policy-nav a { padding: 8px 10px; border-radius: 8px; color: #6f746d; font-size: 11px; text-decoration: none; transition: color .2s ease, background .2s ease; }
.policy-nav a:hover { color: var(--ink); background: rgba(255,255,255,.04); }
.policy-content > section { scroll-margin-top: 110px; padding: 0 0 70px; margin: 0 0 70px; border-bottom: 1px solid var(--line); }
.policy-number { display: inline-block; margin-bottom: 17px; color: #5c615a; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; }
.policy-content h2 { margin: 0 0 25px; font-size: clamp(30px, 4vw, 42px); letter-spacing: -.045em; }
.policy-content h3 { margin: 32px 0 9px; color: #d7dad4; font-size: 16px; }
.policy-content p, .policy-content li { color: #91968f; font-size: 15px; line-height: 1.72; }
.policy-content p { margin: 0 0 17px; }
.policy-content ul { display: grid; gap: 8px; padding-left: 23px; }
.policy-content li::marker { color: var(--lime); }
.policy-content code { padding: 2px 6px; border: 1px solid var(--line); border-radius: 5px; background: rgba(255,255,255,.03); color: #c7cac4; font-size: .9em; }
.policy-callout { padding: 25px; border: 1px solid rgba(183,214,111,.14); border-radius: 18px; background: rgba(183,214,111,.045); }
.policy-callout strong { display: block; margin-bottom: 9px; color: #dce5c9; font-size: 17px; }
.policy-callout p { margin: 0; }
.policy-end { display: flex; align-items: center; gap: 14px; color: #737870; }
.policy-end img { border-radius: 12px; }
.policy-end p { margin: 0; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: none; }

.not-found { min-height: 100vh; display: grid; place-items: center; text-align: center; }
.not-found main { width: min(600px, calc(100vw - 40px)); }
.not-found img { border-radius: 19px; }
.not-found h1 { margin: 14px 0 30px; font-size: clamp(40px, 7vw, 68px); line-height: 1; letter-spacing: -.055em; }

@media (max-width: 900px) {
  .nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 145px; min-height: auto; }
  .app-shell { grid-template-columns: 145px 1fr; }
  .app-sidebar { padding-left: 8px; padding-right: 8px; }
  .app-main { padding: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-map { grid-row: auto; }
  .incident-section { grid-template-columns: 1fr; gap: 55px; }
  .incident-copy { max-width: 670px; }
  .privacy-orbit { opacity: .45; }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 24px); }
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  main { min-width: 0; }
  .hero, .section, .trust-strip, footer, .policy-page { width: var(--page); max-width: var(--page); }
  .site-header { top: 8px; left: 8px; right: 8px; width: auto; height: 56px; display: flex; justify-content: space-between; transform: none; border-radius: 15px; }
  .brand img { width: 32px; height: 32px; }
  .nav-cta { min-width: 76px; padding: 9px 11px; font-size: 0; text-align: center; }
  .nav-cta::after { content: "Mac app"; font-size: 11px; }
  .hero { padding-top: 122px; padding-bottom: 72px; text-align: left; }
  .hero::before { display: none; }
  .hero-glow { top: 220px; width: 120vw; height: 520px; opacity: .75; }
  .eyebrow { padding: 8px 10px; font-size: 8.5px; letter-spacing: .095em; white-space: nowrap; }
  .hero h1 { margin-top: 26px; font-size: clamp(45px, 12.8vw, 52px); line-height: .94; letter-spacing: -.06em; }
  .hero h1 span { display: block; white-space: nowrap; }
  .hero-lede { width: 100%; margin: 0; font-size: 17px; line-height: 1.52; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; margin: 29px 0 0; }
  .hero-footnote { justify-content: flex-start; flex-wrap: wrap; gap: 8px 18px; font-size: 10px; }
  .app-stage { left: auto; width: 100%; min-width: 0; max-width: 100%; margin: 55px auto 0; transform: none; perspective: none; }
  .app-window { border-radius: 15px; transform: none; }
  .titlebar { height: 38px; padding: 0 11px; }
  .app-shell { display: block; min-height: 390px; }
  .app-sidebar { display: none; }
  .app-main, .map-card, .treemap, .tile { min-width: 0; max-width: 100%; }
  .app-main { width: 100%; padding: 15px; overflow: hidden; }
  .app-heading { align-items: center; }
  .app-heading h2 { max-width: 220px; font-size: 17px; line-height: 1.05; }
  .rate { display: none; }
  .metric-row { gap: 6px; margin: 15px 0 8px; }
  .metric { padding: 10px 9px; border-radius: 9px; }
  .metric span { overflow: hidden; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
  .metric strong { margin-top: 5px; font-size: 14px; }
  .map-card { padding: 11px; border-radius: 11px; }
  .treemap { height: 230px; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); grid-template-rows: 1fr 1fr; }
  .tile.chrome { grid-row: 1 / 3; }
  .tile.spark, .tile.codex { grid-column: 2; }
  .tile.slack, .tile.more { display: none; }
  .menu-preview { top: auto; right: 9px; bottom: -20px; }
  .trust-strip { overflow: hidden; justify-content: flex-start; gap: 18px; white-space: nowrap; }
  .section { padding: 95px 0; }
  .section-intro { margin-bottom: 35px; }
  .section h2 { font-size: 42px; }
  .section-intro p, .incident-copy > p, .privacy-card > p, .availability > p { font-size: 16px; }
  .feature { min-height: 470px; border-radius: 19px; }
  .feature-map { min-height: 630px; }
  .feature-copy { padding: 26px; }
  .feature-number { margin-bottom: 45px; }
  .feature h3 { font-size: 27px; }
  .bubble-demo { inset: 305px 0 0; width: 100%; transform: none; }
  .b1 { width: 225px; height: 225px; left: 18px; top: 35px; }
  .b2 { width: 126px; height: 126px; right: 12px; top: 6px; }
  .b3 { width: 102px; height: 102px; right: 18px; top: 143px; }
  .b4 { width: 58px; height: 58px; left: 240px; top: 220px; }
  .menubar-card { left: 20px; right: 20px; bottom: 22px; }
  .feature-budget { min-height: 390px; }
  .budget-demo { margin: 26px; }
  .incident-section { gap: 38px; }
  .incident-panel-head { padding: 18px; }
  .incident-chart { margin-left: 10px; margin-right: 10px; }
  .incident-chart svg { height: 185px; }
  .chart-grid { bottom: 47px; }
  .incident-chart { height: 230px; }
  .chart-axis { font-size: 6.5px; }
  .explanation { margin-left: 13px; margin-right: 13px; }
  .app-snapshot { margin-left: 13px; margin-right: 13px; }
  .privacy-card { min-height: auto; padding: 65px 25px; }
  .privacy-orbit { display: none; }
  .privacy-facts { grid-template-columns: 1fr; }
  .availability > img { width: 74px; height: 74px; }
  footer { padding: 30px 0; grid-template-columns: 1fr auto; gap: 20px; }
  .footer-links { display: none; }
  .policy-page { padding-top: 125px; }
  .policy-hero { padding-bottom: 55px; }
  .policy-hero h1 { font-size: 55px; }
  .policy-layout { grid-template-columns: 1fr; gap: 0; }
  .policy-nav { display: none; }
  .policy-content > section { padding-bottom: 48px; margin-bottom: 48px; }
}

@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; }
}
