@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff8f0;
  color: #251e1b;
  --tomato: #c83a25;
  --tomato-bright: #f6533a;
  --tomato-soft: #ffd9cf;
  --sage: #627d56;
  --sage-dark: #24351f;
  --blueberry: #415c86;
  --cream: #fff8f0;
  --surface: #fffcf8;
  --oat: #f5eadf;
  --outline: #e4d2c6;
  --muted: #6f625b;
  --ink: #251e1b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
}

body,
button,
input {
  font: inherit;
}

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

a {
  color: var(--sage-dark);
  font-weight: 700;
}

.site-header,
.section,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand,
.top-nav,
.cta-row,
.links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(37, 30, 27, 0.12);
}

.brand span {
  font-size: 1.18rem;
  font-weight: 800;
}

.top-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.top-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.top-nav .top-cta {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.section {
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: 52px;
  min-height: calc(100vh - 88px);
  padding-top: 42px;
}

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

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

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

p,
li {
  font-size: 1rem;
  line-height: 1.65;
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 9px;
}

.lead {
  max-width: 650px;
  color: #51443f;
  font-size: 1.18rem;
}

.fineprint {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-note {
  max-width: 610px;
  margin-top: 20px;
  margin-bottom: 0;
}

.cta-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--tomato-bright);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(200, 58, 37, 0.24);
}

.button-secondary {
  border-color: var(--outline);
  background: #ffffff;
  color: var(--sage-dark);
}

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

.phone-shot {
  position: absolute;
  width: min(58vw, 335px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(37, 30, 27, 0.18);
}

.phone-shot-main {
  top: 0;
  right: 24%;
  z-index: 2;
}

.phone-shot-side {
  right: 0;
  bottom: 0;
  z-index: 1;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--outline);
}

.proof-band p {
  margin: 0;
  padding: 22px;
  background: #ffffff;
  color: var(--sage-dark);
  font-weight: 800;
  text-align: center;
}

.split-section,
.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.steps-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.plan-card,
.screen-card {
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--surface);
}

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--tomato-soft);
  color: var(--tomato);
  font-weight: 800;
}

.step-card p,
.plan-card p,
.screen-card figcaption,
.section-heading p {
  color: var(--muted);
}

.feature-banner {
  padding-top: 18px;
  padding-bottom: 18px;
}

.feature-banner img {
  width: 100%;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--oat);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.screen-card {
  overflow: hidden;
  margin: 0;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--outline);
}

.screen-card figcaption {
  padding: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.screen-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1rem;
}

.plans-section,
.trust-section,
.final-cta {
  border-top: 1px solid var(--outline);
}

.plan-card {
  padding: 28px;
}

.plan-card-featured {
  border-color: #b6caa9;
  background: #f4faef;
}

.plan-card h3 {
  font-size: 1.55rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: #ffffff;
}

.final-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.final-cta img {
  border-radius: 8px;
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--outline);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.links {
  flex-wrap: wrap;
  gap: 14px;
}

.links a {
  color: var(--sage-dark);
  font-size: 0.92rem;
  text-decoration: none;
}

.page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.document {
  line-height: 1.66;
}

.document h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.document h2 {
  margin: 34px 0 10px;
  font-size: 1.1rem;
}

.updated {
  color: #68705f;
}

@media (max-width: 920px) {
  .hero,
  .split-section,
  .trust-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

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

  .final-cta {
    justify-items: start;
  }
}

@media (max-width: 660px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

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

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

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

  .section {
    padding: 48px 0;
  }

  .hero {
    padding-top: 26px;
    gap: 34px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .cta-row,
  .button {
    width: 100%;
  }

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

  .phone-shot {
    width: min(70vw, 300px);
  }

  .phone-shot-main {
    right: auto;
    left: 0;
  }

  .phone-shot-side {
    right: 0;
    bottom: 0;
  }

  .proof-band,
  .steps-grid,
  .screen-grid,
  .plans-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .screen-card img {
    aspect-ratio: 9 / 12;
  }
}
