:root {
  --bg: #110f12;
  --bg-soft: #19161b;
  --panel: #1f1a21;
  --panel-alt: #f4ede2;
  --panel-alt-2: #ebe1d2;
  --text: #f6efe6;
  --text-soft: #d6c8b7;
  --text-dark: #2a1f18;
  --text-dark-soft: #4a3a2e;
  --muted: #9f9181;
  --line: rgba(255, 243, 227, 0.12);
  --line-dark: rgba(46, 36, 29, 0.14);
  --accent: #b88947;
  --accent-soft: rgba(184, 137, 71, 0.14);
  --accent-strong: #d3a767;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(circle at top right, rgba(184, 137, 71, 0.12), transparent 24%),
    linear-gradient(180deg, #0d0a0f 0%, #151117 42%, #171218 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(10, 8, 11, 0.76);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

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

.brand-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-sub {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #140f0a;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
  box-shadow: 0 14px 24px rgba(184, 137, 71, 0.22);
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.4rem 5rem;
}

.hero {
  padding: 4.5rem 0 2.2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy {
  padding: 1.6rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-strong);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(211, 167, 103, 0.5);
}

.hero h1,
.page-title {
  margin: 1rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero h1 span,
.page-title span {
  color: var(--accent-strong);
  font-style: italic;
}

.lede,
.page-lede {
  color: var(--text-soft);
  font-size: 1.12rem;
  max-width: 42rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.button-primary,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #140f0a;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-link {
  min-height: unset;
  padding: 0;
  color: var(--text-soft);
}

.button-link:hover,
.button-link:focus-visible {
  color: var(--text);
}

.hero-points {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.point {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.point strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.point span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-art {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(9, 7, 10, 0.08), rgba(9, 7, 10, 0.7)),
    radial-gradient(circle at top, rgba(226, 195, 136, 0.24), transparent 28%),
    #0f0b11;
  box-shadow: var(--shadow);
}

.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.hero-card {
  position: absolute;
  right: 1.3rem;
  left: 1.3rem;
  bottom: 1.3rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(18, 14, 20, 0.82);
  border: 1px solid rgba(255, 243, 227, 0.12);
}

.hero-card-title {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-card p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
}

.section {
  padding: 2.4rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.6rem;
}

.section-kicker {
  display: inline-block;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section h2 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 500;
}

.section p {
  color: var(--text-soft);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
}

.card h3,
.card h4 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.card li + li {
  margin-top: 0.4rem;
}

.quote-band {
  margin: 0.8rem 0 0;
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text);
}

.quote-band span {
  display: block;
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.paper-panel,
.dark-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 100%;
}

.paper-panel {
  padding: 1.6rem;
  background: linear-gradient(180deg, var(--panel-alt), var(--panel-alt-2));
  color: var(--text-dark);
}

.paper-panel h2,
.paper-panel h3,
.paper-panel h4,
.paper-panel .section-kicker {
  color: var(--text-dark);
}

.paper-panel p,
.paper-panel li,
.paper-panel .micro {
  color: var(--text-dark-soft);
}

.dark-panel {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
}

.stat-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  font-family: var(--serif);
  color: var(--accent-strong);
}

.stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.waitlist-band {
  margin-top: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(184, 137, 71, 0.16), transparent 32%),
    rgba(255,255,255,0.03);
}

.waitlist-band h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.waitlist-band p {
  margin: 0 0 1rem;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.waitlist-form input[type="email"] {
  flex: 1 1 260px;
  min-height: 50px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.waitlist-form input[type="email"]::placeholder {
  color: #b8ab99;
}

.waitlist-note,
.micro {
  color: var(--muted);
  font-size: 0.9rem;
}

.success-message {
  margin-top: 0.9rem;
  display: none;
  color: #f1d9af;
}

.success-message.is-visible {
  display: block;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 600;
}

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

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

.faq-item .answer {
  padding: 0 1.2rem 1.1rem;
  color: var(--text-soft);
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.4rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.2rem;
}

.footer h4 {
  margin: 0 0 0.6rem;
}

.footer p,
.footer li,
.footer a {
  color: var(--text-soft);
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 0.45rem;
}

.copyright {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.4rem 2.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.page-hero {
  padding: 4rem 0 1.4rem;
}

.legal-copy {
  max-width: 48rem;
}

.legal-copy h2,
.legal-copy h3 {
  font-family: var(--serif);
  line-height: 1;
}

.legal-copy h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

.legal-copy h3 {
  font-size: 1.35rem;
  margin-top: 1.4rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--text-soft);
}

.paper-panel.legal-copy p,
.paper-panel.legal-copy li,
.paper-panel.legal-copy h2,
.paper-panel.legal-copy h3 {
  color: var(--text-dark-soft);
}

.legal-copy ul {
  padding-left: 1.2rem;
}

.screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0a10;
  box-shadow: var(--shadow);
}

.screenshot-button {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.screenshot-caption {
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.screenshot-caption strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.screenshot-caption span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.screenshot-stack {
  display: grid;
  gap: 1rem;
}

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

.hero-proof {
  margin-top: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(8, 6, 10, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100vw - 4rem));
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 243, 227, 0.18);
  background: rgba(18, 14, 20, 0.9);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0a10;
  box-shadow: var(--shadow);
}

.lightbox-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
}

.lightbox-meta {
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.lightbox-meta strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.lightbox-meta span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .hero,
  .split-panel,
  .grid-3,
  .grid-2,
  .footer-inner,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-points,
  .stat-line {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.7rem;
    font-size: 0.88rem;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-dialog {
    width: min(100vw - 2rem, 1200px);
  }
}
