:root {
  --cream: #fbf4e9;
  --paper: #fffdf9;
  --surface: #f4e8d6;
  --surface-2: #efdec7;
  --ink: #0b1220;
  --ink-soft: #1b2437;
  --muted: #647086;
  --amber: #f4791f;
  --amber-deep: #c2410c;
  --amber-glow: #ffb169;
  --blue: #0c75c9;
  --green: #25d366;
  --white: #ffffff;
  --line: rgba(42, 53, 80, 0.1);
  --maxw: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 18px 50px -20px rgba(11, 18, 32, 0.22);
  --shadow-soft: 0 8px 24px -12px rgba(11, 18, 32, 0.15);
  --shadow-glow: 0 0 90px -12px rgba(244, 121, 31, 0.55);
  --font-display: Arial Black, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E"),
    linear-gradient(90deg, rgba(11,18,32,0.03) 1px, transparent 1px),
    linear-gradient(rgba(11,18,32,0.026) 1px, transparent 1px);
  background-size: 120px 120px, 80px 80px, 80px 80px;
}

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

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

main {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--maxw));
  margin: 0 auto;
  padding: 0 0 40px;
}

.audience,
.section-heading p,
.detail-panel > p,
.benefits > div > p {
  margin: 0;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.detail-panel h2,
.benefits h2,
.whatsapp-card h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(2.05rem, 4.2vw, 3.15rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  margin-inline: calc((100vw - min(100vw - 48px, var(--maxw))) / -2);
  padding: 0 calc((100vw - min(100vw - 48px, var(--maxw))) / 2);
  border-bottom: 1px solid rgba(42, 53, 80, 0.08);
  background: rgba(251, 244, 233, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  place-items: center;
  width: 168px;
  padding: 9px 17px;
  border-radius: 0 0 12px 12px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(42, 53, 80, 0.08);
  border-radius: var(--radius-pill);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

nav a,
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

nav a:hover {
  color: var(--ink);
  background: var(--surface);
}

.header-action {
  color: var(--white);
  background: var(--amber);
  box-shadow: 0 8px 20px -8px rgba(244, 121, 31, 0.7);
}

.header-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px rgba(244, 121, 31, 0.75);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: 650px;
  margin-inline: calc((100vw - min(100vw - 48px, var(--maxw))) / -2);
  padding: 74px calc((100vw - min(100vw - 48px, var(--maxw))) / 2) 90px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  right: -160px;
  top: -220px;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 121, 31, 0.55), rgba(244, 121, 31, 0) 62%);
  filter: blur(10px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}

.audience {
  color: var(--amber-glow);
  margin-bottom: 22px;
}

h1 {
  max-width: 710px;
  margin-bottom: 26px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.45rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1::first-line {
  color: var(--white);
}

.hero-text {
  max-width: 470px;
  margin-bottom: 32px;
  color: #c7cedc;
  font-size: 1.06rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action {
  color: var(--white);
  background: var(--amber);
  box-shadow: var(--shadow-glow);
}

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

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.06);
}

.league-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 510px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(244, 121, 31, 0.22), transparent 55%),
    linear-gradient(160deg, #20293d, #0d1424 62%, #0b1220);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7), 0 0 0 2px rgba(255, 255, 255, 0.04);
  transform: rotate(-3deg);
  overflow: hidden;
}

.league-card > * {
  transform: rotate(3deg);
}

.league-glow {
  position: absolute;
  right: -180px;
  top: 120px;
  width: 420px;
  height: 190px;
  border: 3px solid rgba(244, 121, 31, 0.78);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(244, 121, 31, 0.62));
  rotate: -22deg;
}

.league-badge {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 340px);
  min-height: 300px;
  margin: 0 auto;
  padding: 32px 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 5px solid var(--amber);
  background: #08162d;
  clip-path: polygon(7% 0, 93% 0, 100% 36%, 84% 86%, 50% 100%, 16% 86%, 0 36%);
}

.league-badge span,
.league-badge strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  line-height: 0.9;
  text-transform: uppercase;
}

.league-badge span {
  color: var(--white);
  font-size: clamp(3.2rem, 4.4vw, 4.6rem);
  text-shadow: 5px 7px 0 rgba(0, 0, 0, 0.45);
}

.league-badge strong {
  margin-top: 8px;
  color: #ffc533;
  font-size: clamp(2.25rem, 3vw, 3rem);
}

.play-tile {
  position: relative;
  width: 112px;
  height: 78px;
  margin-top: 18px;
  border: 4px solid var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber-glow), var(--amber));
}

