:root {
  --ink: #111512;
  --muted: #5e6962;
  --paper: #f7f3e4;
  --panel: #ffffff;
  --line: #ded6bd;
  --green: #65dc81;
  --green-dark: #178d53;
  --olive: #aaa27d;
  --peach: #eec8b2;
  --blue: #6aa0de;
  --coral: #ff8c70;
  --shadow: 0 24px 70px rgba(16, 25, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.landing-page {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 34px));
  padding: 24px clamp(18px, 5vw, 72px) 56px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(247, 243, 228, 0.99) 0%, rgba(247, 243, 228, 0.93) 42%, rgba(247, 243, 228, 0.58) 68%, rgba(247, 243, 228, 0.22) 100%),
    radial-gradient(circle at 76% 20%, rgba(238, 200, 178, 0.7), transparent 31%),
    linear-gradient(144deg, #f7f3e4 0%, #f0c9b5 52%, #aaa27d 100%);
}

.site-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-icon,
.footer-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(17, 21, 18, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
  margin: clamp(78px, 14vh, 138px) auto 0;
  transform: translateX(clamp(-260px, -18vw, 0px));
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(4rem, 11vw, 8.6rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 600px;
  margin: 28px 0 0;
  color: #26332b;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 760;
  line-height: 1.15;
}

.hero-actions,
.cta-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.primary-button {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(17, 21, 18, 0.18);
}

.secondary-button {
  border: 1px solid rgba(17, 21, 18, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-shot {
  position: absolute;
  width: clamp(190px, 23vw, 310px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-shot-intro {
  right: clamp(38px, 7vw, 110px);
  bottom: -78px;
  width: clamp(230px, 27vw, 380px);
  transform: rotate(2deg);
}

.hero-shot-protect {
  right: clamp(160px, 22vw, 320px);
  top: 126px;
  width: clamp(170px, 20vw, 280px);
  transform: rotate(-8deg);
}

.hero-shot-earn {
  right: clamp(-46px, 2vw, 28px);
  top: 176px;
  width: clamp(170px, 20vw, 280px);
  transform: rotate(8deg);
}

.summary-band,
.feature-band,
.screens-band,
.widgets-band,
.quote-band,
.cta-band {
  padding: clamp(54px, 8vw, 102px) clamp(18px, 5vw, 72px);
}

.summary-grid,
.feature-grid,
.screens-copy,
.screens-row,
.widgets-inner,
.quote-inner,
.cta-inner,
.footer-inner,
.legal-document {
  max-width: 1180px;
  margin: 0 auto;
}

.summary-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 7vw, 96px);
  align-items: start;
}

.summary-grid h2,
.screens-copy h2,
.cta-inner h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.summary-grid > p {
  margin: 0;
  color: #334139;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 760;
  line-height: 1.2;
}

.feature-band {
  background: #111512;
  color: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.feature-item {
  min-height: 290px;
  padding: clamp(22px, 3vw, 34px);
  background: #111512;
}

.feature-number {
  color: var(--green);
  font-weight: 950;
}

.feature-item h3 {
  margin: 72px 0 12px;
  max-width: 12ch;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.feature-item p {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 650;
}

.screens-band {
  background: #f7f3e4;
}

.screens-copy {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 36px;
  align-items: start;
}

.screens-row {
  max-width: none;
  display: flex;
  gap: clamp(14px, 2.4vw, 28px);
  margin-top: 46px;
  margin-right: calc(clamp(18px, 5vw, 72px) * -1);
  margin-left: calc(clamp(18px, 5vw, 72px) * -1);
  padding: 0 clamp(18px, 5vw, 72px) 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: clamp(18px, 5vw, 72px);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screens-row figure {
  flex: 0 0 clamp(230px, 24vw, 330px);
  margin: 0;
  scroll-snap-align: start;
}

.screens-row img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(17, 21, 18, 0.1);
  box-shadow: 0 20px 50px rgba(22, 35, 26, 0.14);
}

.screens-row figcaption {
  margin-top: 12px;
  color: #4f564f;
  font-size: 0.92rem;
  font-weight: 900;
}

.widgets-band {
  background:
    linear-gradient(145deg, rgba(17, 21, 18, 0.96), rgba(17, 21, 18, 0.98)),
    linear-gradient(135deg, #111512, #284431);
  color: white;
}

.widgets-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
}

.widgets-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.widgets-copy p:not(.section-kicker) {
  max-width: 38rem;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
  font-weight: 650;
}

.widgets-frame {
  margin: 0;
  justify-self: center;
  width: min(100%, 430px);
}

.widgets-frame img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.quote-band {
  background:
    linear-gradient(90deg, rgba(17, 21, 18, 0.94), rgba(17, 21, 18, 0.82)),
    linear-gradient(135deg, #111512 0%, #3d493a 52%, #eec8b2 100%);
  color: white;
}

.quote-inner {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: center;
}

.quote-art {
  margin: 0;
}

.quote-art img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.quote-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.quote-copy p:not(.section-kicker) {
  max-width: 40rem;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
  font-weight: 650;
}

.cta-band {
  background: linear-gradient(135deg, #f7f3e4 0%, #eec8b2 46%, #aaa27d 100%);
}

.cta-inner {
  justify-content: center;
  text-align: center;
}

.cta-inner h2 {
  flex-basis: 100%;
}

.cta-icon {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  margin: 0 auto 6px;
}

.site-footer {
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
  text-decoration: none;
}

.legal-page {
  min-height: 70svh;
  padding: clamp(28px, 6vw, 70px) clamp(18px, 5vw, 72px);
}

.legal-home {
  display: inline-flex;
  margin-bottom: 42px;
  font-weight: 950;
  text-decoration: none;
}

.legal-document {
  max-width: 820px;
}

.legal-document h1 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.legal-document h2 {
  margin: 34px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.legal-document p {
  color: #334139;
  font-size: 1.08rem;
  font-weight: 560;
}

.legal-document a {
  color: var(--green-dark);
  font-weight: 850;
}

@media (max-width: 900px) {
  .hero {
    min-height: 88svh;
    padding-bottom: 42px;
    background:
      linear-gradient(180deg, rgba(247, 243, 228, 0.98) 0%, rgba(247, 243, 228, 0.9) 48%, rgba(247, 243, 228, 0.58) 100%),
      linear-gradient(135deg, #f7f3e4 0%, #eec8b2 52%, #aaa27d 100%);
  }

  .hero-copy {
    max-width: 620px;
    margin-top: 64px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 20vw, 7rem);
  }

  .hero-media {
    opacity: 0.34;
  }

  .hero-shot-main {
    right: 6vw;
    bottom: -42px;
  }

  .hero-shot-intro {
    right: 6vw;
    bottom: -42px;
  }

  .hero-shot-protect {
    right: 46vw;
    top: 220px;
  }

  .hero-shot-earn {
    right: -70px;
    top: 180px;
  }

  .summary-grid,
  .screens-copy,
  .widgets-inner,
  .quote-inner {
    grid-template-columns: 1fr;
  }

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

  .feature-item {
    min-height: 220px;
  }

  .feature-item h3 {
    margin-top: 44px;
  }

  .screens-row {
    max-width: none;
  }

  .widgets-frame {
    width: min(100%, 390px);
  }
}

@media (max-width: 620px) {
  .site-nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .hero-actions,
  .hero-actions a,
  .cta-inner a {
    width: 100%;
  }

  .screens-row figure {
    flex-basis: min(78vw, 320px);
  }
}
