:root {
  --ink: #17251e;
  --muted: #627066;
  --soft: #859085;
  --deep: #124738;
  --deep-2: #0c352a;
  --leaf: #3f936f;
  --moss: #6d8c76;
  --gold: #d1902b;
  --cream: #f7f2e5;
  --cream-2: #eee8d7;
  --paper: #fffdf8;
  --mint: #edf6ef;
  --line: rgba(23, 37, 30, .12);
  --shadow: 0 26px 80px rgba(18, 71, 56, .18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(63, 147, 111, .16), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(209, 144, 43, .12), transparent 24rem),
    var(--cream);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  min-height: 100vh;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header,
main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

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

.brand,
nav,
.actions {
  display: flex;
  align-items: center;
}

.site-header .brand {
  gap: 14px;
  color: var(--deep);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.site-header .brand-icon {
  width: 70px;
  height: 70px;
  border-radius: 14px;
}

.site-header nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 30px;
  color: var(--muted);
  font-size: 26px;
  font-weight: 800;
}

.site-header nav a {
  transition: color .18s ease, transform .18s ease;
}

.site-header nav a:hover {
  color: var(--deep);
  transform: translateY(-1px);
}

main {
  flex: 1;
  padding-bottom: 70px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  min-height: 760px;
  padding: 46px 0 76px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--deep-2);
  font-size: clamp(50px, 7vw, 94px);
  line-height: .93;
  letter-spacing: -.07em;
}

.intro {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
  font-weight: 650;
}

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

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  transition: transform .18s ease, filter .18s ease;
}

.store-badge img {
  width: 100%;
  height: auto;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.secondary-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 71, 56, .2);
  border-radius: 999px;
  background: rgba(255, 253, 248, .76);
  padding: 0 22px;
  color: var(--deep);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(18, 71, 56, .07);
  backdrop-filter: blur(12px);
}

.phone-stage {
  position: relative;
  min-height: 660px;
}

.phone {
  position: absolute;
  overflow: visible;
  background: transparent;
}

.phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(18, 71, 56, .22));
}

.phone-back {
  top: 54px;
  right: 8px;
  width: min(33vw, 305px);
  transform: rotate(6deg);
}

.phone-front {
  top: 0;
  left: 18px;
  width: min(36vw, 345px);
  transform: rotate(-3deg);
}

.section-copy p,
.faq p {
  color: var(--muted);
  line-height: 1.58;
  font-weight: 650;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .72fr);
  gap: clamp(36px, 7vw, 98px);
  align-items: center;
  padding: 86px 0 10px;
}

.section-copy h2,
.faq h2,
.final-cta h2 {
  margin-bottom: 18px;
  color: var(--deep-2);
  font-size: clamp(36px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.06em;
}

.section-copy p {
  max-width: 570px;
  font-size: 19px;
}

.single-phone,
.mini-phone {
  background: transparent;
  filter: drop-shadow(0 24px 48px rgba(18, 71, 56, .2));
}

.single-phone {
  width: min(100%, 360px);
  margin: 0 auto;
}

.single-phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.insights-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-top: 96px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(18, 71, 56, .94), rgba(12, 53, 42, .98)),
    var(--deep);
  padding: clamp(30px, 5vw, 58px);
  color: #fdf9ed;
  box-shadow: 0 26px 90px rgba(18, 71, 56, .2);
}

.insights-panel .eyebrow {
  color: #a9ddbe;
}

.insights-panel h2,
.insights-panel p {
  color: #fdf9ed;
}

.insights-panel p {
  color: rgba(253, 249, 237, .76);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.mini-phone {
  min-width: 0;
}

.mini-phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lowered {
  margin-top: 54px;
}

.faq {
  max-width: 840px;
  padding-top: 78px;
}

.faq details {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .78);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--deep);
  font-weight: 950;
}

.faq p {
  margin: 10px 0 0;
}

.simple-page {
  max-width: 780px;
  padding: 78px 0 130px;
}

.simple-page h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
}

.simple-page .intro {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(17px, 1.6vw, 20px);
}

.text-link {
  color: var(--deep);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.legal-page {
  max-width: 860px;
  padding: 76px 0 120px;
}

.legal-copy h1 {
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
}

.legal-copy h2 {
  margin: 34px 0 10px;
  color: var(--deep);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.legal-copy p,
.legal-copy li,
.meta {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 600;
}

.legal-copy a {
  color: var(--deep);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-copy ul {
  padding-left: 22px;
}

.site-footer {
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(23, 37, 30, .12);
  padding: 26px 18px 32px;
}

.site-footer p {
  width: min(1180px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 72px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(169, 221, 190, .32), transparent 16rem),
    var(--deep);
  padding: clamp(30px, 5vw, 50px);
  color: #fdf9ed;
}

.final-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fdf9ed;
}

.final-cta .eyebrow {
  color: #a9ddbe;
}

@media (max-width: 980px) {
  .hero,
  .feature-row,
  .insights-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .phone-stage {
    min-height: 640px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .phone-back {
    width: 300px;
  }

  .phone-front {
    width: 340px;
  }

}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .site-header .brand {
    font-size: 42px;
  }

  .site-header .brand-icon {
    width: 54px;
    height: 54px;
  }

  .site-header nav {
    font-size: 20px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .hero {
    padding-bottom: 36px;
  }

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

  .phone-front {
    left: 0;
    width: 64vw;
    max-width: 270px;
  }

  .phone-back {
    right: 0;
    width: 56vw;
    max-width: 250px;
  }

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

  .feature-row {
    padding-top: 74px;
  }

  .insights-panel {
    margin-top: 70px;
    border-radius: 28px;
  }

  .lowered {
    margin-top: 0;
  }

  .mini-phone {
    max-width: 310px;
    margin-inline: auto;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .site-header,
  main {
    width: min(100% - 26px, 1180px);
  }

  .site-header .brand {
    font-size: 36px;
  }

  .site-header .brand-icon {
    width: 48px;
    height: 48px;
  }

  .site-header nav {
    gap: 8px 14px;
    font-size: 18px;
  }

  .intro,
  .section-copy p {
    font-size: 17px;
  }

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

  .phone-front {
    width: 65vw;
  }

  .phone-back {
    width: 57vw;
  }
}
