:root {
  --ink: #1f1b16;
  --night: #12110e;
  --charcoal: #2b2924;
  --dusk: #263642;
  --gold: #b88a32;
  --gold-soft: #eedc9f;
  --cream: #f8f4ea;
  --dawn: #fff6e2;
  --paper: #ffffff;
  --line: #e2d8c6;
  --muted: #6d675f;
  --sage: #74836d;
  --blue: #4d6574;
  --rose: #9b6a5c;
  --success: #477a55;
  --shadow: 0 24px 70px rgba(31, 27, 22, 0.16);
  --radius: 8px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, var(--dawn) 0%, var(--cream) 42%, #f3eddf 100%);
  font-family:
    "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.6rem 0.8rem;
  color: var(--paper);
  background: var(--night);
  border-radius: var(--radius);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header,
.site-footer,
.hero-section,
.belief-band,
.section-shell,
.visual-proof,
.waitlist-section {
  width: min(var(--content), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 27, 22, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  padding: 0.25rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(226, 216, 198, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 0.54rem 0.78rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--night);
  background: var(--gold-soft);
  outline: none;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(1.25rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 6rem);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 0.2rem;
  font-size: clamp(4.4rem, 13vw, 9.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.38rem;
  font-size: 1.15rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-statement {
  max-width: 600px;
  margin-bottom: 0.9rem;
  color: var(--charcoal);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero-body {
  max-width: 560px;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.84rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--gold-soft);
  box-shadow: 0 12px 26px rgba(184, 138, 50, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f5e8b4;
}

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

.launch-notes {
  display: grid;
  gap: 0.4rem;
  max-width: 540px;
  margin: 1.6rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-weight: 700;
}

.launch-notes li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.launch-notes li::before {
  width: 0.48rem;
  height: 0.48rem;
  content: "";
  background: var(--success);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(71, 122, 85, 0.12);
}

.hero-product {
  position: relative;
  display: grid;
  min-height: 660px;
  place-items: center;
}

.phone-frame {
  overflow: hidden;
  width: min(100%, 312px);
  background: #f7f0e5;
  border: 10px solid var(--night);
  border-radius: 44px;
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
}

.phone-main {
  position: relative;
  z-index: 2;
}

.phone-support {
  position: absolute;
  right: 0;
  bottom: 4%;
  z-index: 1;
  width: min(58%, 230px);
  opacity: 0.86;
  transform: rotate(4deg);
}

.belief-band,
.visual-proof,
.waitlist-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--night);
  color: var(--paper);
  border: 1px solid rgba(238, 220, 159, 0.22);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.belief-flow > p,
.proof-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.belief-flow {
  display: grid;
  gap: 1.1rem;
}

.belief-cards {
  display: grid;
  gap: 0.72rem;
}

.belief-cards article {
  display: grid;
  grid-template-columns: 44px 0.32fr 1fr;
  gap: 0.82rem;
  align-items: center;
  padding: 0.92rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(238, 220, 159, 0.2);
  border-radius: var(--radius);
}

.belief-cards span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--night);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.belief-cards strong {
  color: var(--paper);
  font-size: 1.04rem;
}

.belief-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section-shell {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 680px;
}

.rhythm-grid,
.tier-grid,
.audience-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.rhythm-step,
.tier-card,
.audience-card,
.faq-card {
  min-height: 190px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.08);
}

.rhythm-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--night);
  background: var(--gold-soft);
  border: 1px solid rgba(184, 138, 50, 0.32);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.rhythm-step p,
.tier-card p,
.audience-card p,
.faq-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.audience-card h3::before,
.faq-card h3::before {
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  display: inline-block;
  margin-right: 0.45rem;
  background: var(--gold);
  border-radius: 999px;
  vertical-align: middle;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
}

.founder-card {
  min-height: 260px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.08);
}

.founder-label {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.founder-story {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 17, 14, 0.98), rgba(38, 54, 66, 0.94) 58%, rgba(184, 138, 50, 0.84));
  border-color: rgba(238, 220, 159, 0.28);
}

.founder-story p {
  color: rgba(255, 255, 255, 0.82);
}

.founder-story .founder-label {
  color: var(--gold-soft);
}

.founder-story blockquote {
  margin: 0 0 1rem;
  padding: 1.2rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(238, 220, 159, 0.22);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
}

