:root {
  color-scheme: light;
  --ink: #171513;
  --muted: #635d55;
  --paper: #fffaf2;
  --surface: #ffffff;
  --line: #ded5c8;
  --tomato: #ef5a3c;
  --leaf: #2f8f6a;
  --plum: #69385c;
  --sun: #f6c24a;
  --shadow: 0 24px 70px rgba(61, 43, 31, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(61, 43, 31, 0.12);
}

.header-link {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.header-link:hover {
  border-color: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  grid-template-areas:
    "top preview"
    "bottom preview";
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: 28px clamp(20px, 5vw, 72px) 70px;
  min-height: calc(100vh - 78px);
}

.hero_copy_top {
  grid-area: top;
}

.hero_copy_bottom {
  grid-area: bottom;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--plum);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 780px;
  font-size: 5.35rem;
  line-height: 0.94;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.22rem;
}

.trust {
  margin: 18px 0 0;
  color: #443d36;
  font-weight: 700;
}

.platform_note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
}

.platform_pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.86rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
}

.platform_pill_android {
  background: var(--leaf);
}

.platform_pill_ios {
  background: var(--plum);
}

.platform_note_cta {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.signup-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

label {
  font-weight: 750;
}

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

input[type="email"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.08);
}

input[type="email"]:focus,
input[type="checkbox"]:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(47, 143, 106, 0.35);
  outline-offset: 2px;
}

button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 0 22px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

button:hover {
  background: #302b25;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.93rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--leaf);
}

.honeypot {
  position: absolute;
  left: -100vw;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 750;
}

.form-status[data-tone="success"] {
  color: var(--leaf);
}

.form-status[data-tone="error"] {
  color: #b63225;
}

.product-preview {
  grid-area: preview;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 610px;
}

.preview_glow {
  position: absolute;
  width: min(520px, 80%);
  height: min(520px, 80%);
  background: radial-gradient(
    circle,
    rgba(239, 90, 60, 0.22) 0%,
    rgba(246, 194, 74, 0.16) 50%,
    rgba(246, 194, 74, 0) 75%
  );
  border-radius: 50%;
  z-index: 0;
}

.hero_phone_shot {
  position: relative;
  z-index: 1;
  width: 340px;
  filter: drop-shadow(0 30px 42px rgba(44, 32, 25, 0.28));
}

.hero_phone_shot img {
  display: block;
  width: 100%;
  height: auto;
}

.band {
  padding: 72px clamp(20px, 5vw, 72px);
}

.band-white {
  background: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.grid-three {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 18px;
}

.benefit,
.step {
  border-top: 3px solid var(--tomato);
  padding-top: 18px;
}

.benefit:nth-child(2),
.step:nth-child(2) {
  border-color: var(--leaf);
}

.benefit:nth-child(3),
.step:nth-child(3) {
  border-color: var(--sun);
}

.benefit h3,
.step h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.benefit p,
.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.workflow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  align-items: end;
}

.screenshot-strip img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(44, 32, 25, 0.18));
}

.secondary-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer nav {
  display: flex;
  gap: 16px;
}

.privacy-page {
  max-width: 820px;
  padding: 48px clamp(20px, 5vw, 72px) 88px;
}

.privacy-page h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.privacy-page p,
.privacy-page li {
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero,
  .workflow,
  .secondary-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    grid-template-areas:
      "top"
      "preview"
      "bottom";
  }

  .product-preview {
    min-height: 480px;
    max-width: 650px;
    width: 100%;
  }

  .hero_phone_shot {
    width: 280px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-top: 18px;
    align-items: flex-start;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 42px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .header-link {
    max-width: 112px;
    text-align: right;
    line-height: 1.1;
    font-size: 0.95rem;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.35rem;
  }

  .intro {
    font-size: 1.05rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }

  .product-preview {
    min-height: 380px;
  }

  .hero_phone_shot {
    width: 220px;
  }

  .platform_note {
    gap: 8px;
  }

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

  .footer {
    flex-direction: column;
  }
}
