/* BurgerFi x Samuel Adams — Claim Your $5
   Design comp is 1440px wide; --px is one comp pixel, capped at 1px so the
   desktop layout scales down proportionally and stops growing past 1440. */

:root {
  --px: min(0.06944vw, 1px);
  --green: #90c03f;
  --green-dark: #48601f;
  --cream: #f3f0eb;
  --black: #000;
  --font: "Jost", "Century Gothic", "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--cream);
}

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

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

.star {
  width: calc(var(--px) * 39);
  height: calc(var(--px) * 39);
  fill: var(--green);
  flex: none;
}

.dollar {
  font-size: 0.55em;
  vertical-align: 0.45em;
  letter-spacing: 0;
  margin-right: -0.12em;
}

/* ---------- Header ---------- */

.header {
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: auto;
}

.brand-word {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-word span {
  color: var(--green);
}

.btn-order {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 999px;
}

.btn-order:hover {
  background: #7fae32;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--green) url("../img/pattern.png") repeat;
  background-size: calc(var(--px) * 170) calc(var(--px) * 138);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(var(--px) * 800);
  display: flex;
  justify-content: flex-end;
}

.hero-glass {
  position: absolute;
  left: 11.53%;
  top: calc(var(--px) * 45);
  width: 32.22%;
  z-index: 1;
}

.panel {
  position: relative;
  background: var(--cream);
  width: 47.85%;
  margin-right: 14.1%;
  margin-top: calc(var(--px) * 67);
  padding: calc(var(--px) * 38) calc(var(--px) * 67) calc(var(--px) * 40) calc(var(--px) * 132);
  text-align: center;
}

.headline {
  font-weight: 800;
  font-size: calc(var(--px) * 108);
  line-height: 0.84;
  letter-spacing: 0.025em;
}

.headline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--px) * 14);
}

.kicker {
  margin-top: calc(var(--px) * 40);
  font-weight: 600;
  font-size: calc(var(--px) * 29);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.kicker-sub {
  margin-top: calc(var(--px) * 8);
  font-weight: 400;
  font-size: calc(var(--px) * 24);
  line-height: 1.15;
}

/* CTAs */

.cta-row {
  margin-top: calc(var(--px) * 22);
  display: flex;
  justify-content: center;
  gap: calc(var(--px) * 28);
}

.cta {
  width: calc(var(--px) * 224);
  min-height: calc(var(--px) * 97);
  border-radius: calc(var(--px) * 14);
  padding: calc(var(--px) * 10) calc(var(--px) * 8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.16;
}

.cta-solid {
  background: var(--black);
  color: #fff;
}

.cta-solid:hover {
  background: #1c1c1c;
}

.cta-ghost {
  border: calc(var(--px) * 2) solid var(--green);
  color: var(--green);
}

.cta-ghost:hover {
  background: rgba(144, 192, 63, 0.12);
}

.cta-lead {
  display: flex;
  align-items: center;
  gap: calc(var(--px) * 6);
  font-size: calc(var(--px) * 22);
  line-height: 1.1;
}

.cta-line {
  font-size: calc(var(--px) * 17);
}

.cta-ghost .cta-line {
  font-size: calc(var(--px) * 21);
  line-height: 1.2;
}

.star-sm {
  width: calc(var(--px) * 14);
  height: calc(var(--px) * 14);
}

/* How do I enter */

.how-title {
  margin-top: calc(var(--px) * 24);
  color: var(--green);
  font-weight: 600;
  font-size: calc(var(--px) * 33);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.how-copy {
  margin-top: calc(var(--px) * 14);
  font-size: calc(var(--px) * 25);
  line-height: 1.3;
}

/* ---------- Legal strip ---------- */

.legal {
  background: var(--green-dark);
  padding: calc(var(--px) * 29) 24px;
}

.legal p {
  max-width: calc(var(--px) * 963);
  margin: 0 auto;
  color: #fff;
  font-size: calc(var(--px) * 15);
  line-height: 1.42;
  text-align: center;
  font-style: italic;
  font-weight: 400;
}

/* ---------- Download ---------- */

.download {
  background: var(--green) url("../img/pattern.png") repeat;
  background-size: calc(var(--px) * 170) calc(var(--px) * 138);
  padding: 64px 24px;
  scroll-margin-top: 0;
}

.download-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream);
  padding: 48px 48px 44px;
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.015em;
}

.section-title .star {
  width: 22px;
  height: 22px;
}

.steps {
  list-style: none;
  margin: 32px auto 0;
  max-width: 620px;
  text-align: left;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 19px;
  line-height: 1.4;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.step-num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-now {
  margin-top: 30px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
}

.store-badges {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.store-badges img {
  height: 56px;
  width: auto;
}

.app-store-link:hover {
  opacity: 0.85;
}

/* ---------- Catering ---------- */

.catering {
  background: var(--cream);
  overflow: hidden;
}

.catering-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--px) * 54) 0 calc(var(--px) * 60);
  display: flex;
  align-items: center;
}

