:root {
  --bg-top: #fff4ea;
  --bg-bottom: #e8d4c2;
  --surface: #fffaf5;
  --surface-strong: #ffffff;
  --ink: #35271f;
  --muted: #75675f;
  --brand: #7a5145;
  --brand-dark: #463528;
  --pebble: #c98f7a;
  --sage: #9eb29b;
  --rose: #d4afb9;
  --blue: #819ca9;
  --teal: #a8c8c0;
  --line: rgba(70, 53, 40, 0.14);
  --shadow: 0 20px 55px rgba(70, 53, 40, 0.13);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 244, 234, 0.96), rgba(232, 212, 194, 0.62) 56%, #fffaf5 100%);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 250, 245, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(70, 53, 40, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  color: var(--surface-strong) !important;
  background: var(--brand-dark);
  padding: 10px 14px;
  border-radius: 8px;
}

.section-band,
.section-narrow {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100svh - 70px);
  padding: 74px 0 82px;
}

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

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

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

h1 {
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 1.08rem;
  line-height: 1.15;
}

.hero-lede,
.problem p,
.trust p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(70, 53, 40, 0.22);
}

.button.secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.hero-proof {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-weight: 700;
}

.hero-proof li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-proof li::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--pebble);
  box-shadow: inset -2px -2px 0 rgba(70, 53, 40, 0.1);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 0.56fr;
  gap: 18px;
  align-items: center;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 18px;
  border: 10px solid #2d241e;
  border-radius: 42px;
  background: #f8f0e9;
  box-shadow: var(--shadow);
}

.phone-bar {
  width: 96px;
  height: 26px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #111;
}

.jar-screen {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 534px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.screen-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 850;
}

.screen-heading strong {
  font-size: 2.4rem;
}

.jar-visual {
  position: relative;
  flex: 1;
  min-height: 270px;
  margin: 20px 0 18px;
  border: 2px solid rgba(122, 81, 69, 0.13);
  border-top-color: rgba(122, 81, 69, 0.07);
  border-radius: 10px 10px 44px 44px;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.62), rgba(255, 248, 241, 0.28));
}

.jar-visual::after {
  content: "";
  position: absolute;
  inset: auto 16% 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(70, 53, 40, 0.07);
}

.pebble {
  position: absolute;
  display: block;
  width: 58px;
  height: 38px;
  border-radius: 50%;
  background: var(--pebble);
  box-shadow: inset -5px -5px 0 rgba(70, 53, 40, 0.09), 0 4px 10px rgba(70, 53, 40, 0.08);
}

.p1 { left: 22%; bottom: 36px; transform: rotate(-16deg); background: #e6b89c; }
.p2 { left: 38%; bottom: 34px; transform: rotate(11deg); background: #9eb29b; }
.p3 { left: 54%; bottom: 36px; transform: rotate(-7deg); background: #d4afb9; }
.p4 { left: 63%; bottom: 72px; transform: rotate(23deg); background: #819ca9; }
.p5 { left: 28%; bottom: 74px; transform: rotate(18deg); background: #f2d0a9; }
.p6 { left: 46%; bottom: 82px; transform: rotate(-19deg); background: #a8c8c0; }
.p7 { left: 18%; bottom: 108px; transform: rotate(26deg); background: #b29b9b; }
.p8 { left: 56%; bottom: 124px; transform: rotate(-25deg); background: #e2c2b3; }
.p9 { left: 35%; bottom: 128px; transform: rotate(9deg); background: #c98f7a; }
.p10 { left: 48%; top: 74px; transform: rotate(28deg); background: #d4afb9; }
.p11 { left: 23%; top: 130px; transform: rotate(-12deg); background: #819ca9; }
.p12 { left: 64%; top: 158px; transform: rotate(21deg); background: #9eb29b; }

.screen-card {
  position: relative;
  z-index: 1;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.screen-card p {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 850;
}

.screen-card .card-kicker {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.drop-button {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
  padding: 15px 18px;
  font: inherit;
  font-weight: 850;
}

.real-screen {
  align-self: end;
  margin: 0;
  transform: translateX(-20px);
}

.real-screen img {
  width: 190px;
  max-height: 414px;
  object-fit: cover;
  object-position: top;
  border: 8px solid #2d241e;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(70, 53, 40, 0.16);
}

.real-screen figcaption {
  max-width: 190px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.section-narrow {
  padding: 90px 0;
}

.problem {
  max-width: 820px;
  text-align: center;
}

.steps,
.feature-grid,
.comparison-grid {
  display: grid;
  gap: 14px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.steps article,
.feature-grid article,
.compare-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-dark);
  font-weight: 900;
}

.steps p,
.feature-grid p,
.comparison p,
.audience-list p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band {
  background: rgba(255, 250, 245, 0.7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
}

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

.comparison {
  text-align: center;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  text-align: left;
}

.compare-card.muted {
  background: rgba(255, 255, 255, 0.48);
}

.compare-card.warm {
  background: rgba(255, 244, 234, 0.9);
  border-color: rgba(201, 143, 122, 0.42);
}

.audience {
  max-width: 860px;
}

.audience-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.audience-list p {
  padding: 20px;
  border-left: 5px solid var(--pebble);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 720;
}

.trust {
  max-width: 850px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--brand-dark);
  font-weight: 850;
}

details p {
  padding: 0 20px 18px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 70px;
  padding: 36px;
  border: 1px solid rgba(201, 143, 122, 0.4);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 244, 234, 0.96), rgba(255, 250, 245, 0.94));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  max-width: 640px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer a {
  text-decoration: none;
}

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

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

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

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    min-height: 560px;
  }

  .real-screen {
    display: none;
  }
}

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

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

  .section-band,
  .section-narrow {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.9rem);
  }

  .hero {
    min-height: auto;
    padding: 42px 0 58px;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .steps,
  .feature-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .section-narrow {
    padding: 68px 0;
  }

  .phone-frame {
    min-height: 510px;
    border-width: 8px;
    border-radius: 34px;
  }

  .jar-screen {
    min-height: 454px;
    padding: 18px;
    border-radius: 22px;
  }

  .jar-visual {
    min-height: 218px;
  }

  .pebble {
    width: 46px;
    height: 31px;
  }

  .final-cta {
    padding: 24px;
  }
}
