:root {
  color-scheme: light;
  --cream: #fff8ed;
  --paper: #fffdf8;
  --brown: #3e2416;
  --muted: #765b4b;
  --orange: #ff7b3f;
  --coral: #ff6657;
  --yellow: #ffd46c;
  --green: #67b95f;
  --line: #eedfca;
  --shadow: 0 24px 70px rgba(95, 55, 27, 0.12);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 2%, rgba(255, 212, 108, 0.26), transparent 28rem),
    radial-gradient(circle at 93% 28%, rgba(103, 185, 95, 0.13), transparent 24rem),
    var(--cream);
  color: var(--brown);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 22px;
  font-weight: 850;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 46px;
  object-fit: contain;
  width: 46px;
}

.nav-links {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--coral);
}

.nav-cta {
  background: var(--brown);
  border-radius: 999px;
  color: white;
  padding: 11px 17px;
}

main {
  overflow: hidden;
}

.hero {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: 760px;
  padding: 64px 24px 96px;
}

.eyebrow {
  align-items: center;
  color: #a14b25;
  display: flex;
  font-size: 14px;
  font-weight: 850;
  gap: 10px;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 10px;
}

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

h1 {
  font-size: clamp(52px, 7.2vw, 92px);
  letter-spacing: -0.065em;
  line-height: 0.93;
  margin-bottom: 28px;
  max-width: 760px;
}

.hero-copy > p:not(.eyebrow):not(.microcopy) {
  color: var(--muted);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.42;
  max-width: 660px;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 16px;
}

.button {
  align-items: center;
  border: 2px solid var(--brown);
  border-radius: 16px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 850;
  justify-content: center;
  min-height: 58px;
  padding: 14px 22px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 8px 0 rgba(62, 36, 22, 0.15);
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--coral));
  border-color: transparent;
  color: white;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
}

.microcopy {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero-visual {
  min-height: 610px;
  position: relative;
}

.phone {
  background: #111;
  border: 9px solid #111;
  border-radius: 48px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: absolute;
  width: min(315px, 66vw);
}

.phone img {
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
  width: 100%;
}

.phone-main {
  right: 25px;
  top: 5px;
  transform: rotate(2.5deg);
  z-index: 2;
}

.phone-back {
  left: 5px;
  opacity: 0.96;
  top: 95px;
  transform: rotate(-6deg) scale(0.9);
}

.proof-strip {
  background: var(--brown);
  color: white;
}

.proof-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.proof-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding: 32px 24px;
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.proof-item span {
  color: #e8d9cc;
  font-size: 14px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 112px 24px;
}

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

.section-heading h2,
.split-copy h2,
.final-cta h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 22px;
}

.section-heading p,
.split-copy > p {
  color: var(--muted);
  font-size: 20px;
}

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

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

.guide-card {
  background: var(--brown);
  border-radius: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px;
  text-decoration: none;
  transition: transform 160ms ease;
}

.guide-card:nth-child(2) {
  background: #bb4f2e;
}

.guide-card:nth-child(3) {
  background: #4e874a;
}

.guide-card:hover,
.guide-card:focus-visible {
  transform: translateY(-4px);
}

.guide-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guide-card h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: auto 0 18px;
}

.guide-card strong {
  font-size: 15px;
}

.feature-card {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 250px;
  padding: 30px;
}

.feature-icon {
  align-items: center;
  background: #ffe9ca;
  border-radius: 15px;
  display: inline-flex;
  font-size: 25px;
  height: 50px;
  justify-content: center;
  margin-bottom: 32px;
  width: 50px;
}

.feature-card:nth-child(2) .feature-icon {
  background: #ffe0db;
}

.feature-card:nth-child(3) .feature-icon {
  background: #e7f2dc;
}

.feature-card h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  align-items: center;
  display: grid;
  gap: 86px;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.split-reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.split-reverse .phone-stage {
  order: 2;
}

.phone-stage {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 650px;
  position: relative;
}

.phone-stage .phone {
  position: relative;
  width: min(330px, 82vw);
}

.phone-stage::before {
  background: var(--yellow);
  border-radius: 43% 57% 62% 38% / 50% 42% 58% 50%;
  content: "";
  height: 470px;
  opacity: 0.44;
  position: absolute;
  transform: rotate(-8deg);
  width: 470px;
}

.check-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  display: flex;
  font-size: 18px;
  font-weight: 750;
  gap: 14px;
}

.check-list li::before {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  color: white;
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  height: 23px;
  justify-content: center;
  margin-top: 2px;
  width: 23px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 820px;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  padding: 21px 0;
}

.faq-list details p {
  color: var(--muted);
  padding-bottom: 20px;
}

.final-cta {
  align-items: center;
  background: var(--yellow);
  border-radius: var(--radius);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin: 0 auto 112px;
  max-width: 1132px;
  overflow: hidden;
  padding: 54px;
  position: relative;
}

.final-cta h2 {
  margin-bottom: 10px;
  max-width: 680px;
}

.final-cta p {
  color: #684a31;
  font-size: 18px;
  margin-bottom: 0;
}

.final-cta img {
  align-self: end;
  margin-bottom: -56px;
  width: 220px;
}

.site-footer {
  background: var(--brown);
  color: white;
  padding: 46px 24px;
}

.guide-page main {
  overflow: visible;
}

.guide-hero,
.guide-body {
  margin: 0 auto;
  max-width: 900px;
  padding-left: 24px;
  padding-right: 24px;
}

.guide-hero {
  padding-bottom: 70px;
  padding-top: 90px;
}

.guide-hero h1 {
  font-size: clamp(46px, 7vw, 78px);
  max-width: 860px;
}

.guide-hero > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 21px;
  max-width: 720px;
}

.guide-body {
  padding-bottom: 110px;
}

.guide-body article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 6vw, 58px);
}

.guide-body h2 {
  font-size: clamp(30px, 4vw, 43px);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 48px 0 16px;
}

.guide-body h2:first-child {
  margin-top: 0;
}

.guide-body h3 {
  font-size: 22px;
  margin: 32px 0 10px;
}

.guide-body p,
.guide-body li {
  color: var(--muted);
  font-size: 18px;
}

.guide-body li + li {
  margin-top: 12px;
}

.step-list {
  counter-reset: guide-step;
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
}

.step-list li {
  align-items: flex-start;
  background: #fff6e8;
  border-radius: 16px;
  counter-increment: guide-step;
  display: grid;
  gap: 14px;
  grid-template-columns: 34px 1fr;
  padding: 18px;
}

.step-list li::before {
  align-items: center;
  background: var(--orange);
  border-radius: 999px;
  color: white;
  content: counter(guide-step);
  display: flex;
  font-size: 14px;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.callout {
  background: #eaf5df;
  border-left: 5px solid var(--green);
  border-radius: 14px;
  margin: 28px 0;
  padding: 20px 22px;
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
}

.breadcrumbs a {
  color: #a14b25;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1132px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #e8d9cc;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-visual {
    margin: 0 auto;
    max-width: 540px;
    width: 100%;
  }

  .proof-grid,
  .feature-grid,
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split-reverse {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .split-reverse .phone-stage {
    order: 0;
  }

  .final-cta {
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  h1 {
    font-size: 51px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .phone {
    border-radius: 36px;
    border-width: 7px;
    width: 232px;
  }

  .phone-main {
    right: 4px;
  }

  .phone-back {
    left: -14px;
  }

  .proof-grid,
  .feature-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .section {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone-stage .phone {
    width: 250px;
  }

  .phone-stage::before {
    height: 360px;
    width: 360px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
    padding: 34px 28px;
  }

  .final-cta img {
    display: none;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
