:root {
  color-scheme: dark;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --font-sans: "Avenir Next", "Segoe UI", sans-serif;
  --font-mono: "SF Mono", "Menlo", monospace;
  --bg: #080808;
  --bg-elevated: #111111;
  --bg-soft: #181818;
  --panel: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --accent: #f4f1ea;
  --accent-strong: #ffffff;
  --badge: rgba(255, 255, 255, 0.08);
  --hero-wash: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 38%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--bg);
  background-image: var(--hero-wash);
  color: var(--text);
  font-family: var(--font-sans);
}

body[data-theme="light"] {
  color-scheme: light;
  --bg: #edf3fa;
  --bg-chrome: #f8fbfe;
  --bg-elevated: #f7fbff;
  --bg-soft: #dce8f4;
  --panel: rgba(255, 255, 255, 0.7);
  --line: rgba(35, 54, 74, 0.12);
  --text: #1f2a36;
  --muted: #516173;
  --accent: #2f76d1;
  --accent-strong: #1f5aa8;
  --badge: rgba(47, 118, 209, 0.1);
  --hero-wash: radial-gradient(circle at top left, rgba(47, 118, 209, 0.12), transparent 34%);
  --shadow: 0 22px 60px rgba(74, 103, 138, 0.14);
}

body[data-theme="navy"] {
  --bg: #0d1117;
  --bg-elevated: #111926;
  --bg-soft: #1a2332;
  --panel: rgba(74, 144, 226, 0.08);
  --line: rgba(184, 197, 219, 0.12);
  --text: #e8f0ff;
  --muted: #b8c5db;
  --accent: #4a90e2;
  --accent-strong: #72a9ee;
  --badge: rgba(74, 144, 226, 0.14);
  --hero-wash: radial-gradient(circle at top left, rgba(74, 144, 226, 0.16), transparent 34%);
}

body[data-theme="inkwell"] {
  color-scheme: light;
  --font-display: Georgia, "Times New Roman", serif;
  --bg: #fcfaf5;
  --bg-chrome: #fffefb;
  --bg-elevated: #fffefb;
  --bg-soft: #f2eee5;
  --panel: rgba(254, 252, 247, 0.84);
  --line: rgba(109, 95, 72, 0.22);
  --text: #18150f;
  --muted: #514a3d;
  --accent: #2b5438;
  --accent-strong: #2b5438;
  --badge: rgba(43, 84, 56, 0.1);
  --success: #2b5438;
  --hero-wash:
    radial-gradient(circle at 78% 10%, rgba(168, 107, 26, 0.08), transparent 32%),
    radial-gradient(circle at 12% 36%, rgba(43, 84, 56, 0.06), transparent 30%),
    linear-gradient(135deg, #fffefb 0%, #fcfaf5 48%, #f5f1e8 100%);
  --shadow: 0 24px 72px rgba(78, 62, 37, 0.1);
}

body[data-theme="sage"] {
  --bg: #1c251e;
  --bg-elevated: #253328;
  --bg-soft: #344636;
  --panel: rgba(127, 168, 120, 0.08);
  --line: rgba(194, 208, 192, 0.18);
  --text: #f2f7f1;
  --muted: #c2d0c0;
  --accent: #7fa878;
  --accent-strong: #a9c79f;
  --badge: rgba(127, 168, 120, 0.16);
  --hero-wash: radial-gradient(circle at top left, rgba(127, 168, 120, 0.18), transparent 34%);
}

body[data-theme="amber"] {
  --bg: #000000;
  --bg-elevated: #080808;
  --bg-soft: #111008;
  --panel: rgba(217, 138, 31, 0.08);
  --line: rgba(242, 232, 216, 0.1);
  --text: #f2e8d8;
  --muted: #b79d77;
  --accent: #d98a1f;
  --accent-strong: #f0b257;
  --badge: rgba(217, 138, 31, 0.14);
  --hero-wash: radial-gradient(circle at top left, rgba(217, 138, 31, 0.14), transparent 34%);
}

a {
  color: inherit;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--line);
}

body[data-theme="light"] .topbar {
  background: color-mix(in srgb, var(--bg-chrome) 90%, white 10%);
}

.topbar-inner {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.88rem;
}

.draft-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.draft-nav a,
.ghost-link,
.primary-link {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.draft-nav a,
.ghost-link {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
}

.draft-nav a[aria-current="page"] {
  background: var(--badge);
  color: var(--text);
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
}

.primary-link {
  background: var(--accent);
  color: color-mix(in srgb, var(--bg) 82%, black);
  font-weight: 600;
}

body[data-theme="light"] .primary-link {
  color: #ffffff;
}

.draft-nav a:hover,
.ghost-link:hover,
.primary-link:hover,
.cta-row a:hover {
  transform: translateY(-1px);
}

.hero {
  padding: clamp(18px, 3vw, 42px) 0 clamp(18px, 3.5vw, 38px);
}

.demo-video-section {
  padding: clamp(18px, 3vw, 34px) 0 clamp(10px, 2.4vw, 28px);
}

.privacy-demo-section {
  display: none;
}

.demo-video-layout {
  display: grid;
  gap: 12px;
}

.demo-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px 0 0 18px;
  background:
    linear-gradient(135deg, rgba(31, 42, 54, 0.94), rgba(47, 118, 209, 0.28)),
    color-mix(in srgb, var(--bg-soft) 78%, white 6%);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.demo-video-frame[data-video-poster="true"] {
  background-image:
    linear-gradient(135deg, rgba(31, 42, 54, 0.18), rgba(47, 118, 209, 0.1)),
    var(--demo-video-poster);
}

.demo-video-frame iframe,
.demo-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-video-frame video {
  object-fit: cover;
}

.demo-video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(31, 42, 54, 0.26), rgba(31, 42, 54, 0.02) 48%, transparent 70%);
  color: #ffffff;
  cursor: pointer;
}

.demo-video-frame[data-video-started="true"] .demo-video-play-overlay,
.demo-video-play-overlay[hidden] {
  display: none;
}

.demo-video-play-overlay span {
  width: clamp(72px, 10vw, 104px);
  height: clamp(72px, 10vw, 104px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(31, 42, 54, 0.26);
  transition: transform 160ms ease, background 160ms ease;
}

.demo-video-play-overlay span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 26px solid #2f76d1;
}

.demo-video-play-overlay strong {
  max-width: min(84%, 360px);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(24, 21, 15, 0.74);
  box-shadow: 0 16px 40px rgba(24, 21, 15, 0.24);
  color: #fffaf0;
  font-size: clamp(0.92rem, 2.4vw, 1.08rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.12;
}

.demo-video-play-overlay:hover span,
.demo-video-play-overlay:focus-visible span {
  transform: scale(1.04);
  background: #ffffff;
}

.demo-video-play-overlay:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 74%, white 26%);
  outline-offset: -6px;
}

.demo-video-controls {
  position: absolute;
  right: clamp(12px, 2vw, 18px);
  bottom: clamp(12px, 2vw, 18px);
  z-index: 3;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.demo-video-frame[data-video-started="true"] .demo-video-controls {
  opacity: 1;
  pointer-events: auto;
}

.demo-video-frame[data-video-ended="true"] .demo-video-controls {
  opacity: 0;
  pointer-events: none;
}

.demo-video-control {
  min-width: 44px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(24, 21, 15, 0.64);
  color: #fffaf0;
  box-shadow: 0 12px 30px rgba(24, 21, 15, 0.24);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.demo-video-control:hover,
.demo-video-control:focus-visible {
  background: rgba(24, 21, 15, 0.86);
  transform: translateY(-1px);
}

.demo-video-control:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 74%, white 26%);
  outline-offset: 2px;
}

.demo-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: #ffffff;
  text-align: center;
}

.demo-video-placeholder::before {
  content: "";
  width: 76px;
  height: 76px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.demo-video-placeholder::after {
  content: "";
  position: absolute;
  top: calc(50% - 32px);
  left: 50%;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
  transform: translate(-7px, -50%);
}

.demo-video-placeholder span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-video-placeholder strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
}

.deep-dive-link {
  justify-self: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.deep-dive-link:hover,
.deep-dive-link:focus-visible {
  color: var(--accent-strong);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--badge);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 55%, transparent);
}

.hero h1 {
  margin: 18px 0 16px;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.light-refined-page .hero h1 {
  line-height: 1.04;
}

.hero p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: end;
}

.hero-grid.two-col {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.hero-grid.split {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
}

.hero-copy {
  padding-top: 22px;
}

.hero-copy .hero-price-card {
  margin-top: 18px;
}

.hero h1.light-hero-title {
  margin-top: 0;
  font-size: clamp(3.6rem, 8vw, 4.583rem);
  max-width: 16ch;
  line-height: 1.1;
}

.hero-grid.poster {
  grid-template-columns: minmax(0, 1fr);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mock-window {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-elevated) 92%, white 8%), var(--bg));
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.workspace {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 240px;
  min-height: 500px;
}

.sidebar,
.inspector {
  padding: 18px;
  background: color-mix(in srgb, var(--bg-elevated) 88%, transparent);
}

.sidebar {
  border-right: 1px solid var(--line);
}

.inspector {
  border-left: 1px solid var(--line);
}

.entry-feed,
.inspector-stack,
.chat-stack {
  display: grid;
  gap: 12px;
}

.entry-pill,
.inspector-chip,
.chat-bubble,
.feature-band,
.panel,
.quote,
.compare-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.entry-pill {
  padding: 12px 14px;
  border-radius: 18px 0 0 18px;
}

.entry-pill small,
.muted-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.editor {
  padding: clamp(20px, 4vw, 34px);
  display: grid;
  gap: 18px;
}

.editor h2,
.section-heading h2,
.compare-card h3,
.panel h3,
.quote strong {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.04;
}

.editor h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.editor p {
  margin: 0;
  max-width: 54ch;
  color: var(--muted);
  line-height: 1.7;
}

.body-lines {
  display: grid;
  gap: 10px;
}

.body-lines span {
  display: block;
  height: 9px;
  width: 100%;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 12%, transparent);
}

.body-lines span:nth-child(2) {
  width: 92%;
}

.body-lines span:nth-child(3) {
  width: 76%;
}

.inspector-chip {
  padding: 12px;
  border-radius: 16px;
}

.inspector-chip strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  padding: 0 0 72px;
}

.scroll-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 96px;
}

.section-heading {
  margin-bottom: 28px;
  display: grid;
  gap: 12px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-heading p {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 30px;
}

.section-copy {
  min-width: 0;
}

.hero-grid > *,
.section-split > *,
.feature-grid > *,
.buy-grid > *,
.buy-card > *,
.feature-band,
.panel {
  min-width: 0;
}

.section-shot {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 34px;
}

.section-shot::before {
  content: "";
  position: absolute;
  inset: 5% 4% 9% 8%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06));
  filter: blur(32px);
  opacity: 0.78;
}

.section-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(237, 243, 250, 0.76) 28%, rgba(237, 243, 250, 0.08) 56%, rgba(237, 243, 250, 0) 100%);
}

.section-shot--hard-cut {
  min-height: 660px;
  justify-content: flex-start;
  overflow: visible;
}

.section-shot--hard-cut::after {
  display: none;
}

.section-shot img {
  position: relative;
  z-index: 1;
  width: 158%;
  max-width: none;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(74, 103, 138, 0.14);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 24%, rgba(0, 0, 0, 0.94) 42%, #000 58%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 24%, rgba(0, 0, 0, 0.94) 42%, #000 58%, #000 100%);
}

.section-shot--hard-cut img {
  box-shadow: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.feature-showcase {
  margin-bottom: 34px;
  align-items: start;
}

#features.section {
  padding-bottom: 36px;
}

.light-refined-page .refined-features-section {
  padding-bottom: 36px;
}

.light-refined-page #features {
  scroll-margin-top: 86px;
}

.details-showcase {
  align-items: center;
  margin-bottom: 32px;
}

.details-shot {
  min-height: 420px;
}

.section-shot--tall .hero-shot-frame,
.details-shot--tall .hero-shot-frame {
  height: 620px;
}

.section-shot--tall .hero-shot-frame img,
.details-shot--tall .hero-shot-frame img {
  width: 210%;
}

.details-shot--tall .hero-shot-frame {
  line-height: 0;
}

.details-shot--tall .hero-shot-frame img {
  width: auto;
  height: 100%;
}

.section-shot--reflection .hero-shot-frame {
  aspect-ratio: 684 / 799;
  height: auto;
}

.section-shot--reflection .hero-shot-frame img {
  width: 100%;
}

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

.feature-grid-dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bridge-section {
  padding-bottom: 48px;
}

.bridge-grid {
  margin-top: -4px;
}

.feature-copy {
  padding-top: 10px;
}