.play-tile::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: -28px;
  height: 28px;
  border: 4px solid var(--white);
  border-radius: 6px 6px 0 0;
  background: repeating-linear-gradient(135deg, #111b2b 0 18px, var(--white) 18px 34px);
}

.play-tile i {
  position: absolute;
  left: 44px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--white);
}

.league-badge small {
  margin-top: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #f5f7ff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.quick-prize {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: end;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.quick-prize span {
  color: #b7c0d4;
  font-weight: 800;
}

.quick-prize strong {
  grid-row: span 2;
  color: var(--amber-glow);
  font-family: var(--font-display);
  font-size: 3.1rem;
  line-height: 0.9;
}

.quick-prize p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

/* Social strip */
.social-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -34px 0 74px;
  padding: 14px 20px;
  border: 1px solid rgba(244, 121, 31, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.social-copy,
.social-result {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 900;
}

.social-result strong {
  color: var(--amber);
}

.reel-mark {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), #df3d75);
}

.reel-mark::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 13px;
  background: repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, 0.88) 12px 16px);
}

.reel-mark::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 19px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
}

.instagram {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 3px solid var(--ink);
  border-radius: 10px;
}

.instagram::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.instagram::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.facebook {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: #1877f2;
  font-family: Arial Black, var(--font-body);
  font-size: 1.85rem;
  line-height: 1;
}

/* Rewards */
.rewards,
.how,
.details,
.benefits,
.whatsapp-card {
  position: relative;
  z-index: 2;
}

.reward-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 20px;
}

.reward-card,
.detail-panel,
.benefits {
  border: 1px solid rgba(42, 53, 80, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.reward-card {
  min-height: 230px;
  padding: 30px;
}

.reward-card p {
  margin: 22px 0 6px;
  color: var(--ink-soft);
  font-weight: 800;
}

.reward-card strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4vw, 4.3rem);
  line-height: 1;
}

