:root {
  --ink: #11120f;
  --charcoal: #191a16;
  --olive: #59613a;
  --olive-dark: #343a22;
  --gold: #d8b763;
  --cream: #f6f0df;
  --paper: #fffaf0;
  --stone: #ded7c7;
  --muted: #766f62;
  --white: #ffffff;
  --danger: #8b3f2f;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

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

.section-pad { padding: 84px 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 240, 223, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 18, 15, 0.08);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; min-width: 0; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--ink);
  color: var(--gold);
  letter-spacing: -0.05em;
}
.brand-stack { display: grid; line-height: 1.05; min-width: 0; }
.brand-text { font-size: 1.05rem; }
.brand-presented { color: var(--muted); font-size: .72rem; font-weight: 750; margin-top: 4px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--olive-dark); font-weight: 650; }
.nav-links a:hover { color: var(--ink); }
.nav-toggle { display: none; border: 1px solid rgba(17,18,15,0.12); background: var(--paper); border-radius: 999px; padding: 8px 14px; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #151612 0%, #252719 52%, #11120f 100%);
  color: var(--cream);
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 183, 99, .28), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(89, 97, 58, .45), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  opacity: .8;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  align-items: center;
  gap: 56px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 850;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  line-height: .94;
  letter-spacing: -.07em;
  margin-bottom: 22px;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(246, 240, 223, .82);
  max-width: 720px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 850;
  min-height: 48px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--gold); color: var(--ink); box-shadow: 0 12px 28px rgba(216,183,99,.25); }
.btn.secondary { background: rgba(246, 240, 223, .12); color: var(--cream); border: 1px solid rgba(246,240,223,.22); }
.btn.full { width: 100%; }
.fine-print { color: rgba(246, 240, 223, .64); font-size: .93rem; margin-top: 22px; }

.phone-preview {
  justify-self: center;
  width: min(360px, 100%);
  min-height: 600px;
  padding: 18px;
  border-radius: 42px;
  background: #0b0c0a;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 0 0 18px 18px;
}
.phone-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 30px;
  padding: 28px;
  margin-top: 30px;
  box-shadow: inset 0 0 0 1px rgba(17,18,15,.08);
}
.phone-card h2 { font-size: 1.95rem; letter-spacing: -.04em; line-height: 1; margin-bottom: 14px; }
.phone-card p { color: var(--muted); }
.tiny-label { color: var(--olive) !important; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.mini-copy { border: 0; background: var(--ink); color: var(--cream); border-radius: 999px; padding: 12px 16px; font-weight: 800; width: 100%; }
.phone-dots { display: flex; gap: 7px; justify-content: center; margin-top: 22px; }
.phone-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(246,240,223,.32); }
.phone-dots span:first-child { background: var(--gold); }