.feature-proof-cards {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.compact-panel {
  min-height: 0;
  padding: 20px 22px;
}

.compact-panel h3 {
  font-size: 1.1rem;
}

.compact-panel p {
  line-height: 1.58;
}

.details-copy {
  display: grid;
  gap: 22px;
}

.details-copy .section-heading {
  margin-bottom: 0;
}

.details-copy .section-heading h2 {
  max-width: none;
  font-size: clamp(2.5rem, 3.6vw, 3.25rem);
  line-height: 1.03;
  text-wrap: balance;
}

.light-refined-page .details-copy {
  gap: 12px;
}

.details-stack {
  display: grid;
  gap: 16px;
}

.details-stack .feature-band {
  min-height: 0;
}

.feature-band,
.panel,
.quote,
.compare-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(74, 103, 138, 0.08);
}

.feature-band {
  padding: 20px;
}

.feature-band,
.panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-band h3,
.panel h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature-band p,
.panel p,
.compare-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: break-word;
}

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

.panel {
  padding: 26px;
}

.quote {
  padding: 28px;
}

.quote p {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.18;
}

.footer-cta {
  padding: 0 0 92px;
}

.light-refined-page #details.section {
  padding-bottom: 46px;
}

.light-refined-page .footer-cta {
  padding-bottom: 58px;
}

.system-section {
  padding-bottom: 108px;
}

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

.faq-section .section-heading p {
  max-width: none;
}

.faq-section .section-heading h2 {
  max-width: 24ch;
}

.beta-section {
  padding-bottom: 52px;
}

.beta-panel {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.checkout-section {
  padding-bottom: 52px;
}

.checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    var(--panel);
}

.launch-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.launch-download-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: right;
}

.beta-actions,
.checkout-actions {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.application-hero {
  padding-bottom: 28px;
}

.application-grid {
  align-items: start;
}

.hero h1.application-title {
  margin-top: 6px;
  margin-bottom: 14px;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: 4.583rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.application-signals {
  margin-top: 28px;
}

.application-hero-actions {
  display: none;
  margin-top: 22px;
}

.application-sidecard {
  gap: 18px;
  padding: 28px;
}

.application-steps {
  display: grid;
  gap: 16px;
}

.application-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.application-steps p {
  margin: 0;
}

.application-section {
  padding-bottom: 108px;
  scroll-margin-top: 96px;
}

.application-requirements {
  padding-bottom: 54px;
  scroll-margin-top: 96px;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.application-layout > * {
  min-width: 0;
}

.application-form {
  gap: 26px;
  padding: 30px;
  max-width: 100%;
  min-width: 0;
}

.application-form[hidden],
.beta-closed-panel[hidden] {
  display: none;
}

.application-heading {
  margin-bottom: 0;
}

.beta-clarity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.beta-clarity-strip span {
  padding: 8px 10px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--badge) 82%, white 8%);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.field.full-width {
  grid-column: 1 / -1;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-elevated) 88%, white 12%);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 112px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, color-mix(in srgb, var(--muted) 78%, transparent) 50%),
    linear-gradient(135deg, color-mix(in srgb, var(--muted) 78%, transparent) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 80%, transparent);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.field small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.country-picker {
  position: relative;
}

.country-trigger {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-elevated) 88%, white 12%);
  color: var(--text);
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.country-trigger:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.country-caret {
  color: var(--muted);
  font-size: 0.9rem;
}

.country-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-elevated) 96%, white 4%);
  box-shadow: 0 16px 38px rgba(74, 103, 138, 0.18);
}

.country-menu[hidden] {
  display: none !important;
}

.country-search input {
  min-height: 46px;
}

.country-options {
  max-height: 260px;
  overflow: auto;
  display: grid;
  gap: 4px;
}

.country-option {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.country-option:hover,
.country-option:focus {
  outline: none;
  background: color-mix(in srgb, var(--badge) 75%, white 10%);
}

.country-option[hidden] {
  display: none;
}

.country-divider {
  height: 0;
  margin: 6px 2px;
  border-top: 1px dashed color-mix(in srgb, var(--muted) 34%, transparent);
}

.country-divider[hidden] {
  display: none;
}

.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;
}

.application-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.application-note {
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-elevated) 84%, white 16%);
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.check-field span {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}

.turnstile-block {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-elevated) 84%, white 16%);
}

.form-grid,
.field,
.turnstile-block {
  min-width: 0;
  max-width: 100%;
}

.turnstile-widget {
  min-height: 68px;
  max-width: 100%;
  overflow: hidden;
}

.turnstile-note {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--muted);
}

.turnstile-note.is-error {
  color: #8a4044;
}

.form-submit {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.application-error,
.application-success {
  display: grid;
  gap: 14px;
}

.application-error {
  background: color-mix(in srgb, #f5d6d7 56%, white 44%);
}

.application-success {
  background: color-mix(in srgb, var(--badge) 58%, white 28%);
}

.application-error[hidden],
.application-success[hidden] {
  display: none;
}

.submit-target[hidden] {
  display: none;
}

.application-support {
  display: grid;
  gap: 16px;
}

.ios-beta-page {
  background-image:
    radial-gradient(circle at 78% 10%, rgba(168, 107, 26, 0.08), transparent 32%),
    radial-gradient(circle at 12% 36%, rgba(43, 84, 56, 0.06), transparent 30%),
    linear-gradient(135deg, #fffefb 0%, #fcfaf5 48%, #f5f1e8 100%);
}

.ios-beta-page .application-hero {
  padding-top: clamp(26px, 5vw, 72px);
  padding-bottom: clamp(18px, 4vw, 44px);
}

.ios-beta-page .hero h1.application-title {
  width: 100%;
  max-width: 720px;
  text-align: center;
  letter-spacing: 0;
}

.ios-beta-stack {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
  width: min(100%, 720px);
  margin: 0 auto;
}

.ios-beta-stack .hero-copy {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.ios-beta-stack .hero-copy p {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  line-height: 1.58;
}

.ios-beta-requirements {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 24px);
  border: 1px solid rgba(109, 95, 72, 0.22);
  border-radius: 20px;
  background: rgba(255, 254, 251, 0.72);
  box-shadow: 0 18px 48px rgba(78, 62, 37, 0.08);
}

.ios-beta-requirements h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.ios-beta-requirements ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ios-beta-requirements li {
  display: grid;
  grid-template-columns: 7px 1fr;
  align-items: center;
  column-gap: 12px;
  color: var(--text);
  line-height: 1.5;
}

.ios-beta-requirements li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.ios-beta-requirements p {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(109, 95, 72, 0.18);
  color: var(--muted);
  line-height: 1.55;
}

.ios-beta-form-layout,
.ios-beta-page .application-layout {
  display: block;
  width: min(100%, 720px);
  margin: 0 auto;
}

.ios-beta-page .application-form {
  display: grid;
  border-color: rgba(109, 95, 72, 0.24);
  background: rgba(255, 254, 251, 0.82);
}

.ios-beta-page .field {
  gap: 6px;
  align-content: start;
}

.ios-beta-name-fields {
  display: grid;
  gap: 12px;
  align-content: start;
}

.ios-beta-page .field input,
.ios-beta-page .field select {
  min-height: 48px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.35;
}

.ios-beta-page .field textarea {
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.45;
}

.ios-beta-page .turnstile-block {
  grid-column: 1 / -1;
  width: 100%;
}

.ios-beta-page .turnstile-widget {
  width: 100%;
}

.ios-beta-page .application-note a {
  color: var(--accent);
  font-weight: 700;
}

.info-hero {
  padding: clamp(26px, 4vw, 54px) 0 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.74fr);
  gap: 24px;
  align-items: start;
}

.info-grid > * {
  min-width: 0;
  max-width: 100%;
}

.info-copy {
  display: grid;
  gap: 18px;
}

.info-title {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.info-copy p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  line-height: 1.7;
}

.info-sidecard,
.info-panel {
  padding: 28px;
}

.info-panel {
  justify-content: flex-start;
  gap: 18px;
}

.info-sidecard {
  display: grid;
  gap: 16px;
  overflow-wrap: anywhere;
}

.info-sidecard h3,
.info-panel h3 {
  margin: 0;
}

.info-list,
.policy-list,
.support-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.info-list strong,
.policy-list strong,
.support-list strong {
  color: var(--text);
}

.content-section {
  padding-bottom: 52px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-intro {
  max-width: none;
}

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

.link-tile {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(74, 103, 138, 0.08);
  text-decoration: none;
  display: grid;
  gap: 10px;
}

.link-tile strong {
  font-size: 1.06rem;
}

.link-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.link-tile:hover {
  transform: translateY(-1px);
}

.founder-hero {
  padding: clamp(28px, 5vw, 64px) 0 clamp(28px, 4vw, 48px);
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.founder-portrait {
  margin: 0;
  display: grid;
  gap: 12px;
}

.founder-portrait-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow:
    0 22px 44px rgba(74, 103, 138, 0.14),
    0 8px 18px rgba(48, 70, 96, 0.1);
}

.founder-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.founder-portrait figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.founder-copy {
  display: grid;
  gap: 18px;
}

.founder-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.founder-copy p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
  line-height: 1.68;
}

.founder-letter {
  width: 100%;
  max-width: none;
  padding: clamp(26px, 4vw, 38px);
  justify-content: flex-start;
  gap: 18px;
}

.founder-letter h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1;
}

.founder-letter p {
  max-width: none;
  font-size: 1.02rem;
}

.founder-signoff {
  color: var(--text) !important;
  font-family: var(--font-display);
  font-size: 1.45rem !important;
  line-height: 1.1 !important;
}

.founder-letter-cta {
  margin-top: 8px;
}

.site-callout {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.site-callout .cta-row {
  margin-top: 0;
}

.footer-note {
  display: block;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal-on-scroll:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-on-scroll:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-on-scroll:nth-child(4) {
  transition-delay: 210ms;
}

.footer-cta .panel {
  display: grid;
  gap: 18px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
}

.system-panel {
  display: grid;
  gap: 26px;
  padding: 28px;
}

.system-heading {
  margin-bottom: 0;
}

.system-heading p {
  max-width: none;
}

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

.requirements-grid .feature-band {
  justify-content: flex-start;
}

.requirements-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.requirements-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--badge) 82%, white 8%);
  color: var(--text);
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(74, 103, 138, 0.08);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  position: relative;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.45;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
}

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

.faq-item p {
  margin: 0;
  padding: 0 72px 22px 22px;
  color: var(--muted);
  line-height: 1.65;
  max-width: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 78%, white 8%), color-mix(in srgb, var(--bg-elevated) 92%, white 4%));
}

body[data-theme="light"] .site-footer {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-chrome) 94%, white 6%), color-mix(in srgb, var(--bg-chrome) 86%, var(--bg-soft) 14%));
}

.site-footer-inner {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 28px 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand p,
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.copyright-notice {
  font-size: 0.86rem;
}

.simple-footer-inner {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 24px 0;
}

.simple-footer .copyright-notice {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-label {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-column a:hover {
  color: var(--accent-strong);
}

.kicker-list,
.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kicker-list span,
.signal-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--badge);
  color: var(--muted);
  font-size: 0.85rem;
}

.compare-hero {
  padding: clamp(48px, 7vw, 88px) 0 42px;
}

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

.compare-card {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.compare-card img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.compare-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.compare-card h3 {
  font-size: 2rem;
}

.compare-card .tag {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.phone-poster {
  position: relative;
  width: min(100%, 420px);
  margin-left: auto;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 92%, white 8%), var(--bg));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-shot {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0 18px 18px;
  overflow: visible;
  border-radius: 34px;
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 6% 8% 10% 4%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
  filter: blur(34px);
  opacity: 0.85;
}

.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(237, 243, 250, 0) 0%, rgba(237, 243, 250, 0) 42%, rgba(237, 243, 250, 0.68) 70%, var(--bg) 100%),
    linear-gradient(180deg, rgba(237, 243, 250, 0.05), rgba(237, 243, 250, 0.02) 54%, rgba(237, 243, 250, 0.16));
  pointer-events: none;
  z-index: 2;
}

.hero-shot--hard-cut::after {
  display: none;
}

.hero-shot-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(74, 103, 138, 0.14);
  filter: drop-shadow(0 22px 34px rgba(48, 70, 96, 0.24));
}

.hero-shot img {
  display: block;
  width: 182%;
  max-width: none;
  height: auto;
  margin-left: 0;
  border-radius: 28px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 43%, rgba(0, 0, 0, 0.94) 58%, rgba(0, 0, 0, 0.45) 74%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 43%, rgba(0, 0, 0, 0.94) 58%, rgba(0, 0, 0, 0.45) 74%, transparent 100%);
}

.hero-shot--hard-cut img {
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-shot--hard-cut .hero-shot-frame,
.hero-shot--hard-cut img,
.section-shot--hard-cut .hero-shot-frame,
.section-shot--hard-cut img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.section-shot--reflection .hero-shot-frame,
.section-shot--reflection img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}

.phone-poster::before {
  content: "";
  position: absolute;
  inset: 18px 32% auto;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
}

.phone-poster-inner {
  padding: 34px 22px 24px;
  display: grid;
  gap: 18px;
}

.buy-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.long-demo-shell {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
}

.long-demo-hero {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 42px) 0 34px;
}

