@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Variable-Latin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #09090b;
  --ink-soft: #111115;
  --surface: #16161c;
  --surface-raised: #1b1b22;
  --line: rgba(236, 233, 225, 0.12);
  --line-strong: rgba(236, 233, 225, 0.23);
  --bone: #ece9e1;
  --muted: #9d9ba3;
  --muted-low: #706f76;
  --orange: #df592a;
  --orange-hot: #ef6a34;
  --mint: #83d2b7;
  --max: 1220px;
  --side: clamp(22px, 5vw, 72px);
  --radius: 30px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 52% -10%, rgba(223, 89, 42, 0.07), transparent 25rem),
    var(--ink);
  color: var(--bone);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.image-picture {
  display: contents;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--bone);
  color: var(--ink);
  font-weight: 700;
}

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

:focus-visible {
  outline: 2px solid var(--orange-hot);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(14, 14, 17, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--bone);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img,
.footer-brand img,
.privacy-mark img,
.download-content > img {
  border-radius: 22%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--bone);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: 960px;
  padding: 0 0 0 var(--side);
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(236, 233, 225, 0.07) 50%, transparent calc(50% + 1px)),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(236, 233, 225, 0.045) 25%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: end;
  max-width: 820px;
  padding: 170px 42px 76px 0;
}

.hero .eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 34px;
  padding: 8px 12px;
  background: var(--orange-hot);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero .eyebrow > span {
  width: 18px;
  background: currentColor;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--orange-hot);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.eyebrow > span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(64px, 7.6vw, 112px);
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(92px, 10.2vw, 164px);
  letter-spacing: -0.09em;
  line-height: 0.81;
}

.hero-lede {
  max-width: 570px;
  margin: 42px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--orange-hot);
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 26px;
  border: 1px solid var(--bone);
  border-radius: 0;
  background: var(--bone);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0 0 rgba(236, 233, 225, 0);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 200ms ease-out,
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .primary-button:hover {
    transform: translate3d(3px, -3px, 0);
    background-color: var(--orange-hot);
    box-shadow: -3px 3px 0 var(--bone);
  }
}

.primary-button:active {
  transform: translate3d(1px, -1px, 0);
  background-color: var(--orange-hot);
  box-shadow: -1px 1px 0 var(--bone);
  transition-duration: 90ms;
}

.availability {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--bone);
  font-size: 14px;
  font-weight: 600;
}

.hero-note {
  max-width: 520px;
  margin: 24px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted-low);
  font-size: 12px;
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 960px;
  overflow: hidden;
  border-left: 1px solid rgba(9, 9, 11, 0.72);
  background: var(--orange-hot);
}

.hero-product::before {
  position: absolute;
  top: 92px;
  right: -8px;
  color: rgba(9, 9, 11, 0.18);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(120px, 15vw, 230px);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
  content: "01";
}

.stage-light {
  display: none;
}

.device-art {
  position: relative;
  z-index: 2;
  display: block;
  max-width: none;
  height: auto;
  user-select: none;
}

.device-lineup {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transform: none;
}

.phone {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  overflow: visible;
  padding: 9px;
  border: 1px solid rgba(247, 244, 237, 0.3);
  border-radius: 58px;
  background:
    linear-gradient(105deg, #55565a 0%, #202125 8%, #0c0d10 24%, #303136 76%, #77787b 94%, #242529 100%);
  box-shadow:
    0 52px 110px rgba(0, 0, 0, 0.62),
    0 20px 34px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 1px 0 0 rgba(255, 255, 255, 0.14),
    inset -1px 0 0 rgba(0, 0, 0, 0.7);
  transform-style: preserve-3d;
}

.phone::before {
  position: absolute;
  z-index: 4;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 54px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.76),
    inset 0 -1px 1px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.phone::after {
  position: absolute;
  z-index: 3;
  inset: 9px;
  border-radius: 49px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.025) 14%, transparent 29%),
    linear-gradient(300deg, rgba(255, 255, 255, 0.035), transparent 34%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 18px rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

.phone img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 49px;
  background: #050507;
  object-fit: cover;
}

