@import "tailwindcss";

:root {
  --bg: #090909;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f7f1e8;
  --muted: #aea69b;
  --primary: #f97316;
  --primary-2: #ff9148;
  --green: #25d366;
  --yellow: #fffc00;
  --radius: 22px;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 15% 0%, rgba(249, 115, 22, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Barlow", "Arial Narrow", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 9, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: 156px;
  height: 88px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
}

.nav-actions,
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.44);
  outline-offset: 3px;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-whatsapp {
  background: var(--green);
  color: white;
}

.btn-snap {
  background: var(--yellow);
  color: #050505;
}

.hero {
  padding-top: 52px;
}

.hero-box {
  padding: 38px 24px 32px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0.03)),
    var(--surface);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 28px,
    rgba(255, 255, 255, 0.018) 28px 29px
  );
  pointer-events: none;
}

.hero-logo,
.hero-box > * {
  position: relative;
}

.hero-logo img {
  width: min(360px, 76vw);
  height: 220px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.eyebrow,
.section-head > p,
.kicker {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.tea-title,
.new-price,
.big-number {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  margin-top: 12px;
  font-size: clamp(3.2rem, 9vw, 6.6rem);
}

.hero-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.7vw, 1.28rem);
}

.badges {
  margin: 22px 0 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  font-weight: 700;
}

.badge strong {
  color: var(--primary);
}

.hero-actions {
  justify-content: center;
}

.tea-band {
  margin-top: 26px;
  border-block: 1px solid rgba(249, 115, 22, 0.17);
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.09), rgba(249, 115, 22, 0.02));
}

.tea-wrap {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
}

.tea-wrap img {
  width: 106px;
  height: 106px;
  object-fit: contain;
}

.tea-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}

.tea-title span {
  color: var(--primary);
}

.tea-wrap p {
  color: var(--muted);
}

section {
  padding: 64px 0;
}

.promotion-section {
  padding-top: 76px;
}

.promotion-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 42%, rgba(249, 115, 22, 0.15), transparent 27rem),
    linear-gradient(145deg, #17110d, #101010 55%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.promotion-copy h2 {
  max-width: 650px;
  margin-top: 12px;
  font-size: clamp(2.65rem, 6vw, 4.8rem);
}

.promotion-lead {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.prize-list {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.prize-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.prize-row img {
  width: 70px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.34));
}

.prize-row strong {
  display: block;
}

.prize-row strong {
  font-size: 1.02rem;
}

.promotion-conditions {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.promotion-conditions strong {
  color: var(--text);
}

.promotion-conditions ol {
  margin: 9px 0 8px 21px;
}

.promotion-conditions p {
  color: #dfd6ca;
}

.wheel-panel {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.wheel-stage {
  --wheel-size: min(82vw, 450px);
  width: var(--wheel-size);
  height: var(--wheel-size);
  margin: 0 auto 28px;
  position: relative;
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.46));
}

.wheel-stage::before {
  content: "";
  position: absolute;
  inset: -11px;
  z-index: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe6b0, #f97316 42%, #7f3708);
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.18),
    0 0 0 7px #23150c;
}

.wheel-pointer {
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: -19px;
  z-index: 8;
  transform: translateX(-50%);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 54px solid #fff7e8;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.48));
}

.wheel-disc {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 4px solid #fff0d1;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 5s cubic-bezier(0.12, 0.68, 0.08, 1);
}

.wheel-disc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 0 46%,
    rgba(255, 255, 255, 0.12) 47% 48%,
    transparent 49%
  );
  box-shadow: inset 0 0 0 2px rgba(255, 247, 232, 0.52);
  pointer-events: none;
}

.wheel-marker {
  position: absolute;
  inset: 50%;
  z-index: 3;
  transform: rotate(var(--wheel-angle));
  pointer-events: none;
}

.wheel-marker-content {
  width: clamp(70px, 18vw, 98px);
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-align: center;
  transform:
    translate(-50%, calc(var(--wheel-size) * -0.38))
    rotate(var(--wheel-angle-inverse));
}

.wheel-marker-content img {
  width: clamp(42px, 10vw, 64px);
  height: clamp(36px, 8vw, 54px);
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.38));
}

.wheel-marker-content span {
  max-width: 94px;
  color: white;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(0.6rem, 1.75vw, 0.82rem);
  line-height: 0.96;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.62);
  text-transform: uppercase;
}

.wheel-hub {
  width: 94px;
  height: 94px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff1d6;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.48);
}