.long-demo-frame {
  border-radius: 18px;
}

.long-demo-description {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.65;
  text-align: center;
}

.long-demo-purchase {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

.buy-hero {
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 30px;
  align-items: center;
  padding: clamp(30px, 5vw, 70px) 0 44px;
}

.buy-hero-copy {
  display: grid;
  gap: 18px;
}

.buy-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.buy-hero p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.65;
}

.hero-price-card {
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto;
  gap: 7px 12px;
  align-items: end;
  padding: 14px 16px;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-elevated) 84%, white 16%);
  box-shadow: 0 10px 24px rgba(74, 103, 138, 0.08);
}

.hero-price-label {
  grid-column: 1 / -1;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.hero-price-card strong {
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 0.9;
}

.hero-price-card span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-price-card s {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
}

.disclosure-marker {
  font-family: var(--font-body);
  font-size: 0.48em;
  font-weight: 800;
  line-height: 1;
  vertical-align: super;
}

.disclosure-marker a {
  color: inherit;
  text-decoration: none;
}

.disclosure-marker a:hover,
.disclosure-marker a:focus-visible {
  color: var(--accent-strong);
  text-decoration: underline;
}

.disclosure-marker--button {
  margin-left: 3px;
}

.license-disclosure-inline {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.fine-print-section {
  padding: 0 0 82px;
  scroll-margin-top: 92px;
}

.fine-print-panel {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 24px);
  background: color-mix(in srgb, var(--panel) 86%, white 14%);
}

.fine-print-panel h2 {
  margin: 0;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.fine-print-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.buy-price-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.buy-price-cta s {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
}

.buy-price-cta strong {
  color: #ffffff;
  font-size: 1em;
  line-height: 1;
}

.buy-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.buy-proof-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--badge);
  color: var(--muted);
  font-weight: 650;
  font-size: 0.88rem;
}

.buy-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(74, 103, 138, 0.16);
}

.buy-visual img {
  width: 142%;
  max-width: none;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: left top;
}

.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 22px;
  align-items: start;
  padding: 0 0 58px;
  scroll-margin-top: 92px;
}

.buy-card,
.buy-side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(74, 103, 138, 0.08);
}

.buy-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.buy-email-field {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-elevated) 84%, white 16%);
}

.buy-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.buy-product-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.buy-product-heading img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(74, 103, 138, 0.16);
}

.buy-card h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.7vw, 2.18rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-lockup {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.price-amount {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 760;
  color: var(--text);
}

.price-label {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--badge);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.price-note,
.buy-status {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.price-note s {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
}

.buy-feature-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.buy-feature-list li,
.compatibility-box,
.requirements-disclosure {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-elevated) 84%, white 16%);
}

.buy-feature-list li {
  padding: 13px 14px;
  color: var(--text);
  font-weight: 650;
  line-height: 1.38;
  min-height: 58px;
  display: flex;
  align-items: center;
}

.compatibility-box {
  display: grid;
  gap: 8px;
  padding: 17px 18px;
}

.compatibility-box strong {
  color: var(--text);
}

.compatibility-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.requirements-disclosure {
  overflow: hidden;
}

.requirements-disclosure summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 17px 46px 17px 18px;
  color: var(--text);
  font-weight: 760;
  line-height: 1.3;
}

.requirements-disclosure summary::-webkit-details-marker {
  display: none;
}

.requirements-disclosure summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
}

.requirements-disclosure[open] summary {
  border-bottom: 1px solid var(--line);
}

.requirements-disclosure[open] summary::after {
  content: "−";
}

.buy-requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.buy-requirement-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg-elevated) 78%, white 22%);
}

.buy-requirement-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.buy-requirement-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.buy-requirement-card .requirements-list {
  margin-top: 4px;
}

.buy-requirement-card .requirements-list span {
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 11px;
  font-size: 0.82rem;
}

.requirements-note {
  margin: 0;
  padding: 0 18px 17px;
  color: var(--muted);
  line-height: 1.52;
}

.mac-checker {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.mac-checker-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

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

.mac-checker-result {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg-elevated) 78%, white 22%);
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.mac-checker-result.is-success {
  border-color: color-mix(in srgb, #22c55e 34%, var(--line));
  background: color-mix(in srgb, #22c55e 12%, white 88%);
  color: #176b36;
}

.mac-checker-result.is-error {
  border-color: color-mix(in srgb, #c2414a 34%, var(--line));
  background: color-mix(in srgb, #c2414a 10%, white 90%);
  color: #8a4044;
}

.mac-checker .requirements-note {
  padding: 0 2px;
  font-size: 0.9rem;
}

.buy-action-stack {
  display: grid;
  gap: 10px;
}

.buy-submit {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
}

.buy-status {
  margin: 0;
  text-align: center;
}

.buy-status[hidden] {
  display: none;
}

.buy-status.is-error {
  color: #8a4044;
}

.buy-side-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.buy-side-panel article {
  padding: 22px;
  display: grid;
  gap: 8px;
}

.buy-side-panel article + article {
  border-top: 1px solid var(--line);
}

.buy-side-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.buy-side-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.buy-reassurance {
  padding: 0 0 72px;
}

.privacy-direct-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.privacy-direct-hero {
  min-height: min(620px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.92fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px) 0 clamp(20px, 3vw, 34px);
  scroll-margin-top: 72px;
}

@media (min-width: 900px) {
  .privacy-direct-hero {
    align-items: start;
  }

  .privacy-direct-hero > .privacy-direct-copy {
    align-self: start;
    padding-top: 0;
  }
}

.privacy-direct-copy,
.privacy-direct-section-copy,
.privacy-bottom-heading {
  display: grid;
  gap: 14px;
}

.privacy-direct-kicker {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-direct-hero h1,
.privacy-direct-section h2,
.privacy-bottom-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  color: var(--text);
}

.privacy-direct-hero h1 {
  max-width: 14.6ch;
  font-size: clamp(2.9rem, 5.4vw, 4.25rem);
  line-height: 1;
}

.privacy-direct-section h2,
.privacy-bottom-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 5.2vw, 4.3rem);
  line-height: 1;
}

.privacy-pain-section .privacy-direct-section-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4.1vw, 3.25rem);
  line-height: 1.04;
}

.privacy-direct-hero p,
.privacy-direct-section-copy p,
.privacy-bottom-heading p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.62;
}

.privacy-direct-proof-row,
.privacy-direct-purchase-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.privacy-direct-proof-row span,
.privacy-direct-purchase-list li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--badge) 66%, white 20%);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.privacy-direct-proof-row span {
  background: #fff;
  border-color: color-mix(in srgb, var(--line) 76%, white 24%);
  box-shadow: 0 8px 20px rgba(25, 39, 56, 0.08);
}

.privacy-direct-checklist {
  display: grid;
  justify-content: start;
  gap: 12px;
  margin-top: 14px;
}

.privacy-direct-checklist li {
  position: relative;
  min-height: 32px;
  display: flex;
  align-items: center;
  padding-left: 42px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.4vw, 1.18rem);
  font-weight: 760;
  line-height: 1.3;
}

.privacy-direct-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #2b5438;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(43, 84, 56, 0.18);
}

.privacy-direct-checklist li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(50% - 1px);
  width: 9px;
  height: 14px;
  border: solid #f7f3ea;
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
}

.privacy-hero-peek {
  position: relative;
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px 0 0 18px;
  background-color: rgba(255, 255, 255, 0.58);
  background-image: url("./assets/light-journal-2-hero-crop-desktop.jpg");
  background-position: -6px -5px;
  background-size: calc(100% + 12px) calc(100% + 10px);
  box-shadow:
    -16px 24px 42px rgba(25, 39, 56, 0.1),
    inset -30px 0 30px -26px rgba(25, 39, 56, 0.58);
}

.privacy-hero-peek::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow:
    inset -1px 0 0 rgba(25, 39, 56, 0.2);
}

.privacy-direct-checkout {
  position: relative;
  background: color-mix(in srgb, var(--panel) 88%, white 12%);
  scroll-margin-top: 84px;
}

.privacy-direct-top-buy {
  padding: 0 0 clamp(40px, 6vw, 72px);
  border-top: 0;
}

.privacy-direct-top-buy .privacy-direct-checkout {
  width: min(880px, 100%);
  margin: 0 auto;
}

.privacy-direct-card-header {
  align-items: center;
}

.privacy-direct-stripe-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
  text-align: center;
}

.privacy-direct-checkout .privacy-direct-stripe-note {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  font-size: 0.72rem;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

.privacy-direct-checkout .license-disclosure-inline {
  justify-self: center;
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
}

.privacy-payment-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-elevated) 84%, white 16%);
}

.payment-brand {
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 10px;
  background: #ffffff;
  color: #1f2a36;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.payment-brand--stripe {
  color: #635bff;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.payment-brand--visa {
  color: #1434cb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-brand--mastercard {
  position: relative;
  padding-left: 35px;
  color: #2d2d2d;
}

.payment-brand--mastercard::before,
.payment-brand--mastercard::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.payment-brand--mastercard::before {
  left: 10px;
  background: #eb001b;
}

.payment-brand--mastercard::after {
  left: 19px;
  background: rgba(247, 158, 27, 0.9);
}

.payment-brand--klarna {
  color: #17120f;
  letter-spacing: 0.01em;
}

.payment-brand--affirm {
  color: #4a4af4;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.payment-brand--cash-app {
  color: #00a944;
}

.payment-brand--link {
  color: #00a37a;
  letter-spacing: -0.01em;
}

.payment-brand--amazon-pay {
  color: #111827;
}

.payment-brand--amazon-pay::after {
  content: "";
  width: 36px;
  height: 3px;
  margin-top: 3px;
  border-radius: 999px;
  background: #ff9900;
}

.payment-brand--bank {
  color: #334155;
}

.privacy-direct-section {
  padding: clamp(42px, 7vw, 88px) 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  scroll-margin-top: 92px;
}

.privacy-pain-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

.privacy-demo-embed {
  min-width: 0;
  scroll-margin-top: 92px;
}

.privacy-demo-embed .demo-video-layout {
  margin: 0;
}

.privacy-demo-embed .demo-video-frame {
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(39, 53, 42, 0.14);
}

.privacy-demo-embed .demo-video-frame iframe {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  margin: -5px;
}

.privacy-direct-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(20px, 4vw, 32px);
}

.privacy-direct-card-grid .feature-band {
  justify-content: flex-start;
}

.local-ai-showcase-section {
  border-top: 0;
  padding-top: clamp(78px, 8.8vw, 128px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.local-ai-feature-list {
  display: grid;
  width: min(100%, 1120px);
  margin-inline: auto;
  gap: clamp(92px, 10.5vw, 148px);
}

.local-ai-feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 500px));
  justify-content: center;
  gap: clamp(38px, 4.8vw, 60px);
  align-items: center;
}

.local-ai-feature-row:nth-child(even) .local-ai-feature-shot {
  order: 2;
}

.local-ai-feature-shot {
  aspect-ratio: 1;
  width: min(100%, 500px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  box-shadow:
    0 18px 34px rgba(25, 39, 56, 0.12),
    0 34px 82px rgba(25, 39, 56, 0.13),
    inset 0 0 0 1px color-mix(in srgb, var(--line) 84%, transparent);
}

.local-ai-feature-shot--memory {
  aspect-ratio: 1;
}

.local-ai-feature-shot img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  margin: 0;
}

.local-ai-feature-copy {
  display: grid;
  gap: 14px;
  max-width: 440px;
}

.local-ai-feature-copy h3 {
  max-width: 19ch;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.55vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.local-ai-feature-copy p {
  max-width: 40ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.1rem);
  line-height: 1.62;
}

@media (max-width: 820px) {
  .local-ai-feature-row,
  .local-ai-feature-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .local-ai-feature-row:nth-child(even) .local-ai-feature-shot {
    order: 0;
  }

  .local-ai-feature-shot img {
    width: 100%;
  }

  .local-ai-feature-copy {
    max-width: none;
  }
}

.product-carousel-section {
  overflow: hidden;
}

.product-carousel-heading {
  max-width: 940px;
}

.product-carousel-heading h2 {
  max-width: 19ch;
  font-size: clamp(1.95rem, 4.5vw, 3.65rem);
}

.feature-carousel {
  position: relative;
  max-width: min(100%, 1060px);
  margin-top: clamp(18px, 3.2vw, 28px);
  padding-bottom: 8px;
}

.feature-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 14px;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.feature-carousel-track::-webkit-scrollbar {
  display: none;
}

.feature-carousel-card {
  flex: 0 0 min(860px, calc(100% - 170px));
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-elevated) 90%, white 10%);
  box-shadow: 0 18px 42px rgba(74, 103, 138, 0.11);
  scroll-snap-align: start;
}

.feature-carousel-card picture,
.feature-carousel-card img {
  display: block;
  width: 100%;
}

.feature-carousel-card picture {
  background: color-mix(in srgb, var(--bg-soft) 72%, white 28%);
}

.feature-carousel-card img {
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
  object-position: left top;
}

