:root {
  --ink: #0b0810;
  --ink-soft: #15101e;
  --ink-raised: #1d1628;
  --paper: #f1ecdf;
  --paper-deep: #e4dccb;
  --paper-ink: #211a26;
  --muted: #a99eae;
  --muted-dark: #6d6470;
  --violet: #9c7bff;
  --violet-soft: #c0acff;
  --plum: #6e3ebb;
  --wine: #9c456f;
  --gold: #f4b95f;
  --gold-soft: #f8d69d;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(31, 21, 38, 0.16);
  --radius: 20px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: #f8f4ec;
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 15px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

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

.shell-wide {
  width: min(1440px, calc(100% - 40px));
}

.section {
  position: relative;
  padding: 140px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.scrolled {
  background: rgba(11, 8, 16, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(20px) saturate(1.2);
}

.nav-shell {
  width: min(1380px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 9px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.36);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: #d6cfdb;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: white;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(244, 185, 95, 0.5);
  border-radius: 999px;
  color: var(--gold-soft);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 0;
  color: inherit;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 178px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 13%, rgba(105, 65, 165, 0.22), transparent 35%),
    radial-gradient(circle at 74% 44%, rgba(244, 185, 95, 0.08), transparent 22%),
    linear-gradient(180deg, #120d1b 0%, var(--ink) 63%, #100b18 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 60%);
  content: "";
}

.hero-orbit {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 760px;
  aspect-ratio: 1;
  border: 1px solid rgba(202, 177, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px 4px rgba(244, 185, 95, .55);
  content: "";
}

.orbit-one {
  animation: orbit 36s linear infinite;
}

.orbit-one::before {
  top: 11%;
  left: 20%;
}

.orbit-one::after {
  right: 4%;
  bottom: 29%;
}

.orbit-two {
  width: 980px;
  top: -90px;
  border-color: rgba(244, 185, 95, 0.07);
  animation: orbit-reverse 50s linear infinite;
}

.orbit-two::before {
  right: 24%;
  bottom: 2%;
}

.orbit-two::after {
  top: 30%;
  left: 1%;
}

@keyframes orbit {
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes orbit-reverse {
  to { transform: translateX(-50%) rotate(-360deg); }
}

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

.eyebrow,
.section-kicker {
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto 28px;
  font-size: clamp(60px, 8.4vw, 124px);
  font-weight: 620;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.hero h1 em,
.final-cta h2 em {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-lede {
  max-width: 670px;
  margin: 0 auto 36px;
  color: #c6beca;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 23px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #23151b;
  background: linear-gradient(135deg, #f9d69c, #eca74a);
  box-shadow: 0 14px 40px rgba(244, 185, 95, 0.16), inset 0 1px rgba(255, 255, 255, 0.6);
}

.button-primary:hover {
  box-shadow: 0 18px 52px rgba(244, 185, 95, 0.24), inset 0 1px rgba(255, 255, 255, 0.6);
}

.text-link {
  padding: 12px 0;
  color: #d8d0dc;
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 25px 0 0;
  color: #7f7485;
  font-size: 12px;
  font-weight: 600;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fc89b;
}

.pulse-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid #8fc89b;
  border-radius: inherit;
  content: "";
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  70%, 100% { opacity: 0; transform: scale(1.6); }
}

/* Product mock */
.product-stage {
  position: relative;
  z-index: 3;
  margin-top: 104px;
  padding-bottom: 56px;
}

.stage-glow {
  position: absolute;
  z-index: -1;
  top: -70px;
  left: 50%;
  width: 90%;
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(116, 72, 173, 0.22), transparent 66%);
  filter: blur(20px);
}

.product-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  color: #f0ecf3;
  background: #17131d;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(0,0,0,.4);
}

.window-bar {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(#2a252f, #211c26);
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 650;
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fe5f57;
}

.traffic-lights i:nth-child(2) { background: #febc2e; }
.traffic-lights i:nth-child(3) { background: #28c840; }

.window-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-family: var(--mono);
}

.window-actions b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #ded6e4;
  background: rgba(255, 255, 255, .08);
}

.app-layout {
  height: clamp(570px, 53vw, 760px);
  min-height: 570px;
  display: grid;
  grid-template-columns: 170px 320px minmax(0, 1fr);
  background: #0f0d13;
}

.app-sidebar {
  position: relative;
  padding: 24px 12px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(rgba(31, 22, 41, 0.84), rgba(23, 17, 29, 0.88)),
    url("assets/conservatory.webp") center / cover;
  font-size: 11px;
}

.app-nav-group {
  margin-bottom: 25px;
}

.app-nav-group > p {
  margin: 0 0 6px 10px;
  color: #82788b;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.app-nav-item {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-radius: 7px;
  color: #c4bbc9;
  font-weight: 590;
}

.app-nav-item.active {
  color: white;
  background: rgba(255, 255, 255, .12);
}

.app-nav-item > span:first-child {
  width: 14px;
  color: #a994bb;
  text-align: center;
}

.app-nav-item b {
  margin-left: auto;
  color: #857b8b;
  font-size: 9px;
}

.tag-dot {
  width: 7px !important;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
}

.tag-dot.wine { background: var(--wine); }
.tag-dot.gold { background: var(--gold); }

.storage-meter {
  position: absolute;
  right: 14px;
  bottom: 16px;
  left: 14px;
  color: #817787;
  font-size: 8px;
}

.storage-meter > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.storage-meter > i {
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, .08);
}

.storage-meter > i b {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: var(--violet);
}

.prompt-column {
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .08);
  background: #17141b;
}

.column-heading {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.column-heading div {
  display: grid;
}

.column-heading small {
  color: #736978;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .12em;
}

.column-heading strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.column-heading button,
.detail-toolbar button {
  border: 1px solid rgba(255, 255, 255, .08);
  color: #c8bfcd;
  background: rgba(255, 255, 255, .05);
  cursor: default;
}

.column-heading button {
  width: 27px;
  height: 27px;
  border-radius: 7px;
}

.mock-search {
  height: 29px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 12px 10px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 7px;
  color: #77707b;
  background: rgba(255, 255, 255, .045);
}

.mock-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  font-size: 10px;
}

.prompt-row {
  position: relative;
  width: calc(100% - 12px);
  min-height: 91px;
  display: flex;
  gap: 10px;
  margin: 3px 6px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.prompt-row:hover {
  background: rgba(255,255,255,.04);
}

.prompt-row.selected {
  border-color: rgba(168, 136, 255, .18);
  background: linear-gradient(90deg, rgba(107, 70, 161, .3), rgba(79, 53, 119, .18));
}

.prompt-row img,
.ghost-image {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: cover;
}

.prompt-row:nth-of-type(4) img { object-position: center 26%; }

.prompt-row-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.prompt-row-copy > strong {
  min-height: 30px;
  display: -webkit-box;
  overflow: hidden;
  color: #e8e1eb;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.prompt-row-meta {
  display: flex;
  justify-content: space-between;
  margin: 3px 0 5px;
}

.prompt-row-meta i,
.stars {
  color: var(--gold);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 1px;
}

.prompt-row-meta i em { color: #48404c; font-style: normal; }
.prompt-row-meta small { color: #6f6674; font-size: 8px; }

.chips {
  display: flex;
  gap: 4px;
}

.chips b {
  padding: 2px 6px;
  border-radius: 10px;
  color: #a49aa8;
  background: rgba(255, 255, 255, .06);
  font-size: 7.5px;
  font-weight: 600;
}

.family-count {
  position: absolute;
  right: 8px;
  bottom: 7px;
  color: var(--violet-soft);
  font-size: 7px;
}

.ghost-row {
  opacity: .44;
}

.ghost-image {
  background: linear-gradient(135deg, #29232e, #1c1821);
}

.ghost-line {
  width: 75%;
  height: 5px;
  display: block;
  margin-top: 9px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
}

.ghost-line.short { width: 48%; margin-top: 6px; }

.detail-column {
  min-width: 0;
  background: #0f0d12;
}

.detail-toolbar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #18151b;
}

.detail-toolbar button {
  min-height: 28px;
  padding: 0 9px;
  border-radius: 7px;
  font-size: 8.5px;
  white-space: nowrap;
}

.toolbar-spacer { flex: 1; }

.detail-toolbar .generate-button {
  border-color: rgba(187, 158, 255, .35);
  color: #f4effd;
  background: #6f49ad;
}

.prompt-editor {
  min-height: 142px;
  padding: 18px 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #d9d2dc;
  background: #141117;
}

.prompt-editor > p {
  min-height: 54px;
  margin-bottom: 12px;
  font-size: clamp(9px, .85vw, 12px);
  line-height: 1.55;
}

.editor-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 9px;
}

.lineage-note {
  margin-inline: -19px;
  padding: 7px 19px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #8f8494;
  background: rgba(255,255,255,.018);
  font-size: 8px;
}

.lineage-note > span { color: var(--violet-soft); }
.lineage-note b { float: right; color: #aaa0af; }

.run-history {
  padding: 18px 18px 22px;
}

.run-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #706876;
  font-size: 8px;
}

.run-heading div { display: grid; gap: 2px; }
.run-heading b { color: #99909d; font-weight: 560; }

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

.output-card {
  position: relative;
  aspect-ratio: 1.16;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  background: #211a27;
  cursor: default;
}

.output-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 500ms ease;
}

.output-card:hover img { transform: scale(1.025); }
.output-card.crop-two img { object-position: 42% center; filter: hue-rotate(-5deg) brightness(.85); transform: scale(1.2); }
.output-card.crop-three img { object-position: 68% center; filter: saturate(.6) brightness(.55); transform: scale(1.15); }
.output-card.is-pick { border-color: rgba(244, 185, 95, .7); }
.output-card.is-reject img { opacity: .54; }

.cover-badge,
.pick-badge,
.reject-badge,
.shortcut-badge {
  position: absolute;
  padding: 3px 6px;
  border-radius: 5px;
  color: #1d1218;
  background: var(--gold);
  font-size: 7px;
  font-weight: 800;
}

.cover-badge { top: 6px; left: 6px; }
.pick-badge { right: 6px; bottom: 6px; }
.reject-badge { right: 6px; bottom: 6px; color: white; background: #9c456f; }
.shortcut-badge { right: 6px; bottom: 6px; opacity: 0; color: #e8e0ea; background: rgba(12, 9, 14, .8); transition: opacity 150ms ease; }
.output-card:hover .shortcut-badge { opacity: 1; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 11px;
  background: rgba(26, 20, 34, .9);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(18px);
}

.floating-card > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(244,185,95,.1);
}

.floating-card div { display: grid; }
.floating-card small { color: #877b8b; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { color: #ded7e2; font-size: 10px; }
.float-lineage { top: 13%; right: -18px; }
.float-local { bottom: 11px; left: 28px; }

.hero-proof {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #7d7282;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

/* Problem */
.problem {
  overflow: hidden;
  color: var(--paper-ink);
  background: var(--paper);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) 1.7fr;
  gap: 80px;
}

.problem .section-kicker,
.workflow .section-kicker,
.native-section .section-kicker {
  color: #725b38;
}

.section-kicker span {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  margin-right: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9px;
}

.problem-copy h2,
.section-heading h2,
.lineage-copy h2,
.native-heading h2,
.privacy-copy h2,
.provider-copy h2,
.final-cta h2 {
  margin-bottom: 32px;
  font-size: clamp(45px, 6vw, 78px);
  font-weight: 590;
  line-height: .99;
  letter-spacing: -.055em;
}

.problem-copy .large-copy {
  max-width: 790px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(25px, 3.1vw, 39px);
  line-height: 1.22;
  letter-spacing: -.03em;
}

.problem-copy > p:last-child {
  max-width: 700px;
  color: #665c68;
  font-size: 18px;
  line-height: 1.7;
}

.marquee {
  width: calc(100% + 20px);
  margin: 120px -10px -90px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transform: rotate(-1.3deg);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px 0;
  color: #362a3f;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .16em;
  animation: marquee 28s linear infinite;
}

.marquee-track i {
  color: #9c6a2f;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Workflow */
.workflow {
  color: var(--paper-ink);
  background: #e8e0d1;
}

.section-heading {
  display: grid;
  grid-template-columns: .7fr 1.4fr .75fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading .section-kicker {
  align-self: start;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 5.5vw, 70px);
}

.section-heading > p {
  margin: 0;
  color: #6c626e;
  line-height: 1.65;
}

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

.workflow-card {
  position: relative;
  min-height: 590px;
  padding: 18px 18px 28px;
  overflow: hidden;
  border: 1px solid rgba(44, 32, 50, .12);
  border-radius: 18px;
  background: rgba(248, 244, 234, .62);
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.workflow-card:hover {
  z-index: 2;
  transform: translateY(-8px) rotate(-.3deg);
  background: rgba(252, 249, 242, .88);
  box-shadow: 0 28px 60px rgba(38, 26, 43, .12);
}

.workflow-card:nth-child(2):hover { transform: translateY(-8px) rotate(.3deg); }

.card-number {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 29px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: rgba(255, 255, 255, .8);
  font-family: var(--mono);
  font-size: 8px;
}

.card-visual {
  position: relative;
  height: 315px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
  background: #19131f;
}

.card-label {
  margin: 0 10px 10px;
  color: #855e2d;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.workflow-card h3 {
  margin: 0 10px 12px;
  font-size: 25px;
  letter-spacing: -.035em;
}

.workflow-card > p:last-child {
  margin: 0 10px;
  color: #6c626e;
  font-size: 14px;
  line-height: 1.65;
}

kbd {
  padding: 1px 5px;
  border: 1px solid rgba(34, 24, 40, .18);
  border-bottom-width: 2px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: .82em;
}

.compose-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 15%, rgba(139, 88, 190, .34), transparent 38%),
    #17111e;
}

.compose-paper {
  width: 82%;
  height: 125px;
  padding: 32px 23px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #d8d0dc;
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.typing-line {
  display: block;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 9px;
}

.typing-caret {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-left: 3px;
  vertical-align: middle;
  background: var(--gold);
  animation: blink .9s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.reference-stack {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
}

.reference-stack img {
  width: 48px;
  height: 48px;
  margin-left: -12px;
  border: 2px solid #21162a;
  border-radius: 8px;
  object-fit: cover;
  transform: rotate(5deg);
}

.reference-stack img:first-child { transform: rotate(-7deg); }

.cull-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #130f18;
}

.cull-image {
  position: relative;
  width: 26%;
  aspect-ratio: .74;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  transform: translateY(11px);
}

.cull-image:nth-child(2) {
  width: 34%;
  z-index: 2;
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.cull-image img { width: 100%; height: 100%; object-fit: cover; }
.cull-image.rejected img { filter: grayscale(.8); opacity: .4; }
.cull-image span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: white;
  background: var(--wine);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.cull-image.picked span { color: #201216; background: var(--gold); }

.riff-visual {
  background:
    radial-gradient(circle at 60% 42%, rgba(139, 87, 196, .25), transparent 45%),
    #15101c;
}

.riff-node {
  position: absolute;
  width: 160px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  color: #cec5d2;
  background: #241b2d;
  font-size: 8px;
}

.riff-node span {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: url("assets/conservatory.webp") center / cover;
}

.riff-node.root { top: 57px; left: 50%; transform: translateX(-50%); }
.riff-node.branch { width: 145px; top: 205px; }
.riff-node.branch.one { left: 19px; }
.riff-node.branch.two { right: 19px; }
.riff-node.branch.two span { background-image: url("assets/glass-pears.webp"); }

.riff-visual > i,
.riff-visual > i::before,
.riff-visual > i::after {
  position: absolute;
  display: block;
  background: rgba(191, 159, 255, .4);
  content: "";
}

.riff-visual > i {
  top: 101px;
  left: 50%;
  width: 1px;
  height: 66px;
}

.riff-visual > i::before {
  top: 65px;
  left: -88px;
  width: 176px;
  height: 1px;
}

.riff-visual > i::after {
  top: 65px;
  left: -88px;
  width: 1px;
  height: 37px;
  box-shadow: 176px 0 rgba(191, 159, 255, .4);
}

/* Lineage */
.lineage-section {
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 60%, rgba(103, 60, 146, .28), transparent 30%),
    #120d19;
}

.lineage-section::before {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: radial-gradient(rgba(248, 214, 157, .65) .5px, transparent .5px);
  background-size: 34px 34px;
  content: "";
  mask-image: radial-gradient(circle at 25% 50%, black, transparent 58%);
}

.lineage-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: calc(min(1180px, calc(100vw - 48px)) * .53);
}

.lineage-copy > * { grid-column: 2; }
.lineage-copy h2 { font-size: clamp(48px, 5.8vw, 76px); }
.lineage-copy > p {
  max-width: 550px;
  color: #aca1b1;
  font-size: 17px;
  line-height: 1.7;
}

.lineage-art {
  position: absolute;
  top: 50%;
  left: max(22px, calc((100vw - 1180px) / 2));
  width: min(45vw, 600px);
  height: 700px;
  transform: translateY(-50%);
}

.lineage-image {
  position: absolute;
  width: 280px;
  height: 210px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  box-shadow: 0 30px 55px rgba(0,0,0,.45);
}

.image-a { top: 45px; left: 35px; transform: rotate(-4deg); }
.image-b { top: 275px; right: 0; width: 220px; height: 275px; object-position: center 24%; transform: rotate(4deg); }
.image-c { left: 20px; bottom: 10px; width: 245px; height: 245px; transform: rotate(-2deg); }

.lineage-path i {
  position: absolute;
  width: 1px;
  height: 74px;
  background: linear-gradient(var(--gold), transparent);
  transform-origin: top;
}

.lineage-path i::before {
  position: absolute;
  top: -4px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
  content: "";
}

.lineage-path i:nth-child(1) { top: 240px; left: 280px; transform: rotate(-32deg); }
.lineage-path i:nth-child(2) { top: 250px; left: 292px; height: 100px; transform: rotate(36deg); }
.lineage-path i:nth-child(3) { top: 520px; left: 315px; transform: rotate(58deg); }

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

.feature-list li {
  display: grid;
  grid-template-columns: 34px 150px 1fr;
  gap: 12px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li > span { color: var(--gold); }
.feature-list b { font-size: 13px; }
.feature-list small { color: #827887; font-size: 11px; }

/* Native */
.native-section {
  color: var(--paper-ink);
  background: var(--paper);
}

.native-heading {
  max-width: 790px;
  margin: 0 auto 70px;
  text-align: center;
}

.native-heading > p {
  max-width: 580px;
  margin-inline: auto;
  color: #6c626e;
  font-size: 18px;
}

.native-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.native-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(42, 31, 47, .12);
  border-radius: 18px;
  background: #e8e0d2;
}

.native-card-large {
  min-height: 594px;
  grid-row: 1 / 3;
  background: #1a1420;
  color: white;
}

.native-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border: 1px solid rgba(65, 48, 72, .2);
  border-radius: 11px;
  color: #80603c;
  background: rgba(255,255,255,.24);
  font-family: var(--serif);
  font-size: 20px;
}

.native-card-large .native-icon {
  border-color: rgba(255,255,255,.15);
  color: var(--gold);
  background: rgba(255,255,255,.06);
}

.native-card h3 {
  max-width: 440px;
  margin-bottom: 14px;
  font-size: 27px;
  letter-spacing: -.04em;
}

.native-card > p {
  max-width: 470px;
  color: #6d636f;
  font-size: 14px;
  line-height: 1.65;
}

.native-card-large > p { color: #aaa0ae; }

.drag-demo {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 275px;
}

.finder-window {
  position: absolute;
  right: 5%;
  bottom: -35px;
  width: 70%;
  height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px 14px 0 0;
  background: rgba(244, 239, 230, .9);
  box-shadow: 0 25px 70px rgba(0,0,0,.4);
}

.finder-top {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  color: #4a414d;
  background: rgba(255,255,255,.56);
  font-size: 9px;
}

.finder-top i { width: 7px; height: 7px; border-radius: 50%; background: #fa5a54; }
.finder-top i:nth-child(2) { background: #f4bd32; }
.finder-top i:nth-child(3) { background: #35c94d; }
.finder-top span { margin-left: auto; margin-right: auto; font-weight: 700; }
.finder-body { height: 100%; display: grid; place-items: center; align-content: center; color: #837888; }
.finder-body span { color: #8167ba; font-size: 38px; }
.finder-body small { font-size: 9px; }

.drag-file {
  position: absolute;
  z-index: 2;
  bottom: 52px;
  left: 4%;
  width: 170px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: #2a2132;
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
  transform: rotate(-6deg);
}

.drag-file img { width: 100%; height: 92px; object-fit: cover; border-radius: 6px; }
.drag-file span { display: block; margin-top: 7px; overflow: hidden; color: #c6bdca; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.cursor { position: absolute; z-index: 3; bottom: 42px; left: 33%; color: white; font-size: 30px; filter: drop-shadow(0 2px 3px black); }

.mini-status {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(43, 31, 48, .12);
  border-radius: 10px;
  background: rgba(255,255,255,.4);
}

.mini-status > i {
  width: 27px;
  height: 27px;
  border: 3px solid rgba(111,73,173,.18);
  border-top-color: #6f49ad;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
.mini-status span { display: grid; }
.mini-status b { font-size: 10px; }
.mini-status small { color: #7a6f7e; font-size: 8px; }
.mini-status > strong { color: #7451ae; font-family: var(--mono); font-size: 11px; }

.library-count {
  position: absolute;
  right: 28px;
  bottom: 23px;
  left: 28px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
}

.library-count strong { font-family: var(--serif); font-size: 34px; font-weight: 400; }
.library-count span { color: #756a78; font-size: 9px; }

/* Privacy */
.privacy-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 63% 50%, rgba(114, 69, 164, .3), transparent 27%),
    #100b17;
}

.privacy-noise {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 18px, rgba(255,255,255,.18) 19px, transparent 20px);
  mask-image: radial-gradient(circle at 62% 50%, black, transparent 49%);
}

.privacy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 370px;
  grid-template-rows: auto auto;
  gap: 65px 90px;
  align-items: center;
}

.privacy-copy h2 {
  max-width: 650px;
  font-size: clamp(48px, 6vw, 78px);
}

.privacy-copy > p {
  max-width: 640px;
  color: #aaa0af;
  font-size: 17px;
  line-height: 1.7;
}

.privacy-copy .privacy-note {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(244,185,95,.22);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(244,185,95,.05);
  font-size: 11px;
}

.privacy-seal {
  position: relative;
  width: 330px;
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(244,185,95,.28);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(118,71,168,.16), 0 0 70px rgba(118,71,168,.12);
}

.privacy-seal::before,
.privacy-seal::after {
  position: absolute;
  inset: 33px;
  border: 1px dashed rgba(244,185,95,.2);
  border-radius: 50%;
  content: "";
}

.privacy-seal::after { inset: 68px; border-style: solid; }
.privacy-seal img { position: absolute; inset: 50%; width: 85px; border-radius: 20px; opacity: .36; transform: translate(-50%, -50%); }
.privacy-seal strong { position: absolute; inset: 50% auto auto 50%; color: var(--gold-soft); font-family: var(--mono); font-size: 18px; line-height: 1.1; letter-spacing: .14em; text-align: center; transform: translate(-50%, -50%); }
.seal-ring.outer { position: absolute; inset: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; animation: orbit 36s linear infinite; }
.seal-ring.outer span { display: none; }
.seal-ring.inner { position: absolute; inset: 90px; border: 1px dotted rgba(255,255,255,.13); border-radius: 50%; }

.privacy-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-facts > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 28px 26px 28px 0;
}

.privacy-facts > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.privacy-facts span { color: var(--gold); font-family: var(--mono); font-size: 9px; }
.privacy-facts p { display: grid; gap: 7px; margin: 0; }
.privacy-facts b { font-size: 14px; }
.privacy-facts small { color: #84798a; font-size: 11px; line-height: 1.55; }

/* Provider */
.provider-section {
  color: var(--paper-ink);
  background: #ded4c2;
}

.provider-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
  align-items: center;
}

.provider-mark {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(45,31,51,.14);
  border-radius: 50%;
  background: rgba(250,246,237,.35);
}

.provider-mark > span { color: #7a4fb4; font-size: 45px; }
.provider-mark > div { display: grid; }
.provider-mark small { color: #746a76; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.provider-mark strong { font-size: 32px; letter-spacing: -.04em; }
.provider-copy h2 { font-size: clamp(42px, 5vw, 66px); }
.provider-copy p { max-width: 680px; margin: 0; color: #665c69; font-size: 17px; line-height: 1.7; }

/* CTA + footer */
.final-cta {
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(113, 66, 157, .28), transparent 30%),
    #0c0811;
}

.final-cta::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  aspect-ratio: 1;
  border: 1px solid rgba(244,185,95,.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 110px rgba(255,255,255,.012), 0 0 0 220px rgba(255,255,255,.009);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner img {
  margin: 0 auto 28px;
  border-radius: 26px;
  box-shadow: 0 24px 65px rgba(0,0,0,.5), 0 0 60px rgba(125,72,172,.24);
}

.final-cta h2 { margin-bottom: 23px; font-size: clamp(56px, 7.4vw, 92px); }
.final-cta > .shell p:not(.eyebrow) { color: #968a9c; font-size: 18px; }
.final-cta .button { margin-top: 15px; }
.final-cta small { display: block; margin-top: 20px; color: #625968; font-size: 10px; }

.cta-stars i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
  animation: twinkle 2.8s ease-in-out infinite alternate;
}

.cta-stars i:nth-child(1) { top: 20%; left: 19%; }
.cta-stars i:nth-child(2) { top: 34%; right: 24%; animation-delay: -.8s; }
.cta-stars i:nth-child(3) { bottom: 25%; left: 28%; animation-delay: -1.5s; }
.cta-stars i:nth-child(4) { right: 13%; bottom: 14%; animation-delay: -2.2s; }
.cta-stars i:nth-child(5) { top: 12%; right: 42%; animation-delay: -.3s; }

@keyframes twinkle { to { opacity: .2; transform: scale(.55); } }

.site-footer {
  border-top: 1px solid var(--line);
  background: #09060d;
}

.footer-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  color: #746a78;
  font-size: 11px;
}

.footer-inner .brand { color: #e7e0e9; font-size: 15px; }
.footer-inner p { margin: 0; text-align: center; }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--gold-soft); }

/* Reveals */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.22,.7,.2,1), transform 700ms cubic-bezier(.22,.7,.2,1);
}

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

.js .workflow-card:nth-child(2) { transition-delay: 80ms; }
.js .workflow-card:nth-child(3) { transition-delay: 160ms; }

/* Responsive */
@media (max-width: 1180px) {
  .app-layout { grid-template-columns: 145px 270px minmax(0, 1fr); }
  .output-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .output-card:nth-child(3) { display: none; }
  .float-lineage { right: 12px; }
  .lineage-art { left: -45px; width: 50vw; transform: translateY(-50%) scale(.9); }
  .lineage-copy { padding-left: 48%; }
  .provider-layout { gap: 60px; }
}

@media (max-width: 960px) {
  .section { padding: 105px 0; }
  .site-nav { gap: 20px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 150px; }
  .product-stage { width: min(100% - 20px, 1440px); }
  .app-layout { grid-template-columns: 130px 250px minmax(420px, 1fr); overflow: hidden; }
  .detail-column { min-width: 420px; }
  .floating-card { display: none; }
  .split-copy { grid-template-columns: 1fr; gap: 35px; }
  .problem-copy { max-width: 760px; }
  .section-heading { grid-template-columns: 1fr 1.5fr; }
  .section-heading > p { grid-column: 2; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { min-height: 410px; display: grid; grid-template-columns: 42% 1fr; grid-template-rows: auto auto 1fr; column-gap: 30px; padding: 16px 28px 16px 16px; }
  .card-visual { height: 375px; grid-row: 1 / 4; margin: 0; }
  .card-label { align-self: end; margin-top: 45px; }
  .workflow-card h3, .workflow-card > p:last-child { margin-inline: 10px 0; }
  .lineage-section { min-height: auto; padding-top: 620px; }
  .lineage-art { top: 20px; left: 50%; width: 600px; transform: translateX(-50%) scale(.78); transform-origin: top; }
  .lineage-copy { display: block; padding-left: 0; }
  .lineage-copy > p { max-width: 650px; }
  .native-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .native-card-large { grid-column: 1 / -1; grid-row: auto; min-height: 580px; }
  .privacy-grid { grid-template-columns: 1fr 280px; gap: 60px 40px; }
  .privacy-seal { width: 270px; }
  .privacy-facts { grid-template-columns: 1fr; }
  .privacy-facts > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .provider-layout { grid-template-columns: 300px 1fr; gap: 50px; }
}

@media (max-width: 720px) {
  .shell, .shell-wide { width: min(100% - 30px, 1180px); }
  .section { padding: 82px 0; }
  .site-header { height: 64px; }
  .nav-shell { width: calc(100% - 30px); }
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 60px 30px;
    visibility: hidden;
    opacity: 0;
    color: white;
    background: rgba(11,8,16,.98);
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .site-nav a:not(.nav-cta) { display: block; font-size: 28px; font-weight: 620; letter-spacing: -.03em; }
  .site-nav .nav-cta { margin-top: 15px; }
  .nav-open .site-nav { visibility: visible; opacity: 1; }
  .nav-open .nav-toggle > span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-open .nav-toggle > span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
  .hero { padding: 126px 0 54px; }
  .hero h1 { font-size: clamp(52px, 15.2vw, 82px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .hero .button { width: min(100%, 330px); }
  .product-stage { width: calc(100% - 14px); margin-top: 70px; padding-bottom: 30px; }
  .product-window { border-radius: 13px; }
  .window-bar { height: 37px; font-size: 9px; }
  .traffic-lights i { width: 8px; height: 8px; }
  .app-layout { height: 490px; min-height: 490px; grid-template-columns: 104px minmax(380px, 1fr); }
  .app-sidebar { padding: 15px 7px; }
  .app-nav-item { height: 28px; padding-inline: 7px; font-size: 8px; }
  .app-tags { display: none; }
  .storage-meter { display: none; }
  .prompt-column { display: none; }
  .detail-column { min-width: 380px; }
  .detail-toolbar button:first-child { display: none; }
  .prompt-editor { min-height: 128px; }
  .output-grid { grid-template-columns: 1fr 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 10px 15px; }
  .hero-proof i:nth-of-type(2) { display: none; }
  .split-copy { gap: 20px; }
  .problem-copy h2, .section-heading h2, .lineage-copy h2, .native-heading h2, .privacy-copy h2, .provider-copy h2 { font-size: 43px; }
  .problem-copy .large-copy { font-size: 27px; }
  .marquee { margin-top: 75px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 22px; }
  .section-heading > p { max-width: 480px; }
  .workflow-card { min-height: 590px; display: block; padding: 15px 15px 28px; }
  .card-visual { height: 330px; margin-bottom: 28px; }
  .card-label { margin-top: 0; }
  .lineage-section { padding-top: 500px; }
  .lineage-art { width: 540px; transform: translateX(-50%) scale(.62); }
  .feature-list li { grid-template-columns: 30px 1fr; }
  .feature-list small { display: none; }
  .native-grid { grid-template-columns: 1fr; }
  .native-card-large { grid-column: auto; min-height: 560px; }
  .native-card { min-height: 310px; }
  .privacy-grid { display: flex; flex-direction: column; align-items: flex-start; }
  .privacy-seal { width: min(280px, 85vw); align-self: center; order: 2; }
  .privacy-facts { width: 100%; order: 3; }
  .provider-layout { grid-template-columns: 1fr; }
  .provider-mark { width: min(300px, 100%); height: 220px; }
  .final-cta { min-height: 670px; }
  .footer-inner { min-height: 180px; display: flex; flex-direction: column; justify-content: center; gap: 17px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 430px) {
  .hero-copy { padding-inline: 4px; }
  .hero h1 { font-size: 53px; }
  .eyebrow { font-size: 10px; }
  .app-layout { grid-template-columns: 86px minmax(340px, 1fr); }
  .app-nav-item b { display: none; }
  .detail-column { min-width: 340px; }
  .detail-toolbar { gap: 4px; padding-inline: 7px; }
  .detail-toolbar button { padding-inline: 6px; font-size: 7px; }
  .output-grid { grid-template-columns: 1fr; }
  .output-card:nth-child(2) { display: none; }
  .prompt-editor > p { font-size: 8px; }
  .lineage-note b { display: none; }
  .hero-proof { font-size: 8px; }
  .problem-copy h2, .section-heading h2, .lineage-copy h2, .native-heading h2, .privacy-copy h2, .provider-copy h2 { font-size: 38px; }
  .card-visual { height: 295px; }
  .workflow-card { min-height: 555px; }
  .riff-node.branch { width: 120px; }
  .riff-node.branch.one { left: 12px; }
  .riff-node.branch.two { right: 12px; }
  .native-card { padding: 25px; }
  .native-card h3 { font-size: 24px; }
  .drag-file { width: 140px; }
  .finder-window { width: 76%; }
  .privacy-facts > div { padding-right: 0; }
  .final-cta h2 { font-size: 50px; }
}

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