:root {
  --cream: #fff8ee;
  --surface: #ffffff;
  --ink: #322620;
  --muted: #756960;
  --coral: #df6f59;
  --coral-deep: #bd4f40;
  --sage: #72977f;
  --lavender: #8b82c9;
  --butter: #f0bd57;
  --sky: #8ab9cf;
  --line: rgba(50, 38, 32, 0.12);
  --shadow: 0 18px 45px rgba(50, 38, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  background: rgba(255, 248, 238, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--coral);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.nav-links,
.site-footer nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--coral-deep);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px 34px 74px;
  background: #f8f0ff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 238, 0.98) 0%, rgba(255, 248, 238, 0.84) 42%, rgba(255, 248, 238, 0.2) 100%),
    linear-gradient(180deg, rgba(114, 151, 127, 0.18), rgba(223, 111, 89, 0.15));
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding-right: 7%;
  transform: rotate(-5deg) translateY(42px);
}

.hero-shot {
  width: 282px;
  height: 612px;
  object-fit: cover;
  border: 10px solid #ffffff;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-shot-two {
  margin-top: 78px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-deep);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 68px;
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 18px;
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.48;
}

.waitlist-form {
  display: flex;
  width: min(540px, 100%);
  min-height: 64px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
  outline: 0;
}

.waitlist-form button,
.cta-link {
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--coral);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.waitlist-form button {
  flex: 0 0 auto;
  padding: 0 22px;
}

.waitlist-form button:hover,
.cta-link:hover {
  background: var(--coral-deep);
}

.waitlist-form button:disabled {
  cursor: default;
  opacity: 0.7;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--sage);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 82px 34px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
  background: var(--surface);
}

.intro-copy {
  max-width: 520px;
}

.intro-copy p,
.feature p,
.final-cta p,
.policy-page p,
.policy-page li {
  color: var(--muted);
  line-height: 1.7;
}

.intro-copy p {
  font-size: 18px;
}

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

.feature {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbff;
}

.feature:nth-child(2) {
  background: #f6fbf7;
}

.feature:nth-child(3) {
  background: #fff7e5;
}

.feature-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--sage);
  border-radius: 8px;
  font-weight: 900;
}

.feature:nth-child(2) .feature-icon {
  background: var(--lavender);
}

.feature:nth-child(3) .feature-icon {
  background: var(--butter);
  color: var(--ink);
}

.screenshots-section {
  overflow: hidden;
  background: #eef7f4;
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.phone-frame {
  margin: 0;
  padding: 10px 10px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(40, 75, 65, 0.12);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 349 / 760;
  object-fit: cover;
  border-radius: 6px;
}

.phone-frame figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.final-cta {
  text-align: center;
  background: #fff9e8;
}

.final-cta p {
  max-width: 520px;
  margin: 16px auto 26px;
  font-size: 18px;
}

.cta-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 34px;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.policy-main {
  background: var(--surface);
}

.policy-hero {
  padding: 132px 34px 52px;
  background: #eef7f4;
  border-bottom: 1px solid var(--line);
}

.policy-hero-inner,
.policy-page {
  width: min(860px, 100%);
  margin: 0 auto;
}

.policy-hero h1 {
  font-size: 48px;
}

.policy-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.policy-page {
  padding: 46px 34px 80px;
}

.policy-page section + section {
  margin-top: 36px;
}

.policy-page h2 {
  font-size: 26px;
}

.policy-page ul {
  padding-left: 22px;
}

.contact-panel {
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel a {
  color: var(--coral-deep);
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-backdrop {
    opacity: 0.34;
    padding-right: 0;
    justify-content: center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(255, 248, 238, 0.98) 0%, rgba(255, 248, 238, 0.86) 100%),
      linear-gradient(180deg, rgba(114, 151, 127, 0.16), rgba(223, 111, 89, 0.13));
  }

  .intro-section,
  .feature-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-grid {
    width: min(360px, 100%);
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    padding: 16px 20px;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 84vh;
    padding: 112px 20px 58px;
  }

  h1,
  .policy-hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .waitlist-form {
    display: grid;
    gap: 8px;
    padding: 8px;
  }

  .waitlist-form input {
    min-height: 48px;
  }

  .waitlist-form button {
    min-height: 50px;
  }

  .section,
  .policy-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .policy-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

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

@media (max-width: 470px) {
  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 12px;
  }

  h1,
  .policy-hero h1 {
    font-size: 40px;
  }
}