.visual-proof {
  margin-top: 1rem;
  background:
    linear-gradient(135deg, rgba(18, 17, 14, 0.98), rgba(38, 54, 66, 0.96) 58%, rgba(184, 138, 50, 0.86));
}

.proof-copy {
  max-width: 560px;
}

.proof-line {
  display: grid;
  gap: 0.22rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(238, 220, 159, 0.18);
  border-radius: var(--radius);
}

.proof-line span {
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-line strong {
  color: var(--paper);
}

.proof-media {
  overflow: hidden;
  justify-self: center;
  width: min(100%, 320px);
  background: #f7f0e5;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 42px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

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

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

.tier-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-card h3::before {
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  background: var(--sage);
  border-radius: 999px;
}

.tier-featured {
  background: var(--night);
  color: var(--paper);
  border-color: rgba(238, 220, 159, 0.28);
}

.tier-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.tier-featured h3::before {
  background: var(--gold-soft);
}

.waitlist-section {
  grid-template-columns: 0.78fr 1fr;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.waitlist-copy {
  align-self: start;
}

.waitlist-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.waitlist-promise {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 1.35rem;
}

.waitlist-promise div {
  padding: 0.95rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.waitlist-promise strong {
  display: block;
  margin-bottom: 0.18rem;
}

.waitlist-promise p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-strip {
  margin-top: 1.25rem;
}

.contact-strip a {
  padding: 0.58rem 0.72rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.waitlist-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

label {
  display: grid;
  gap: 0.38rem;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 900;
}

label span {
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.78rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 750;
}

input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 138, 50, 0.16);
  outline: none;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.consent-row input {
  min-height: 22px;
  margin-top: 0.12rem;
  accent-color: var(--gold);
}

.form-submit {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: #8f2d22;
}

.text-button {
  justify-self: start;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 2.4rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer a {
  font-weight: 850;
  text-decoration: none;
}

.simple-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2rem, 8vw, 5rem) 1rem;
}

.simple-page-header {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.2rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 17, 14, 0.98), rgba(38, 54, 66, 0.96) 58%, rgba(184, 138, 50, 0.8));
  border: 1px solid rgba(238, 220, 159, 0.2);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.simple-page-header::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  content: "";
  background: radial-gradient(circle, rgba(238, 220, 159, 0.28), transparent 66%);
}

.simple-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.simple-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.simple-page-header .back-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--gold-soft);
  font-weight: 900;
  text-decoration: none;
}

.simple-page h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  font-size: clamp(2.7rem, 9vw, 5.8rem);
  line-height: 0.92;
}

.simple-page-header p {
  position: relative;
  z-index: 1;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.simple-page-header .section-kicker {
  color: var(--gold-soft);
}

.policy-section {
  margin: 0.9rem 0;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(31, 27, 22, 0.07);
}

.policy-section h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  line-height: 1.08;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
}

.policy-section ul {
  padding-left: 1.2rem;
}

@media (max-width: 940px) {
  .hero-section,
  .belief-band,
  .visual-proof,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

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

  .hero-product {
    min-height: 540px;
  }

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

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

  .audience-grid,
  .faq-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .phone-support {
    right: 8%;
  }
}

@media (max-width: 640px) {
  body {
    background:
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 68px),
      linear-gradient(180deg, var(--dawn) 0%, var(--cream) 48%, #f3eddf 100%);
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .site-nav {
    width: 100%;
    max-width: none;
    overflow-x: auto;
    justify-content: flex-start;
    padding-inline: 0.35rem;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .brand-mark {
    align-self: flex-start;
  }

  .hero-section {
    padding-top: 1rem;
  }

  .hero-product {
    min-height: 500px;
  }

  .phone-frame {
    width: min(86vw, 300px);
  }

  .phone-support {
    display: none;
  }

  .belief-band,
  .visual-proof,
  .waitlist-section {
    width: min(100% - 20px, var(--content));
    padding: 1.15rem;
    border-radius: 16px;
  }

  .section-shell {
    width: min(100% - 20px, var(--content));
    padding: 3.6rem 0;
  }

  .rhythm-grid,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .belief-cards article {
    grid-template-columns: 38px 1fr;
    align-items: start;
  }

  .belief-cards article p {
    grid-column: 2;
  }

  .rhythm-step,
  .tier-card {
    min-height: auto;
  }

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

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