.catering-text {
  width: 51.9%;
  padding-left: 14.65%;
  text-align: center;
}

.catering-title {
  font-weight: 800;
  font-size: calc(var(--px) * 79);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.catering-title .star {
  width: calc(var(--px) * 43);
  height: calc(var(--px) * 43);
}

.catering-title .headline-row {
  gap: calc(var(--px) * 16);
}

.catering-sub {
  margin-top: calc(var(--px) * 20);
  font-weight: 500;
  font-size: calc(var(--px) * 30);
  letter-spacing: 0.005em;
}

.btn-catering {
  display: inline-block;
  margin-top: calc(var(--px) * 28);
  background: var(--green);
  color: #fff;
  font-weight: 500;
  font-size: calc(var(--px) * 19);
  line-height: 1.35;
  padding: calc(var(--px) * 14) calc(var(--px) * 26);
  border-radius: calc(var(--px) * 8);
}

.btn-catering:hover {
  background: #7fae32;
}

.catering-media {
  flex: 1;
  margin-left: calc(var(--px) * -85);
  transform: translateY(calc(var(--px) * 50));
}

.catering-media img {
  width: calc(var(--px) * 876);
  max-width: none;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--green-dark);
  color: #fff;
  padding: 28px 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.8;
}

.footer-powered {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ---------- Mobile ---------- */

@media (max-width: 860px) {
  .hero {
    background-size: 120px 97px;
  }

  .hero-inner {
    display: block;
    min-height: 0;
    padding: 24px 0 0;
  }

  .hero-glass {
    position: static;
    width: 58%;
    max-width: 260px;
    margin: 0 auto;
  }

  .panel {
    width: auto;
    margin: -12px 16px 0;
    padding: 26px 20px 34px;
  }

  .headline {
    font-size: 15vw;
    line-height: 0.82;
  }

  .star {
    width: 5.2vw;
    height: 5.2vw;
  }

  .kicker {
    margin-top: 14px;
    font-size: 5vw;
  }

  .kicker-sub {
    margin-top: 4px;
    font-size: 4.2vw;
  }

  .cta-row {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta {
    width: 100%;
    max-width: 320px;
    min-height: 0;
    border-radius: 12px;
    padding: 14px 16px;
  }

  .cta-lead {
    font-size: 20px;
    gap: 6px;
  }

  .star-sm {
    width: 13px;
    height: 13px;
  }

  .cta-line {
    font-size: 15px;
  }

  .cta-ghost .cta-line {
    font-size: 18px;
  }

  .how-title {
    margin-top: 26px;
    font-size: 6vw;
  }

  .how-copy {
    margin-top: 12px;
    font-size: 4.2vw;
  }

  .legal {
    padding: 22px 20px;
  }

  .legal p {
    max-width: none;
    font-size: 12px;
    line-height: 1.5;
  }

  .download {
    padding: 40px 16px;
  }

  .download-card {
    padding: 32px 22px 30px;
  }

  .section-title {
    font-size: 9vw;
    gap: 10px;
  }

  .section-title .star {
    width: 4vw;
    height: 4vw;
  }

  .steps {
    margin-top: 22px;
  }

  .steps li {
    font-size: 16px;
    gap: 12px;
  }

  .step-num {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .download-now {
    margin-top: 26px;
    font-size: 18px;
  }

  .store-badges img {
    height: 48px;
  }

  .catering-inner {
    display: block;
    padding: 40px 0 0;
  }

  .catering-text {
    width: auto;
    padding: 0 20px;
  }

  .catering-title {
    font-size: 11.5vw;
    line-height: 1.02;
  }

  .catering-title .star {
    width: 6vw;
    height: 6vw;
  }

  .catering-sub {
    margin-top: 12px;
    font-size: 4.6vw;
  }

  .btn-catering {
    margin-top: 20px;
    font-size: 16px;
    padding: 13px 24px;
    border-radius: 8px;
  }

  .catering-media {
    margin: 24px 0 0;
    transform: none;
  }

  .catering-media img {
    width: 100%;
  }

  .header-inner {
    height: 60px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 34px;
  }

  .brand-word {
    font-size: 22px;
  }

  .btn-order {
    font-size: 12px;
    padding: 10px 18px;
  }
}