.phone-hero {
  z-index: 2;
  width: min(378px, 68vw);
  aspect-ratio: 390 / 844;
  transform: rotate(2deg) translateY(16px);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  width: 92px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  background:
    radial-gradient(circle at 78% 50%, #0b1621 0 3px, #020305 4px 6px, transparent 7px),
    #010102;
  box-shadow: inset 0 -1px 2px rgba(255, 255, 255, 0.055);
}

.device-controls {
  position: absolute;
  z-index: -1;
  width: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, #15161a, #5c5d61 58%, #202126);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.55);
}

.device-controls-left {
  top: 124px;
  left: -7px;
  height: 34px;
  border-radius: 5px 0 0 5px;
  box-shadow:
    0 56px 0 #3b3c40,
    0 108px 0 #3b3c40,
    -2px 4px 8px rgba(0, 0, 0, 0.55);
}

.device-controls-right {
  top: 194px;
  right: -7px;
  height: 76px;
  border-radius: 0 5px 5px 0;
}

.frame-mark {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-color: var(--ink);
  border-style: solid;
  opacity: 0.82;
}

.frame-mark-a {
  top: 22%;
  right: 6%;
  border-width: 2px 2px 0 0;
}

.frame-mark-b {
  bottom: 7%;
  left: 7%;
  border-width: 0 0 2px 2px;
}

.manifesto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto p {
  margin: 0;
  padding: 12px 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  text-align: center;
}

.manifesto p + p {
  border-left: 1px solid var(--line);
}

.story-section,
.playbook-section {
  padding-top: 150px;
  padding-bottom: 160px;
}

.section-heading {
  max-width: 720px;
}

h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-heading > p:last-child,
.feature-copy > p,
.privacy-copy > p {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
}

.beat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
}

.beat {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(28, 28, 34, 0.92), rgba(15, 15, 18, 0.75));
}

.beat-number {
  color: var(--orange-hot);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
}

.beat h3 {
  margin: 72px 0 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.beat p {
  margin: 0;
  color: var(--muted);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
  min-height: 880px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.feature-copy {
  max-width: 590px;
}

.quiet-list {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.quiet-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
}

.feature-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 44px;
  background:
    radial-gradient(circle at 20% 80%, rgba(223, 89, 42, 0.2), transparent 35%),
    linear-gradient(135deg, #111114, #08080a);
}

.feature-visual::before {
  content: none;
}

.guide-visual {
  background:
    radial-gradient(circle at 20% 80%, rgba(223, 89, 42, 0.2), transparent 35%),
    linear-gradient(135deg, #111114, #08080a);
}

.reflection-visual {
  min-height: 0;
  aspect-ratio: 0.92;
  background:
    radial-gradient(circle at 20% 80%, rgba(223, 89, 42, 0.2), transparent 35%),
    linear-gradient(135deg, #111114, #08080a);
}

.feature-device-art {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

/*
 * The source files use different canvas proportions. These values normalize
 * the visible phone body to roughly 78% of the card width. This keeps the
 * device clearly inside the frame while preserving a deliberate bottom crop.
 */
.guide-visual .feature-device-art {
  top: clamp(24px, 3vw, 40px);
  left: 50%;
  width: 109%;
  transform: translate(-51.9%, -11.5%);
}

.reflection-visual .feature-device-art {
  top: auto;
  bottom: 0;
  left: 50%;
  width: 155%;
  transform: translateX(-50%);
}

.phone-feature {
  width: min(340px, 70%);
  aspect-ratio: 390 / 844;
  transform: translateY(52px);
}

.camera-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08080a;
}

.camera-backdrop {
  position: absolute;
  inset: 0;
  filter: saturate(0.72);
  opacity: 0.6;
}

.camera-backdrop img,
.download-light img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-backdrop::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.88), rgba(9, 9, 11, 0.45) 54%, rgba(9, 9, 11, 0.95));
  content: "";
}

.camera-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}

