:root {
  color-scheme: light;
  --page: #f3f7f4;
  --page-deep: #e6eee9;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --surface-raised: #edf3ef;
  --ink: #0c1711;
  --muted: #526159;
  --faint: #75827a;
  --line: rgba(18, 48, 31, 0.14);
  --accent: #4cb928;
  --accent-strong: #2a7f10;
  --accent-ink: #071009;
  --deep-green: #0b281a;
  --danger: #d8444b;
  --radius-card: 28px;
  --radius-control: 999px;
  --shadow: 0 26px 70px rgba(28, 71, 46, 0.14);
  --max: 1240px;
  --z-texture: 30;
  --z-header: 100;
  --z-menu: 110;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #07120d;
  --page-deep: #0b1b12;
  --surface: rgba(23, 37, 29, 0.72);
  --surface-solid: #15241b;
  --surface-raised: #1d2d23;
  --ink: #f1f6f2;
  --muted: #a5b2aa;
  --faint: #7f8d84;
  --line: rgba(208, 239, 216, 0.14);
  --accent: #66d238;
  --accent-strong: #8cea54;
  --accent-ink: #071009;
  --deep-green: #0b281a;
  --danger: #ff6269;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 90% 4%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 28rem),
    var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Avenir Next", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: var(--z-texture);
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 75%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: calc(var(--z-menu) + 10);
  padding: 10px 16px;
  border-radius: var(--radius-control);
  background: var(--ink);
  color: var(--page);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 36px));
  min-height: 68px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid color-mix(in srgb, var(--line) 70%, white 10%);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 44px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
}

.site-header .brand {
  grid-area: brand;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img,
.footer-brand img,
.final-cta img {
  border-radius: 22%;
  box-shadow: 0 7px 20px rgba(29, 88, 50, 0.22);
}

.site-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle,
.nav-toggle {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--surface-solid) 70%, transparent);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.9;
}

.nav-icon-menu,
.nav-icon-close {
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-icon-close {
  opacity: 0;
  transform: scale(0.72) rotate(-18deg);
}

.nav-toggle[aria-expanded="true"] .nav-icon-menu {
  opacity: 0;
  transform: scale(0.72) rotate(18deg);
}

.nav-toggle[aria-expanded="true"] .nav-icon-close {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.nav-theme-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid color-mix(in srgb, var(--accent) 86%, white 14%);
  border-radius: var(--radius-control);
  background: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 12px 30px color-mix(in srgb, var(--accent) 24%, transparent);
  color: var(--accent-ink);
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 18px 38px color-mix(in srgb, var(--accent) 30%, transparent);
}

.button:active {
  transform: scale(0.98);
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 14px;
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
  text-underline-offset: 5px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  min-height: calc(100dvh - 96px);
  align-items: center;
  gap: 7vw;
  padding-block: 72px 78px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 830;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.1vw, 104px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

h1 em {
  display: inline-block;
  padding-bottom: 6px;
  color: var(--accent-strong);
  font-style: normal;
}

.hero-subtitle {
  max-width: 530px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
}

.hero-actions,
.privacy-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.product-stage {
  position: relative;
  min-height: 690px;
  overflow: clip;
}

.phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(370px, 72%);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 52px;
  background: #142219;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(2deg);
}

.phone-frame img {
  width: 100%;
  border-radius: 44px;
}

.stage-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  border-radius: 50%;
}

.orbit-one {
  inset: 9% 0 11% 3%;
  transform: rotate(-16deg);
}

.orbit-two {
  inset: 22% 0 23%;
  transform: rotate(28deg);
}

.glass-note {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  width: 220px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.17), 0 18px 48px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
}

.glass-note strong {
  font-size: 14px;
}

.glass-note span {
  color: var(--muted);
  font-size: 12px;
}

.glass-note-top {
  top: 18%;
  right: 0;
}

.glass-note-bottom {
  bottom: 13%;
  left: 0;
}

.compatibility {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-raised) 58%, transparent);
}