.value-strip { background: var(--paper); border-bottom: 1px solid rgba(17,18,15,.08); }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(17,18,15,.08);
}
.strip-grid div { background: var(--paper); padding: 24px; display: grid; gap: 4px; }
.strip-grid strong { font-size: 1.02rem; }
.strip-grid span { color: var(--muted); }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading.left { text-align: left; margin: 0; }
.section-heading h2, .builder-grid h2, .about-card h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 16px;
}
.section-heading p, .builder-grid p, .about-card p { color: var(--muted); font-size: 1.02rem; }
.daily-section { background: var(--cream); }
.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.chip {
  border: 1px solid rgba(17,18,15,.12);
  background: var(--paper);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  color: var(--olive-dark);
}
.chip.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.daily-card {
  background: var(--paper);
  border: 1px solid rgba(17,18,15,.09);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 14px 30px rgba(17,18,15,.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.card-top { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.card-category { background: rgba(89,97,58,.12); color: var(--olive-dark); border-radius: 999px; padding: 6px 10px; font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.favorite-btn { border: 0; background: transparent; color: var(--muted); font-size: 1.3rem; line-height: 1; padding: 0; }
.favorite-btn.saved { color: var(--gold); }
.daily-card h3 { font-size: 1.5rem; line-height: 1.05; letter-spacing: -.04em; margin-bottom: 0; }
.card-text { color: #3c392f; flex: 1; white-space: pre-line; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(17,18,15,.09); padding-top: 14px; color: var(--muted); font-size: .88rem; }
.copy-btn { border: 0; background: var(--ink); color: var(--cream); border-radius: 999px; padding: 10px 15px; font-weight: 850; }
.copy-btn:hover { background: var(--olive-dark); }
.warning { color: var(--danger); font-weight: 800; }

.sample-section { background: var(--paper); }
.sample-grid, .builder-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.steps { display: grid; gap: 16px; }
.step-card { background: var(--cream); border: 1px solid rgba(17,18,15,.08); border-radius: var(--radius-lg); padding: 22px; }
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}
.step-card h3 { margin-bottom: 6px; }
.step-card p { color: var(--muted); margin-bottom: 0; }

.categories-section { background: var(--cream); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-grid article {
  background: var(--paper);
  border: 1px solid rgba(17,18,15,.08);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.category-grid h3 { margin-bottom: 8px; }
.category-grid p { color: var(--muted); margin-bottom: 0; }

.builder-section { background: linear-gradient(135deg, var(--olive-dark), var(--ink)); color: var(--cream); }
.builder-section .eyebrow { color: var(--gold); }
.builder-grid p { color: rgba(246,240,223,.74); }
.builder-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow);
}
.builder-card label { display: block; font-weight: 850; margin-bottom: 8px; }
.builder-card input, .builder-card select {
  width: 100%;
  border: 1px solid rgba(17,18,15,.14);
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
  outline: none;
}
.builder-card input:focus, .builder-card select:focus { border-color: var(--olive); box-shadow: 0 0 0 4px rgba(89,97,58,.14); }
.built-output { margin-top: 18px; border: 1px solid rgba(17,18,15,.08); border-radius: var(--radius-lg); padding: 18px; background: var(--cream); }
.built-output p { color: #3c392f; }

.pricing-section { background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { border: 1px solid rgba(17,18,15,.1); background: var(--cream); border-radius: var(--radius-xl); padding: 26px; }
.price-card.featured { background: var(--ink); color: var(--cream); transform: translateY(-10px); box-shadow: var(--shadow); }
.price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.05em; margin-bottom: 8px; }
.price-card p:not(.price) { color: var(--muted); }
.price-card.featured p:not(.price) { color: rgba(246,240,223,.72); }

.about-section { background: var(--cream); }
.about-card { background: var(--paper); border-radius: var(--radius-xl); padding: clamp(28px, 6vw, 56px); border: 1px solid rgba(17,18,15,.08); }
.disclaimer-box { margin-top: 24px; border-left: 5px solid var(--gold); background: rgba(216,183,99,.13); padding: 18px; border-radius: 12px; color: #3c392f; }
.site-footer { background: var(--ink); color: var(--cream); padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-grid span { display: block; color: rgba(246,240,223,.64); }
.footer-links { display: flex; gap: 18px; color: var(--gold); font-weight: 800; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(120px);
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
  z-index: 50;
}
.toast.show { transform: translateX(-50%) translateY(0); }

@media (max-width: 960px) {
  .hero-grid, .sample-grid, .builder-grid { grid-template-columns: 1fr; }
  .phone-preview { min-height: 520px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section-pad { padding: 58px 0; }
  .nav-wrap { min-height: 66px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 16px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17,18,15,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .hero { padding-top: 64px; padding-bottom: 64px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .phone-preview { width: 100%; min-height: 440px; border-radius: 32px; }
  .strip-grid { grid-template-columns: 1fr; }
  .card-grid, .pricing-grid, .category-grid { grid-template-columns: 1fr; }
  .daily-card { min-height: auto; }
  .price-card.featured { transform: none; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}


@media (max-width: 420px) {
  .brand-mark { width: 38px; height: 38px; }
  .brand-text { font-size: .98rem; }
  .brand-presented { font-size: .62rem; white-space: normal; }
}

/* Added for domain launch prototype */
.waitlist-section {
  background: linear-gradient(135deg, var(--paper), #f2ead5);
  border-top: 1px solid rgba(17,18,15,.08);
  border-bottom: 1px solid rgba(17,18,15,.08);
}
.waitlist-grid, .feedback-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 42px;
  align-items: center;
}
.waitlist-grid h2, .feedback-grid h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 16px;
}
.waitlist-grid p, .feedback-grid p { color: var(--muted); font-size: 1.02rem; }
.domain-pill {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 750;
}
.domain-pill strong { color: var(--gold); }
.waitlist-card, .feedback-card {
  background: var(--paper);
  border: 1px solid rgba(17,18,15,.08);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow);
}
.waitlist-card label, .feedback-card label { display: block; font-weight: 850; margin-bottom: 8px; }
.waitlist-card input, .waitlist-card select, .feedback-card input, .feedback-card select, .feedback-card textarea {
  width: 100%;
  border: 1px solid rgba(17,18,15,.14);
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
  outline: none;
}
.feedback-card textarea { resize: vertical; min-height: 96px; }
.week-section { background: var(--paper); }
.week-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  margin-bottom: 16px;
  scrollbar-width: thin;
}
.week-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(17,18,15,.12);
  background: var(--cream);
  color: var(--olive-dark);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 850;
}
.week-tab.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.week-theme {
  background: linear-gradient(135deg, var(--olive-dark), var(--ink));
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 22px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.09);
}
.week-theme strong { color: var(--gold); }
.week-theme p { color: rgba(246,240,223,.78); margin: 6px 0 0; }
.week-card-grid .daily-card { background: var(--cream); }
.feedback-section { background: linear-gradient(135deg, var(--cream), var(--paper)); }
@media (max-width: 960px) {
  .waitlist-grid, .feedback-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .domain-pill { border-radius: 18px; }
  .week-tabs { justify-content: flex-start; }
}

.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.btn.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(17,18,15,.14);
  box-shadow: none;
}
.btn.light:hover {
  background: var(--cream);
}