.reward-card small {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

.card-icon,
.detail-icon,
.step-symbol {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(244, 121, 31, 0.18);
  border-radius: 14px;
  color: var(--amber);
  background: var(--surface);
  font-weight: 900;
}

.card-icon.rupee {
  font-size: 2rem;
}

.winners::before {
  content: "";
  width: 34px;
  height: 26px;
  background:
    radial-gradient(circle at 50% 20%, currentColor 0 7px, transparent 8px),
    radial-gradient(circle at 20% 35%, currentColor 0 5px, transparent 6px),
    radial-gradient(circle at 80% 35%, currentColor 0 5px, transparent 6px),
    radial-gradient(ellipse at 50% 100%, currentColor 0 17px, transparent 18px);
}

.gift::before {
  content: "";
  width: 28px;
  height: 26px;
  border: 4px solid currentColor;
  border-top-width: 7px;
  box-shadow: inset 9px 0 0 transparent, inset 12px 0 0 currentColor;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 150px;
  align-items: center;
  gap: 22px;
  border: 0;
  color: var(--white);
  background: linear-gradient(150deg, var(--amber) 0%, var(--amber-deep) 100%);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.feature-card .card-icon {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.feature-card p,
.feature-card strong,
.feature-card small {
  color: var(--white);
}

.feature-card strong {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.02;
}

.phone-stack {
  position: relative;
  z-index: 2;
  height: 154px;
}

.phone-stack span {
  position: absolute;
  bottom: 0;
  width: 54px;
  height: 142px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 13px;
  background: linear-gradient(160deg, #d9d8ff, #8e7aff);
  box-shadow: -10px 12px 18px rgba(0, 0, 0, 0.25);
}

.phone-stack span::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 18px;
  height: 46px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 20%, #12151f 0 6px, transparent 7px),
    radial-gradient(circle at 50% 72%, #12151f 0 6px, transparent 7px),
    rgba(255, 255, 255, 0.52);
}

.phone-stack span:nth-child(1) {
  left: 6px;
}

.phone-stack span:nth-child(2) {
  left: 48px;
  background: linear-gradient(160deg, #e6edff, #b4c2ff);
  transform: translateY(-8px);
}

.phone-stack span:nth-child(3) {
  left: 90px;
  background: linear-gradient(160deg, #eef7e9, #c7d6bc);
}

/* Steps */
.how {
  padding: 88px 0 68px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 8px, transparent 8px 16px);
  opacity: 0.4;
}

.steps article {
  position: relative;
  z-index: 1;
  min-height: 234px;
  padding: 24px 20px;
  border: 1px solid rgba(42, 53, 80, 0.08);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.steps article::before {
  display: none;
}

.steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--amber);
  font-size: 1.2rem;
}

.step-symbol {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.step-symbol::before {
  font-size: 1.6rem;
  line-height: 1;
}

.subject::before { content: "▤"; }
.reels::before { content: "▣"; }
.upload::before { content: "☁"; }
.link::before { content: "↗"; }
.trophy::before { content: "♕"; }

.steps h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.02rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

/* Details and benefits */
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-panel {
  padding: 40px;
}

.detail-icon {
  margin-bottom: 26px;
}

.person {
  position: relative;
}

.person::before,
.person::after {
  content: "";
  position: absolute;
}

.person::before {
  top: 10px;
  width: 22px;
  height: 22px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.person::after {
  bottom: 11px;
  width: 34px;
  height: 22px;
  border: 4px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.medal {
  font-size: 1.7rem;
}

.detail-panel small {
  display: block;
  max-width: 560px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.judgement ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.judgement li {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  color: var(--amber-deep);
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 800;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
  padding: 52px;
}

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

.benefit-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 16px 12px 44px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  font-weight: 800;
}

.benefit-list span::before {
  content: "✓";
  position: absolute;
  left: 16px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  color: var(--amber);
  font-size: 0.8rem;
}

/* WhatsApp and footer */
.whatsapp-card {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 44px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  overflow: hidden;
}

.whatsapp-card::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.whatsapp-card > * {
  position: relative;
  z-index: 1;
}

.whatsapp-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--green);
}

.whatsapp-icon::before {
  content: "";
  width: 25px;
  height: 34px;
  border: 6px solid var(--white);
  border-left-width: 4px;
  border-top-width: 4px;
  border-radius: 50% 50% 50% 20%;
  transform: rotate(-28deg);
}

.whatsapp-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.whatsapp-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.whatsapp-card strong {
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--ink);
  font-size: clamp(1rem, 2vw, 1.2rem);
  white-space: nowrap;
}

footer {
  padding-top: 14px;
  text-align: right;
  color: rgba(11, 18, 32, 0.62);
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 980px) {
  main {
    width: min(100% - 28px, var(--maxw));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    margin-inline: calc((100vw - min(100vw - 28px, var(--maxw))) / -2);
    padding-inline: calc((100vw - min(100vw - 28px, var(--maxw))) / 2);
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-inline: calc((100vw - min(100vw - 28px, var(--maxw))) / -2);
    padding: 52px calc((100vw - min(100vw - 28px, var(--maxw))) / 2) 72px;
  }

  .league-card,
  .league-card > * {
    transform: none;
  }

  .social-strip {
    margin-top: -22px;
  }

  .reward-grid,
  .details,
  .benefits,
  .whatsapp-card {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .phone-stack {
    grid-column: 1 / -1;
    width: 168px;
    margin: 0 auto;
  }

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

  .steps::before {
    display: none;
  }

  .whatsapp-card strong {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  main {
    width: min(100% - 20px, var(--maxw));
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding-block: 8px;
    margin-inline: calc((100vw - min(100vw - 20px, var(--maxw))) / -2);
    padding-inline: calc((100vw - min(100vw - 20px, var(--maxw))) / 2);
  }

  .brand {
    justify-self: center;
    width: 170px;
  }

  .header-action {
    justify-self: stretch;
  }

  .hero {
    gap: 28px;
    margin-inline: calc((100vw - min(100vw - 20px, var(--maxw))) / -2);
    padding: 40px calc((100vw - min(100vw - 20px, var(--maxw))) / 2) 62px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .hero-actions,
  .social-strip {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 14px;
    overflow: hidden;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .league-card {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .league-badge {
    min-height: 282px;
    padding-inline: 18px;
  }

  .league-badge span {
    font-size: 3rem;
  }

  .league-badge strong {
    font-size: 2.4rem;
  }

  .quick-prize {
    grid-template-columns: 1fr;
  }

  .quick-prize strong {
    grid-row: auto;
  }

  .social-copy,
  .social-result {
    flex-wrap: wrap;
  }

  .reward-card,
  .detail-panel,
  .benefits,
  .whatsapp-card {
    padding: 30px;
    border-radius: 18px;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

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

  .steps article {
    min-height: 0;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .whatsapp-card {
    text-align: center;
  }

  .whatsapp-icon,
  .whatsapp-card strong {
    justify-self: center;
  }

  .whatsapp-card strong {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  footer {
    text-align: right;
  }
}