.compatibility-inner {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding-block: 20px;
  overflow-x: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.feature-story,
.intelligence-section,
.platforms-section,
.faq-section {
  padding-block: 148px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 72px;
}

.section-heading h2,
.capture-copy h2,
.mode-copy h2,
.privacy-promise h2,
.night-copy h2,
.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading p,
.capture-copy > p,
.mode-copy > p,
.night-copy > p,
.privacy-promise > div > p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.product-figure {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 52px;
  background: color-mix(in srgb, var(--surface-solid) 78%, transparent);
  box-shadow: var(--shadow);
}

.product-figure::before {
  position: absolute;
  inset: -30px;
  z-index: -1;
  border-radius: 80px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 68%);
  content: "";
}

.product-figure img {
  border-radius: 44px;
}

.focus-points {
  display: grid;
}

.focus-points article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.focus-points article:last-child {
  border-bottom: 0;
}

.feature-index,
.platform-label {
  grid-row: 1 / span 2;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.focus-points h3,
.capture-grid h3,
.platform-lines h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.focus-points p,
.capture-grid p,
.platform-lines p {
  margin-bottom: 0;
  color: var(--muted);
}

.intelligence-section {
  padding-top: 28px;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.triage-showcase,
.intelligence-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-solid);
}

.triage-showcase {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 42%),
    var(--surface-solid);
}

.triage-copy h3 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.triage-copy p,
.intelligence-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.triage-preview {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--page) 56%, transparent);
  box-shadow: var(--shadow);
}

.triage-row {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: color-mix(in srgb, var(--surface-solid) 88%, transparent);
}

.triage-row strong,
.triage-row small {
  display: block;
}

.triage-row strong {
  letter-spacing: -0.015em;
}

.triage-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.triage-priority {
  width: 8px;
  height: 42px;
  border-radius: var(--radius-control);
  background: var(--danger);
}

.triage-priority.priority-medium {
  background: #e1a733;
}

.triage-priority.priority-low {
  background: var(--accent);
}

.triage-status {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 780;
}

.intelligence-card {
  min-height: 270px;
  padding: 34px;
}

.intelligence-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(25px, 2.8vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.capture-section {
  padding-bottom: 148px;
}

.capture-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "copy notes"
    "mac notes"
    "mac watch";
  gap: 22px;
}

.capture-grid > article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-solid);
}

.capture-copy {
  grid-area: copy;
  min-height: 500px;
  padding: clamp(34px, 6vw, 74px);
  background:
    radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 45%),
    var(--surface-solid) !important;
}

.capture-example {
  display: grid;
  gap: 17px;
  max-width: 620px;
  margin-top: 54px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.capture-example span {
  font-size: clamp(18px, 2.3vw, 28px);
  font-weight: 650;
}

.capture-example small {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 760;
}

.quick-notes-panel {
  grid-area: notes;
  display: grid;
  min-height: 760px;
  grid-template-rows: auto 1fr;
  padding: 36px 36px 0;
  background: linear-gradient(155deg, var(--surface-solid), color-mix(in srgb, var(--deep-green) 72%, var(--surface-solid))) !important;
}

.quick-notes-panel img {
  width: min(86%, 380px);
  margin: 30px auto -38%;
  border: 7px solid rgba(255, 255, 255, 0.08);
  border-radius: 42px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.mac-capture {
  grid-area: mac;
  min-height: 390px;
  padding: clamp(34px, 5vw, 58px);
}

.key-command {
  display: flex;
  gap: 10px;
  margin-top: 44px;
}

kbd {
  min-width: 50px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-bottom-width: 3px;
  border-radius: 12px;
  background: var(--surface-raised);
  color: var(--ink);
  font: 700 15px/1 -apple-system, BlinkMacSystemFont, sans-serif;
  text-align: center;
}

.watch-capture {
  grid-area: watch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(142px, 176px);
  align-items: center;
  gap: 22px;
  min-height: 350px;
  padding: 38px;
  background: #121412 !important;
  color: #f0f5f1;
}

.watch-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.watch-copy h3 {
  margin-top: 10px;
}

.watch-capture p {
  max-width: 38ch;
  color: #a9b2ac;
}

.watch-rings {
  position: relative;
  width: min(176px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 50%;
  background: #080a08;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.watch-rings span {
  position: absolute;
  inset: 0;
  border: clamp(13px, 1.45vw, 18px) solid #e7444b;
  border-radius: 50%;
}

.watch-rings span:nth-child(2) {
  inset: 17%;
  border-color: var(--accent);
}

.watch-rings span:nth-child(3) {
  inset: 34%;
  border-color: #4b77dc;
}

.night-section {
  position: relative;
  padding: 112px 0 124px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 68%, rgba(127, 16, 23, 0.2), transparent 32rem),
    radial-gradient(circle at 86% 84%, rgba(76, 185, 40, 0.1), transparent 28rem),
    #090a09;
  color: #f4f4f1;
}

.night-copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  justify-items: start;
  text-align: left;
}

.night-copy > * {
  width: min(760px, 100%);
}

.night-copy .eyebrow {
  color: #ff676d;
}

.night-copy > p {
  color: #c5c6c3;
}

.night-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 28px;
  margin: 24px 0 0;
  padding: 0;
  color: #f1aaa9;
  font-size: 14px;
  font-weight: 760;
  list-style: none;
}

