﻿:root {
  --green: #184c3c;
  --green-dark: #10392d;
  --green-soft: #e9f2ed;
  --green-pale: #f5f8f6;
  --gold: #c39850;
  --text: #1f2924;
  --muted: #6c7771;
  --line: #dde5e0;
  --white: #ffffff;
  --bg: #fafbf9;
  --shadow: 0 24px 70px rgba(20, 70, 55, .12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221,229,224,.8);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  font-size: 23px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -.6px;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  color: #47524d;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-link {
  font-size: 14px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 10px 25px rgba(24,76,60,.18);
}

.button-secondary {
  background: white;
  border-color: var(--line);
}

.button-large {
  min-height: 52px;
  padding: 0 26px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 92px 0 80px;
  background:
    linear-gradient(90deg, rgba(247,250,247,.98) 0%, rgba(247,250,247,.94) 45%, rgba(233,243,234,.78) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(121,166,119,.32), transparent 24%),
    radial-gradient(circle at 75% 75%, rgba(183,155,89,.16), transparent 27%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker,
.fresh-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 680px;
  margin: 22px 0 22px;
  font-size: clamp(48px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -3px;
  color: var(--green-dark);
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  font-size: 19px;
  color: var(--muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 28px;
  font-size: 14px;
  color: #52605a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 515px;
}

.phone {
  width: min(365px, 86%);
  overflow: hidden;
  margin-left: auto;
  background: white;
  border: 8px solid #14251f;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 100px;
  height: 20px;
  margin: 0 auto;
  background: #14251f;
  border-radius: 0 0 14px 14px;
}

.listing-photo {
  height: 230px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(rgba(16,57,45,.04), rgba(16,57,45,.15)),
    linear-gradient(145deg, #b8cfaa 0%, #77986f 50%, #cfbd7d 100%);
}

.listing-photo span {
  padding: 7px 10px;
  background: rgba(255,255,255,.94);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
}

.phone-body {
  padding: 22px;
}

.phone-body small {
  color: var(--muted);
}

.phone-body h3 {
  margin: 6px 0 9px;
  color: var(--green-dark);
}

.phone-body strong {
  display: block;
  font-size: 25px;
  color: var(--gold);
}

.tag-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  padding: 5px 9px;
  border-radius: 9px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px;
}

.sale-card {
  position: absolute;
  left: 0;
  bottom: 35px;
  width: 205px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.sale-card small {
  color: var(--gold);
  font-weight: 900;
}

.sale-card strong {
  color: var(--green);
  font-size: 20px;
}

.fake-qr {
  width: 56px;
  height: 56px;
  margin-top: 12px;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, #183f34 0 5px, white 5px 10px);
  border: 5px solid white;
  outline: 1px solid var(--line);
  font-size: 0;
}

section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2 {
  margin: 13px 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.13;
  letter-spacing: -1.8px;
  color: var(--green-dark);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.benefits-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.benefit-card,
.feature-card,
.step-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}

.card-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.benefit-card h3,
.feature-card h3,
.step-card h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
}

.benefit-card p,
.feature-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.example-section {
  background: #f1f5f2;
}

.browser-preview {
  overflow: hidden;
  max-width: 1040px;
  margin: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f8faf8;
  border-bottom: 1px solid var(--line);
}

.browser-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5ce;
}

.browser-bar span {
  margin-left: 12px;
  color: #89938e;
  font-size: 12px;
}

.browser-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.example-photo {
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0,0,0,.03), rgba(0,0,0,.10)),
    linear-gradient(145deg, #b9cea8, #6f916b 60%, #ceb875);
  color: rgba(255,255,255,.75);
  font-weight: 800;
}

.example-info {
  padding: 48px;
}

.status-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.example-info h3 {
  margin: 18px 0 8px;
  font-size: 30px;
  line-height: 1.25;
  color: var(--green-dark);
}

.example-info strong {
  font-size: 26px;
  color: var(--gold);
}

.example-info p {
  color: var(--muted);
}

.example-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.example-actions button {
  padding: 11px 15px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-number {
  width: 43px;
  height: 43px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.features-section {
  background: white;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.freshness-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  padding: 48px;
  border-radius: 32px;
  background: var(--green-dark);
  color: white;
}

.fresh-kicker {
  background: rgba(255,255,255,.1);
  color: #e3c78f;
}

.freshness-box h2 {
  margin: 15px 0 8px;
  font-size: clamp(32px, 4vw, 48px);
}

.freshness-box p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.72);
}

.freshness-number {
  min-width: 165px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
}

.freshness-number strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: #e3c78f;
}

.freshness-number span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.final-cta {
  text-align: center;
}

.cta-box {
  padding: 72px 30px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 15px 0 12px;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--green-dark);
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

footer {
  padding: 35px 0 45px;
}

.footer-row {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

[data-loading="true"] {
  opacity: .55;
}

@media (max-width: 920px) {
  .nav-links,
  .login-link {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-grid,
  .browser-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .site-header .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    padding: 55px 0;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-copy {
    font-size: 17px;
  }

  section {
    padding: 64px 0;
  }

  .benefits-grid,
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .example-info {
    padding: 28px;
  }

  .example-photo {
    min-height: 260px;
  }

  .freshness-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .freshness-number {
    width: 100%;
  }

  .sale-card {
    left: 5px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