.feature-carousel-copy {
  display: grid;
  gap: 5px;
  padding: 12px 16px 14px;
}

.feature-carousel-copy span {
  color: var(--accent-strong);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-carousel-copy h3 {
  max-width: 34ch;
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.14;
}

.feature-carousel-copy p {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.feature-carousel-controls {
  position: absolute;
  top: clamp(180px, 25vw, 295px);
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.feature-carousel-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(39, 53, 42, 0.18);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.78;
  pointer-events: auto;
}

.feature-carousel-button:hover,
.feature-carousel-button:focus-visible {
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.feature-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.feature-carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 32%, transparent);
  cursor: pointer;
  padding: 0;
}

.feature-carousel-dot[aria-current="true"] {
  width: 28px;
  background: var(--accent);
}

.comparison-heading {
  max-width: 980px;
}

.comparison-heading h2 {
  max-width: none;
  font-size: clamp(1.95rem, 4.5vw, 3.65rem);
}

.comparison-table-wrap {
  margin-top: clamp(20px, 3.6vw, 34px);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-elevated) 90%, white 10%);
  box-shadow: 0 18px 42px rgba(74, 103, 138, 0.1);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--text);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: color-mix(in srgb, var(--panel) 92%, white 8%);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
}

.comparison-table tbody th {
  width: 42%;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.28;
}

.comparison-table tbody td {
  width: 29%;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.28;
}

.comparison-table tbody tr:first-child td {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--bg-soft) 42%, transparent);
}

.comparison-price {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}

.comparison-price s {
  color: var(--muted);
  font-weight: 650;
}

.comparison-price strong {
  color: var(--text);
  font-size: 1.05rem;
}

.comparison-mark {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.comparison-mark--yes {
  background: #2b5438;
  color: #f7f3ea;
}

.comparison-mark--no {
  background: rgba(138, 64, 68, 0.12);
  color: #8a4044;
}

.comparison-muted {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.comparison-note {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px 18px 16px;
  border-top: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.comparison-import-callout {
  display: grid;
  gap: 6px;
  max-width: 780px;
  margin: clamp(18px, 3vw, 30px) auto 0;
  padding: clamp(16px, 2.4vw, 22px) clamp(18px, 3vw, 28px);
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-elevated) 76%, transparent);
  box-shadow: 0 18px 40px rgba(74, 103, 138, 0.08);
  text-align: center;
}

.comparison-import-callout strong {
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.2;
}

.comparison-import-callout span {
  color: var(--muted);
  font-size: clamp(0.96rem, 1.35vw, 1.04rem);
  line-height: 1.5;
}

.proof-stack-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.proof-stack-section h2 em {
  font-style: italic;
}

.privacy-proof-list {
  display: grid;
  gap: clamp(18px, 2.4vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-proof-list li {
  position: relative;
  display: grid;
  gap: 5px;
  padding-left: 42px;
}

.privacy-proof-list li::before {
  content: "\2713";
  position: absolute;
  top: 2px;
  left: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2b5438;
  color: #f7f3ea;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(43, 84, 56, 0.14);
}

.privacy-proof-list strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.privacy-proof-list span {
  color: var(--muted);
  line-height: 1.45;
}

.privacy-founder-proof {
  width: min(100%, 280px);
  margin: clamp(20px, 3.8vw, 34px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 16px 34px rgba(74, 103, 138, 0.1);
}

.privacy-founder-proof img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 42% 28%;
}

.privacy-founder-proof figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.privacy-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.privacy-feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.privacy-feature-list li {
  position: relative;
  padding: 12px 14px 12px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg-elevated) 84%, white 16%);
  color: var(--text);
  font-weight: 650;
  line-height: 1.42;
}

.privacy-feature-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.privacy-direct-shot {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--bg-soft) 70%, white 30%);
  box-shadow: 0 24px 60px rgba(74, 103, 138, 0.13);
}

.privacy-direct-shot img {
  width: 142%;
  max-width: none;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: left top;
}

.privacy-demo-section .demo-video-layout {
  margin-top: 22px;
}

.privacy-demo-section {
  display: none;
}

.privacy-demo-heading {
  max-width: 820px;
}

.privacy-demo-heading h2 {
  max-width: 17ch;
}

.privacy-demo-heading p {
  max-width: 76ch;
}

.privacy-direct-bottom-buy {
  padding-bottom: clamp(42px, 7vw, 88px);
}

.privacy-direct-final-card {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: left;
  justify-items: stretch;
}

.privacy-direct-final-card .privacy-direct-card-header {
  justify-content: space-between;
  text-align: left;
}

.privacy-direct-final-card.buy-card h2 {
  font-size: clamp(1.42rem, 2.25vw, 1.94rem);
}

.privacy-direct-final-card .privacy-direct-purchase-list,
.privacy-direct-final-card .privacy-payment-trust {
  justify-content: center;
}

.privacy-direct-final-card .buy-submit {
  width: 100%;
}

.privacy-direct-final-card .buy-action-stack .ghost-link {
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.guided-trial-card .buy-action-stack {
  gap: 18px;
}

.guided-trial-card.buy-card {
  gap: 26px;
  padding-block: clamp(34px, 4.6vw, 46px);
}

.guided-trial-card .privacy-direct-card-header {
  justify-content: center;
  margin-bottom: 6px;
  text-align: center;
}

.guided-trial-card .buy-product-heading {
  justify-content: center;
}

.guided-trial-card .buy-email-field {
  padding: 20px;
}

.guided-trial-card .trial-email-note {
  color: rgba(81, 74, 61, 0.9);
  font-size: 0.775rem;
  font-weight: 660;
  line-height: 1.35;
  margin-top: 1px;
}

.guided-trial-card .trial-email-note a {
  color: #2b5438;
  font-weight: 820;
  text-decoration-color: rgba(43, 84, 56, 0.28);
  text-underline-offset: 3px;
}

.guided-trial-card .trial-email-note a:hover,
.guided-trial-card .trial-email-note a:focus-visible {
  color: #1f3f2a;
  text-decoration-color: currentColor;
}

.guided-trial-card .buy-submit {
  min-height: 58px;
}

.guided-trial-card .buy-card h2,
.guided-trial-card h2 {
  margin-top: 0;
}

.app-store-badge-row {
  display: flex;
  justify-content: center;
}

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

.app-store-badge-link img {
  width: auto;
  height: clamp(40px, 5vw, 54px);
}

.app-store-hero-cta .app-store-badge-link img {
  height: clamp(40px, 5.4vw, 58px);
}

.app-store-download-card .buy-card-header {
  justify-content: center;
}

.app-store-download-card.buy-card h2,
.app-store-download-card h2 {
  max-width: 16ch;
  white-space: normal;
}

.app-store-card-copy,
.app-store-card-note {
  width: min(100%, 620px);
  margin: 0 auto;
  color: rgba(81, 74, 61, 0.88);
  line-height: 1.45;
  text-align: center;
}

.app-store-card-copy {
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  font-weight: 660;
}

.app-store-card-note {
  font-size: 0.82rem;
  font-weight: 620;
}

.trial-process-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 42px;
  margin: -2px 0 0;
  padding: 0;
  list-style: none;
}

.trial-process-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #514a3d;
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.2;
}

.trial-process-number {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(43, 84, 56, 0.24);
  border-radius: 999px;
  background: rgba(43, 84, 56, 0.1);
  color: #2b5438;
  font-size: 0.78rem;
  font-weight: 900;
}

.trial-trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  color: rgba(81, 74, 61, 0.86);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.25;
  list-style: none;
}

.trial-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trial-trust-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(43, 84, 56, 0.5);
}

.buy-now-inline {
  margin: -4px 0 0;
  color: rgba(81, 74, 61, 0.82);
  font-size: 0.92rem;
  font-weight: 560;
  line-height: 1.35;
  text-align: center;
}

.buy-now-inline a {
  color: #2b5438;
  font-weight: 820;
  text-decoration-color: rgba(43, 84, 56, 0.28);
  text-underline-offset: 3px;
}

.buy-now-inline a:hover,
.buy-now-inline a:focus-visible {
  color: #1f3f2a;
  text-decoration-color: currentColor;
}

.guided-trial-card .license-disclosure-inline {
  width: min(100%, 720px);
  max-width: none;
  margin-top: 2px;
}

@media (max-width: 680px) {
  .trial-process-list {
    justify-content: flex-start;
  }

  .trial-trust-list {
    justify-content: flex-start;
  }
}

.result-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.download-result-shell {
  width: min(calc(100% - 32px), 960px);
  min-height: calc(100vh - 72px);
  padding: clamp(26px, 4.5vw, 52px) 0 76px;
}

.download-result-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  margin: 0 auto 28px;
}

.download-result-hero .result-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-inline: auto;
  background: color-mix(in srgb, #22c55e 14%, white 86%);
  color: #16763a;
  border: 1px solid color-mix(in srgb, #22c55e 32%, white 68%);
}

.download-result-hero .result-kicker::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #22c55e;
  color: white;
  font-size: 0.72rem;
  line-height: 1;
}

.download-result-hero h1 {
  width: 100%;
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.download-result-hero p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  line-height: 1.65;
}

.download-result-flow {
  display: grid;
  gap: 18px;
}

.download-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  align-items: stretch;
}

.result-hero {
  min-height: min(680px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 30px;
  align-items: center;
  padding: clamp(38px, 6vw, 86px) 0 50px;
}

.result-hero--compact {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  text-align: center;
}

.result-copy {
  display: grid;
  gap: 18px;
}

.result-kicker {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--badge);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.result-hero--compact .result-kicker {
  margin-inline: auto;
}

.result-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.result-copy p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.65;
}

.result-hero--compact .result-copy p,
.result-hero--compact .cta-row {
  margin-inline: auto;
}

.result-visual {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(74, 103, 138, 0.16);
}

.result-visual img {
  width: 142%;
  max-width: none;
  min-height: 420px;
  object-fit: cover;
  object-position: left top;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 74px;
}

.license-claim-panel {
  grid-column: span 3;
  min-height: 0;
}

.download-result-grid .license-claim-panel {
  grid-column: auto;
}

.purchase-survey-panel {
  grid-column: span 3;
}

.download-survey-panel {
  grid-column: auto;
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 22px 58px rgba(74, 103, 138, 0.12);
}

.download-survey-panel h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.72rem);
}

.purchase-survey-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.purchase-survey-field {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: color-mix(in srgb, var(--bg-elevated) 82%, white 18%);
}

.purchase-survey-field select {
  min-height: 48px;
  border-radius: 14px;
  background-color: color-mix(in srgb, var(--bg) 88%, white 12%);
}

.purchase-survey-status {
  grid-column: 1 / -1;
}

.purchase-survey-submit {
  min-height: 58px;
  padding-inline: 30px;
  white-space: nowrap;
}

.download-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.download-card-button {
  width: 100%;
  justify-content: center;
}