.night-stage {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 103, 109, 0.26);
  border-radius: 36px;
  background: #000;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.56), 0 0 72px rgba(127, 16, 23, 0.14);
}

.night-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.platform-lines article {
  min-height: 250px;
  padding: 38px 36px 42px 0;
  border-bottom: 1px solid var(--line);
}

.platform-lines article:nth-child(odd) {
  padding-right: 70px;
  border-right: 1px solid var(--line);
}

.platform-lines article:nth-child(even) {
  padding-left: 70px;
}

.modes-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 8vw;
  padding-block: 40px 160px;
}

.mode-copy {
  max-width: 520px;
}

.icon-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 16px;
}

.icon-mosaic img {
  width: 100%;
  border-radius: 23%;
  box-shadow: var(--shadow);
}

.icon-mosaic img:nth-child(1) {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.icon-mosaic img:nth-child(2) {
  grid-column: 8 / span 3;
}

.icon-mosaic img:nth-child(3) {
  grid-column: 11 / span 2;
}

.icon-mosaic img:nth-child(4) {
  grid-column: 8 / span 2;
}

.icon-mosaic img:nth-child(5) {
  grid-column: 10 / span 3;
}

.icon-mosaic img:nth-child(6) {
  grid-column: 6 / span 3;
  margin-top: -22%;
}

.privacy-promise {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 72px;
  margin-bottom: 150px;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.privacy-mark {
  display: grid;
  width: 210px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: "Iowan Old Style", "Times New Roman", serif;
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
}

.faq-list {
  max-width: 920px;
  margin-left: auto;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 30px 54px 30px 0;
  cursor: pointer;
  font-size: clamp(21px, 2.6vw, 30px);
  font-weight: 720;
  letter-spacing: -0.03em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: var(--accent-strong);
  font-size: 30px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding-bottom: 28px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 36px;
  margin-block: 30px 120px;
  padding: 34px 38px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: var(--radius-card);
  background: linear-gradient(115deg, color-mix(in srgb, var(--accent) 18%, var(--surface-solid)), var(--surface-solid));
}

.final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding-block: 36px 50px;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal and support pages */
.page-hero {
  padding-block: 110px 64px;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 26px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: 0.95;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
}

.legal-layout,
.support-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 800px);
  gap: 7vw;
  align-items: start;
  padding-bottom: 140px;
}

.page-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 13px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.page-aside a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.page-aside a:hover {
  color: var(--ink);
}

.legal-content,
.support-content {
  min-width: 0;
}

.legal-content section,
.support-content section {
  margin-bottom: 68px;
  scroll-margin-top: 120px;
}

.legal-content h2,
.support-content h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.legal-content h3,
.support-content h3 {
  margin: 30px 0 10px;
  font-size: 21px;
}

.legal-content p,
.legal-content li,
.support-content p,
.support-content li {
  color: var(--muted);
}

.legal-content ul,
.support-content ul {
  padding-left: 22px;
}

.legal-content li,
.support-content li {
  margin-bottom: 10px;
}

.policy-summary,
.support-callout {
  margin-bottom: 58px;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface-solid));
}

.policy-summary strong,
.support-callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-solid);
}

.support-card h3 {
  margin-top: 0;
}

