:root {
  --dark: #101820;
  --dark-2: #172635;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --white: #ffffff;
  --muted: rgba(255,255,255,.7);
  --line: rgba(255,255,255,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 24, 32, .88);
  backdrop-filter: blur(18px);
}

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

.brand-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--orange);
  box-shadow: 0 18px 40px rgba(249, 115, 22, .28);
  font-size: 24px;
}

.brand strong {
  display: block;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}

.nav a:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  transition: .2s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: white;
  color: var(--dark);
}

.button-orange {
  background: var(--orange);
  color: white;
}

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

.button-ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
}

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

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 56px);
  max-width: 1400px;
  margin: 0 auto;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.glow-one {
  left: -160px;
  top: 80px;
  width: 360px;
  height: 360px;
  background: rgba(249, 115, 22, .22);
}

.glow-two {
  right: -120px;
  top: 0;
  width: 420px;
  height: 420px;
  background: rgba(52, 211, 153, .12);
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: 14px;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(50px, 8vw, 112px);
  line-height: .94;
  letter-spacing: -0.075em;
}

.lead {
  max-width: 730px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.7);
  font-weight: 800;
  font-size: 14px;
}

.hero-card {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 24px 100px rgba(0,0,0,.28);
}

.shop-card {
  border-radius: 26px;
  background: white;
  color: var(--dark);
  padding: 24px;
}

.shop-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.shop-card-heading p {
  margin-bottom: 8px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 1000;
}

.shop-card-heading h2 {
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.shop-card-heading span {
  border-radius: 999px;
  background: var(--dark);
  color: white;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
}

.product-list {
  display: grid;
  gap: 10px;
}

.product-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px;
  border-radius: 18px;
  background: #f4f4f5;
  font-weight: 900;
}

.product-list a:hover {
  background: #fff7ed;
}

.product-list strong {
  color: #a1a1aa;
}

.promo-box {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  background: var(--orange);
  color: white;
}

.promo-box small {
  display: block;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.promo-box strong {
  display: block;
  margin-top: 4px;
  font-size: 25px;
  line-height: 1.1;
}

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 76px clamp(20px, 5vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.eyebrow {
  color: #fdba74;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 13px;
  font-weight: 1000;
}

.orange {
  color: var(--orange);
}

.section h2,
.gift-copy h2,
.why-section h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -0.06em;
}

.grid {
  display: grid;
  gap: 20px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.mini-card {
  display: block;
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 18px 60px rgba(0,0,0,.15);
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.13);
}

.card-icon,
.mini-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: var(--orange);
  font-size: 28px;
}

.card h3,
.mini-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.card p,
.mini-card p,
.why-section p {
  margin-bottom: 0;
  color: rgba(255,255,255,.67);
  line-height: 1.75;
}

.gift-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  max-width: calc(1400px - clamp(40px, 10vw, 112px));
  margin: 76px auto;
  overflow: hidden;
  border-radius: 34px;
  background: white;
  color: var(--dark);
}

.gift-feature {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 64px);
  background: #fff7ed;
}

.dark-card {
  width: 100%;
  max-width: 390px;
  padding: 30px;
  border-radius: 32px;
  background: var(--dark);
  color: white;
  box-shadow: 0 24px 80px rgba(16,24,32,.22);
}

.dark-card h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: .98;
  letter-spacing: -0.06em;
}

.dark-card p:last-child {
  color: rgba(255,255,255,.7);
  line-height: 1.72;
}

.gift-copy {
  padding: clamp(34px, 6vw, 76px);
}

.gift-copy > p {
  color: #52525b;
  font-size: 18px;
  line-height: 1.75;
}

.gift-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.gift-copy li {
  padding: 16px;
  border-radius: 18px;
  background: #f4f4f5;
  font-weight: 800;
  color: #3f3f46;
}

.gift-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--orange);
  font-weight: 1000;
}

.why-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mini-card.wide {
  grid-column: span 2;
}

.final-cta {
  max-width: calc(1400px - clamp(40px, 10vw, 112px));
  margin: 76px auto 92px;
  padding: clamp(42px, 7vw, 78px);
  border-radius: 34px;
  background: var(--orange);
  text-align: center;
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
  font-size: 14px;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: rgba(255,255,255,.76);
  font-weight: 800;
}

@media (max-width: 1000px) {
  .hero,
  .gift-section,
  .why-section {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .site-header {
    align-items: flex-start;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .cards,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .mini-card.wide {
    grid-column: auto;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