.download-support-note {
  margin: 4px 0 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.download-support-note a {
  color: var(--accent-strong);
  font-weight: 720;
}

.purchase-survey-status {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.purchase-survey-status.is-success {
  color: color-mix(in srgb, var(--accent-strong) 72%, #0f5132 28%);
  font-weight: 720;
}

.purchase-survey-status.is-error {
  color: #9f2d2d;
  font-weight: 720;
}

.license-claim-panel p[data-tone="success"] {
  color: color-mix(in srgb, var(--accent-strong) 72%, #0f5132 28%);
  font-weight: 720;
}

.license-claim-panel p[data-tone="error"] {
  color: #9f2d2d;
  font-weight: 720;
}

.license-claim-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid color-mix(in srgb, var(--accent) 22%, white 78%);
  border-top-color: var(--accent-strong);
  border-radius: 999px;
  animation: harbour-spin 0.82s linear infinite;
}

.license-claim-panel:not([data-state="loading"]) .license-claim-spinner {
  display: none;
}

.license-key-box {
  display: grid;
  gap: 10px;
}

.license-key-box[hidden] {
  display: none;
}

.license-key-copy {
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 72px 13px 14px;
  overflow-wrap: anywhere;
  background: color-mix(in srgb, var(--panel) 74%, white 12%);
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 760;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  line-height: 1.35;
  position: relative;
  text-align: left;
}

.license-key-copy:hover,
.license-key-copy:focus-visible {
  border-color: color-mix(in srgb, var(--accent-strong) 42%, var(--line) 58%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
  outline: none;
}

.license-key-copy::after {
  content: "Copy";
  color: var(--accent-strong);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 780;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.license-key-copy[data-copy-state="copied"]::after {
  content: "Copied";
}

.license-key-copy[data-copy-state="failed"]::after {
  content: "Select";
}

@keyframes harbour-spin {
  to {
    transform: rotate(360deg);
  }
}

.license-key-box span,
.license-help {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.journal-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--panel) 84%, white 10%), transparent);
  border: 1px solid var(--line);
}

.journal-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.journal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.timeline-row strong {
  color: var(--accent-strong);
}

.timeline-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.glow-orb {
  width: clamp(220px, 34vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, color-mix(in srgb, var(--accent) 80%, white 20%), transparent 18%),
    radial-gradient(circle at 45% 45%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 62%),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 74%);
  filter: blur(0.2px);
  opacity: 0.9;
  margin-inline: auto;
}

.poster-stack {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.poster-note {
  max-width: 380px;
  padding: 18px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 680ms ease forwards;
}

.delay-1 {
  animation-delay: 80ms;
}

.delay-2 {
  animation-delay: 160ms;
}

.delay-3 {
  animation-delay: 240ms;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid.two-col,
  .hero-grid.split,
  .buy-hero,
  .buy-grid,
  .result-hero,
  .result-grid,
  .download-result-grid,
  .section-split,
  .feature-grid,
  .panel-grid,
  .compare-grid,
  .footer-cta .panel,
  .site-footer-inner,
  .footer-links,
  .info-grid,
  .founder-story,
  .link-tile-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid-dense,
  .beta-panel,
  .checkout-panel,
  .requirements-grid,
  .purchase-survey-form,
  .form-grid,
  .application-layout {
    grid-template-columns: 1fr;
  }

  .bridge-grid {
    margin-top: 0;
  }

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

  .sidebar,
  .inspector {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .inspector {
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

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

  .topbar-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .draft-nav {
    justify-content: flex-start;
  }

  .hero-shot {
    min-height: 390px;
    padding: 14px 0 14px 14px;
    overflow: hidden;
  }

  .hero-shot--hard-cut {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 0 0 36px;
    border-radius: 24px 0 0 24px;
  }

  .hero-shot--hard-cut::before {
    inset: 7% 0 9% 36px;
  }

  .hero-shot-frame {
    max-width: 100%;
  }

  .hero-shot img {
    width: 168%;
  }

  .hero-shot--hard-cut .hero-shot-frame {
    width: 100%;
  }

  .section-shot {
    min-height: 320px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .section-shot--hard-cut {
    padding-right: 36px;
    border-radius: 0 24px 24px 0;
  }

  .section-shot--hard-cut::before {
    inset: 7% 36px 9% 0;
  }

  .details-shot--tall {
    padding-left: 36px;
    border-radius: 24px 0 0 24px;
  }

  .section-shot img {
    width: 172%;
    margin-left: 0;
  }

  .section-shot--tall .hero-shot-frame,
  .details-shot--tall .hero-shot-frame {
    height: 520px;
  }

  .section-shot--tall .hero-shot-frame img,
  .details-shot--tall .hero-shot-frame img {
    width: 210%;
  }

  .details-shot--tall .hero-shot-frame img {
    width: auto;
    height: 100%;
  }

  .section-shot--reflection .hero-shot-frame {
    height: auto;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .section-shot--reflection .hero-shot-frame img {
    width: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .beta-actions,
  .checkout-actions {
    justify-items: start;
  }

  .launch-download-actions {
    justify-items: start;
    text-align: left;
  }

  .faq-item summary {
    padding-right: 48px;
  }

  .application-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .buy-visual {
    min-height: 360px;
  }

  .buy-visual img {
    min-height: 360px;
  }

  .result-visual img {
    min-height: 320px;
  }

  .buy-card-header {
    display: grid;
  }

  .price-lockup {
    justify-items: start;
    text-align: left;
  }

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

  .buy-requirements-grid {
    grid-template-columns: 1fr;
  }

  .mac-checker-grid {
    grid-template-columns: 1fr;
  }

  .privacy-direct-hero,
  .privacy-direct-card-grid,
  .privacy-pain-layout,
  .proof-stack-section,
  .privacy-product-layout {
    grid-template-columns: 1fr;
  }

  .privacy-direct-hero {
    min-height: 0;
    align-items: start;
  }

  .privacy-direct-section h2 {
    max-width: 14ch;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .support-chat-launcher,
  .support-chat-launcher::before {
    transition: none;
  }

  .support-chat-launcher,
  .support-chat-launcher:hover,
  .support-chat-launcher:focus-visible,
  .support-chat-launcher:active {
    transform: none;
  }
}

.email-capture-popover {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 14px;
  width: min(420px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(39, 53, 42, 0.16);
  border-radius: 18px;
  background: rgba(253, 251, 245, 0.97);
  box-shadow: 0 24px 70px rgba(39, 53, 42, 0.2);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.email-capture-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(39, 53, 42, 0.08);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
}

.email-capture-close:hover {
  background: rgba(39, 53, 42, 0.13);
  color: var(--ink);
}

.email-capture-copy {
  padding-right: 34px;
}

.email-capture-kicker,
.email-capture-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-capture-copy h2 {
  margin: 6px 0 8px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.email-capture-copy p,
.email-capture-trust,
.email-capture-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.email-capture-form {
  display: grid;
  gap: 10px;
}

.email-capture-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.email-capture-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.email-capture-input-row input {
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(39, 53, 42, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
}

.email-capture-input-row input:focus {
  border-color: rgba(86, 113, 80, 0.55);
  outline: 3px solid rgba(86, 113, 80, 0.16);
}

.email-capture-input-row button {
  min-height: 44px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.email-capture-input-row button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.email-capture-status {
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(39, 53, 42, 0.08);
}

.email-capture-status[hidden] {
  display: none;
}

.email-capture-status.is-error {
  background: rgba(122, 47, 35, 0.1);
  color: #7a2f23;
}

.email-capture-status.is-success {
  background: rgba(60, 105, 77, 0.12);
  color: #365f46;
}

.email-capture-secondary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.email-capture-secondary button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.email-capture-no-mac {
  padding: 8px 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.email-capture-no-mac:hover {
  color: var(--ink);
}

.support-chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  color: var(--ink);
}

body:has([data-cookie-consent]) .support-chat-widget:not(.is-expanded) {
  display: none;
}

.support-chat-launcher {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(39, 53, 42, 0.16);
  border-radius: 50%;
  background: #27352a;
  color: #fbf8ee;
  box-shadow: 0 18px 46px rgba(39, 53, 42, 0.25);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.support-chat-launcher::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.28), transparent 54%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.support-chat-launcher:hover,
.support-chat-launcher:focus-visible {
  border-color: rgba(239, 203, 139, 0.38);
  background: #315f40;
  box-shadow:
    0 20px 48px rgba(39, 53, 42, 0.3),
    0 0 0 5px rgba(239, 203, 139, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  outline: none;
  transform: translateY(-3px) scale(1.035);
}

.support-chat-launcher:hover::before,
.support-chat-launcher:focus-visible::before {
  opacity: 1;
}

.support-chat-launcher:active {
  transform: translateY(-1px) scale(1.01);
}

.support-chat-launcher svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
}

.support-chat-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(390px, calc(100vw - 36px));
  height: min(590px, calc(100dvh - 36px));
  overflow: hidden;
  border: 1px solid rgba(39, 53, 42, 0.16);
  border-radius: 18px;
  background: rgba(253, 251, 245, 0.98);
  box-shadow: 0 24px 70px rgba(39, 53, 42, 0.24);
  backdrop-filter: blur(18px);
}

.support-chat-panel[hidden],
.support-chat-launcher[hidden] {
  display: none;
}

.support-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(39, 53, 42, 0.1);
}

.support-chat-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-header h2 {
  margin: 3px 0 0;
  font-size: 1.05rem;
  line-height: 1.15;
}

.support-chat-actions {
  display: flex;
  gap: 6px;
}

.support-chat-actions button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(39, 53, 42, 0.08);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  line-height: 1;
}

.support-chat-actions button:hover {
  background: rgba(39, 53, 42, 0.13);
  color: var(--ink);
}

.support-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding: 14px;
}

.support-chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.support-chat-message p {
  margin: 0;
  white-space: pre-wrap;
}

.support-chat-message.assistant {
  align-self: flex-start;
  background: rgba(39, 53, 42, 0.08);
}

.support-chat-message.user {
  align-self: flex-end;
  background: #27352a;
  color: #fbf8ee;
}

.support-chat-message.is-loading {
  color: var(--muted);
}

.support-chat-handoff {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 750;
}

.support-chat-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 14px 12px;
}

.support-chat-prompts button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(39, 53, 42, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
}

.support-chat-form {
  display: grid;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(39, 53, 42, 0.1);
}

.support-chat-label,
.support-chat-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.support-chat-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.support-chat-input-row textarea {
  min-width: 0;
  max-height: 110px;
  min-height: 44px;
  resize: vertical;
  padding: 11px 12px;
  border: 1px solid rgba(39, 53, 42, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
}

.support-chat-input-row textarea:focus {
  border-color: rgba(86, 113, 80, 0.55);
  outline: 3px solid rgba(86, 113, 80, 0.16);
}

.support-chat-input-row button {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.support-chat-input-row button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.support-chat-disclosure,
.support-chat-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.support-chat-status.is-error {
  color: #7a2f23;
}

.support-chat-status[hidden] {
  display: none;
}

.support-chat-widget.is-open.is-expanded .support-chat-panel {
  width: min(720px, calc(100vw - 36px));
  height: min(760px, calc(100dvh - 36px));
}

.cookie-consent {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 12px;
  width: min(560px, calc(100% - 28px));
  padding: 10px 12px;
  border: 1px solid rgba(39, 53, 42, 0.16);
  border-radius: 14px;
  background: rgba(253, 251, 245, 0.96);
  box-shadow: 0 24px 70px rgba(39, 53, 42, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-consent.is-expanded {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(720px, calc(100% - 36px));
  padding: 18px;
  border-radius: 18px;
}

.cookie-consent h2 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.1;
}

.cookie-consent p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.cookie-consent a {
  display: inline;
  margin-left: 0.35em;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.cookie-consent.is-expanded h2 {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.2;
}

.cookie-consent.is-expanded p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-consent.is-expanded a {
  display: inline-block;
  margin-top: 8px;
  margin-left: 0;
  font-size: 0.9rem;
}

.cookie-consent:not(.is-expanded) h2 {
  display: none;
}

.cookie-consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
}

.cookie-consent-options[hidden],
.cookie-consent-actions button[hidden] {
  display: none;
}

.cookie-consent-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(39, 53, 42, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
}

.cookie-consent-options input {
  accent-color: var(--accent);
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-consent.is-expanded .cookie-consent-actions {
  justify-content: flex-end;
}

.cookie-consent-actions button,
.cookie-settings-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.cookie-consent-actions button {
  min-height: 36px;
  padding: 8px 13px;
  font-size: 0.86rem;
}

.cookie-settings-button {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 70;
  padding: 8px 11px;
  border: 1px solid rgba(39, 53, 42, 0.16);
  border-radius: 999px;
  background: rgba(253, 251, 245, 0.92);
  color: var(--muted);
  box-shadow: 0 12px 34px rgba(39, 53, 42, 0.12);
  font-size: 0.78rem;
  font-weight: 650;
}

@media (max-width: 640px) {
  .demo-video-section {
    padding-top: 14px;
  }

  .demo-video-frame {
    border-radius: 14px;
  }

  .page-shell,
  .buy-shell,
  .long-demo-shell,
  .result-shell,
  .topbar-inner,
  .site-footer-inner {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .long-demo-hero {
    padding-top: 14px;
  }

  .long-demo-description {
    text-align: left;
  }

  .topbar-inner {
    min-height: 68px;
    padding: 10px 0;
    flex-direction: row;
    align-items: center;
  }

  .brand-lockup {
    gap: 10px;
    min-width: 0;
  }

  .brand-lockup img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tag {
    font-size: 0.76rem;
  }

  .topbar-actions {
    width: auto;
    margin-left: auto;
    flex-direction: row;
    align-items: center;
  }

  .draft-nav {
    display: none;
  }

  .topbar-cta {
    padding: 9px 11px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .privacy-direct-shell {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .privacy-direct-hero {
    gap: 22px;
    padding: 22px 0 32px;
  }

  .privacy-direct-hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.7vw, 3.12rem);
    line-height: 0.96;
  }

  .privacy-direct-hero p,
  .privacy-direct-section-copy p,
  .privacy-bottom-heading p {
    font-size: 1rem;
    line-height: 1.56;
  }

  .privacy-direct-proof-row,
  .privacy-direct-purchase-list {
    gap: 8px;
  }

  .privacy-direct-proof-row span,
  .privacy-direct-purchase-list li {
    border-radius: 12px;
    font-size: 0.84rem;
  }

  .privacy-direct-proof-row span:first-child {
    display: none;
  }

  .privacy-hero-peek {
    display: none;
    background-image: none;
  }

  .privacy-direct-card-header {
    display: grid;
    justify-content: stretch;
  }

  .privacy-direct-card-header .price-lockup {
    justify-items: start;
    text-align: left;
  }

  .privacy-direct-section {
    padding: 40px 0;
    scroll-margin-top: 84px;
  }

  .privacy-demo-embed {
    scroll-margin-top: 84px;
  }

  .privacy-direct-section h2,
  .privacy-bottom-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1;
  }

  .product-carousel-heading h2 {
    font-size: clamp(2.05rem, 9vw, 2.75rem);
    max-width: 100%;
  }

  .feature-carousel {
    margin-top: 18px;
  }

  .feature-carousel-track {
    gap: 10px;
    padding-bottom: 14px;
  }

  .feature-carousel-card {
    flex-basis: calc(100% - 18px);
  }

  .feature-carousel-card {
    border-radius: 18px;
  }

  .feature-carousel-card img {
    aspect-ratio: 16 / 10.5;
  }

  .feature-carousel-copy {
    padding: 12px 13px 14px;
  }

  .feature-carousel-copy h3 {
    font-size: 0.98rem;
  }

  .feature-carousel-copy p {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .feature-carousel-controls {
    display: none;
  }

  .comparison-table-wrap {
    margin-top: 18px;
    border-radius: 16px;
  }

  .comparison-table {
    min-width: 680px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
  }

  .comparison-note {
    padding: 12px 14px 14px;
  }

  .privacy-direct-card-grid {
    gap: 10px;
    margin-top: 18px;
  }

  .proof-stack-section,
  .privacy-product-layout {
    gap: 20px;
  }

  .privacy-proof-list li {
    min-height: 0;
  }

  .privacy-direct-shot {
    min-height: 230px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 18px 0 0 18px;
  }

  .privacy-direct-shot img {
    width: 178%;
    min-height: 230px;
  }

  .privacy-demo-section .demo-video-layout {
    margin-top: 18px;
  }

  .privacy-demo-heading h2 {
    max-width: 14ch;
  }

  .hero h1 {
    max-width: 11ch;
  }

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

  .hero h1.light-hero-title {
    font-size: clamp(3.1rem, 14vw, 3.95rem);
    max-width: 15ch;
    line-height: 1.02;
  }

  .buy-hero {
    display: none;
  }

  .buy-grid {
    padding-top: 18px;
  }

  .buy-hero h1 {
    font-size: clamp(2.85rem, 12vw, 3.8rem);
    max-width: 10ch;
  }

  .buy-hero p {
    font-size: 1rem;
  }

  .hero-price-card {
    width: fit-content;
    max-width: 100%;
    grid-template-columns: auto auto;
    gap: 8px 14px;
    align-items: center;
  }

  .hero-price-card span:last-child {
    justify-self: start;
  }

  .buy-visual {
    display: none;
  }

  .result-hero {
    min-height: 0;
    padding-top: 34px;
  }

  .download-result-shell {
    padding-top: 34px;
  }

  .download-result-hero h1 {
    font-size: clamp(2.85rem, 12vw, 3.8rem);
  }

  .purchase-survey-form {
    grid-template-columns: 1fr;
  }

  .purchase-survey-submit {
    width: 100%;
  }

  .result-copy h1 {
    font-size: clamp(2.85rem, 12vw, 3.8rem);
  }

  .result-visual {
    border-radius: 24px;
  }

  .result-visual img {
    width: 164%;
    min-height: 260px;
  }

  .buy-card {
    gap: 14px;
    padding: 18px;
  }

  .buy-card h2 {
    white-space: normal;
  }

  .buy-card-header {
    order: 1;
    gap: 12px;
  }

  .buy-product-heading {
    gap: 12px;
  }

  .buy-product-heading img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .price-lockup {
    gap: 5px;
  }

  .buy-email-field {
    order: 3;
    padding: 14px;
    border-radius: 16px;
  }

  .buy-action-stack {
    order: 4;
  }

  .buy-feature-list {
    order: 5;
    gap: 8px;
  }

  .buy-feature-list li {
    min-height: 0;
    padding: 11px 12px;
    font-size: 0.94rem;
  }

  .requirements-disclosure {
    order: 6;
  }

  .requirements-disclosure summary {
    padding: 14px 42px 14px 16px;
  }

  .buy-requirements-grid {
    padding: 10px;
  }

  .buy-requirement-card {
    padding: 12px;
  }

  .requirements-note {
    padding: 0 16px 14px;
    font-size: 0.9rem;
  }

  .mac-checker {
    padding: 12px;
  }

  .mac-checker-result {
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .mac-checker .requirements-note {
    padding: 0 2px;
  }

  .license-disclosure-inline {
    font-size: 0.78rem;
  }

  .application-hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero h1.application-title {
    font-size: clamp(2.8rem, 11.5vw, 3.45rem);
    max-width: 100%;
    line-height: 1.02;
  }

  .application-signals {
    margin-top: 20px;
  }

  .application-hero-actions {
    display: flex;
    margin-top: 18px;
  }

  .application-sidecard {
    display: none;
  }

  .ios-beta-page .application-layout {
    grid-template-columns: 1fr;
  }

  .application-section {
    padding-bottom: 56px;
    scroll-margin-top: 76px;
  }

  .application-requirements {
    padding-bottom: 56px;
    scroll-margin-top: 76px;
  }

  .application-form,
  .system-panel {
    padding: 24px;
  }

  .application-form {
    gap: 22px;
  }

  .field input,
  .field textarea,
  .field select,
  .country-trigger {
    border-radius: 14px;
    padding: 13px 15px;
  }

  .field textarea {
    min-height: 96px;
  }

  .optional-notes {
    display: none;
  }

  .application-support {
    display: none;
  }

  .check-field,
  .turnstile-block {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .check-field span {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-shot {
    min-height: 300px;
    border-radius: 24px;
    padding: 10px 0 10px 10px;
  }

  .hero-shot--hard-cut {
    padding: 0 0 0 36px;
    border-radius: 24px 0 0 24px;
  }

  .hero-shot::before {
    inset: 8% 2% 8% 0;
    border-radius: 24px;
  }

  .hero-shot--hard-cut::before {
    inset: 8% 0 8% 36px;
  }

  .hero-shot img {
    width: 172%;
    margin-left: 0;
  }

  .section-shot--tall .hero-shot-frame,
  .details-shot--tall .hero-shot-frame {
    height: 320px;
  }

  .section-shot--tall .hero-shot-frame img,
  .details-shot--tall .hero-shot-frame img {
    width: 210%;
  }

  .details-shot--tall .hero-shot-frame img {
    width: auto;
    height: 100%;
  }

  .section-shot--reflection .hero-shot-frame {
    height: auto;
  }

  .section-shot--reflection .hero-shot-frame img {
    width: 100%;
  }

  .email-capture-popover {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100dvh - 24px);
    overflow: auto;
    padding: 18px;
  }

  .email-capture-popover.has-cookie-banner {
    bottom: 204px;
    max-height: calc(100dvh - 216px);
  }

  .support-chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .support-chat-launcher {
    width: 54px;
    height: 54px;
  }

  .support-chat-panel {
    width: calc(100vw - 24px);
    height: min(440px, 58dvh);
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
  }

  .support-chat-widget.is-open.is-expanded {
    inset: 0;
    display: grid;
    place-items: stretch;
    padding: 8px;
  }

  .support-chat-widget.is-open.is-expanded .support-chat-panel {
    width: 100%;
    height: 100%;
    border-radius: 16px;
  }

  .support-chat-header {
    padding: 14px;
  }

  .support-chat-message {
    max-width: 92%;
  }

  .email-capture-input-row {
    grid-template-columns: 1fr;
  }

  .email-capture-input-row button {
    width: 100%;
  }

  .email-capture-secondary {
    align-items: stretch;
  }

  .email-capture-secondary .ghost-link {
    flex: 1 1 130px;
    justify-content: center;
  }

  .email-capture-no-mac {
    flex: 1 1 170px;
    text-align: center;
  }

  .cookie-consent {
    left: 8px;
    bottom: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 16px);
    padding: 8px 9px;
    gap: 7px 8px;
  }

  .cookie-consent h2 {
    font-size: 0.76rem;
  }

  .cookie-consent p,
  .cookie-consent a {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .cookie-consent.is-expanded {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    padding: 14px;
    left: 12px;
    bottom: 12px;
  }

  .cookie-consent-actions {
    justify-content: flex-end;
    gap: 7px;
  }

  .cookie-consent-actions button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .cookie-consent.is-expanded .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent.is-expanded .cookie-consent-actions button {
    flex: 1 1 130px;
  }
}

body.navy-launch-page[data-theme="navy"] {
  color-scheme: dark;
  --bg: #030813;
  --bg-chrome: #091220;
  --bg-elevated: #0c1624;
  --bg-soft: #132033;
  --panel: rgba(122, 162, 214, 0.09);
  --line: rgba(184, 204, 235, 0.18);
  --text: #f2f7ff;
  --muted: #b7c6dc;
  --accent: #6faeff;
  --accent-strong: #a8ceff;
  --badge: rgba(111, 174, 255, 0.15);
  --success: #62d391;
  --hero-wash:
    radial-gradient(circle at 78% 12%, rgba(74, 144, 226, 0.12), transparent 34%),
    radial-gradient(circle at 16% 42%, rgba(111, 174, 255, 0.06), transparent 31%),
    linear-gradient(135deg, #07111f 0%, #040a14 46%, #02060d 100%);
  --shadow: 0 28px 78px rgba(0, 0, 0, 0.42);
}

.navy-launch-page .topbar {
  background: rgba(7, 14, 25, 0.9);
  border-bottom-color: rgba(184, 204, 235, 0.18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.navy-launch-page .brand-lockup img,
.navy-launch-page .buy-product-heading img {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(168, 206, 255, 0.18);
}

.navy-launch-page .brand-name,
.navy-launch-page .privacy-direct-hero h1,
.navy-launch-page .privacy-direct-section h2,
.navy-launch-page .feature-carousel-copy h3,
.navy-launch-page .privacy-proof-list strong,
.navy-launch-page .buy-card h2,
.navy-launch-page .faq-item summary {
  color: var(--text);
}

.navy-launch-page .brand-tag,
.navy-launch-page .privacy-direct-hero p,
.navy-launch-page .privacy-direct-section-copy p,
.navy-launch-page .feature-carousel-copy p,
.navy-launch-page .privacy-proof-list span,
.navy-launch-page .faq-item p,
.navy-launch-page .license-disclosure-inline,
.navy-launch-page .privacy-direct-stripe-note,
.navy-launch-page .price-note,
.navy-launch-page .copyright-notice {
  color: var(--muted);
}

.navy-launch-page .draft-nav a,
.navy-launch-page .ghost-link {
  background: rgba(15, 25, 39, 0.74);
  border-color: rgba(184, 204, 235, 0.17);
  color: #d5e2f5;
}

.navy-launch-page .draft-nav a:hover,
.navy-launch-page .ghost-link:hover {
  background: rgba(25, 39, 59, 0.92);
  border-color: rgba(168, 206, 255, 0.36);
  color: var(--text);
}

.navy-launch-page .primary-link,
.navy-launch-page .buy-submit {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #2f6fb6 0%, #194b86 100%);
  border: 1px solid rgba(168, 206, 255, 0.34);
  color: #f4f8ff;
  box-shadow:
    0 12px 28px rgba(21, 72, 132, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(4, 12, 24, 0.38);
  text-shadow: 0 1px 1px rgba(3, 9, 18, 0.34);
}

.navy-launch-page .primary-link:hover,
.navy-launch-page .buy-submit:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #3a7bc5 0%, #1d5598 100%);
  border-color: rgba(191, 221, 255, 0.46);
  box-shadow:
    0 16px 34px rgba(21, 72, 132, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(4, 12, 24, 0.4);
}

.navy-launch-page .buy-submit[disabled] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(47, 111, 182, 0.52), rgba(25, 75, 134, 0.52));
  border-color: rgba(168, 206, 255, 0.14);
  color: rgba(226, 237, 251, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow: none;
}

.navy-launch-page .privacy-direct-shell {
  background: transparent;
}

.navy-launch-page .privacy-direct-hero {
  align-items: start;
}

.navy-launch-page .privacy-direct-hero h1 {
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.navy-launch-page .privacy-direct-proof-row span,
.navy-launch-page .privacy-direct-purchase-list li {
  background: rgba(16, 27, 42, 0.9);
  border: 1px solid rgba(184, 204, 235, 0.18);
  color: #f4f8ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.navy-launch-page .privacy-hero-peek {
  border-top-left-radius: 8px;
  background-color: rgba(5, 11, 22, 0.7);
  background-image: url("./assets/navy-journal-reader-hero.png");
  background-position: left top;
  background-size: 175% auto;
  box-shadow:
    inset -34px 0 32px -26px rgba(2, 6, 13, 0.86),
    inset 0 -34px 32px -26px rgba(2, 6, 13, 0.9);
}

.navy-launch-page .privacy-hero-peek::before {
  background: none;
  box-shadow:
    inset -1px 0 0 rgba(168, 206, 255, 0.12),
    inset 0 -1px 0 rgba(168, 206, 255, 0.12);
}

.navy-launch-page .buy-card,
.navy-launch-page .feature-carousel-card,
.navy-launch-page .privacy-proof-list div,
.navy-launch-page .faq-item,
.navy-launch-page .fine-print-panel {
  background:
    linear-gradient(180deg, rgba(24, 36, 54, 0.92), rgba(12, 20, 32, 0.94)),
    var(--panel);
  border-color: rgba(184, 204, 235, 0.17);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.navy-launch-page .buy-card {
  background:
    radial-gradient(circle at 94% 6%, rgba(111, 174, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(26, 38, 56, 0.97), rgba(13, 22, 35, 0.98));
}

.navy-launch-page .privacy-direct-final-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(111, 174, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(26, 38, 56, 0.97), rgba(13, 22, 35, 0.98));
}

.navy-launch-page .muted-label,
.navy-launch-page .privacy-direct-kicker,
.navy-launch-page .feature-carousel-copy span,
.navy-launch-page .footer-label {
  color: var(--accent-strong);
}

.navy-launch-page .price-label {
  justify-self: end;
  width: fit-content;
  max-width: 14.5em;
  padding: 5px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(9, 18, 31, 0.82);
  color: #f4f8ff;
  border: 1px solid rgba(184, 204, 235, 0.17);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navy-launch-page .price-amount {
  color: #f7fbff;
}

.navy-launch-page .check-field {
  background: rgba(8, 15, 25, 0.54);
  border-color: rgba(184, 204, 235, 0.18);
}

.navy-launch-page .check-field span {
  color: #edf5ff;
}

.navy-launch-page .check-field input {
  accent-color: var(--accent);
}

.navy-launch-page .privacy-payment-trust {
  background: rgba(8, 15, 25, 0.42);
  border-color: rgba(184, 204, 235, 0.16);
}

.navy-launch-page .payment-brand {
  background: rgba(242, 247, 255, 0.94);
  border-color: rgba(184, 204, 235, 0.28);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.navy-launch-page .feature-carousel-card picture,
.navy-launch-page .demo-video-frame {
  background: #07101b;
  border-color: rgba(184, 204, 235, 0.17);
}

.navy-launch-page .feature-carousel-card picture {
  overflow: hidden;
}

.navy-launch-page .demo-video-frame[data-video-poster="true"] {
  background-image:
    linear-gradient(180deg, rgba(3, 8, 19, 0.18), rgba(3, 8, 19, 0.42)),
    var(--demo-video-poster);
  background-position: center;
  background-size: cover;
}

.navy-launch-page .feature-carousel-card img {
  object-fit: cover;
  object-position: left top;
}

.navy-launch-page .feature-carousel-button {
  background: rgba(16, 27, 42, 0.92);
  color: #e8f0ff;
  border-color: rgba(184, 204, 235, 0.2);
}

.navy-launch-page .feature-carousel-dot {
  background: rgba(184, 204, 235, 0.22);
}

.navy-launch-page .feature-carousel-dot.is-active {
  background: var(--accent);
}

.navy-launch-page .privacy-founder-proof {
  background: rgba(8, 15, 25, 0.5);
  border-color: rgba(184, 204, 235, 0.16);
}

.navy-launch-page .privacy-founder-proof figcaption {
  color: #dbe9fb;
}

.navy-launch-page .demo-video-placeholder {
  background:
    linear-gradient(180deg, rgba(3, 8, 19, 0.2), rgba(3, 8, 19, 0.7)),
    var(--demo-video-poster, url("./assets/carousel/memory-chat-desktop.jpg"));
  background-position: center;
  background-size: cover;
}

.navy-launch-page .demo-video-placeholder span {
  color: var(--accent-strong);
}

.navy-launch-page .deep-dive-link {
  background: rgba(16, 27, 42, 0.9);
  border-color: rgba(168, 206, 255, 0.22);
  color: #dbe9fb;
}

.navy-launch-page .fine-print-panel a,
.navy-launch-page .footer-column a {
  color: #dceaff;
}

.navy-launch-page .fine-print-panel a:hover,
.navy-launch-page .footer-column a:hover {
  color: var(--accent-strong);
}

.navy-launch-page .site-footer {
  background:
    linear-gradient(180deg, rgba(7, 12, 20, 0.96), rgba(10, 17, 28, 1));
  border-top-color: rgba(184, 204, 235, 0.14);
}

.navy-launch-page .cookie-consent {
  background: rgba(12, 20, 32, 0.96);
  border-color: rgba(184, 204, 235, 0.2);
  color: var(--text);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
}

.navy-launch-page .cookie-consent p,
.navy-launch-page .cookie-consent a {
  color: var(--muted);
}

.navy-launch-page .cookie-consent label {
  background: rgba(8, 15, 25, 0.6);
  border-color: rgba(184, 204, 235, 0.18);
  color: #dbe9fb;
}

@media (max-width: 720px) {
  .navy-launch-page .privacy-direct-hero {
    background: transparent;
  }

  .navy-launch-page .privacy-hero-peek {
    min-height: 250px;
    background-size: cover;
    background-position: left top;
  }

  .navy-launch-page .privacy-direct-card-header .price-lockup {
    background: rgba(8, 15, 25, 0.42);
    border-color: rgba(184, 204, 235, 0.16);
  }

  .navy-launch-page .privacy-direct-card-header .price-label {
    justify-self: start;
    max-width: 13.5em;
  }
}

body.inkwell-launch-page[data-theme="inkwell"] {
  background-color: var(--bg);
  background-image: var(--hero-wash);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.inkwell-launch-page .topbar {
  background: rgba(254, 252, 247, 0.9);
  border-bottom-color: rgba(109, 95, 72, 0.2);
  box-shadow: 0 16px 38px rgba(78, 62, 37, 0.08);
}

.inkwell-launch-page .brand-lockup img,
.inkwell-launch-page .buy-product-heading img {
  box-shadow: 0 14px 30px rgba(78, 62, 37, 0.18), 0 0 0 1px rgba(211, 203, 185, 0.82);
}

.inkwell-launch-page .brand-name,
.inkwell-launch-page .privacy-direct-hero h1,
.inkwell-launch-page .privacy-direct-section h2,
.inkwell-launch-page .buy-card h2,
.inkwell-launch-page .price-amount {
  color: #18150f;
}

.inkwell-launch-page .brand-name,
.inkwell-launch-page .privacy-direct-hero h1,
.inkwell-launch-page .privacy-direct-section h2,
.inkwell-launch-page .feature-carousel-copy h3,
.inkwell-launch-page .privacy-proof-list strong,
.inkwell-launch-page .buy-card h2,
.inkwell-launch-page .faq-item summary {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.inkwell-launch-page .brand-name {
  font-size: 1.26rem;
}

.inkwell-launch-page .brand-tag,
.inkwell-launch-page .privacy-direct-hero p,
.inkwell-launch-page .privacy-direct-section-copy p,
.inkwell-launch-page .feature-carousel-copy p,
.inkwell-launch-page .privacy-proof-list span,
.inkwell-launch-page .faq-item p,
.inkwell-launch-page .license-disclosure-inline,
.inkwell-launch-page .privacy-direct-stripe-note,
.inkwell-launch-page .price-note,
.inkwell-launch-page .copyright-notice {
  color: #514a3d;
}

.inkwell-launch-page .draft-nav a,
.inkwell-launch-page .ghost-link {
  background: rgba(254, 252, 247, 0.74);
  border-color: rgba(109, 95, 72, 0.2);
  color: #5d5446;
}

.inkwell-launch-page .draft-nav a:hover,
.inkwell-launch-page .ghost-link:hover {
  background: #f1ecdf;
  border-color: rgba(43, 84, 56, 0.28);
  color: #18150f;
}

.inkwell-launch-page .primary-link,
.inkwell-launch-page .buy-submit {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, #315f40 0%, #2a5237 100%);
  border: 1px solid rgba(28, 66, 42, 0.34);
  color: #f7f3ea;
  box-shadow:
    0 12px 24px rgba(43, 84, 56, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(20, 45, 29, 0.2);
  text-shadow: 0 1px 1px rgba(20, 45, 29, 0.2);
}

.inkwell-launch-page .primary-link:hover,
.inkwell-launch-page .buy-submit:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, #356846 0%, #2b5438 100%);
  border-color: rgba(28, 66, 42, 0.42);
  box-shadow:
    0 14px 28px rgba(43, 84, 56, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(20, 45, 29, 0.22);
}

.inkwell-launch-page .buy-submit[disabled] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, rgba(55, 91, 66, 0.42), rgba(48, 78, 58, 0.42));
  border-color: rgba(28, 66, 42, 0.14);
  color: rgba(247, 243, 234, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.inkwell-launch-page .privacy-direct-shell {
  background: transparent;
}

.inkwell-launch-page .privacy-direct-hero {
  align-items: start;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2.1vw, 24px);
  justify-items: center;
}

.inkwell-launch-page .privacy-direct-hero h1 {
  max-width: 16.6ch;
  margin-inline: auto;
  font-size: clamp(3.05rem, 5.35vw, 4.15rem);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.06;
  text-shadow: 0 16px 40px rgba(78, 62, 37, 0.08);
}

.inkwell-launch-page .privacy-direct-hero-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.8vw, 20px);
  justify-items: center;
  width: 100%;
}

.inkwell-launch-page .privacy-direct-hero-support {
  justify-items: center;
  max-width: 650px;
  text-align: center;
}

.inkwell-launch-page .hero-compact-cta {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-block: clamp(10px, 1.4vw, 18px) clamp(14px, 2vw, 26px);
}

.inkwell-launch-page .hero-compact-button {
  min-height: 44px;
  padding: 12px 30px;
  white-space: nowrap;
}

.inkwell-launch-page .hero-compact-guarantee {
  color: rgba(81, 74, 61, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.inkwell-launch-page .privacy-direct-hero-body > .privacy-direct-checklist {
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: clamp(14px, 2.6vw, 32px);
  margin-top: 0;
}

.inkwell-launch-page .privacy-direct-proof-row span,
.inkwell-launch-page .privacy-direct-purchase-list li {
  background: rgba(254, 252, 247, 0.86);
  border: 1px solid rgba(109, 95, 72, 0.2);
  color: #514a3d;
  box-shadow: 0 8px 20px rgba(78, 62, 37, 0.09);
}

.inkwell-launch-page .privacy-hero-peek {
  width: min(100%, 1180px);
  height: auto;
  overflow: visible;
  pointer-events: none;
  user-select: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.inkwell-launch-page .privacy-hero-peek::before {
  display: none;
}

.inkwell-launch-page .privacy-hero-peek img {
  position: static;
  width: 100%;
  min-width: 0;
  height: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  image-rendering: auto;
  pointer-events: none;
  user-select: none;
}

.inkwell-launch-page .buy-card,
.inkwell-launch-page .feature-carousel-card,
.inkwell-launch-page .comparison-table-wrap,
.inkwell-launch-page .faq-item,
.inkwell-launch-page .fine-print-panel {
  background: rgba(255, 254, 251, 0.82);
  border-color: rgba(109, 95, 72, 0.16);
  box-shadow: 0 18px 42px rgba(78, 62, 37, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.inkwell-launch-page .local-ai-feature-copy h3 {
  color: #18150f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.inkwell-launch-page .local-ai-feature-copy p {
  color: #514a3d;
}

.inkwell-launch-page .local-ai-feature-shot {
  border-color: rgba(109, 95, 72, 0.16);
  box-shadow:
    0 18px 36px rgba(78, 62, 37, 0.12),
    0 36px 86px rgba(78, 62, 37, 0.16),
    inset 0 0 0 1px rgba(109, 95, 72, 0.16);
}

.inkwell-launch-page .buy-card {
  background:
    radial-gradient(circle at 92% 6%, rgba(168, 107, 26, 0.05), transparent 28%),
    rgba(255, 254, 251, 0.86);
}

.inkwell-launch-page .privacy-direct-final-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(43, 84, 56, 0.04), transparent 34%),
    rgba(255, 254, 251, 0.86);
}

.inkwell-launch-page .muted-label,
.inkwell-launch-page .privacy-direct-kicker,
.inkwell-launch-page .feature-carousel-copy span,
.inkwell-launch-page .footer-label {
  color: #806f55;
}

.inkwell-launch-page .price-label {
  justify-self: end;
  width: fit-content;
  max-width: 14.5em;
  padding: 5px 10px;
  background: #e6eadf;
  color: #2b5438;
  border: 1px solid rgba(43, 84, 56, 0.18);
}

.inkwell-launch-page .check-field {
  background: rgba(236, 231, 220, 0.62);
  border-color: rgba(109, 95, 72, 0.2);
}

.inkwell-launch-page .check-field span {
  color: #514a3d;
}

.inkwell-launch-page .check-field input {
  accent-color: #2b5438;
}

.inkwell-info-page[data-theme="inkwell"] {
  background-color: var(--bg);
  background-image: var(--hero-wash);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.inkwell-info-page .page-shell {
  width: min(calc(100% - 32px), 1040px);
}

.inkwell-info-page .info-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(42px, 7vw, 92px) 0 clamp(40px, 5vw, 64px);
}

.inkwell-info-page .info-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.48fr);
  gap: clamp(28px, 5vw, 64px);
}

.inkwell-info-page .info-copy {
  gap: 20px;
}

.inkwell-info-page .reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.inkwell-info-page .info-title,
.inkwell-info-page .section-heading h2 {
  color: #18150f;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 16px 40px rgba(78, 62, 37, 0.08);
}

.inkwell-info-page .info-title {
  max-width: 12.5ch;
  font-size: clamp(2.7rem, 6.5vw, 4.7rem);
}

.inkwell-info-page .primary-link {
  color: #ffffff;
}

.inkwell-info-page .info-copy p,
.inkwell-info-page .section-heading p,
.inkwell-info-page .info-list,
.inkwell-info-page .policy-list,
.inkwell-info-page .support-list,
.inkwell-info-page .info-panel p,
.inkwell-info-page .link-tile p {
  color: #514a3d;
}

.inkwell-info-page .info-sidecard,
.inkwell-info-page .info-panel,
.inkwell-info-page .link-tile {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.inkwell-info-page .info-sidecard {
  align-self: end;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(109, 95, 72, 0.22);
}

.inkwell-info-page .info-sidecard h3,
.inkwell-info-page .info-panel h3,
.inkwell-info-page .link-tile strong {
  color: #18150f;
  font-weight: 400;
}

.inkwell-info-page .policy-list li::marker,
.inkwell-info-page .info-list li::marker {
  color: #806f55;
}

.inkwell-info-page .info-panel a {
  color: #2b5438;
  font-weight: 700;
}

.inkwell-info-page .content-section {
  padding: clamp(34px, 5vw, 56px) 0;
  border-top: 1px solid rgba(109, 95, 72, 0.16);
}

.inkwell-info-page .panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.inkwell-info-page .content-stack {
  gap: 0;
}

.inkwell-info-page .content-stack .info-panel {
  padding: 22px 0;
}

.inkwell-info-page .content-stack .info-panel + .info-panel {
  border-top: 1px solid rgba(109, 95, 72, 0.14);
}

.inkwell-info-page .content-stack .info-panel:first-child {
  padding-top: 0;
}

.inkwell-info-page .content-stack .info-panel:last-child {
  padding-bottom: 0;
}

.inkwell-info-page .link-tile-grid {
  gap: clamp(22px, 4vw, 46px);
}

.inkwell-info-page .footer-column a {
  overflow-wrap: anywhere;
}

.inkwell-info-page .link-tile {
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.inkwell-info-page .link-tile:hover {
  transform: none;
}

.inkwell-info-page .link-tile:hover strong {
  color: #2b5438;
}

.inkwell-launch-page .privacy-payment-trust {
  background: rgba(252, 250, 245, 0.64);
  border-color: rgba(109, 95, 72, 0.14);
}

.inkwell-launch-page .payment-brand {
  background: #fffefb;
  border-color: rgba(109, 95, 72, 0.14);
  box-shadow: 0 6px 12px rgba(78, 62, 37, 0.05);
}

.inkwell-launch-page .feature-carousel-card picture,
.inkwell-launch-page .demo-video-frame {
  background: #f7f4ed;
  border-color: rgba(109, 95, 72, 0.16);
}

.inkwell-launch-page .comparison-table thead th {
  background: rgba(255, 254, 251, 0.92);
  color: #18150f;
}

.inkwell-launch-page .comparison-table th,
.inkwell-launch-page .comparison-table td,
.inkwell-launch-page .comparison-note {
  border-color: rgba(109, 95, 72, 0.18);
}

.inkwell-launch-page .comparison-table tbody tr:nth-child(even) {
  background: rgba(242, 238, 229, 0.18);
}

.inkwell-launch-page .comparison-mark--yes {
  background: #2b5438;
  color: #f7f3ea;
}

.inkwell-launch-page .comparison-mark--no {
  background: rgba(138, 64, 68, 0.12);
  color: #8a4044;
}

.inkwell-launch-page .feature-carousel-card img {
  object-fit: cover;
  object-position: left top;
}

.inkwell-launch-page .feature-carousel-button {
  background: rgba(254, 252, 247, 0.94);
  color: #18150f;
  border-color: rgba(109, 95, 72, 0.22);
  box-shadow: 0 14px 30px rgba(78, 62, 37, 0.14);
}

.inkwell-launch-page .feature-carousel-button:hover,
.inkwell-launch-page .feature-carousel-button:focus-visible {
  color: #2b5438;
  border-color: rgba(43, 84, 56, 0.26);
}

.inkwell-launch-page .feature-carousel-dot {
  background: rgba(81, 74, 61, 0.24);
}

.inkwell-launch-page .feature-carousel-dot[aria-current="true"],
.inkwell-launch-page .feature-carousel-dot.is-active {
  background: #2b5438;
}

.inkwell-launch-page .privacy-founder-proof {
  background: #fefcf7;
  border-color: rgba(109, 95, 72, 0.2);
}

.inkwell-launch-page .privacy-founder-proof figcaption {
  color: #514a3d;
}

.inkwell-launch-page .demo-video-frame[data-video-poster="true"] {
  background-image:
    linear-gradient(180deg, rgba(24, 21, 15, 0.06), rgba(43, 84, 56, 0.16)),
    var(--demo-video-poster);
  background-position: center;
  background-size: cover;
}

.inkwell-launch-page .demo-video-placeholder {
  background:
    linear-gradient(180deg, rgba(24, 21, 15, 0.08), rgba(24, 21, 15, 0.42)),
    var(--demo-video-poster, url("./assets/inkwell/nocturne-chat-followup-desktop.jpg?v=20260527crop1"));
  background-position: center;
  background-size: cover;
}

.inkwell-launch-page .demo-video-placeholder span {
  color: #f5ecd6;
}

.inkwell-launch-page .deep-dive-link {
  background: rgba(254, 252, 247, 0.86);
  border-color: rgba(43, 84, 56, 0.2);
  color: #2b5438;
}

.inkwell-launch-page .fine-print-panel a,
.inkwell-launch-page .footer-column a {
  color: #2b5438;
}

.inkwell-launch-page .fine-print-panel a:hover,
.inkwell-launch-page .footer-column a:hover {
  color: #806f55;
}

.inkwell-launch-page .site-footer {
  background:
    linear-gradient(180deg, rgba(236, 231, 220, 0.94), rgba(241, 236, 223, 1));
  border-top-color: rgba(109, 95, 72, 0.18);
}

.inkwell-launch-page .cookie-consent {
  background: rgba(254, 252, 247, 0.96);
  border-color: rgba(109, 95, 72, 0.22);
  color: #18150f;
  box-shadow: 0 24px 58px rgba(78, 62, 37, 0.18);
}

.inkwell-launch-page .cookie-consent p,
.inkwell-launch-page .cookie-consent a {
  color: #514a3d;
}

.inkwell-launch-page .cookie-consent label {
  background: rgba(236, 231, 220, 0.58);
  border-color: rgba(109, 95, 72, 0.18);
  color: #514a3d;
}

.purchase-result-page.inkwell-launch-page[data-theme="inkwell"] {
  background-color: var(--bg);
  background-image: var(--hero-wash);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.purchase-result-page.inkwell-launch-page .download-result-shell {
  width: min(calc(100% - 32px), 820px);
  padding-top: clamp(34px, 5vw, 64px);
}

.purchase-result-page.inkwell-launch-page .download-result-grid {
  grid-template-columns: minmax(0, 1fr);
}

.purchase-result-page.inkwell-launch-page .download-result-hero .result-kicker {
  background: rgba(43, 84, 56, 0.1);
  border-color: rgba(43, 84, 56, 0.22);
  color: #2b5438;
  box-shadow: 0 10px 24px rgba(78, 62, 37, 0.08);
}

.purchase-result-page.inkwell-launch-page .download-result-hero .result-kicker::before {
  background: #2b5438;
  color: #f7f3ea;
  box-shadow: 0 6px 14px rgba(43, 84, 56, 0.16);
}

.purchase-result-page.inkwell-launch-page .download-result-hero h1 {
  color: #18150f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.purchase-result-page.inkwell-launch-page .download-result-hero p,
.purchase-result-page.inkwell-launch-page .download-support-note,
.purchase-result-page.inkwell-launch-page .download-card p,
.purchase-result-page.inkwell-launch-page .license-help,
.purchase-result-page.inkwell-launch-page .license-key-box span {
  color: #514a3d;
}

.purchase-result-page.inkwell-launch-page .download-result-grid .panel {
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 84, 56, 0.035), transparent 34%),
    rgba(255, 254, 251, 0.86);
  border-color: rgba(109, 95, 72, 0.16);
  box-shadow:
    0 18px 42px rgba(78, 62, 37, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.purchase-result-page.inkwell-launch-page .download-result-grid .panel h3 {
  color: #18150f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.purchase-result-page.inkwell-launch-page .license-key-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    #f7f3ea;
  border-color: rgba(109, 95, 72, 0.2);
  color: #18150f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.purchase-result-page.inkwell-launch-page .license-key-copy::after,
.purchase-result-page.inkwell-launch-page .download-support-note a {
  color: #2b5438;
}

.purchase-result-page.inkwell-launch-page .license-claim-panel .ghost-link {
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.purchase-result-page.inkwell-launch-page .license-key-copy:hover,
.purchase-result-page.inkwell-launch-page .license-key-copy:focus-visible {
  border-color: rgba(43, 84, 56, 0.34);
  box-shadow:
    0 0 0 3px rgba(43, 84, 56, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

@media (max-width: 720px) {
  .inkwell-launch-page .privacy-direct-hero {
    background:
      radial-gradient(circle at 74% 4%, rgba(168, 107, 26, 0.16), transparent 32%),
      linear-gradient(180deg, rgba(254, 252, 247, 0.96), rgba(247, 243, 234, 0.98));
  }

  .inkwell-launch-page .privacy-direct-hero-body {
    grid-template-columns: 1fr;
  }

  .inkwell-launch-page .privacy-direct-hero-support {
    max-width: none;
  }

  .inkwell-launch-page .hero-compact-cta {
    text-align: center;
  }

  .inkwell-launch-page .privacy-direct-hero-body > .privacy-direct-checklist {
    grid-template-columns: 1fr;
    justify-content: start;
    text-align: left;
  }

  .inkwell-launch-page .privacy-hero-peek {
    display: block;
    min-height: 0;
    background-image: none;
  }

  .inkwell-launch-page .privacy-direct-card-header .price-lockup {
    background: rgba(236, 231, 220, 0.52);
    border-color: rgba(109, 95, 72, 0.18);
  }

  .inkwell-launch-page .privacy-direct-card-header .price-label {
    justify-self: start;
    max-width: 13.5em;
  }
}

@media (max-width: 960px) {
  .inkwell-info-page .info-grid,
  .inkwell-info-page .panel-grid,
  .inkwell-info-page .link-tile-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .inkwell-info-page .info-grid {
    gap: 30px;
  }

  .inkwell-info-page .info-sidecard {
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .inkwell-info-page .page-shell {
    width: min(calc(100% - 28px), 1040px);
  }

  .inkwell-info-page .info-hero {
    padding: 36px 0 34px;
  }

  .inkwell-info-page .info-copy {
    gap: 16px;
  }

  .inkwell-info-page .info-title {
    max-width: 10.2ch;
    font-size: clamp(2.15rem, 8.8vw, 2.72rem);
    line-height: 1.06;
  }

  .inkwell-info-page .info-copy p,
  .inkwell-info-page .section-heading p,
  .inkwell-info-page .info-panel p,
  .inkwell-info-page .policy-list,
  .inkwell-info-page .info-list {
    font-size: 1rem;
    line-height: 1.58;
  }

  .inkwell-info-page .cta-row {
    align-items: stretch;
    width: 100%;
  }

  .inkwell-info-page .cta-row a {
    justify-content: center;
    text-align: center;
  }

  .inkwell-info-page .info-sidecard {
    padding-top: 20px;
    overflow-wrap: anywhere;
  }

  .inkwell-info-page .content-section {
    padding: 34px 0;
  }

  .inkwell-info-page .content-section:last-of-type {
    padding-bottom: 92px;
  }

  .inkwell-info-page .panel-grid {
    gap: 28px;
  }

  .inkwell-info-page .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    line-height: 1.06;
  }

  .inkwell-info-page .content-stack .info-panel {
    padding: 20px 0;
  }

  .inkwell-info-page .policy-list,
  .inkwell-info-page .info-list {
    gap: 9px;
    padding-left: 20px;
  }

  .inkwell-info-page .policy-list li,
  .inkwell-info-page .info-list li {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .inkwell-info-page .link-tile-grid {
    gap: 22px;
  }

  .inkwell-info-page .link-tile {
    gap: 7px;
  }

  .inkwell-info-page .cookie-settings-button {
    bottom: 84px;
    max-width: calc(100% - 118px);
  }

  .inkwell-info-page .support-chat-widget {
    bottom: 84px;
  }

  .inkwell-info-page .brand-tag {
    display: none;
  }

  .inkwell-info-page .brand-name {
    font-size: 1rem;
  }

  .inkwell-info-page .topbar-cta {
    padding-inline: 10px;
    font-size: 0.82rem;
  }
}
