:root {
  --color-background: #0b0b0d;
  --color-text: #f0f2f5;
  --color-gold: #f4c95d;
  --color-surface: #111114;
  --color-surface-elevated: #17171b;
  --color-surface-pressed: #201f1b;
  --color-muted: #b8b09e;
  --color-danger: #db383f;
  --color-ink-on-gold: rgba(0, 0, 0, 0.84);
  --color-hairline: rgba(255, 255, 255, 0.14);
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --radius-control: 12px;
  --radius-panel: 16px;
  --shadow-panel: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 74% 12%, rgba(244, 201, 93, 0.08), transparent 30%),
    linear-gradient(180deg, #070708 0%, #0c0c0f 46%, #070708 100%);
  color: var(--color-text);
  letter-spacing: 0;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(1120px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding:
    max(24px, env(safe-area-inset-top))
    max(20px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom))
    max(20px, env(safe-area-inset-left));
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(28px, 6vw, 72px);
}

.brand-strip {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--color-hairline);
  background: var(--color-surface);
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-link > span {
  display: grid;
}

.brand-name,
.brand-note,
.eyebrow,
.panel-kicker,
.panel-copy,
.form-message,
.site-footer {
  margin: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 650;
}

.brand-note {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
}

main {
  display: grid;
  gap: clamp(64px, 10vw, 120px);
}

.home-shell {
  width: min(1240px, 100%);
  gap: 0;
}

.home-nav {
  position: sticky;
  top: max(12px, env(safe-area-inset-top));
  z-index: 20;
  justify-content: space-between;
  min-height: 66px;
  margin: 0 -14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px 14px;
  background: rgba(10, 10, 12, 0.7);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.home-nav nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(240, 242, 245, 0.64);
  font-size: 13px;
  font-weight: 650;
}

.home-nav nav a {
  text-decoration: none;
}

.nav-store {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 201, 93, 0.3);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--color-gold);
  background: rgba(244, 201, 93, 0.07);
}

.home-shell main {
  gap: clamp(88px, 12vw, 156px);
}

.release-hero {
  position: relative;
  min-height: min(880px, calc(100svh - 54px));
  display: grid;
  align-items: center;
  isolation: isolate;
}

.release-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: calc(50% - 50vw);
  bottom: -80px;
  left: calc(50% - 50vw);
  z-index: -2;
  background:
    radial-gradient(circle at 76% 38%, rgba(244, 201, 93, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.1), rgba(7, 7, 8, 0.92));
  pointer-events: none;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
}

.release-hero-copy {
  max-width: 680px;
  padding: clamp(82px, 11vw, 132px) 0;
}

.release-hero h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(62px, 7.4vw, 102px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 610;
  text-wrap: balance;
}

.release-hero h1 span {
  color: rgba(240, 242, 245, 0.48);
}

.release-hero .lede {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(240, 242, 245, 0.67);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
}

.release-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(240, 242, 245, 0.66);
  letter-spacing: 0.04em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 18px rgba(244, 201, 93, 0.74);
}

