:root {
  --surface-bone: #f4efe6;
  --surface-stone: #e8e1d4;
  --surface-clear: #f5f0e8;
  --surface-card: #fdfbf6;
  --surface-sage-soft: #eef2ea;
  --surface-charcoal: #1a1816;
  --ink: #1a1816;
  --ink-soft: #4a5266;
  --ink-faint: #8a8f9c;
  --hairline: #d9d2c4;
  --status-sage: #8fa38e;
  --status-honey: #d08a20;
  --status-clay: #b85f4a;
  --radius: 8px;
  --radius-large: 18px;
  --shadow-soft: 0 1px 2px rgba(26, 24, 22, 0.04), 0 18px 44px -28px rgba(26, 24, 22, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-clear);
  color: var(--ink);
  font-family: "Hanken Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(245, 240, 232, 0.88);
  border-bottom: 1px solid rgba(217, 210, 196, 0.76);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1;
}

.brand span:first-child {
  font-weight: 700;
}

.brand span:last-child {
  color: var(--ink-soft);
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  color: var(--ink-soft);
  font-size: 14px;
}

.nav a {
  white-space: nowrap;
}

.nav-cta {
  background: var(--ink);
  border-radius: 999px;
  color: var(--surface-clear);
  padding: 10px 16px;
}

.hero {
  display: grid;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  background:
    var(--surface-sage-soft)
    url("assets/hero-pexels-moe-magners-5335290.jpg")
    center center / cover
    no-repeat;
  min-height: 620px;
  position: relative;
}

.hero-copy {
  align-self: end;
  color: var(--surface-clear);
  left: 0;
  max-width: 820px;
  padding: 0 clamp(20px, 7vw, 88px) clamp(42px, 8vw, 86px);
  position: absolute;
  right: 0;
  z-index: 2;
}

.eyebrow {
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 920px;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.38;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  min-height: 48px;
  padding: 0 22px;
}

.button-primary {
  background: var(--surface-clear);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--surface-clear);
}

.photo-frame {
  bottom: 0;
  left: 0;
  min-height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.photo-frame::before {
  background: rgba(26, 24, 22, 0.36);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-two-column {
  align-items: start;
  display: grid;
  gap: clamp(34px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
}

.section-heading {
  max-width: 620px;
}

.section-heading--center {
  margin: 0 auto 36px;
  max-width: 760px;
  text-align: center;
}

.section-heading .eyebrow,
.trust-copy .eyebrow,
.waitlist-section .eyebrow {
  color: var(--status-clay);
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  line-height: 1.22;
  margin-bottom: 8px;
}

.wire-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.stack-card {
  padding: clamp(20px, 3vw, 34px);
}

.quote-block {
  align-items: center;
  background: var(--surface-sage-soft);
  border: 1px dashed rgba(143, 163, 142, 0.76);
  border-radius: 14px;
  color: var(--ink);
  display: flex;
  min-height: 138px;
  padding: 24px;
}

.quote-block span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.feature-list article {
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
  padding-top: 18px;
}

.feature-list article:first-child {
  border-top: 0;
}

.feature-list h3,
.feature-list p {
  grid-column: 2;
}

.feature-list p,
.insight-card p,
.trust-copy p {
  color: var(--ink-soft);
}

.feature-mark {
  background: var(--status-sage);
  border-radius: 50%;
  display: block;
  grid-row: span 2;
  height: 10px;
  margin-top: 7px;
  width: 10px;
}

.family-band {
  background: var(--surface-bone);
}

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

.insight-card {
  min-height: 260px;
  padding: 24px;
}

.insight-card--urgent {
  border-color: rgba(184, 95, 74, 0.46);
}

.card-label {
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.metric-row {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, 1fr);
  height: 72px;
  margin-top: 32px;
}

.metric-row span {
  background: var(--status-sage);
  border-radius: 6px 6px 2px 2px;
}

.metric-row span:nth-child(1) {
  height: 42%;
}

.metric-row span:nth-child(2) {
  height: 68%;
}

.metric-row span:nth-child(3) {
  height: 54%;
}

.metric-row span:nth-child(4) {
  height: 82%;
}

.metric-row span:nth-child(5) {
  height: 74%;
}

.examples-section {
  background: var(--surface-clear);
}

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

.example-pill {
  align-items: center;
  background: var(--surface-card);
  border: 1px dashed var(--hairline);
  border-radius: var(--radius);
  display: flex;
  min-height: 92px;
  padding: 20px;
  font-size: 18px;
}

.product-preview {
  background: var(--surface-charcoal);
  color: var(--surface-clear);
}

.app-ideas-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 42px auto 0;
  max-width: 1040px;
}

.app-idea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-large);
  min-height: 270px;
  padding: clamp(20px, 4vw, 38px);
}

.app-idea-label {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.app-idea h3 {
  color: var(--surface-clear);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  max-width: 420px;
}

.app-idea p:last-child {
  color: rgba(245, 240, 232, 0.68);
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 0;
}

.trust-section {
  align-items: start;
  background: var(--surface-sage-soft);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
}

.trust-rules {
  display: grid;
  gap: 12px;
}

.trust-rules div {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(143, 163, 142, 0.34);
  border-radius: var(--radius);
  font-weight: 700;
  min-height: 66px;
  padding: 20px;
}

.waitlist-section {
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(74px, 11vw, 140px) 20px;
  text-align: center;
}

.waitlist-form {
  margin: 34px auto 0;
  max-width: 620px;
  text-align: left;
}

.waitlist-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-row {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  padding: 8px;
}

.form-row input,
.form-row button {
  border: 0;
  font: inherit;
}

.form-row input {
  background: transparent;
  flex: 1;
  min-height: 46px;
  min-width: 0;
  padding: 0 14px;
}

.form-row button {
  background: var(--ink);
  border-radius: 999px;
  color: var(--surface-clear);
  cursor: pointer;
  font-weight: 700;
  padding: 0 20px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--hairline);
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .section-two-column,
  .trust-section,
  .app-ideas-grid {
    grid-template-columns: 1fr;
  }

  .family-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .app-idea {
    min-height: auto;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .hero-copy {
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(46px, 6vw, 76px);
    max-width: 580px;
  }

  .hero-intro {
    font-size: clamp(18px, 1.8vw, 21px);
    max-width: 620px;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 96px;
  }

  .brand {
    flex-direction: column;
    gap: 4px;
  }

  .nav {
    gap: 10px;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 96px);
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 34px;
    padding-left: 34px;
    padding-right: 34px;
    width: 100%;
  }

  h1 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-intro {
    font-size: 18px;
    max-width: 300px;
  }

  .hero-actions,
  .form-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .form-row button {
    justify-content: center;
    min-height: 48px;
  }

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