:root {
  color-scheme: light;
  --bg: #fff8f1;
  --bg-deep: #130c08;
  --bg-deeper: #080402;
  --surface: rgba(255, 248, 241, 0.94);
  --surface-strong: #fff5ea;
  --surface-dark: rgba(24, 16, 12, 0.72);
  --ink: #21140d;
  --ink-inverse: #fff5eb;
  --ink-soft: #6b5548;
  --brand: #f79f64;
  --brand-deep: #d97534;
  --brand-soft: #f7d4b5;
  --line: rgba(56, 34, 22, 0.12);
  --line-strong: rgba(255, 223, 196, 0.18);
  --shadow: 0 28px 80px rgba(39, 19, 8, 0.16);
  --shadow-strong: 0 28px 90px rgba(5, 2, 1, 0.46);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  background: var(--bg);
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.backdrop-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(247, 159, 100, 0.24), transparent 22rem),
    radial-gradient(circle at 85% 12%, rgba(247, 212, 181, 0.18), transparent 22rem),
    radial-gradient(circle at 75% 55%, rgba(36, 21, 13, 0.1), transparent 24rem);
}

.home-page {
  background:
    linear-gradient(180deg, var(--bg-deep) 0, #1c120d 64rem, #f5e8da 64rem, var(--bg) 100%);
}

.site-header,
.section,
.site-footer,
.legal-shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  position: relative;
  z-index: 2;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.brand-name {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.home-page .brand-name {
  color: var(--ink-inverse);
}

.legal-page .brand-name,
.simple-page .brand-name {
  color: var(--ink);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 245, 235, 0.07);
  backdrop-filter: blur(16px);
}

.site-nav a,
.header-cta {
  text-decoration: none;
}

.site-nav a {
  color: rgba(255, 245, 235, 0.84);
  font-size: 0.95rem;
}

.header-cta {
  color: #120b08;
  background: var(--brand);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(247, 159, 100, 0.22);
}

.section {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 44px;
  align-items: start;
  padding: 58px 0 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  color: var(--ink-inverse);
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  line-height: 0.94;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.85rem;
}

.hero-lede,
.section-heading p,
.step-card p,
.trust-card p,
.memory-card p,
.story-card p,
.quote-card p,
.launch-copy p,
.waitlist-copy,
.footer-copy,
.form-note,
.status-message {
  color: var(--ink-soft);
}

.hero-lede {
  max-width: 40rem;
  margin: 22px 0 0;
  color: rgba(255, 245, 235, 0.8);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:visited {
  color: inherit;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, #ffbc8d 0, var(--brand) 55%, var(--brand-deep) 100%);
  color: #140c08;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(247, 159, 100, 0.22);
}

.button-primary:visited {
  color: #140c08;
}

.button-secondary {
  background: rgba(255, 245, 235, 0.1);
  color: var(--ink-inverse);
  border: 1px solid rgba(255, 245, 235, 0.18);
  backdrop-filter: blur(18px);
}

.button-secondary:visited {
  color: var(--ink-inverse);
}

.button-ghost {
  background: rgba(255, 248, 241, 0.84);
  color: var(--ink);
  border: 1px solid rgba(85, 49, 28, 0.1);
}

.button-ghost:visited {
  color: var(--ink);
}

.button-full {
  width: 100%;
}

.status-message {
  min-height: 1.5em;
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.status-message[data-tone="success"] {
  color: #355f35;
}

.status-message[data-tone="warning"] {
  color: #965522;
}

.status-message[data-tone="error"] {
  color: #8f3333;
}

.hero-metadata span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(39, 28, 21, 0.92);
  border: 1px solid rgba(255, 245, 235, 0.16);
  color: rgba(255, 245, 235, 0.86);
  font-size: 0.92rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hero-metadata {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px;
  margin-top: 28px;
  width: fit-content;
  max-width: 100%;
}

.launch-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.glow-one {
  width: 260px;
  height: 260px;
  top: 6%;
  right: 8%;
  background: rgba(247, 159, 100, 0.3);
}

.glow-two {
  width: 180px;
  height: 180px;
  left: 6%;
  bottom: 8%;
  background: rgba(255, 245, 235, 0.14);
}

.screenshot-hero-card {
  width: min(100%, 460px);
  padding: 10px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 245, 235, 0.22) 0, rgba(255, 245, 235, 0.08) 100%);
  border: 1px solid rgba(255, 245, 235, 0.16);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.screenshot-image {
  width: 100%;
  height: min(78vh, 780px);
  border-radius: 34px;
  box-shadow: 0 24px 48px rgba(8, 4, 2, 0.28);
  object-fit: cover;
  object-position: top center;
}

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

.trust-card,
.story-card,
.quote-card,
.waitlist-card,
.feature-panel {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.trust-card {
  padding: 26px 24px;
}

.trust-title,
.waitlist-kicker,
.footer-title,
.memory-label,
.step-index {
  margin: 0 0 10px;
  font-weight: 800;
}

.trust-title {
  color: var(--ink);
}

.section+.section {
  margin-top: 34px;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 26px;
}

.section-heading-left {
  margin-bottom: 30px;
}

.feature-stack {
  display: grid;
  gap: 22px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 30px;
  align-items: center;
  padding: 28px;
}

.feature-panel.reverse .feature-copy {
  order: 2;
}

.feature-panel.reverse .feature-visual {
  order: 1;
}

.feature-panel-dark {
  background: rgba(17, 11, 8, 0.96);
  border-color: rgba(255, 245, 235, 0.1);
  box-shadow: var(--shadow-strong);
}

.feature-copy h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.feature-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.feature-panel-dark .feature-copy h3 {
  color: var(--ink-inverse);
}

.feature-panel-dark .feature-copy p {
  color: rgba(255, 245, 235, 0.78);
}

.feature-panel-dark .eyebrow {
  color: #ffbf90;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247, 159, 100, 0.12);
  border: 1px solid rgba(217, 117, 52, 0.14);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-panel-dark .feature-pills span {
  background: rgba(255, 245, 235, 0.08);
  border-color: rgba(255, 245, 235, 0.14);
  color: var(--ink-inverse);
}

.feature-visual {
  display: flex;
  justify-content: center;
}

.story-section,
.launch-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 20px;
  align-items: stretch;
}

.story-card,
.quote-card {
  padding: clamp(28px, 5vw, 40px);
}

.quote-card {
  display: flex;
  align-items: end;
  background:
    linear-gradient(160deg, rgba(247, 159, 100, 0.28) 0, rgba(255, 245, 235, 0.96) 36%, rgba(255, 245, 235, 0.98) 100%);
}

.feature-shot {
  width: min(100%, 390px);
  height: auto;
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(13, 8, 5, 0.22);
}

.quote-text {
  margin: 0;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.3;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.screenshot-quote {
  display: grid;
  align-content: end;
  gap: 14px;
}

.quote-caption {
  margin: 0;
  color: var(--ink-soft);
}

.launch-copy {
  padding: 18px 0;
}

.launch-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247, 159, 100, 0.12);
  border: 1px solid rgba(217, 117, 52, 0.14);
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.waitlist-card {
  padding: 28px;
}

.waitlist-kicker {
  color: var(--brand-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waitlist-card h3 {
  margin-bottom: 10px;
}

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

.field span {
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(91, 57, 35, 0.16);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  padding: 0 16px;
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(247, 159, 100, 0.5);
  outline-offset: 2px;
}

.waitlist-card .button+.button {
  margin-top: 12px;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 50px 0 64px;
}

.footer-title {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.1rem;
}

.footer-copy {
  margin: 0;
  max-width: 34rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-page,
.simple-page {
  background:
    radial-gradient(circle at top left, rgba(247, 159, 100, 0.22), transparent 28rem),
    var(--bg);
}

.legal-shell {
  padding: 32px 0 72px;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.legal-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 30px;
  background: rgba(255, 250, 246, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.legal-card h2 {
  margin-top: 36px;
  font-size: 1.5rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card ul {
  padding-left: 1.25rem;
}

.legal-meta {
  margin: 14px 0 0;
}

.legal-footer {
  margin-top: 26px;
  text-align: center;
}

.legal-footer a {
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.simple-main {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
  padding: 20px 0 60px;
}

.simple-card {
  width: min(720px, calc(100% - 40px));
  padding: clamp(28px, 5vw, 48px);
  border-radius: 30px;
  background: rgba(255, 250, 246, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.simple-card h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1080px) {

  .hero,
  .story-section,
  .launch-section,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panel.reverse .feature-copy,
  .feature-panel.reverse .feature-visual {
    order: initial;
  }

}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100%, calc(100% - 24px));
  }

  .site-header {
    padding-top: 16px;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    gap: 30px;
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .hero-actions,
  .hero-metadata,
  .launch-points {
    flex-direction: column;
  }

  .hero-metadata {
    display: flex;
  }

  .button,
  .hero-metadata span,
  .launch-points span {
    width: 100%;
  }

  .feature-panel,
  .waitlist-card {
    padding: 22px;
  }
}

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

  .button {
    transition: none;
  }
}