.best-moments-demo {
  position: relative;
  min-height: clamp(560px, 58vw, 650px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto auto auto;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: clamp(20px, 2.5vw, 30px);
  background:
    radial-gradient(circle at 8% 0%, rgba(244, 201, 93, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(22, 22, 26, 0.96), rgba(8, 8, 10, 0.98));
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.best-moments-demo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(244, 201, 93, 0.52), transparent);
  pointer-events: none;
}

.demo-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.demo-app-mark {
  width: 36px;
  height: 36px;
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  background: #11182f;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.demo-app-mark span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
}

.demo-toolbar > div {
  display: grid;
  gap: 3px;
}

.demo-toolbar > div span,
.demo-result-count,
.demo-explanation > span,
.demo-preview-meta span,
.demo-help {
  color: rgba(240, 242, 245, 0.44);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-toolbar strong {
  font-size: 15px;
  line-height: 1.2;
}

.demo-result-count {
  border: 1px solid rgba(244, 201, 93, 0.2);
  border-radius: 999px;
  padding: 8px 10px;
  color: rgba(244, 201, 93, 0.78);
  background: rgba(244, 201, 93, 0.06);
  white-space: nowrap;
}

.demo-preview {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: #11162b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.demo-preview-art {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #151b37, #0d1229);
  background-size: 44px 44px, 44px 44px, auto;
}

.demo-webgl {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  opacity: 0;
  transition: opacity 420ms ease;
}

.demo-preview-art.webgl-ready .demo-webgl {
  opacity: 1;
}

.demo-preview-art.webgl-ready .demo-motion-line,
.demo-preview-art.webgl-ready .demo-subject {
  opacity: 0;
}

.demo-analysis-label,
.demo-frame-label {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(6, 7, 14, 0.58);
  color: rgba(240, 242, 245, 0.48);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.demo-analysis-label {
  top: 12px;
  left: 12px;
}

.demo-frame-label {
  right: 12px;
  bottom: 12px;
  color: rgba(244, 201, 93, 0.62);
}

.demo-preview-art::before {
  content: "";
  position: absolute;
  inset: 17%;
  z-index: 2;
  border: 1px solid rgba(244, 201, 93, 0.24);
  border-radius: 18px;
  box-shadow: 0 0 42px rgba(244, 201, 93, 0.05);
  pointer-events: none;
}

.demo-motion-line,
.demo-subject {
  position: absolute;
  display: block;
  transition: transform 260ms ease, width 260ms ease, opacity 260ms ease;
}

.demo-motion-line {
  height: 5px;
  left: 50%;
  border-radius: 999px;
  background: rgba(240, 242, 245, 0.82);
}

.line-one {
  top: 34%;
  width: 42%;
  transform: translateX(-50%);
}

.line-two {
  top: 40%;
  width: 54%;
  transform: translateX(-50%);
  opacity: 0.7;
}

.demo-subject {
  top: 57%;
  left: 50%;
  width: 72px;
  height: 60px;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  background: #ffd500;
  box-shadow: 0 14px 42px rgba(255, 213, 0, 0.16);
}

.demo-preview-art[data-moment="2"] .demo-subject {
  transform: translate(-72%, -52%);
}

.demo-preview-art[data-moment="2"] .line-one,
.demo-preview-art[data-moment="2"] .line-two {
  transform: translateX(-55%);
}

.demo-preview-art[data-moment="3"] .demo-subject {
  transform: translate(-32%, -54%);
  box-shadow: 0 0 54px rgba(255, 213, 0, 0.28);
}

.demo-preview-art[data-moment="4"] .demo-subject {
  transform: translate(-54%, -42%) rotate(2deg);
  opacity: 0.86;
}

.demo-preview-meta {
  min-height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 16px;
  background: rgba(6, 7, 14, 0.68);
}

.demo-preview-meta strong {
  margin-left: 6px;
  color: var(--color-text);
  font-size: 12px;
}

.demo-explanation {
  min-height: 61px;
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) minmax(145px, 0.65fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.demo-explanation strong {
  color: var(--color-gold);
  font-size: 13px;
  line-height: 1.25;
}

.demo-explanation p {
  margin: 0;
  color: rgba(240, 242, 245, 0.48);
  font-size: 12px;
  line-height: 1.4;
}

.demo-candidates {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.demo-candidate {
  min-width: 0;
  position: relative;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(240, 242, 245, 0.52);
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.demo-candidate:hover,
.demo-candidate.is-selected {
  border-color: rgba(244, 201, 93, 0.42);
  background: rgba(244, 201, 93, 0.07);
  color: var(--color-gold);
}

.demo-candidate:active {
  transform: scale(0.98);
}

.candidate-score {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
  min-width: 25px;
  min-height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--color-gold);
  color: rgba(0, 0, 0, 0.82);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.candidate-art {
  height: 62px;
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
  background: #253147;
}

.candidate-art i,
.candidate-art b {
  position: absolute;
  display: block;
}

.candidate-art i {
  top: 21px;
  left: 27%;
  width: 48%;
  height: 3px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 7px 0 rgba(255, 255, 255, 0.52);
}

.candidate-art b {
  right: 25%;
  bottom: 9px;
  width: 21px;
  height: 17px;
  background: #ffd500;
}

.moment-two .candidate-art b {
  right: 38%;
}

.moment-three .candidate-art {
  background: #405355;
}

.moment-three .candidate-art b {
  right: 18%;
}

.moment-four .candidate-art {
  background: #34414d;
}

.moment-four .candidate-art b {
  right: 30%;
  transform: translateY(-3px);
}

.demo-candidate > span:last-child {
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-filmstrip {
  height: 34px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  border-radius: 9px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.demo-filmstrip span {
  border-radius: 5px;
  background: #283248;
}

.demo-filmstrip span:nth-child(n + 6) {
  background: #3e5053;
}

.demo-filmstrip i {
  --playhead-position: 16%;
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: var(--playhead-position);
  width: 2px;
  border-radius: 2px;
  background: var(--color-gold);
  box-shadow: 0 0 14px rgba(244, 201, 93, 0.52);
  transition: left 260ms ease;
}

.demo-help {
  margin: -8px 0 0;
  text-align: center;
  text-transform: none;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.store-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.app-store-badge-link {
  min-width: 168px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-decoration: none;
}

.app-store-badge {
  width: auto;
  height: 48px;
  display: block;
}

.store-link {
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(240, 242, 245, 0.8);
  background: rgba(255, 255, 255, 0.035);
}

.store-link:hover {
  border-color: rgba(244, 201, 93, 0.42);
  color: var(--color-gold);
}

.store-link:active {
  transform: scale(0.98);
}

.release-hero .assurance-row {
  margin-top: 22px;
  gap: 14px 20px;
  color: rgba(240, 242, 245, 0.46);
}

.release-hero .assurance-row span {
  min-height: auto;
  position: relative;
  border: 0;
  padding: 0 0 0 12px;
  background: transparent;
}

.release-hero .assurance-row span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(244, 201, 93, 0.64);
}

.performance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-strip div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 24px clamp(20px, 3vw, 40px);
}

.performance-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-strip strong {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 560;
}

.performance-strip span {
  color: rgba(240, 242, 245, 0.46);
  font-size: 12px;
}

.release-status {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  padding: clamp(34px, 6vw, 74px);
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 201, 93, 0.08), transparent 32%),
    rgba(17, 17, 20, 0.58);
}

.release-status h2 {
  max-width: 630px;
  margin-top: 15px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.privacy-copy > p {
  margin: 0;
  color: rgba(240, 242, 245, 0.68);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.privacy-points {
  margin-top: 28px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-points span {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px 14px 0;
  color: rgba(240, 242, 245, 0.52);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-points span::after {
  content: "+";
  position: absolute;
  top: 13px;
  right: 0;
  color: var(--color-gold);
  font-family: var(--font-mono);
}

.app-showcase,
.release-workflow {
  display: grid;
  gap: clamp(38px, 6vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.55fr);
  gap: clamp(34px, 8vw, 118px);
  align-items: end;
}

.section-intro .section-heading h2 {
  max-width: 800px;
  margin-top: 15px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-intro > p {
  margin: 0;
  color: rgba(240, 242, 245, 0.5);
  font-size: 15px;
  line-height: 1.55;
}

.showcase-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(292px, 27vw, 346px);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: start;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  margin-right: calc(50% - 50vw);
  padding: 4px max(22px, calc(50vw - 620px)) 28px 0;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(244, 201, 93, 0.54) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.showcase-shot {
  margin: 0;
  display: grid;
  gap: 20px;
  align-content: start;
  scroll-snap-align: start;
}

.showcase-shot img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050506;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28);
}

.showcase-shot figcaption {
  width: 100%;
  display: grid;
  gap: 7px;
  padding-right: 18px;
  text-align: left;
}

.showcase-shot strong {
  font-size: 18px;
  line-height: 1.25;
}

.showcase-shot span {
  color: rgba(240, 242, 245, 0.47);
  font-size: 13px;
  line-height: 1.45;
}

.showcase-hint {
  margin: -26px 0 0;
  color: rgba(240, 242, 245, 0.42);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.workflow-list article {
  min-height: 246px;
  display: grid;
  align-content: start;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px 0 0;
}

.workflow-list .step-number {
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.workflow-list h3,
.workflow-list p {
  margin: 0;
}

.workflow-list h3 {
  margin-top: 28px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.workflow-list p {
  max-width: 330px;
  color: rgba(240, 242, 245, 0.48);
  font-size: 15px;
  line-height: 1.58;
}

.closing-line {
  max-width: 980px;
  margin: clamp(48px, 8vw, 100px) 0 0;
  padding-top: clamp(36px, 6vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(240, 242, 245, 0.72);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.invite-layout {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

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

.eyebrow,
.panel-kicker {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 14px;
  max-width: 9ch;
  font-size: 78px;
  line-height: 0.96;
  font-weight: 650;
}

.lede {
  max-width: 510px;
  margin: 22px 0 0;
  color: rgba(240, 242, 245, 0.78);
  font-size: 20px;
  line-height: 1.42;
}

.assurance-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 650;
}

.assurance-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(23, 23, 27, 0.52);
}

.access-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-panel);
  padding: clamp(22px, 4vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(23, 23, 27, 0.78);
  box-shadow: var(--shadow-panel);
}

.panel-state {
  position: relative;
  z-index: 1;
}

.panel-state:not([hidden]),
.panel-state:not([hidden]) * {
  opacity: 1 !important;
  visibility: visible !important;
}

.panel-state[hidden] {
  display: none;
}

h2 {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 650;
}

.panel-copy {
  margin-top: 10px;
  color: rgba(240, 242, 245, 0.68);
  font-size: 14px;
  line-height: 1.48;
}

form {
  margin-top: 28px;
}

.field-group {
  display: grid;
  gap: 9px;
}

label {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 650;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-control);
  padding: 0 15px;
  outline: none;
  background: rgba(17, 17, 20, 0.82);
  color: var(--color-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

input::placeholder {
  color: rgba(184, 176, 158, 0.48);
}

input:focus-visible {
  border-color: rgba(244, 201, 93, 0.72);
  box-shadow:
    0 0 0 4px rgba(244, 201, 93, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-message {
  min-height: 21px;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-message.is-error {
  color: #ff8f95;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius-control);
  padding: 0 16px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
}

.primary-action {
  width: 100%;
  margin-top: 16px;
  background: var(--color-gold);
  color: var(--color-ink-on-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.primary-action:hover {
  background: #ffd675;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(23, 23, 27, 0.72);
  color: rgba(240, 242, 245, 0.92);
}

.secondary-action:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(32, 31, 27, 0.76);
}

.primary-action:active,
.secondary-action:active {
  transform: scale(0.98);
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.58;
}

.action-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.action-row .primary-action {
  margin-top: 0;
}

.beta-brief {
  display: grid;
  gap: 26px;
  padding-top: clamp(8px, 2vw, 20px);
}

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

.section-heading h2 {
  max-width: 720px;
  margin-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-item {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 18px;
  background: rgba(17, 17, 20, 0.54);
  display: grid;
  align-content: start;
  gap: 12px;
}

.feature-label,
.feature-item h3,
.feature-item p,
.tester-note p,
.legal-section p {
  margin: 0;
}

.feature-label {
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-item h3 {
  color: var(--color-text);
  font-size: 19px;
  line-height: 1.16;
  font-weight: 650;
}

.feature-item p {
  color: rgba(240, 242, 245, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.product-preview {
  display: grid;
  gap: 28px;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 36px);
  align-items: start;
}

.preview-item {
  margin: 0;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.preview-item.is-lifted {
  margin-top: -30px;
}

.preview-item img {
  width: min(100%, 308px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.32));
}

.preview-item figcaption {
  width: min(100%, 300px);
  display: grid;
  gap: 5px;
  text-align: center;
}

.preview-item strong {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.25;
}

.preview-item span {
  color: rgba(240, 242, 245, 0.64);
  font-size: 13px;
  line-height: 1.45;
}

.tester-note {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--color-hairline);
  padding-top: 32px;
}

.tester-note p {
  max-width: 610px;
  color: rgba(240, 242, 245, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: rgba(184, 176, 158, 0.72);
  font-size: 12px;
}

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

a {
  color: var(--color-text);
  text-underline-offset: 4px;
}

a:hover {
  color: var(--color-gold);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(244, 201, 93, 0.72);
  outline-offset: 4px;
}

.legal-shell {
  width: min(880px, 100%);
}

.legal-page {
  display: grid;
  gap: 28px;
}

.legal-page h1 {
  max-width: 13ch;
  font-size: 64px;
}

.legal-page .lede {
  margin-top: -8px;
}

.legal-section {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--color-hairline);
  padding-top: 22px;
}

.legal-section h2 {
  margin: 0;
  font-size: 24px;
}

.legal-section p {
  color: rgba(240, 242, 245, 0.74);
  font-size: 15px;
  line-height: 1.62;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .page-shell {
    gap: 34px;
  }

  .home-shell {
    gap: 0;
  }

  .home-nav {
    align-items: center;
    gap: 14px;
    margin: 0 -8px;
    border-radius: 16px;
    padding-inline: 12px;
  }

  .home-nav nav {
    gap: 12px;
    font-size: 12px;
  }

  .home-nav nav a,
  .site-footer nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .home-nav nav a[href^="#"] {
    display: none;
  }

  .home-shell main {
    gap: 96px;
  }

  .release-hero {
    min-height: auto;
  }

  .release-hero::before {
    background:
      radial-gradient(circle at 50% 48%, rgba(244, 201, 93, 0.09), transparent 34%),
      linear-gradient(180deg, rgba(7, 7, 8, 0.08), rgba(7, 7, 8, 0.94));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .release-hero-copy {
    max-width: 100%;
    padding: 92px 0 58px;
  }

  .release-hero h1 {
    max-width: min(100%, 640px);
    font-size: clamp(56px, 11.2vw, 78px);
  }

  .best-moments-demo {
    min-height: 610px;
  }

  .cta-row {
    margin-top: 24px;
  }

  .release-status {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .showcase-grid {
    grid-auto-columns: min(82vw, 330px);
    gap: 16px;
    padding-right: 20px;
  }

  .showcase-shot img {
    width: 100%;
  }

  .workflow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-list article {
    min-height: 210px;
  }

  .invite-layout {
    grid-template-columns: 1fr;
    align-self: start;
    gap: 30px;
  }

  main {
    gap: 54px;
  }

  h1 {
    max-width: 12ch;
    font-size: 56px;
  }

  .lede {
    font-size: 18px;
  }

  h2 {
    font-size: 26px;
  }

  .release-hero .assurance-row {
    margin-top: 24px;
  }

  .access-panel {
    padding: 22px;
  }

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

  .feature-item {
    min-height: 210px;
  }

  .preview-gallery {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .preview-item.is-lifted {
    margin-top: 0;
  }

  .preview-item img {
    width: min(100%, 280px);
  }

  .tester-note {
    grid-template-columns: 1fr;
  }

  .legal-page h1 {
    font-size: 48px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .home-nav {
    display: flex;
    top: max(8px, env(safe-area-inset-top));
  }

  .brand-note {
    display: none;
  }

  .home-nav nav {
    gap: 8px;
  }

  .home-nav nav a[href="support.html"] {
    display: none;
  }

  .release-hero {
    min-height: auto;
  }

  .release-hero h1 {
    font-size: clamp(48px, 15vw, 62px);
  }

  .release-hero-copy {
    padding-top: 74px;
  }

  .best-moments-demo {
    min-height: auto;
    border-radius: 24px;
    padding: 18px;
  }

  .demo-result-count {
    display: none;
  }

  .demo-preview-art {
    min-height: 205px;
  }

  .demo-explanation {
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: start;
  }

  .demo-candidates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .candidate-art {
    height: 56px;
  }

  .cta-row {
    display: grid;
  }

  .store-link {
    width: 100%;
  }

  .app-store-badge-link {
    justify-self: start;
  }

  .performance-strip {
    grid-template-columns: 1fr;
  }

  .performance-strip div {
    min-height: 94px;
  }

  .performance-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .release-status {
    border-radius: 24px;
    padding: 26px;
  }

  .section-intro .section-heading h2 {
    font-size: 42px;
  }

  .workflow-list h3 {
    margin-top: 14px;
  }

  .action-row {
    grid-template-columns: 1fr;
  }

  .secondary-action {
    order: 2;
  }

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

  .feature-item {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* Editorial motion homepage */

.home-page {
  --editorial-ivory: #f5f0e6;
  --editorial-gold: #f4c95d;
  --editorial-black: #070708;
  --editorial-panel: #111114;
  --editorial-border: rgba(255, 255, 255, 0.11);
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 72% 5%, rgba(244, 201, 93, 0.16), transparent 28%),
    radial-gradient(ellipse at 18% 24%, rgba(98, 76, 36, 0.14), transparent 24%),
    linear-gradient(180deg, #070708 0%, #0c0b09 28%, #070708 72%, #0b0a08 100%);
}

.home-page::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
}

.home-page .home-shell {
  width: 100%;
  max-width: none;
  padding: max(18px, env(safe-area-inset-top)) clamp(18px, 3vw, 44px) max(28px, env(safe-area-inset-bottom));
}

.home-page .home-nav {
  width: min(1360px, 100%);
  min-height: 62px;
  top: max(12px, env(safe-area-inset-top));
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 9px 12px 9px 10px;
  background: rgba(9, 9, 10, 0.66);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.22);
  transition:
    min-height 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.home-page .home-nav.is-scrolled {
  min-height: 56px;
  border-color: rgba(244, 201, 93, 0.16);
  background: rgba(8, 8, 9, 0.84);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.42);
}

.home-page .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 240ms ease;
}

.home-page .brand-link:hover .brand-mark {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 0 12px 32px rgba(244, 201, 93, 0.13);
}

.home-page .home-nav nav a:not(.nav-store) {
  position: relative;
  padding: 10px 0;
  color: rgba(245, 240, 230, 0.66);
  transition: color 180ms ease;
}

.home-page .home-nav nav a:not(.nav-store)::after {
  content: "";
  height: 1px;
  position: absolute;
  right: 50%;
  bottom: 6px;
  left: 50%;
  background: var(--editorial-gold);
  transition: right 180ms ease, left 180ms ease;
}

.home-page .home-nav nav a:not(.nav-store):hover::after {
  right: 0;
  left: 0;
}

.home-page .nav-store {
  min-height: 40px;
  padding-inline: 16px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-page .nav-store:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 201, 93, 0.58);
  background: rgba(244, 201, 93, 0.12);
}

.home-page main {
  width: 100%;
  gap: clamp(132px, 16vw, 240px);
}

.home-page .release-hero,
.home-page .release-status,
.home-page .app-showcase,
.home-page .release-workflow,
.home-page .closing-callout,
.home-page .site-footer {
  width: min(1360px, 100%);
  margin-inline: auto;
}

.home-page #page-title,
.home-page #features,
.home-page #workflow {
  scroll-margin-top: 104px;
}

.home-page .release-hero {
  min-height: auto;
  display: block;
  padding: clamp(100px, 13vw, 188px) 0 0;
}

.home-page .release-hero::before {
  display: none;
}

.hero-aurora {
  width: min(1120px, 90vw);
  height: 650px;
  position: absolute;
  top: -110px;
  left: 50%;
  z-index: -1;
  opacity: 0.8;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 70% 36%, rgba(244, 201, 93, 0.18), transparent 32%),
    radial-gradient(ellipse at 32% 58%, rgba(153, 111, 38, 0.11), transparent 36%);
  filter: blur(26px);
  pointer-events: none;
}

.hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: end;
  padding-inline: clamp(2px, 2vw, 28px);
}

.home-page .release-hero-copy {
  max-width: none;
  padding: 0;
}

.home-page .release-hero h1,
.home-page .section-heading h2,
.home-page .privacy-heading h2,
.home-page .closing-callout h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.home-page .release-hero h1 {
  max-width: 930px;
  margin-top: 26px;
  color: var(--editorial-ivory);
  font-size: clamp(72px, 9vw, 142px);
  line-height: 0.84;
}

.home-page .release-hero h1 span {
  color: rgba(245, 240, 230, 0.36);
}

.hero-intro {
  max-width: 460px;
  padding-bottom: 8px;
}

.home-page .release-hero .lede {
  margin: 0;
  color: rgba(245, 240, 230, 0.72);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.54;
}

.home-page .cta-row {
  margin-top: 30px;
}

.magnetic {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease, color 180ms ease;
}

.hero-stage,
.showcase-shot,
.workflow-card,
.release-status,
.closing-callout {
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  --reveal-y: 0px;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  margin-top: clamp(76px, 10vw, 132px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: 1px;
  background:
    radial-gradient(ellipse 560px 400px at var(--spot-x) var(--spot-y), rgba(244, 201, 93, 0.13), transparent 54%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    0 80px 180px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(244, 201, 93, 0.025) inset;
  transform: translateY(calc(var(--reveal-y) + var(--lift))) perspective(1600px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 140ms ease-out;
}

.hero-stage:hover {
  --lift: -4px;
  border-color: rgba(244, 201, 93, 0.24);
  box-shadow: 0 90px 200px rgba(0, 0, 0, 0.56), 0 0 80px rgba(244, 201, 93, 0.06);
}

.stage-chrome {
  min-height: 52px;
  display: grid;
  grid-template-columns: repeat(3, 8px) 1fr auto;
  gap: 7px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px 32px 0 0;
  padding: 0 19px;
  color: rgba(245, 240, 230, 0.34);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(12, 12, 14, 0.88);
}

.stage-chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.stage-chrome > span:first-child {
  background: rgba(244, 201, 93, 0.74);
}

.stage-chrome p {
  margin: 0 0 0 9px;
}

.stage-chrome strong {
  color: rgba(244, 201, 93, 0.56);
  font-weight: 650;
}

.home-page .best-moments-demo {
  min-height: 650px;
  grid-template-rows: auto 1fr;
  gap: 26px;
  border: 0;
  border-radius: 0 0 32px 32px;
  padding: clamp(22px, 3vw, 38px);
  background:
    linear-gradient(140deg, rgba(26, 25, 22, 0.94), rgba(8, 8, 10, 0.98) 48%),
    #09090b;
  box-shadow: none;
}

.home-page .best-moments-demo::before {
  opacity: 0.45;
}

.demo-workspace {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(300px, 0.68fr);
  gap: clamp(20px, 2.5vw, 34px);
}

.home-page .demo-preview {
  min-height: 500px;
}

.home-page .demo-preview-art {
  min-height: 440px;
}

.demo-inspector {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
}

.home-page .demo-explanation {
  min-height: auto;
  grid-template-columns: 1fr;
  gap: 7px;
  align-content: start;
  border-top: 0;
  padding-top: 8px;
}

.home-page .demo-explanation strong {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.035em;
}

.home-page .demo-explanation p {
  max-width: 32ch;
  font-size: 13px;
  line-height: 1.55;
}

.home-page .demo-candidates {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
}

.home-page .demo-candidate {
  min-height: 132px;
  border-radius: 18px;
  padding: 10px;
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease, background-color 180ms ease;
}

.home-page .demo-candidate:hover {
  transform: translateY(-3px);
}

.home-page .candidate-art {
  height: 82px;
}

.home-page .performance-strip {
  margin-top: clamp(40px, 7vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.home-page .performance-strip div {
  min-height: 150px;
}

.home-page .performance-strip strong {
  color: var(--editorial-ivory);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(38px, 4vw, 56px);
}

.home-page .release-status {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.62fr);
  align-items: end;
  border-radius: 36px;
  padding: clamp(42px, 7vw, 96px);
  background:
    radial-gradient(ellipse 620px 520px at var(--spot-x) var(--spot-y), rgba(244, 201, 93, 0.16), transparent 55%),
    linear-gradient(140deg, rgba(38, 31, 18, 0.92), rgba(13, 13, 15, 0.96) 58%);
  transform: translateY(var(--reveal-y));
}

.home-page .release-status::before {
  content: "PRIVATE";
  position: absolute;
  top: -0.2em;
  right: -0.06em;
  z-index: -1;
  color: rgba(245, 240, 230, 0.025);
  font-size: clamp(140px, 23vw, 340px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.home-page .release-status h2 {
  max-width: 800px;
  color: var(--editorial-ivory);
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.92;
}

.home-page .privacy-copy > p {
  color: rgba(245, 240, 230, 0.7);
  font-size: clamp(18px, 1.75vw, 22px);
}

.home-page .app-showcase,
.home-page .release-workflow {
  gap: clamp(54px, 8vw, 100px);
}

.home-page .section-intro {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  align-items: end;
  padding-inline: clamp(2px, 2vw, 28px);
}

.home-page .section-intro .section-heading h2 {
  max-width: 900px;
  color: var(--editorial-ivory);
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.88;
}

.home-page .section-intro > p {
  color: rgba(245, 240, 230, 0.58);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.showcase-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.home-page .showcase-shot {
  min-height: 590px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  grid-column: span 6;
  margin: 0;
  border: 1px solid var(--editorial-border);
  border-radius: 30px;
  background:
    radial-gradient(ellipse 440px 340px at var(--spot-x) var(--spot-y), rgba(244, 201, 93, 0.13), transparent 56%),
    linear-gradient(145deg, #181715, #0b0b0d 66%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.25);
  transform: translateY(calc(var(--reveal-y) + var(--lift))) perspective(1500px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 150ms ease-out, border-color 220ms ease, box-shadow 220ms ease;
}

.home-page .showcase-shot:hover {
  --lift: -7px;
  border-color: rgba(244, 201, 93, 0.28);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.42), 0 0 70px rgba(244, 201, 93, 0.045);
}

.home-page .showcase-shot:nth-child(3n + 2) {
  background:
    radial-gradient(ellipse 440px 340px at var(--spot-x) var(--spot-y), rgba(244, 201, 93, 0.11), transparent 56%),
    linear-gradient(145deg, #11182a, #090a0f 68%);
}

.home-page .showcase-shot:nth-child(4n) {
  background:
    radial-gradient(ellipse 440px 340px at var(--spot-x) var(--spot-y), rgba(244, 201, 93, 0.1), transparent 56%),
    linear-gradient(145deg, #29231a, #0b0b0d 68%);
}

.home-page .showcase-shot.shot-feature,
.home-page .showcase-shot.shot-wide {
  grid-column: span 7;
  min-height: 720px;
}

.home-page .showcase-shot.shot-tall {
  grid-column: span 5;
  min-height: 720px;
}

.home-page .showcase-shot img {
  width: auto;
  max-width: 56%;
  max-height: calc(100% - 52px);
  position: absolute;
  right: clamp(16px, 3vw, 42px);
  bottom: 0;
  z-index: 1;
  border: 0;
  border-radius: 18px 18px 0 0;
  object-fit: contain;
  filter: drop-shadow(0 36px 46px rgba(0, 0, 0, 0.48));
  transform: translateZ(30px) translateY(10px);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.home-page .showcase-shot:hover img {
  transform: translateZ(46px) translateY(0) scale(1.018);
  filter: drop-shadow(0 42px 56px rgba(0, 0, 0, 0.58));
}

.home-page .showcase-shot.shot-tall img {
  max-width: 74%;
  max-height: 70%;
  right: 50%;
  transform: translateX(50%) translateZ(30px) translateY(10px);
}

.home-page .showcase-shot.shot-tall:hover img {
  transform: translateX(50%) translateZ(46px) translateY(0) scale(1.018);
}

.home-page .showcase-shot figcaption {
  width: min(42%, 360px);
  position: relative;
  z-index: 2;
  gap: 10px;
  padding: clamp(28px, 4vw, 52px);
  transform: translateZ(54px);
}

.home-page .showcase-shot.shot-tall figcaption {
  width: 100%;
  max-width: 480px;
}

.home-page .showcase-shot strong {
  color: var(--editorial-ivory);
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.035em;
}

.home-page .showcase-shot figcaption > span:not(.shot-index) {
  max-width: 32ch;
  color: rgba(245, 240, 230, 0.5);
  font-size: 14px;
}

.shot-index {
  color: var(--editorial-gold) !important;
  font-family: var(--font-mono);
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.workflow-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.workflow-card {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  grid-column: span 3;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--editorial-border);
  border-radius: 30px;
  padding: clamp(28px, 3vw, 42px);
  background:
    radial-gradient(ellipse 400px 320px at var(--spot-x) var(--spot-y), rgba(244, 201, 93, 0.13), transparent 56%),
    #111114;
  transform: translateY(calc(var(--reveal-y) + var(--lift))) perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 150ms ease-out, border-color 220ms ease, background-color 220ms ease;
}

.workflow-card:first-child {
  grid-column: span 6;
}

.workflow-card:hover {
  --lift: -7px;
  border-color: rgba(244, 201, 93, 0.3);
}

.workflow-card-copy {
  position: relative;
  z-index: 2;
  transform: translateZ(42px);
}

.workflow-card h3 {
  margin: 28px 0 12px;
  color: var(--editorial-ivory);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.workflow-card p {
  max-width: 34ch;
  margin: 0;
  color: rgba(245, 240, 230, 0.52);
  font-size: 15px;
  line-height: 1.55;
}

.workflow-visual {
  min-height: 240px;
  position: relative;
  align-self: end;
  transform: translateZ(28px);
}

.source-visual span {
  width: 34%;
  aspect-ratio: 9 / 16;
  position: absolute;
  bottom: -52px;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px 22px 0 0;
  background: linear-gradient(150deg, #293451, #10162b 62%);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.34);
  transform-origin: bottom center;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.source-visual span:nth-child(1) {
  transform: translateX(-104%) rotate(-8deg);
}

.source-visual span:nth-child(2) {
  z-index: 2;
  background: linear-gradient(150deg, #453916, #15120b 62%);
  transform: translateX(-50%);
}

.source-visual span:nth-child(3) {
  transform: translateX(4%) rotate(8deg);
}

.workflow-card:hover .source-visual span:nth-child(1) {
  transform: translateX(-118%) rotate(-13deg) translateY(-8px);
}

.workflow-card:hover .source-visual span:nth-child(2) {
  transform: translateX(-50%) translateY(-18px);
}

.workflow-card:hover .source-visual span:nth-child(3) {
  transform: translateX(18%) rotate(13deg) translateY(-8px);
}

.rank-visual {
  display: grid;
  align-content: end;
  gap: 10px;
  padding-bottom: 14px;
}

.rank-visual > span {
  height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease;
}

.rank-visual i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--editorial-gold);
  color: #17130a;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.workflow-card:hover .rank-visual span:first-child {
  border-color: rgba(244, 201, 93, 0.36);
  transform: translateX(-8px);
}

.workflow-card:hover .rank-visual span:nth-child(2) {
  transform: translateX(4px);
}

.workflow-card:hover .rank-visual span:nth-child(3) {
  transform: translateX(10px);
}

.export-visual {
  display: grid;
  place-content: end stretch;
  gap: 10px;
  padding-bottom: 14px;
}

.export-visual span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(245, 240, 230, 0.52);
  font-size: 12px;
  transition: color 220ms ease, border-color 220ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.export-visual span::after {
  content: "✓";
  color: rgba(244, 201, 93, 0.4);
}

.workflow-card:hover .export-visual span:nth-child(2) {
  border-color: rgba(244, 201, 93, 0.4);
  color: var(--editorial-gold);
  transform: translateX(-7px);
}

.closing-callout {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  padding: clamp(48px, 8vw, 112px);
  background:
    radial-gradient(ellipse 700px 560px at var(--spot-x) var(--spot-y), rgba(244, 201, 93, 0.18), transparent 54%),
    linear-gradient(140deg, #181511, #09090b 62%);
  text-align: center;
  transform: translateY(var(--reveal-y));
}

.closing-callout::before,
.closing-callout::after {
  content: "";
  width: 32%;
  aspect-ratio: 9 / 16;
  position: absolute;
  bottom: -36%;
  z-index: -1;
  border: 1px solid rgba(244, 201, 93, 0.08);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.015);
  transform: rotate(-12deg);
}

.closing-callout::before {
  left: -4%;
}

.closing-callout::after {
  right: -4%;
  transform: rotate(12deg);
}

.closing-callout h2 {
  max-width: 1100px;
  margin-top: 24px;
  color: var(--editorial-ivory);
  font-size: clamp(58px, 7.8vw, 116px);
  line-height: 0.92;
}

.closing-callout h2 span {
  color: rgba(245, 240, 230, 0.36);
}

.closing-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.home-page .site-footer {
  margin-top: clamp(100px, 14vw, 190px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}

.motion-enhanced .reveal-item {
  --reveal-y: 30px;
  opacity: 0;
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.motion-enhanced .reveal-item.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

@media (max-width: 1020px) {
  .hero-editorial,
  .home-page .section-intro,
  .home-page .release-status {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    max-width: 660px;
  }

  .demo-workspace {
    grid-template-columns: 1fr;
  }

  .home-page .best-moments-demo {
    min-height: auto;
  }

  .home-page .demo-preview,
  .home-page .demo-preview-art {
    min-height: 410px;
  }

  .demo-inspector {
    grid-template-rows: auto auto auto auto;
  }

  .home-page .demo-explanation {
    grid-template-columns: minmax(120px, 0.45fr) minmax(160px, 0.65fr) 1fr;
    align-items: center;
  }

  .home-page .demo-candidates {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page .showcase-shot.shot-feature,
  .home-page .showcase-shot.shot-wide,
  .home-page .showcase-shot.shot-tall,
  .home-page .showcase-shot.shot-compact {
    grid-column: span 6;
    min-height: 620px;
  }

  .workflow-card,
  .workflow-card:first-child {
    grid-column: span 6;
  }

  .workflow-card:last-child {
    grid-column: 4 / span 6;
  }
}

@media (max-width: 760px) {
  .home-page .home-shell {
    padding-inline: max(15px, env(safe-area-inset-left));
  }

  .home-page .release-hero {
    padding-top: 92px;
  }

  .home-page .release-hero h1 {
    font-size: clamp(62px, 17vw, 96px);
  }

  .hero-editorial {
    gap: 34px;
    padding-inline: 2px;
  }

  .home-page .cta-row {
    display: flex;
  }

  .hero-stage {
    margin-top: 64px;
    border-radius: 26px;
  }

  .stage-chrome {
    border-radius: 24px 24px 0 0;
  }

  .stage-chrome strong {
    display: none;
  }

  .home-page .best-moments-demo {
    border-radius: 0 0 24px 24px;
    padding: 18px;
  }

  .home-page .demo-preview,
  .home-page .demo-preview-art {
    min-height: 320px;
  }

  .home-page .demo-explanation {
    grid-template-columns: 1fr;
  }

  .home-page .demo-candidates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .performance-strip {
    grid-template-columns: 1fr;
  }

  .home-page .performance-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .home-page .release-status {
    min-height: 580px;
    border-radius: 28px;
    padding: 32px 26px;
  }

  .home-page .release-status h2,
  .home-page .section-intro .section-heading h2,
  .closing-callout h2 {
    font-size: clamp(54px, 14vw, 82px);
  }

  .showcase-bento,
  .workflow-bento {
    grid-template-columns: 1fr;
  }

  .home-page .showcase-shot.shot-feature,
  .home-page .showcase-shot.shot-wide,
  .home-page .showcase-shot.shot-tall,
  .home-page .showcase-shot.shot-compact,
  .workflow-card,
  .workflow-card:first-child,
  .workflow-card:last-child {
    grid-column: 1;
  }

  .home-page .showcase-shot {
    min-height: 620px !important;
    border-radius: 25px;
  }

  .home-page .showcase-shot figcaption,
  .home-page .showcase-shot.shot-tall figcaption {
    width: 100%;
    padding: 28px;
  }

  .home-page .showcase-shot img,
  .home-page .showcase-shot.shot-tall img {
    max-width: 74%;
    max-height: 68%;
    right: 50%;
    transform: translateX(50%) translateY(10px);
  }

  .home-page .showcase-shot:hover img,
  .home-page .showcase-shot.shot-tall:hover img {
    transform: translateX(50%) translateY(0) scale(1.012);
  }

  .closing-callout {
    min-height: 600px;
    border-radius: 28px;
    padding: 48px 24px;
  }
}

@media (max-width: 460px) {
  .home-page .home-nav {
    border-radius: 17px;
  }

  .home-page .brand-name {
    font-size: 16px;
  }

  .home-page .nav-store {
    padding-inline: 12px;
  }

  .home-page .release-hero h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  .home-page .cta-row,
  .closing-actions {
    display: grid;
    justify-items: start;
  }

  .home-page .store-link {
    width: auto;
  }

  .home-page .demo-preview,
  .home-page .demo-preview-art {
    min-height: 250px;
  }

  .home-page .demo-candidate {
    min-height: 116px;
  }

  .home-page .candidate-art {
    height: 66px;
  }

  .home-page .release-status,
  .home-page .showcase-shot,
  .workflow-card,
  .closing-callout {
    border-radius: 22px;
  }

  .home-page .showcase-shot {
    min-height: 540px !important;
  }

  .workflow-card {
    min-height: 470px;
    padding: 26px;
  }

  .closing-actions {
    justify-items: center;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-stage,
  .home-page .showcase-shot,
  .workflow-card {
    --tilt-x: 0deg !important;
    --tilt-y: 0deg !important;
  }
}

/* Released product imagery: use verified iPhone captures, never simulated app UI. */
.home-page .hero-product-shot {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  overflow: hidden;
  padding: clamp(30px, 5vw, 68px);
  background:
    radial-gradient(ellipse 620px 540px at 30% 48%, rgba(244, 201, 93, 0.14), transparent 62%),
    linear-gradient(145deg, rgba(30, 24, 14, 0.96), rgba(8, 8, 10, 0.99) 66%);
}

.hero-product-shot > img {
  width: min(100%, 610px);
  max-height: 720px;
  position: relative;
  z-index: 1;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 36px 64px rgba(0, 0, 0, 0.5));
  transform: translateZ(34px);
}

.hero-product-shot figcaption {
  position: relative;
  z-index: 1;
  max-width: 32ch;
  transform: translateZ(48px);
}

.hero-product-shot figcaption > span {
  color: var(--editorial-gold);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-product-shot figcaption strong {
  display: block;
  margin-top: 18px;
  color: var(--editorial-ivory);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-product-shot figcaption p {
  margin: 18px 0 0;
  color: rgba(245, 240, 230, 0.58);
  font-size: 15px;
  line-height: 1.6;
}

.workflow-screenshot {
  width: min(100%, 330px);
  max-height: 330px;
  align-self: end;
  justify-self: center;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.42));
  transform: translateZ(28px) translateY(44px);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.workflow-card:hover .workflow-screenshot {
  transform: translateZ(34px) translateY(34px) scale(1.012);
}

@media (max-width: 760px) {
  .home-page .hero-product-shot {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 30px 22px 36px;
  }

  .hero-product-shot > img {
    width: min(100%, 460px);
    max-height: 620px;
  }

  .hero-product-shot figcaption {
    max-width: 100%;
    text-align: center;
  }

  .workflow-screenshot {
    width: min(82%, 310px);
    max-height: 300px;
  }
}

/* 2026 visual direction: let the verified App Store art carry the product story. */
.sr-only {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}

body.home-page {
  background:
    radial-gradient(ellipse 65vw 52vw at 80% 8%, rgba(175, 86, 27, 0.2), transparent 62%),
    linear-gradient(180deg, #0d0906 0%, #070707 43%, #100904 76%, #080706 100%);
}

.home-page .home-shell {
  width: min(1480px, 100%);
  padding-inline: clamp(18px, 3vw, 44px);
}

.home-page .home-nav {
  width: min(1200px, calc(100% - 28px));
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  margin: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(13, 10, 7, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.home-page main {
  gap: clamp(112px, 13vw, 200px);
}

.home-page .release-hero {
  min-height: min(980px, 100svh);
  padding: clamp(120px, 11vw, 168px) 0 32px;
}

.home-page .hero-aurora {
  width: 70%;
  height: 88%;
  top: 5%;
  right: -6%;
  left: auto;
  opacity: 1;
  transform: none;
  background:
    radial-gradient(ellipse at 58% 42%, rgba(239, 143, 61, 0.2), transparent 48%),
    radial-gradient(ellipse at 30% 70%, rgba(244, 201, 93, 0.12), transparent 42%);
  filter: none;
}

#hero-webgl {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 18%, rgba(0, 0, 0, 0.8) 50%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 18%, rgba(0, 0, 0, 0.8) 50%, transparent 78%);
  transition: opacity 900ms ease;
}

.webgl-ambient-ready #hero-webgl {
  opacity: 0.78;
}

.home-page .hero-editorial {
  min-height: 760px;
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(24px, 3.5vw, 52px);
  align-items: center;
  padding-inline: clamp(0px, 1vw, 14px);
}

.home-page .release-hero-copy {
  max-width: 650px;
  position: relative;
  z-index: 3;
}

.home-page .release-hero h1,
.home-page .section-heading h2,
.home-page .privacy-heading h2,
.home-page .closing-callout h2 {
  font-family: var(--font-body);
  font-weight: 680;
  letter-spacing: -0.072em;
}

.home-page .release-hero h1 {
  max-width: 710px;
  margin-top: 24px;
  font-size: clamp(72px, 6.4vw, 104px);
  line-height: 0.86;
}

.home-page .release-hero h1 span {
  color: #f4c95d;
}

.home-page .release-hero .lede {
  max-width: 570px;
  margin-top: 34px;
  color: rgba(250, 246, 238, 0.7);
  font-size: clamp(18px, 1.35vw, 21px);
}

.home-page .assurance-row {
  margin-top: 24px;
  color: rgba(250, 246, 238, 0.46);
}

.home-page .hero-stage.hero-product-shot {
  width: 100%;
  min-height: 760px;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  transform: translateY(var(--reveal-y)) perspective(1800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.home-page .hero-stage.hero-product-shot:hover {
  border-color: transparent;
  box-shadow: none;
}

.hero-shot-stack {
  width: 100%;
  height: 760px;
  position: relative;
  transform-style: preserve-3d;
}

.hero-shot {
  position: absolute;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 42px 96px rgba(0, 0, 0, 0.52), 0 8px 24px rgba(0, 0, 0, 0.32);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 300ms ease, filter 300ms ease;
}

.hero-shot-main {
  width: min(50%, 390px);
  left: 50%;
  z-index: 3;
  transform: translate3d(-50%, -50%, 78px);
}

.hero-shot-left,
.hero-shot-right {
  width: min(38%, 305px);
  z-index: 1;
  opacity: 0.72;
  filter: saturate(0.82) brightness(0.82);
}

.hero-shot-left {
  left: 1%;
  transform: translate3d(0, -48%, 5px) rotate(-7deg);
}

.hero-shot-right {
  right: 1%;
  transform: translate3d(0, -48%, 5px) rotate(7deg);
}

.hero-product-shot:hover .hero-shot-main {
  transform: translate3d(-50%, -52%, 92px) scale(1.015);
}

.hero-product-shot:hover .hero-shot-left {
  opacity: 0.9;
  transform: translate3d(-4%, -49%, 12px) rotate(-9deg);
}

.hero-product-shot:hover .hero-shot-right {
  opacity: 0.9;
  transform: translate3d(4%, -49%, 12px) rotate(9deg);
}

.home-page .performance-strip {
  margin-top: 12px;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(20, 14, 9, 0.56);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.home-page .release-status {
  min-height: 440px;
  border: 0;
  border-radius: 34px;
  padding: clamp(40px, 7vw, 96px);
  color: #171009;
  background:
    radial-gradient(ellipse at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.28), transparent 40%),
    linear-gradient(135deg, #f6d66f, #e9ac3b 58%, #cc741e);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.3);
}

.home-page .release-status .eyebrow,
.home-page .release-status h2,
.home-page .release-status p,
.home-page .release-status span {
  color: inherit;
}

.home-page .release-status .eyebrow {
  opacity: 0.62;
}

.home-page .release-status h2 {
  max-width: 720px;
  font-size: clamp(56px, 6vw, 94px);
  line-height: 0.9;
}

.home-page .privacy-copy > p {
  font-size: clamp(18px, 1.55vw, 22px);
  opacity: 0.74;
}

.home-page .privacy-points span {
  border-color: rgba(23, 16, 9, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.home-page .section-intro {
  align-items: end;
}

.home-page .app-showcase,
.home-page .release-workflow {
  gap: 0;
}

.home-page .section-intro .section-heading h2 {
  max-width: 860px;
  font-size: clamp(68px, 8vw, 124px);
  line-height: 0.86;
}

.home-page .section-intro > p {
  max-width: 420px;
  color: rgba(250, 246, 238, 0.58);
  font-size: 18px;
}

.home-page .showcase-bento.screenshot-rail {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 25vw, 350px);
  gap: clamp(18px, 2vw, 28px);
  overflow-x: auto;
  margin-top: clamp(48px, 7vw, 86px);
  padding: 12px 4px 36px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 201, 93, 0.36) rgba(255, 255, 255, 0.05);
}

.home-page .showcase-shot,
.home-page .showcase-shot.shot-feature,
.home-page .showcase-shot.shot-wide,
.home-page .showcase-shot.shot-tall,
.home-page .showcase-shot.shot-compact {
  min-height: 0 !important;
  display: flex;
  grid-column: auto !important;
  flex-direction: column;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: start;
  transform: translateY(var(--reveal-y)) perspective(1300px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.home-page .showcase-shot::before {
  display: none;
}

.home-page .showcase-shot img,
.home-page .showcase-shot.shot-tall img {
  width: 100%;
  max-width: none;
  max-height: none;
  position: static;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: translateZ(18px);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 420ms ease;
}

.home-page .showcase-shot:hover img,
.home-page .showcase-shot.shot-tall:hover img {
  box-shadow: 0 38px 88px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(244, 201, 93, 0.16);
  transform: translateZ(34px) translateY(-7px);
}

.home-page .showcase-shot figcaption,
.home-page .showcase-shot.shot-tall figcaption {
  width: 100%;
  position: static;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 4px 0;
  transform: none;
}

.home-page .showcase-shot figcaption strong {
  margin: 0;
  color: rgba(250, 246, 238, 0.78);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.home-page .shot-index {
  color: #f4c95d;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 750;
}

.home-page .release-workflow {
  width: min(1360px, 100%);
}

.home-page .workflow-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
  align-items: start;
  margin-top: clamp(56px, 8vw, 104px);
}

.home-page .workflow-card,
.home-page .workflow-card:first-child,
.home-page .workflow-card:last-child {
  min-height: 0;
  display: flex;
  grid-column: auto;
  flex-direction: column;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(var(--reveal-y)) perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.home-page .workflow-card:nth-child(2) {
  margin-top: 72px;
}

.home-page .workflow-card:nth-child(3) {
  margin-top: 144px;
}

.home-page .workflow-card-copy {
  min-height: 205px;
  padding: 0 8px 28px;
}

.home-page .workflow-card h3 {
  margin-top: 18px;
  color: #faf6ee;
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: 650;
  letter-spacing: -0.055em;
}

.home-page .workflow-card p {
  max-width: 34ch;
  color: rgba(250, 246, 238, 0.55);
  font-size: 16px;
}

.home-page .workflow-card .step-number {
  color: #f4c95d;
}

.home-page .workflow-screenshot {
  width: 100%;
  max-height: none;
  align-self: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.4);
  transform: translateZ(20px);
}

.home-page .workflow-card:hover .workflow-screenshot {
  transform: translateZ(36px) translateY(-8px) scale(1.008);
}

.home-page .closing-callout {
  min-height: 650px;
  border: 0;
  border-radius: 36px;
  background:
    radial-gradient(ellipse 620px 520px at var(--spot-x) var(--spot-y), rgba(255, 218, 124, 0.28), transparent 55%),
    linear-gradient(135deg, #9d4718, #6f2b11 46%, #24120b 100%);
  box-shadow: 0 46px 130px rgba(0, 0, 0, 0.35);
}

.home-page .closing-callout::before,
.home-page .closing-callout::after {
  border-color: rgba(255, 225, 153, 0.13);
  background: rgba(255, 255, 255, 0.025);
}

.home-page .closing-callout h2 {
  max-width: 1120px;
  font-size: clamp(62px, 7.4vw, 112px);
  line-height: 0.88;
}

.home-page .closing-callout h2 span {
  color: #f4c95d;
}

@media (max-width: 1100px) {
  .home-page .hero-editorial {
    min-height: auto;
    grid-template-columns: minmax(340px, 0.8fr) minmax(500px, 1.2fr);
  }

  .hero-shot-stack,
  .home-page .hero-stage.hero-product-shot {
    min-height: 660px;
    height: 660px;
  }

  .hero-shot-main {
    width: min(45%, 330px);
  }

  .hero-shot-left,
  .hero-shot-right {
    width: min(34%, 250px);
  }
}

@media (max-width: 860px) {
  .home-page .release-hero {
    min-height: auto;
  }

  .home-page .hero-aurora {
    width: 120%;
    height: 62%;
    top: 38%;
    right: -10%;
  }

  .home-page .hero-editorial {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .home-page .release-hero-copy {
    max-width: 720px;
  }

  .home-page .release-hero h1 {
    max-width: 760px;
    font-size: clamp(66px, 13vw, 108px);
  }

  .hero-shot-stack,
  .home-page .hero-stage.hero-product-shot {
    min-height: 700px;
    height: 700px;
  }

  .hero-shot-main {
    width: min(42%, 340px);
  }

  .hero-shot-left,
  .hero-shot-right {
    width: min(32%, 260px);
  }

  .home-page .workflow-card:nth-child(2),
  .home-page .workflow-card:nth-child(3) {
    margin-top: 0;
  }

  .home-page .workflow-bento {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .home-page .workflow-card,
  .home-page .workflow-card:first-child,
  .home-page .workflow-card:last-child {
    display: grid;
    grid-template-columns: minmax(220px, 0.68fr) minmax(280px, 1fr);
    gap: 32px;
    align-items: center;
  }

  .home-page .workflow-card-copy {
    min-height: 0;
    padding: 0;
  }
}

@media (max-width: 620px) {
  .home-page .home-nav {
    width: calc(100% - 24px);
  }

  .home-page .home-nav nav > a:not(.nav-store) {
    display: none;
  }

  .home-page .release-hero {
    padding-top: 118px;
  }

  .home-page .release-hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .home-page .release-hero .lede {
    font-size: 17px;
  }

  .home-page .cta-row {
    align-items: flex-start;
  }

  .home-page .assurance-row {
    gap: 8px 16px;
  }

  .hero-shot-stack,
  .home-page .hero-stage.hero-product-shot {
    min-height: 510px;
    height: 510px;
  }

  .hero-shot-main {
    width: min(58%, 274px);
  }

  .hero-shot-left,
  .hero-shot-right {
    width: min(42%, 198px);
  }

  .hero-shot-left {
    left: -4%;
  }

  .hero-shot-right {
    right: -4%;
  }

  .home-page .performance-strip {
    grid-template-columns: 1fr;
  }

  .home-page .performance-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .home-page .release-status {
    min-height: 520px;
    padding: 34px 26px;
  }

  .home-page .release-status h2,
  .home-page .section-intro .section-heading h2,
  .home-page .closing-callout h2 {
    font-size: clamp(52px, 14.5vw, 76px);
  }

  .home-page .showcase-bento.screenshot-rail {
    grid-auto-columns: min(76vw, 310px);
  }

  .home-page .showcase-shot img,
  .home-page .showcase-shot.shot-tall img,
  .home-page .workflow-screenshot {
    border-radius: 20px;
  }

  .home-page .workflow-card,
  .home-page .workflow-card:first-child,
  .home-page .workflow-card:last-child {
    display: flex;
    grid-column: auto !important;
    gap: 0;
  }

  .home-page .workflow-card-copy {
    padding: 0 4px 24px;
  }

  .home-page .closing-callout {
    min-height: 580px;
    padding: 48px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero-webgl {
    display: none;
  }
}
