@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #47a835;
  --green-dark: #287626;
  --lime: #b1d437;
  --teal: #007f8e;
  --teal-dark: #0f2928;
  --blue: #3d6ad6;
  --gold: #fbc809;
  --ink: #13201d;
  --muted: #53635e;
  --line: #dce6e1;
  --soft: #f2f9f9;
  --paper: #ffffff;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: var(--teal);
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-link img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

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

.site-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 122px));
  overflow: hidden;
  background: var(--teal-dark);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--green);
  content: "";
}

.hero-inner,
.section-inner,
.legal-wrap,
.footer-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100svh - 122px));
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(670px, 60%);
  padding: 80px 0 94px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--lime);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: 6.2rem;
  font-weight: 700;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: #d7e6e2;
  font-size: 1.35rem;
  white-space: nowrap;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 178px;
  min-height: 56px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  background: #050505;
  color: var(--paper);
  text-align: left;
  text-decoration: none;
}

.store-button img {
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.store-button > span:last-child {
  display: grid;
  line-height: 1.05;
}

.store-button small {
  margin-bottom: 3px;
  font-size: 0.55rem;
  font-weight: 500;
}

.store-button strong {
  font-size: 1rem;
  font-weight: 600;
}

.google-play-button {
  display: block;
  min-width: 0;
  width: 188px;
  height: 56px;
  overflow: hidden;
  text-decoration: none;
}

.google-play-button img {
  display: block;
  width: 188px;
  height: 56px;
  object-fit: fill;
}

.store-buttons-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--gold);
  color: #171d1b;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--paper);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.product-scene {
  position: absolute;
  right: -126px;
  bottom: -26px;
  width: 640px;
}

.product-scene img {
  width: 100%;
  height: auto;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
}

.promise-strip div {
  display: grid;
  gap: 2px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.promise-strip div:first-child {
  padding-left: 0;
}

.promise-strip div:last-child {
  border-right: 0;
}

.promise-strip strong {
  font-size: 0.88rem;
}

.promise-strip span {
  color: var(--muted);
  font-size: 0.76rem;
}

.band {
  padding: 88px 0;
}

.workflow {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
  font-size: 3.25rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cbdad5;
}

.steps article {
  min-height: 230px;
  padding: 28px 30px 18px 0;
  border-right: 1px solid #cbdad5;
}

.steps article + article {
  padding-left: 30px;
}

.steps article:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 9px;
  font-size: 1.38rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.app-experience {
  background: var(--paper);
}

.experience-layout,
.partner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}

.experience-copy .section-heading {
  margin-bottom: 24px;
}

.experience-copy > p:last-child,
.partner-copy p {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

.discount-list {
  border-top: 1px solid var(--line);
}

.discount-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.discount-list span {
  padding-top: 3px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
}

.discount-list p {
  margin: 0;
  color: var(--muted);
}

.discount-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.08rem;
}

.partner-band {
  background: var(--gold);
}

.partner-band .eyebrow {
  color: #485017;
}

.partner-band .section-heading {
  margin-bottom: 0;
}

.partner-copy p {
  color: #30362f;
}

.final-cta {
  text-align: center;
}

.final-cta .section-inner > img {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 16px;
}

.final-cta h2 {
  margin-bottom: 28px;
  font-size: 4rem;
}

.site-footer {
  padding: 34px 0;
  background: var(--teal-dark);
  color: #c9dad5;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-links a,
.site-footer a {
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  font-size: 0.72rem;
}

.legal-page {
  background: var(--soft);
}

.legal-wrap {
  padding: 64px 0 96px;
}

.legal-document {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 60px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-document h1 {
  margin-bottom: 8px;
  font-size: 4rem;
}

.legal-document h2 {
  margin-top: 38px;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.legal-document h3 {
  margin-top: 24px;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.legal-document p,
.legal-document li {
  color: #34423d;
}

.legal-document li + li {
  margin-top: 6px;
}

.effective-date {
  margin: 0 0 36px;
  color: var(--muted);
  font-weight: 600;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.faq-item p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-copy {
    width: 62%;
  }

  .product-scene {
    right: -132px;
    transform: scale(0.88);
    transform-origin: bottom right;
  }

  .experience-layout,
  .partner-layout {
    gap: 44px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    min-height: 64px;
  }

  .brand-link img {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    gap: 12px;
  }

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

  .site-nav .nav-cta {
    padding: 9px 12px;
    font-size: 0.75rem;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: 58px 0 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-lead {
    max-width: 440px;
    font-size: 1.08rem;
    white-space: normal;
  }

  .store-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .store-button {
    min-width: 0;
    width: 100%;
    min-height: 52px;
    padding: 7px 10px;
  }

  .store-button img {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .google-play-button,
  .google-play-button img {
    width: 100%;
    height: 52px;
  }

  .google-play-button img {
    width: 100%;
  }

  .store-button strong {
    font-size: 0.86rem;
  }

  .product-scene {
    right: 50%;
    bottom: -4px;
    width: 480px;
    margin-right: -240px;
    transform: none;
  }

  .promise-strip,
  .steps,
  .experience-layout,
  .partner-layout {
    grid-template-columns: 1fr;
  }

  .promise-strip {
    padding: 8px 0;
  }

  .promise-strip div,
  .promise-strip div:first-child {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-strip div:last-child {
    border-bottom: 0;
  }

  .band {
    padding: 64px 0;
  }

  .steps article,
  .steps article + article {
    min-height: 0;
    padding: 24px 0 30px;
    border-right: 0;
    border-bottom: 1px solid #cbdad5;
  }

  .steps article:last-child {
    border-bottom: 0;
  }

  .step-number {
    margin-bottom: 16px;
  }

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

  .legal-document {
    padding: 34px 24px;
  }

  .section-heading {
    font-size: 2.25rem;
  }

  .final-cta h2,
  .legal-document h1 {
    font-size: 2.5rem;
  }
}

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