.camera-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 80px;
  margin-top: 56px;
}

.camera-labels {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px;
  align-self: center;
}

.camera-labels span {
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(18, 18, 22, 0.72);
  color: var(--bone);
  font-size: 14px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.phone-camera {
  width: 390px;
  aspect-ratio: 390 / 844;
  transform: translateY(70px);
}

.device-pocket-stage {
  position: relative;
  width: 100%;
  height: 630px;
  overflow: visible;
}

.device-pocket4 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  transform: translate(-50%, -50%);
}

.reflection blockquote {
  margin: 44px 0 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--orange);
  color: var(--bone);
  font-size: 22px;
  font-weight: 600;
}

.playbook-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.playbook-section .section-heading .eyebrow {
  justify-content: center;
}

.playbook-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 810px;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 48px;
  background: #0c0c0f;
}

.playbook-glow {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}

.playbook-glow img {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  width: 44%;
  height: 100%;
  object-fit: cover;
}

.playbook-glow::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at 50% 82%, rgba(223, 89, 42, 0.34), transparent 34%);
  content: "";
}

.phone-playbook {
  z-index: 2;
  width: 350px;
  aspect-ratio: 390 / 844;
  transform: translateY(80px);
}

.device-playbook {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  transform: translate(-50%, -50%);
}

.craft-card {
  position: absolute;
  z-index: 3;
  width: min(280px, 25%);
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(24, 24, 30, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.craft-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-hot);
  font-size: 12px;
  font-weight: 600;
}

.craft-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.craft-one {
  top: 24%;
  left: 7%;
  transform: rotate(-3deg);
}

.craft-two {
  top: 45%;
  right: 6%;
  transform: rotate(2deg);
}

.craft-three {
  right: 11%;
  bottom: 11%;
  transform: rotate(-2deg);
}

.privacy-section {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: 56px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.privacy-mark {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: var(--surface);
}

.privacy-mark img {
  width: 78px;
  height: auto;
}

.privacy-copy h2 {
  font-size: clamp(40px, 4vw, 64px);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 30px;
  color: var(--bone);
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  color: var(--orange-hot);
}

.privacy-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.privacy-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-facts dt {
  color: var(--muted);
}

.privacy-facts dd {
  margin: 0;
  color: var(--mint);
  font-weight: 600;
}

.download-section {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  place-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08080a;
}

.download-light {
  position: absolute;
  inset: 0;
  filter: saturate(0.78);
  opacity: 0.6;
}

.download-light::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, #08080a 3%, transparent 34%, #08080a 98%),
    radial-gradient(circle at 50% 62%, rgba(223, 89, 42, 0.24), transparent 34%);
  content: "";
}

.download-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 90px 24px;
  text-align: center;
}

.download-content > img {
  width: 70px;
  margin: 0 auto 30px;
}

.eyebrow.centered {
  justify-content: center;
}

.download-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 21px;
}

.store-status {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(14, 14, 18, 0.78);
  color: var(--bone);
  font-weight: 600;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 38px;
  min-height: 170px;
}

