:root {
  color-scheme: light;
  --indigo: #5250d1;
  --violet: #8580ff;
  --ink: #171720;
  --warm: #f7f6f2;
  --paper: #fffefa;
  --muted: #6e6d78;
  --line: rgba(23, 23, 32, 0.14);
  --header-height: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--warm);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--violet); outline-offset: 4px; }

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(22px, 4vw, 72px);
  color: var(--warm);
  border-bottom: 1px solid rgba(247, 246, 242, 0.18);
}

.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand > img:first-child { width: 31px; height: 31px; }
.brand .brand-wordmark { width: 84px; height: auto; filter: brightness(0) invert(1); }
.site-header nav { display: flex; align-items: center; gap: 30px; color: rgba(247, 246, 242, 0.74); font-size: 14px; }
.site-header nav a, .footer-links a, .release-notes { transition: color 180ms ease; }
.site-header nav a:hover { color: var(--warm); }
.header-download { justify-self: end; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 650; }
.header-download span { transition: transform 220ms var(--ease-out); }
.header-download:hover span { transform: translateY(3px); }

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(390px, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  gap: clamp(40px, 4vw, 80px);
  padding: calc(var(--header-height) + 48px) clamp(22px, 4vw, 72px) 64px;
  background: var(--indigo);
  color: var(--warm);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(247, 246, 242, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-copy { position: relative; z-index: 2; max-width: 670px; opacity: 0; transform: translateY(24px); }
.is-ready .hero-copy { animation: hero-copy-in 900ms var(--ease-out) 80ms forwards; }
.hero-logo { width: clamp(190px, 20vw, 292px); height: auto; margin-bottom: clamp(40px, 7vh, 86px); filter: brightness(0) invert(1); }
.hero h1 {
  max-width: 490px;
  margin: 0;
  font-size: clamp(46px, 4.6vw, 74px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 640;
}
.hero-copy > p:not(.requirements) { max-width: 470px; margin: 30px 0 0; color: rgba(247, 246, 242, 0.75); font-size: clamp(18px, 1.35vw, 21px); line-height: 1.48; letter-spacing: -0.018em; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 250px; gap: 28px; padding: 17px 18px 17px 22px; font-size: 15px; font-weight: 680; transition: transform 220ms var(--ease-out), background 180ms ease, color 180ms ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--warm); color: var(--ink); }
.button-arrow { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--warm); transition: transform 260ms var(--ease-out); }
.button:hover .button-arrow { transform: rotate(-45deg); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: rgba(247, 246, 242, 0.8); font-size: 14px; }
.text-link span { transition: transform 220ms var(--ease-out); }
.text-link:hover span { transform: translateY(4px); }
.requirements { margin: 16px 0 0; color: rgba(247, 246, 242, 0.5); font-size: 12px; letter-spacing: 0.015em; }

.product-stage {
  position: relative;
  z-index: 2;
  width: min(920px, 62vw);
  justify-self: end;
  opacity: 0;
  transform: translate(7%, 36px) rotate(0.8deg);
  transform-origin: center bottom;
}
.is-ready .product-stage { animation: product-in 1100ms var(--ease-out) 240ms forwards; }

.app-window { overflow: hidden; min-width: 760px; aspect-ratio: 1.33; background: #f5f5f7; color: #22222b; border: 1px solid rgba(255, 255, 255, 0.36); border-radius: 15px; box-shadow: 0 38px 90px rgba(15, 14, 57, 0.35); }
.window-bar { height: 42px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 15px; background: rgba(245, 245, 247, 0.96); border-bottom: 1px solid #d9d9de; font-size: 11px; font-weight: 600; color: #63636d; }
.traffic-lights { display: flex; gap: 7px; }
.traffic-lights i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.traffic-lights i:nth-child(2) { background: #febc2e; }
.traffic-lights i:nth-child(3) { background: #28c840; }
.window-actions { justify-self: end; display: flex; gap: 8px; }
.window-actions i { width: 18px; height: 18px; border-radius: 5px; background: #e2e2e7; }
.workspace { display: grid; grid-template-columns: 205px 1fr; height: calc(100% - 42px); }
.workspace-sidebar { padding: 18px 11px; background: #ececf0; border-right: 1px solid #d6d6db; font-size: 10px; }
.sidebar-heading { display: flex; justify-content: space-between; padding: 0 8px 13px; font-size: 14px; }
.search-field { padding: 7px 9px; border-radius: 7px; background: rgba(255,255,255,.72); color: #777781; }
.date-label { margin: 18px 8px 8px; color: #777781; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.meeting-row { display: flex; gap: 8px; padding: 9px 8px; border-radius: 7px; }
.meeting-row.active { background: #dcdbe8; }
.meeting-row + .meeting-row { margin-top: 2px; }
.meeting-row strong, .meeting-row small { display: block; line-height: 1.35; }
.meeting-row strong { font-size: 10px; }
.meeting-row small { margin-top: 3px; color: #777781; font-size: 8px; }
.status-dot { width: 6px; height: 6px; margin-top: 3px; border-radius: 50%; background: var(--indigo); flex: 0 0 auto; }
.status-dot.quiet { background: #a3a3ac; }
.workspace-main { min-width: 0; padding: 24px 30px; background: #fafafa; }
.meeting-header { display: flex; justify-content: space-between; align-items: flex-start; }
.meeting-header p { margin: 0 0 5px; color: #777781; font-size: 9px; }
.meeting-header h2 { margin: 0; font-size: 22px; letter-spacing: -0.035em; }
.meeting-header button { border: 0; background: #eeeef1; border-radius: 6px; padding: 5px 8px; color: #666671; }
.workspace-tabs { display: flex; gap: 22px; margin-top: 22px; border-bottom: 1px solid #dddde2; color: #83838c; font-size: 9px; font-weight: 650; }
.workspace-tabs span { padding-bottom: 9px; }
.workspace-tabs .active { color: #25252d; border-bottom: 2px solid var(--indigo); }
.outcome-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; margin-top: 26px; }
.eyebrow { margin: 0; color: var(--indigo); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .11em; }
.summary-block h3 { margin: 9px 0 10px; font-size: 19px; letter-spacing: -.02em; }
.summary-block > p:not(.eyebrow) { margin: 0; color: #565660; font-size: 10px; line-height: 1.55; }
.summary-block ul { margin: 10px 0 0; padding-left: 14px; color: #45454e; font-size: 9px; line-height: 1.75; }
.keyline { height: 1px; margin: 22px 0; background: #dedee3; }
.action-block { font-size: 9px; }
.action-heading { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid #dedee3; }
.action-heading > span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: #ececf1; font-weight: 700; }
.action-block label { display: flex; align-items: center; gap: 7px; padding: 10px 0; border-bottom: 1px solid #e7e7ea; }
.action-block input { width: 12px; height: 12px; accent-color: var(--indigo); }
.publish-state { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; margin-top: 18px; padding: 10px; background: #ececf8; border-radius: 8px; }
.publish-state strong, .publish-state small { display: block; }
.publish-state strong { font-size: 8px; }
.publish-state small { margin-top: 2px; color: #777781; font-size: 7px; }
.drive-glyph { color: var(--indigo); }

.recording-panel { position: absolute; right: 5%; bottom: -7%; width: 310px; padding: 15px; background: rgba(250, 250, 251, 0.98); color: #24242c; border: 1px solid rgba(23,23,32,.14); border-radius: 12px; box-shadow: 0 24px 56px rgba(15,14,57,.28); transform: translateY(14px); }
.is-ready .recording-panel { animation: panel-float 800ms var(--ease-out) 900ms forwards; }
.recording-status { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; padding-bottom: 12px; border-bottom: 1px solid #e0e0e4; }
.recording-status strong, .recording-status small { display: block; }
.recording-status strong { font-size: 11px; }
.recording-status small { margin-top: 2px; color: #7a7a84; font-size: 8px; }
.recording-status time { font: 650 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.recording-dot { width: 9px; height: 9px; border-radius: 50%; background: #e35151; box-shadow: 0 0 0 4px rgba(227,81,81,.12); }
.audio-track { display: grid; grid-template-columns: 70px repeat(6, 1fr) 34px; gap: 3px; align-items: center; padding-top: 10px; font-size: 7px; color: #6f6f78; }
.audio-track i { height: 3px; background: var(--indigo); border-radius: 2px; opacity: .34; }
.audio-track i:nth-of-type(2), .audio-track i:nth-of-type(3), .audio-track i:nth-of-type(5) { opacity: .95; }
.audio-track b { color: #438453; font-size: 7px; text-align: right; }
.recording-panel button { width: 100%; margin-top: 13px; padding: 8px; border: 0; border-radius: 7px; background: #e8e8ec; color: #3e3e47; font-size: 9px; font-weight: 650; }

.principle-band { display: flex; justify-content: space-around; align-items: center; min-height: 94px; padding: 18px clamp(22px, 6vw, 104px); border-bottom: 1px solid var(--line); background: var(--warm); color: #5f5e68; font-size: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: .1em; }
.principle-band span { width: 4px; height: 4px; border-radius: 50%; background: var(--indigo); }

.story-section { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 8vw, 150px); align-items: center; min-height: 820px; padding: 120px clamp(24px, 7vw, 120px); overflow: hidden; }
.section-index { position: absolute; top: 64px; right: 5vw; color: rgba(23,23,32,.08); font-size: clamp(110px, 20vw, 320px); line-height: 1; font-weight: 650; letter-spacing: -.08em; }
.story-copy { position: relative; z-index: 1; max-width: 580px; }
.story-copy h2, .privacy-copy h2, .section-heading h2, .publishing-copy h2, .download-copy h2 { margin: 16px 0 24px; font-size: clamp(46px, 5.4vw, 82px); line-height: 1.01; letter-spacing: -.055em; font-weight: 620; }
.story-copy > p:last-child, .privacy-copy > p, .section-heading > p:last-child, .publishing-copy > p { color: var(--muted); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; }
.track-visual { position: relative; min-height: 440px; padding: 76px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.track-ruler { display: flex; justify-content: space-between; margin-left: 78px; color: #85848c; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.wave-row { display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: center; margin-top: 62px; color: #55545d; font-size: 11px; }
.waveform { height: 64px; background-color: transparent; background-repeat: repeat-x; background-position: center; background-size: 11px 64px; }
.wave-one { background-image: linear-gradient(90deg, transparent 0 2px, var(--indigo) 2px 5px, transparent 5px 11px); mask-image: linear-gradient(90deg, transparent, black 7%, black 95%, transparent); clip-path: polygon(0 45%, 4% 35%, 8% 48%, 12% 24%, 16% 65%, 20% 38%, 24% 73%, 28% 25%, 32% 63%, 36% 17%, 40% 72%, 44% 32%, 48% 62%, 52% 27%, 56% 75%, 60% 35%, 64% 55%, 68% 22%, 72% 68%, 76% 32%, 80% 61%, 84% 25%, 88% 55%, 92% 38%, 96% 50%, 100% 45%, 100% 55%, 0 55%); }
.wave-two { background-image: linear-gradient(90deg, transparent 0 2px, #7774e8 2px 5px, transparent 5px 11px); mask-image: linear-gradient(90deg, transparent, black 4%, black 92%, transparent); clip-path: polygon(0 50%, 5% 30%, 10% 62%, 15% 40%, 20% 74%, 25% 25%, 30% 55%, 35% 18%, 40% 70%, 45% 30%, 50% 58%, 55% 20%, 60% 68%, 65% 39%, 70% 77%, 75% 27%, 80% 60%, 85% 34%, 90% 69%, 95% 42%, 100% 50%, 100% 55%, 0 55%); }
.track-cursor { position: absolute; top: 58px; bottom: 58px; left: 75%; width: 1px; background: var(--indigo); }
.track-cursor span { position: absolute; top: -5px; left: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--indigo); }
.track-cursor small { position: absolute; bottom: -26px; left: 0; transform: translateX(-50%); color: var(--indigo); font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }

.privacy-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 900px; background: var(--ink); color: var(--warm); }
.privacy-field { position: relative; display: grid; place-items: center; min-height: 680px; overflow: hidden; border-right: 1px solid rgba(247,246,242,.14); }
.privacy-field img { position: relative; z-index: 2; width: min(32vw, 290px); opacity: .95; }
.orbit { position: absolute; border: 1px solid rgba(133,128,255,.24); border-radius: 50%; }
.orbit-one { width: 42%; aspect-ratio: 1; animation: orbit-pulse 5s ease-in-out infinite alternate; }
.orbit-two { width: 72%; aspect-ratio: 1; animation: orbit-pulse 5s ease-in-out 1.2s infinite alternate; }
.privacy-copy { align-self: center; padding: 100px clamp(34px, 7vw, 130px); max-width: 770px; }
.privacy-copy .eyebrow, .download-section .eyebrow { color: var(--violet); }
.privacy-copy > p { color: rgba(247,246,242,.64); }
.privacy-copy dl { margin: 50px 0 0; }
.privacy-copy dl div { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-top: 1px solid rgba(247,246,242,.16); font-size: 14px; }
.privacy-copy dd { margin: 0; color: var(--violet); font-weight: 650; }

.outcomes-section { padding: 140px clamp(24px, 7vw, 120px); overflow: hidden; }
.section-heading { max-width: 930px; }
.section-heading > p:last-child { max-width: 680px; }
.outcome-rail { display: grid; grid-template-columns: 1.05fr .95fr .9fr; gap: 1px; margin-top: 90px; background: var(--line); border: 1px solid var(--line); }
.outcome-panel { min-height: 420px; padding: 26px; background: var(--paper); }
.panel-top { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.panel-top span:last-child { color: var(--muted); font-size: 10px; }
.transcript-line { display: grid; grid-template-columns: 58px 1fr auto; gap: 15px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.transcript-line strong { color: var(--indigo); font-size: 11px; }
.transcript-line p { margin: 0; font-size: 14px; line-height: 1.5; }
.transcript-line time { color: #9998a0; font: 9px ui-monospace, SFMono-Regular, Menlo, monospace; }
.decisions-panel ol { margin: 0; padding: 0; list-style: none; }
.decisions-panel li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.decisions-panel li span { color: var(--indigo); font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.decisions-panel li p { margin: 0; font-size: 14px; line-height: 1.5; }
.actions-panel label { display: flex; gap: 13px; padding: 21px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.actions-panel input { accent-color: var(--indigo); }
.actions-panel label span { display: flex; flex-direction: column; gap: 6px; }
.actions-panel label small { color: var(--muted); font-size: 9px; }

.publishing-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 8vw, 150px); align-items: center; min-height: 940px; padding: 120px clamp(24px, 7vw, 120px); background: #e8e7fb; overflow: hidden; }
.publishing-copy { max-width: 610px; }
.publishing-copy ul { margin: 40px 0 0; padding: 0; list-style: none; }
.publishing-copy li { display: flex; gap: 13px; padding: 14px 0; border-top: 1px solid rgba(23,23,32,.13); font-size: 14px; }
.publishing-copy li span { color: var(--indigo); font-weight: 750; }
.document-visual { min-width: 650px; background: var(--paper); border: 1px solid rgba(23,23,32,.12); box-shadow: 0 30px 80px rgba(52,49,127,.16); transform: rotate(1.2deg); }
.document-toolbar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 16px 19px; border-bottom: 1px solid var(--line); }
.document-icon { display: grid; place-items: center; width: 34px; height: 34px; background: var(--indigo); color: white; border-radius: 5px; }
.document-toolbar strong, .document-toolbar small { display: block; }
.document-toolbar strong { font-size: 12px; }
.document-toolbar small { margin-top: 4px; color: var(--muted); font-size: 9px; }
.saved-state { color: #498553; font-size: 9px; font-weight: 700; }
.document-tabs { display: flex; gap: 4px; padding: 9px 16px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.document-tabs span { padding: 9px 11px; }
.document-tabs .active { color: var(--indigo); border-bottom: 2px solid var(--indigo); font-weight: 700; }
.document-tabs .user-tab { margin-left: auto; color: #3c3b43; }
.document-page { width: 74%; min-height: 520px; margin: 34px auto 0; padding: 60px 68px; background: white; box-shadow: 0 0 0 1px rgba(23,23,32,.06), 0 12px 30px rgba(23,23,32,.06); }
.document-kicker { color: var(--indigo); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.document-page h3 { margin: 18px 0 25px; font: 620 31px/1.1 Georgia, serif; letter-spacing: -.03em; }
.document-lead { color: #55545d; font: 15px/1.55 Georgia, serif; }
.document-page hr { margin: 32px 0; border: 0; border-top: 1px solid var(--line); }
.document-page h4 { margin: 0 0 12px; font-size: 12px; }
.document-page p:last-child { color: #686771; font-size: 11px; line-height: 1.6; }

.control-section { padding: 140px clamp(24px, 7vw, 120px); }
.control-list { margin-top: 90px; border-top: 1px solid var(--line); }
.control-list article { display: grid; grid-template-columns: 80px .7fr 1fr; gap: 35px; align-items: baseline; padding: 32px 0; border-bottom: 1px solid var(--line); }
.control-list span { color: var(--indigo); font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.control-list h3 { margin: 0; font-size: clamp(24px, 2.4vw, 38px); letter-spacing: -.035em; font-weight: 600; }
.control-list p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }

.download-section { position: relative; min-height: 830px; display: grid; place-items: center; overflow: hidden; padding: 100px 24px; background: var(--indigo); color: var(--warm); text-align: center; }
.download-mark { position: absolute; right: -7vw; bottom: -14vw; width: min(55vw, 760px); opacity: .08; transform: rotate(-9deg); }
.download-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.download-copy > img { width: clamp(210px, 24vw, 330px); height: auto; margin-bottom: 44px; filter: brightness(0) invert(1); }
.download-copy h2 { margin-top: 0; }
.button-light { margin-top: 20px; background: var(--warm); color: var(--ink); }
.download-meta { margin: 15px 0 0; color: rgba(247,246,242,.55); font-size: 11px; }
.release-notes { margin-top: 26px; color: rgba(247,246,242,.72); font-size: 13px; }
.release-notes:hover { color: white; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; padding: 52px clamp(24px, 6vw, 104px) 30px; background: var(--ink); color: var(--warm); }
.footer-brand { width: max-content; }
.footer-brand img { width: 170px; height: auto; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 28px; color: rgba(247,246,242,.58); font-size: 12px; }
.footer-links a:hover { color: white; }
.syscake-credit { justify-self: end; display: flex; align-items: center; gap: 18px; color: rgba(247,246,242,.68); font-size: 12px; transition: color 180ms ease; }
.syscake-credit:hover { color: white; }
.syscake-credit img { width: 116px; height: auto; }
.copyright { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 22px; border-top: 1px solid rgba(247,246,242,.12); color: rgba(247,246,242,.36); font-size: 10px; text-align: center; }
.noscript-note { position: fixed; z-index: 999; left: 16px; bottom: 16px; padding: 12px 16px; background: var(--ink); color: var(--warm); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-copy-in { to { opacity: 1; transform: translateY(0); } }
@keyframes product-in { to { opacity: 1; transform: translate(7%, 0) rotate(.8deg); } }
@keyframes panel-float { to { transform: translateY(0); } }
@keyframes orbit-pulse { from { transform: scale(.95); opacity: .6; } to { transform: scale(1.05); opacity: 1; } }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; align-items: start; padding-top: calc(var(--header-height) + 70px); padding-bottom: 150px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { max-width: 700px; font-size: clamp(48px, 7vw, 76px); }
  .hero-copy > p:not(.requirements) { max-width: 600px; }
  .hero-logo { margin-bottom: 44px; }
  .product-stage { width: min(900px, 94vw); margin-top: 45px; justify-self: center; transform: translate(3%, 36px); }
  .is-ready .product-stage { animation-name: product-in-tablet; }
  .privacy-section { grid-template-columns: .8fr 1.2fr; }
  .outcome-rail { grid-template-columns: 1fr 1fr; }
  .actions-panel { grid-column: 1 / -1; min-height: auto; }
  .publishing-section { grid-template-columns: 1fr; }
  .document-visual { width: min(820px, 100%); justify-self: center; }
  @keyframes product-in-tablet { to { opacity: 1; transform: translate(3%, 0) rotate(.8deg); } }
}

@media (max-width: 760px) {
  :root { --header-height: 66px; }
  .site-header { grid-template-columns: 1fr auto; padding: 0 20px; }
  .site-header nav { display: none; }
  .header-download { font-size: 12px; }
  .hero { min-height: 0; grid-template-columns: minmax(0, 1fr); gap: 35px; padding: calc(var(--header-height) + 42px) 20px 105px; }
  .hero-grid { background-size: 48px 48px; }
  .hero-logo { width: 190px; margin-bottom: 38px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-copy > p:not(.requirements) { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button { width: 100%; }
  .requirements { line-height: 1.5; }
  .product-stage { width: 760px; margin-top: 24px; justify-self: start; transform: translate(-11%, 26px); }
  .is-ready .product-stage { animation-name: product-in-mobile; }
  .app-window { min-width: 760px; transform: scale(.62); transform-origin: left top; margin-bottom: -31%; }
  .recording-panel { right: auto; left: 32%; bottom: -4%; transform: scale(.82) translateY(14px); transform-origin: left bottom; }
  .is-ready .recording-panel { animation: none; transform: scale(.82) translateY(0); }
  .principle-band { justify-content: flex-start; gap: 14px; overflow: auto; min-height: 76px; font-size: 10px; white-space: nowrap; }
  .principle-band p { margin: 0; }
  .story-section { grid-template-columns: 1fr; min-height: auto; gap: 60px; padding: 100px 20px; }
  .section-index { top: 70px; right: 20px; font-size: 110px; }
  .story-copy h2, .privacy-copy h2, .section-heading h2, .publishing-copy h2, .download-copy h2 { font-size: clamp(43px, 12vw, 60px); }
  .track-visual { min-height: 370px; padding: 50px 0; }
  .track-ruler { margin-left: 60px; }
  .wave-row { grid-template-columns: 45px 1fr; gap: 15px; margin-top: 54px; }
  .track-cursor { top: 38px; bottom: 38px; }
  .privacy-section { grid-template-columns: 1fr; min-height: auto; }
  .privacy-field { min-height: 480px; border-right: 0; border-bottom: 1px solid rgba(247,246,242,.14); }
  .privacy-field img { width: 180px; }
  .privacy-copy { padding: 88px 20px 105px; }
  .privacy-copy dl div { font-size: 12px; }
  .outcomes-section { padding: 100px 20px; }
  .outcome-rail { grid-template-columns: 1fr; margin-top: 56px; }
  .actions-panel { grid-column: auto; }
  .outcome-panel { min-height: 0; }
  .publishing-section { gap: 62px; min-height: 0; padding: 100px 20px; }
  .document-visual { min-width: 680px; transform: translateX(-6%) rotate(1.2deg) scale(.61); transform-origin: left top; margin-bottom: -38%; }
  .control-section { padding: 100px 20px; }
  .control-list { margin-top: 52px; }
  .control-list article { grid-template-columns: 40px 1fr; gap: 15px; }
  .control-list p { grid-column: 2; font-size: 14px; }
  .download-section { min-height: 720px; padding: 90px 20px; }
  .download-mark { width: 100vw; right: -35vw; bottom: -20vw; }
  footer { grid-template-columns: 1fr; justify-items: start; padding: 48px 20px 28px; }
  .footer-links { flex-wrap: wrap; }
  .syscake-credit { justify-self: start; flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 25px; border-top: 1px solid rgba(247,246,242,.12); }
  .copyright { width: 100%; text-align: left; }
  @keyframes product-in-mobile { to { opacity: 1; transform: translate(-11%, 0); } }
}

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