:root {
  --gold: #d6ad39;
  --gold-dark: #b78d22;
  --green: #17221d;
  --green-deep: #0d1210;
  --green-soft: #223329;
  --white: #ffffff;
  --text: #efe9da;
  --muted: #b9b19f;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--green-deep);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 6%;
  transition: background 180ms ease, padding 180ms ease, border 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(13, 18, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  gap: 10px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button svg,
.trust-item svg,
.icon-box svg,
.check-list svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  background: var(--gold);
  color: #11110c;
  box-shadow: 0 14px 32px rgba(214, 173, 57, 0.22);
}

.button-primary:hover {
  background: #e3bd4c;
}

.button-ghost {
  padding-right: 0;
  padding-left: 0;
  color: var(--white);
  background: transparent;
}

.button-whatsapp {
  width: 100%;
  min-height: 54px;
  color: var(--white);
  background: #25d366;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 18, 16, 0.96) 0%, rgba(13, 18, 16, 0.78) 42%, rgba(13, 18, 16, 0.24) 100%),
    linear-gradient(0deg, var(--green-deep) 0%, rgba(13, 18, 16, 0) 34%);
}

.hero-bg {
  z-index: -2;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 44px;
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 110px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(214, 173, 57, 0.36);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(214, 173, 57, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 2.7rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-stage {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.product-stage::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 173, 57, 0.34), rgba(214, 173, 57, 0) 68%);
  filter: blur(4px);
}

.product-bottle {
  position: relative;
  z-index: 1;
  width: min(380px, 72vw);
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.55));
}

.product-note {
  position: absolute;
  right: 16px;
  bottom: 76px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 34, 29, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.product-note svg {
  width: 18px;
  color: var(--gold);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1040px, 88vw);
  margin: -38px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 38, 31, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  border-right: 1px solid var(--line);
  color: var(--white);
  font-weight: 800;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  color: var(--gold);
}

.section,
.ingredients-section,
.testimonials-section,
.order-section {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 96px 0;
}

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

.section-heading p {
  font-size: 1.08rem;
}

.benefit-grid,
.ingredient-grid,
.testimonial-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card,
.ingredient-item,
.testimonial-card,
.step,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.benefit-card {
  min-height: 260px;
  padding: 30px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #11110c;
  background: var(--gold);
}

.split-section,
.night-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 54px;
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 76px 0;
}

.split-media img,
.night-media > img:first-child {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-copy p,
.night-copy p,
.ingredients-copy p,
.order-copy > p {
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--gold);
  margin-top: 2px;
}

.ingredients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 28px;
}

.ingredients-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ingredient-item {
  padding: 28px;
}

.night-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  padding-right: 6%;
  padding-left: 6%;
  background: var(--green);
}

blockquote {
  margin: 0;
  color: var(--gold);
  font-size: 1.42rem;
  font-weight: 800;
}

.night-media {
  position: relative;
}

.morning-chip {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 142px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}

.step {
  position: relative;
  min-height: 216px;
  padding: 34px 28px 28px;
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #11110c;
  background: var(--gold);
  font-weight: 900;
}

.testimonials-section {
  padding-top: 72px;
}

.testimonial-card {
  min-height: 320px;
  padding: 28px;
}

.testimonial-card img {
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  border: 2px solid rgba(214, 173, 57, 0.55);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 1.03rem;
}

.testimonial-card strong {
  color: var(--gold);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  align-items: start;
  gap: 38px;
}

.pricing-img {
  width: 100%;
  max-width: 620px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.authenticity {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(214, 173, 57, 0.22);
  border-radius: 8px;
  background: rgba(214, 173, 57, 0.08);
}

.authenticity img {
  width: 92px;
  border-radius: 6px;
}

.authenticity span {
  color: var(--muted);
}

.authenticity strong {
  color: var(--white);
}

.order-form {
  position: sticky;
  top: 92px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.order-form h2 {
  margin-bottom: 22px;
  font-size: 1.75rem;
}

.order-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 11, 10, 0.82);
  outline: 0;
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 173, 57, 0.16);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.6fr;
  gap: 28px;
  padding: 46px 6% 88px;
  border-top: 1px solid var(--line);
  background: #080b0a;
}

.site-footer img {
  width: 150px;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 410px;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a,
.site-footer span {
  color: var(--muted);
}

.sport-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 10, 0.96) 0%, rgba(9, 13, 12, 0.8) 42%, rgba(9, 13, 12, 0.18) 100%),
    linear-gradient(0deg, var(--green-deep) 0%, rgba(13, 18, 16, 0) 36%);
}

.sport-hero .hero-bg img {
  object-position: center center;
}

.sport-product-stage::before {
  background: radial-gradient(circle, rgba(88, 196, 116, 0.28), rgba(214, 173, 57, 0) 68%);
}

.sport-trust {
  background: rgba(20, 42, 28, 0.94);
}

.sport-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  width: 100%;
  padding: 88px 6%;
  background:
    linear-gradient(135deg, rgba(214, 173, 57, 0.12), rgba(88, 196, 116, 0.08)),
    var(--green);
}

.sport-band-copy {
  max-width: 560px;
}

.sport-band-copy p {
  font-size: 1.08rem;
}

.sport-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sport-use {
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sport-use svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--gold);
}

.sport-order {
  padding-top: 96px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding-right: 5%;
    padding-left: 5%;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .split-section,
  .ingredients-layout,
  .night-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    width: min(760px, 88vw);
    padding-top: 104px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .product-stage {
    min-height: 420px;
  }

  .trust-strip,
  .benefit-grid,
  .ingredient-grid,
  .testimonial-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .order-form {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .sport-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 126px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: calc(100% - 32px);
    gap: 18px;
    padding: 96px 0 42px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 18, 16, 0.9) 0%, rgba(13, 18, 16, 0.86) 46%, rgba(13, 18, 16, 0.96) 100%),
      linear-gradient(0deg, var(--green-deep) 0%, rgba(13, 18, 16, 0) 34%);
  }

  .sport-hero .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 12, 11, 0.88) 0%, rgba(8, 12, 11, 0.84) 48%, rgba(8, 12, 11, 0.96) 100%),
      linear-gradient(0deg, var(--green-deep) 0%, rgba(13, 18, 16, 0) 34%);
  }

  .sport-hero .hero-bg img {
    object-position: 58% center;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  }

  .hero-copy .eyebrow {
    background: rgba(214, 173, 57, 0.18);
  }

  .hero-copy p {
    color: #efe9da;
  }

  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy p {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .button-ghost {
    width: auto;
  }

  .product-stage {
    min-height: 340px;
  }

  .product-bottle {
    width: 245px;
  }

  .product-note {
    right: 0;
    bottom: 44px;
  }

  .trust-strip {
    margin-top: 0;
    width: calc(100% - 32px);
  }

  .section,
  .ingredients-section,
  .testimonials-section,
  .order-section,
  .split-section {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .night-section {
    padding: 64px 16px;
  }

  .sport-band {
    padding: 64px 16px;
  }

  .sport-use-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .ingredient-item,
  .testimonial-card,
  .step,
  .order-form {
    padding: 24px;
  }

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

  .morning-chip {
    top: 14px;
    right: 14px;
    width: 104px;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