.support-card a {
  color: var(--accent-strong);
  font-weight: 760;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "brand . actions toggle";
    gap: 12px;
  }

  .site-nav {
    position: absolute;
    z-index: var(--z-menu);
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: min(520px, calc(100dvh - 104px));
    padding: 14px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--surface-solid);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--surface-raised);
  }

  .nav-toggle {
    grid-area: toggle;
    display: inline-flex;
    justify-self: end;
  }

  .header-actions > .theme-toggle {
    display: none;
  }

  .nav-theme-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 6px;
    padding-inline: 16px;
    border-radius: 14px;
  }

  .nav-theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 72px;
  }

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

  .product-stage {
    min-height: 650px;
  }

  .focus-layout,
  .modes-section {
    grid-template-columns: 1fr;
  }

  .triage-showcase {
    grid-template-columns: 1fr;
  }

  .capture-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy copy"
      "notes mac"
      "notes watch";
  }

  .watch-capture {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .watch-rings {
    width: min(160px, 62%);
    justify-self: center;
  }

  .privacy-promise {
    grid-template-columns: 150px 1fr;
  }

  .privacy-mark {
    width: 150px;
    font-size: 112px;
  }

  .final-cta {
    grid-template-columns: 82px 1fr;
  }

  .final-cta .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .night-copy {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 62px;
    margin-top: 8px;
    padding: 8px 9px 8px 10px;
    border-radius: 22px;
    gap: 8px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-actions .button {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding-block: 78px 66px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions,
  .privacy-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-stage {
    min-height: 610px;
  }

  .orbit-one {
    inset: 9% 0 11%;
  }

  .orbit-two {
    inset: 22% 0 23%;
  }

  .phone-frame {
    width: min(315px, 78%);
    border-radius: 46px;
  }

  .phone-frame img {
    border-radius: 38px;
  }

  .glass-note {
    width: 178px;
    padding: 13px 14px;
  }

  .glass-note-bottom {
    bottom: 11%;
  }

  .feature-story,
  .intelligence-section,
  .platforms-section,
  .faq-section {
    padding-block: 96px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .focus-layout {
    gap: 66px;
  }

  .intelligence-grid {
    grid-template-columns: 1fr;
  }

  .triage-showcase {
    grid-column: auto;
    padding: 30px;
  }

  .triage-row {
    grid-template-columns: 8px 1fr;
  }

  .triage-status {
    grid-column: 2;
    justify-self: start;
  }

  .intelligence-card {
    min-height: auto;
    padding: 30px;
  }

  .focus-points article {
    grid-template-columns: 64px 1fr;
    gap: 0 14px;
  }

  .capture-section {
    padding-bottom: 96px;
  }

  .capture-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "notes"
      "mac"
      "watch";
  }

  .capture-copy,
  .mac-capture,
  .watch-capture {
    min-height: auto;
    padding: 30px;
  }

  .watch-capture {
    gap: 24px;
  }

  .watch-rings {
    width: min(164px, 58vw);
  }

  .quick-notes-panel {
    min-height: 680px;
    padding: 30px 24px 0;
  }

  .night-section {
    padding: 84px 0 90px;
  }

  .night-copy {
    justify-items: start;
    text-align: left;
  }

  .night-stage {
    width: calc(100% - 16px);
    margin-top: 36px;
    border-radius: 22px;
  }

  .night-details {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .platform-lines {
    grid-template-columns: 1fr;
  }

  .platform-lines article,
  .platform-lines article:nth-child(odd),
  .platform-lines article:nth-child(even) {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
  }

  .modes-section {
    gap: 62px;
    padding-bottom: 100px;
  }

  .privacy-promise {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 96px;
    padding: 30px;
  }

  .privacy-mark {
    width: 110px;
    font-size: 82px;
  }

  .final-cta {
    grid-template-columns: 66px 1fr;
    gap: 20px;
    margin-bottom: 80px;
    padding: 24px;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .page-hero {
    padding-block: 82px 44px;
  }

  .legal-layout,
  .support-layout {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .page-aside {
    position: static;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (prefers-reduced-transparency: reduce) {
  [data-glass],
  .glass-note,
  .page-aside {
    background: var(--surface-solid);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
