:root {
  --ink: #10201b;
  --muted: #5e6d67;
  --green: #2f7d68;
  --green-dark: #165846;
  --mint: #e6f2ed;
  --cream: #fbfaf6;
  --line: #dce5df;
  --coral: #d86d56;
  --blue: #2f7892;
  --gold: #e7b84f;
  --shadow: 0 24px 70px rgba(21, 44, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 24, 18, 0.66), rgba(9, 24, 18, 0));
}

.site-header.simple {
  position: sticky;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.05rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: inherit;
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 112px clamp(22px, 7vw, 92px) 86px;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=1800&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 25, 19, 0.82), rgba(10, 25, 19, 0.44) 46%, rgba(10, 25, 19, 0.14)),
    linear-gradient(180deg, rgba(10, 25, 19, 0.32), rgba(10, 25, 19, 0.58));
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  min-width: 0;
}

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

.hero .eyebrow {
  color: #bdf4df;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(4.4rem, 14vw, 9.5rem);
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button.wide {
  width: 100%;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  padding: 26px clamp(18px, 5vw, 64px);
  background: #fff;
}

.proof-band strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 950;
}

.proof-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 84px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 96px);
}

.section-copy p,
.section-heading p,
.food-copy p,
.faq-section p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 620;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}

.phone-frame {
  margin: 0;
  justify-self: center;
  width: min(390px, 100%);
  padding: 12px;
  border-radius: 28px;
  background: #10201b;
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  border-radius: 20px;
}

.phone-frame figcaption {
  padding: 14px 6px 2px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-weight: 850;
}

.tilted {
  transform: rotate(1.2deg);
}

.screenshots-section {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.compact {
  max-width: 640px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(20px, 3vw, 34px);
}

.featured-phone {
  margin-top: -24px;
}

.food-section {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(14, 31, 25, 0.08), rgba(14, 31, 25, 0.82)),
    url("https://images.unsplash.com/photo-1559847844-5315695dadae?q=80&w=1800&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.food-copy {
  max-width: 780px;
}

.food-copy .eyebrow {
  color: #bdf4df;
}

.food-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-section {
  background:
    linear-gradient(180deg, #f7fbf8, #fff),
    var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}

.price-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(21, 44, 36, 0.08);
}

.price-card.accent {
  border-color: rgba(47, 125, 104, 0.44);
  background: linear-gradient(180deg, #ffffff, #f0faf5);
}

.plan-name {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
}

.plan-note {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-weight: 750;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.faq-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  background: #10201b;
  color: #fff;
}

.faq-section p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-weight: 750;
}

.site-footer .brand-link {
  color: var(--ink);
}

.site-footer a:hover {
  color: var(--green);
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-page a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 78vh;
    align-items: flex-end;
  }

  .proof-band,
  .split-section,
  .screenshot-grid,
  .pricing-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .featured-phone {
    margin-top: 0;
  }

  .tilted {
    transform: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero {
    min-height: 80vh;
    padding: 96px 20px 56px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4rem);
  }

  .hero-content {
    width: min(330px, calc(100vw - 40px));
    max-width: min(330px, calc(100vw - 40px));
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1.04rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 64px 20px;
  }

  .proof-band div {
    padding: 22px 20px;
  }

  .phone-frame {
    padding: 8px;
    border-radius: 24px;
  }

  .phone-frame img {
    border-radius: 17px;
  }
}