.wheel-hub span {
  color: var(--primary);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  line-height: 0.9;
}

.wheel-hub small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.wheel-form,
.winner-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(9, 9, 9, 0.74);
}

.wheel-form > label:first-child {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.wheel-form input[type="tel"] {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: #0b0b0b;
}

.terms-check {
  margin: 14px 0;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  cursor: pointer;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.wheel-button,
.winner-button {
  width: 100%;
}

.form-message {
  margin-top: 12px;
  font-weight: 700;
}

.error-message {
  color: #ff9f92;
}

.privacy-note {
  margin-top: 10px;
  color: #857e75;
  font-size: 0.74rem;
}

.winner-card {
  text-align: center;
  border-color: rgba(37, 211, 102, 0.32);
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.12), rgba(9, 9, 9, 0.92));
}

.winner-kicker {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.winner-card h3 {
  margin: 13px 0;
  font-size: 2.25rem;
}

.winner-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.winner-card p strong {
  color: white;
  letter-spacing: 0.08em;
}

.winner-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.rules-details {
  margin-top: 16px;
  padding: 16px 19px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.rules-details summary {
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.rules-details ul {
  margin: 12px 0 0 22px;
}

.rules-details li + li {
  margin-top: 5px;
}

.section-head {
  margin-bottom: 30px;
  text-align: center;
}

.section-head h2 {
  margin-top: 9px;
  font-size: clamp(2.5rem, 6vw, 4.3rem);
}

.section-sub {
  max-width: 700px;
  margin: 12px auto 0;
  color: var(--muted);
}

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

.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card-featured {
  border-color: rgba(249, 115, 22, 0.52);
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.15),
    var(--shadow);
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maverick-r-letter {
  color: #ef2929;
  text-shadow: 0 0 12px rgba(239, 41, 41, 0.28);
}

.card-media {
  aspect-ratio: 16 / 10;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, #343434, #1c1c1c 58%, #151515);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.46));
}

.card-body {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 2.15rem;
}

.price-block {
  min-height: 50px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.new-price {
  color: var(--primary);
  font-size: 3rem;
}

.old-price {
  color: #8e867a;
  font-size: 1.13rem;
  font-weight: 800;
  text-decoration: line-through;
}

.price-note {
  flex: 1;
  color: var(--muted);
}

.tag {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--primary);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.11);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-button {
  width: 100%;
  margin-top: 2px;
}

.contact-section {
  border-top: 1px solid var(--border);
  background: #0c0c0c;
}

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

.info-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-number {
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.info-card h3 {
  font-size: 2.2rem;
}

.info-card > p:not(.info-number) {
  margin: 10px 0 18px;
  color: var(--muted);
}

.big-number {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 2rem;
}

.snap-number {
  color: var(--yellow);
}

.info-list {
  margin: 18px 0 0 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer img {
  width: 190px;
  height: 80px;
  object-fit: contain;
}

.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.floating .btn {
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.3);
}

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

  .promotion-shell {
    grid-template-columns: 1fr;
  }

  .promotion-copy {
    text-align: center;
  }

  .promotion-copy h2,
  .promotion-lead {
    margin-inline: auto;
  }

  .promotion-conditions {
    text-align: left;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .nav-inner {
    min-height: 78px;
  }

  .brand img {
    width: 118px;
    height: 72px;
  }

  .nav-actions .btn-snap {
    display: none;
  }

  .nav-actions .btn {
    min-height: 44px;
    padding-inline: 15px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-box {
    padding: 26px 15px 24px;
    border-radius: 24px;
  }

  .hero-logo img {
    height: 165px;
  }

  .tea-wrap {
    padding: 14px 0;
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 50px 0;
  }

  .promotion-section {
    padding-top: 54px;
  }

  .promotion-shell {
    padding: 24px 13px;
    border-radius: 24px;
  }

  .prize-row {
    text-align: left;
  }

  .wheel-stage {
    --wheel-size: min(86vw, 390px);
  }

  .wheel-stage::before {
    inset: -7px;
  }

  .wheel-pointer {
    top: -16px;
    border-left-width: 17px;
    border-right-width: 17px;
    border-top-width: 42px;
  }

  .wheel-hub {
    width: 76px;
    height: 76px;
  }

  .wheel-hub span {
    font-size: 1.38rem;
  }

  .wheel-form,
  .winner-card {
    padding: 18px 14px;
  }

  .pricing-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .floating {
    right: 12px;
    bottom: 12px;
  }

  .floating .btn {
    min-height: 44px;
    padding-inline: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