.site-footer > p,
.site-footer small {
  color: var(--muted-low);
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Legal and support pages */
.simple-page {
  background: var(--ink);
}

.simple-main {
  width: min(820px, calc(100% - (var(--side) * 2)));
  min-height: 72vh;
  margin: 0 auto;
  padding: 180px 0 120px;
}

.simple-main .eyebrow {
  margin-bottom: 28px;
}

.simple-main h1 {
  font-size: clamp(52px, 8vw, 88px);
}

.simple-intro {
  max-width: 700px;
  margin: 30px 0 72px;
  color: var(--muted);
  font-size: 21px;
}

.prose-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.prose-section h2 {
  margin-bottom: 18px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.prose-section h3 {
  margin: 30px 0 10px;
  font-size: 18px;
}

.prose-section p,
.prose-section li {
  color: var(--muted);
}

.prose-section a {
  color: var(--bone);
}

.prose-section ul {
  display: grid;
  gap: 10px;
  padding-left: 21px;
}

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

.support-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  text-decoration: none;
}

.support-card span {
  color: var(--orange-hot);
  font-size: 13px;
  font-weight: 600;
}

.support-card h2 {
  margin-top: 48px;
  font-size: 24px;
}

.updated {
  margin-top: 70px;
  color: var(--muted-low);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .hero-copy {
    max-width: 760px;
    padding: 170px var(--side) 80px;
  }

  .hero-product {
    min-height: 720px;
    margin-top: 0;
    border-top: 1px solid rgba(9, 9, 11, 0.72);
    border-left: 0;
  }

  .device-lineup {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 52% center;
  }

  .phone-hero {
    width: 355px;
  }

  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .privacy-section {
    grid-template-columns: 120px 1fr;
  }

  .privacy-facts {
    grid-column: 2;
  }

  .camera-layout {
    grid-template-columns: 1fr 390px;
    gap: 30px;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    padding: 44px 0;
  }

  .site-footer nav,
  .site-footer small {
    justify-self: end;
  }
}

@media (max-width: 720px) {
  :root {
    --side: 20px;
    --radius: 24px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    border-color: var(--line);
    background: rgba(14, 14, 17, 0.84);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

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

  .header-cta {
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero {
    padding: 0;
  }

  .hero-copy {
    padding: 132px 20px 62px;
  }

  .hero h1 {
    font-size: clamp(72px, 22vw, 96px);
    line-height: 0.83;
  }

  .hero-lede {
    margin-top: 34px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-product {
    width: 100vw;
    min-height: 590px;
    margin: 0;
    overflow: clip;
  }

  .stage-light {
    inset: 5% 0 0;
  }

  .phone-hero {
    width: min(320px, 78vw);
  }

  .device-lineup {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 54% center;
    transform: none;
  }

  .frame-mark-a {
    right: 2%;
  }

  .manifesto,
  .beat-grid,
  .feature,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .manifesto {
    padding: 10px 0;
  }

  .manifesto p {
    padding: 16px 0;
    text-align: left;
  }

  .manifesto p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story-section,
  .playbook-section {
    padding-top: 105px;
    padding-bottom: 110px;
  }

  h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .beat-grid {
    margin-top: 46px;
  }

  .beat {
    min-height: 230px;
  }

  .beat h3 {
    margin-top: 44px;
  }

  .feature {
    gap: 50px;
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .feature-visual {
    min-height: 500px;
    order: 2;
  }

  .reflection-visual {
    min-height: 0;
  }

  .reflection .feature-copy {
    order: 1;
  }

  .reflection .feature-visual {
    order: 2;
  }

  .phone-feature {
    width: min(318px, 74vw);
  }

  .camera-content {
    padding-top: 100px;
  }

  .camera-layout {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .camera-labels {
    margin-bottom: 36px;
  }

  .phone-camera {
    justify-self: center;
    width: min(330px, 82vw);
  }

  .device-pocket-stage {
    height: 570px;
  }

  .device-pocket4 {
    width: 470px;
  }

  .playbook-stage {
    min-height: 740px;
    margin-top: 48px;
    border-radius: 32px;
  }

  .phone-playbook {
    width: min(320px, 72vw);
  }

  .device-playbook {
    top: auto;
    bottom: 0;
    width: 400px;
    transform: translateX(-50%);
  }

  .craft-card {
    display: none;
  }

  .privacy-section {
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .privacy-mark {
    width: 112px;
    height: 112px;
    border-radius: 29px;
  }

  .privacy-mark img {
    width: 60px;
  }

  .privacy-facts {
    grid-column: auto;
    width: 100%;
  }

  .download-section {
    min-height: 650px;
  }

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

  .site-footer nav,
  .site-footer small {
    justify-self: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

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

  .simple-main {
    padding-top: 140px;
  }
}

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

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

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