:root {
  color-scheme: light dark;
  --ink: #11100d;
  --ink-2: #24211a;
  --muted: #756f62;
  --paper: #f7efe0;
  --paper-2: #eee2cc;
  --night: #070806;
  --night-2: #11120f;
  --night-3: #1b1913;
  --panel: #191914;
  --line: rgba(17, 16, 13, 0.14);
  --line-dark: rgba(255, 238, 205, 0.16);
  --line-soft: rgba(255, 242, 218, 0.08);
  --gold: #ffb447;
  --gold-2: #f59a23;
  --gold-3: #ffd78d;
  --cream: #fff3dc;
  --white: #fff9ef;
  --shadow: 0 28px 90px rgba(7, 8, 6, 0.42);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(97, 79, 48, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 79, 48, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 48%);
}

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

button,
input {
  font: inherit;
}

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

svg {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5%, 64px);
  color: var(--white);
  background: #070806;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  min-width: max-content;
  font-weight: 850;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 242, 218, 0.16);
  border-radius: 10px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 248, 234, 0.66);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  transition: color 160ms ease;
}

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

.audience-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(255, 242, 218, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.055);
}

.switch-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(255, 248, 234, 0.66);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.switch-item svg {
  width: 16px;
  height: 16px;
}

.switch-item.is-active {
  color: #120d05;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.88fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: 62px clamp(18px, 5%, 64px) 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 180, 71, 0.12), transparent 28rem),
    linear-gradient(125deg, #070806 0%, #0c0e0b 44%, #151711 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--night));
}

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

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 249, 239, 0.76);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #120d05;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  box-shadow: 0 18px 46px rgba(255, 180, 71, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #ffe0a2, #ffc15f);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 250, 241, 0.18);
  background: rgba(255, 250, 241, 0.06);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.proof-strip span {
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(255, 212, 139, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 243, 220, 0.07), rgba(255, 180, 71, 0.04));
}

.proof-strip strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.proof-strip small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.hero-media {
  justify-self: end;
  margin: 0;
}

.hero-media img {
  display: block;
  width: min(620px, 100%);
  height: auto;
  max-width: none;
  max-height: 620px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 242, 218, 0.16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46), 0 0 90px rgba(255, 180, 71, 0.11);
  filter: saturate(1.02) contrast(1.02);
  transform: translateX(12px);
}

.media-status {
  position: absolute;
  left: 28px;
  bottom: 38px;
  display: grid;
  gap: 4px;
  width: min(340px, calc(100% - 56px));
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 212, 139, 0.24);
  background: rgba(7, 8, 6, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.media-status strong,
.media-status small {
  grid-column: auto;
}

.media-status strong {
  color: var(--gold-3);
  font-size: 15px;
}

.media-status small {
  margin-top: 3px;
  color: rgba(255, 250, 241, 0.64);
  font-size: 12px;
}

.section {
  isolation: isolate;
  position: relative;
  padding: 78px clamp(18px, 5%, 64px);
  background: var(--night);
  overflow: hidden;
  scroll-margin-top: 92px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

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

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

.section-dark::before {
  background: transparent;
}

.section-light {
  color: var(--white);
  background: var(--night);
}

.section-light::before {
  background: transparent;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

#pricing .section-head {
  max-width: 1040px;
}

.section-head h2 {
  color: inherit;
  font-size: 46px;
}

.section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-dark .section-head p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.68);
}

.section-light .section-head p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.68);
}

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

.protocol-card {
  border-radius: 8px;
}

.protocol-card {
  min-height: 292px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(255, 238, 205, 0.055), rgba(255, 180, 71, 0.025)),
    var(--night-2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.protocol-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(255, 243, 220, 0.94);
  box-shadow: inset 0 0 0 1px rgba(17, 16, 13, 0.08);
  overflow: hidden;
}

.protocol-logo img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.protocol-logo-wide {
  width: 132px;
  background: var(--white);
}

.protocol-logo-wide img {
  width: 86%;
  height: 68%;
}

.protocol-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.protocol-card p {
  min-height: 76px;
  margin: 12px 0 20px;
  color: rgba(255, 250, 241, 0.68);
  line-height: 1.55;
}

.protocol-card small {
  color: var(--gold);
  font-weight: 800;
}

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
}

.standard-plan,
.premium-plan {
  min-width: 0;
}

.plan-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 238, 205, 0.055), rgba(255, 180, 71, 0.018)),
    var(--night-2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.plan-head h3 {
  margin: 0;
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.plan-head p {
  margin: 8px 0 0;
  color: rgba(255, 250, 241, 0.64);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.plan-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 215, 141, 0.2);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.66);
  background: rgba(255, 248, 234, 0.045);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.flag-stack {
  gap: 9px;
  min-width: 184px;
  justify-content: center;
  min-height: 40px;
  padding-right: 13px;
  padding-left: 13px;
}

.flag-stack-single {
  min-width: 58px;
}

.flag-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 26px;
  line-height: 1;
  transform: translateY(1px);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.32));
}

.premium-plan {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 141, 0.34);
  background:
    radial-gradient(circle at 78% 2%, rgba(255, 215, 141, 0.17), transparent 18rem),
    radial-gradient(circle at 10% 100%, rgba(255, 180, 71, 0.08), transparent 18rem),
    linear-gradient(145deg, #181713 0%, #090a07 52%, #1d170d 100%);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 248, 234, 0.1);
}

.standard-plan {
  background:
    linear-gradient(180deg, rgba(255, 238, 205, 0.05), rgba(255, 180, 71, 0.016)),
    #11120f;
}

.premium-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 215, 141, 0.16), transparent) top / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 248, 234, 0.055), transparent 42%);
}

.premium-plan > * {
  position: relative;
  z-index: 1;
}

.standard-benefits,
.premium-benefits {
  display: grid;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.standard-benefits li,
.premium-benefits li {
  position: relative;
  min-height: 0;
  padding-left: 19px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.standard-benefits li::before,
.premium-benefits li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 180, 71, 0.55);
}

.plan-options {
  display: grid;
  gap: 10px;
}

.standard-plan .plan-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 0 0 auto;
}

.premium-plan .plan-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  flex: 0 0 auto;
}

.premium-plan .plan-option.is-best {
  grid-column: 1 / -1;
  min-height: 88px;
  padding: 16px 18px;
}

.standard-plan .plan-option {
  min-height: 90px;
  padding: 14px 18px;
}

.premium-plan .plan-option {
  min-height: 90px;
  padding: 14px 18px;
}

.plan-option {
  width: 100%;
  appearance: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: center;
  min-height: 68px;
  padding: 14px;
  border: 1px solid rgba(255, 242, 218, 0.12);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 248, 234, 0.045);
  cursor: pointer;
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.plan-option:hover,
.plan-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 215, 141, 0.34);
  background: rgba(255, 248, 234, 0.07);
}

.plan-option span {
  color: rgba(255, 250, 241, 0.74);
  font-weight: 800;
}

.plan-option strong {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.plan-option small {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
}

.plan-option.is-best {
  border-color: rgba(255, 180, 71, 0.45);
  background: rgba(255, 180, 71, 0.095);
}

.plan-option.is-selected {
  border-color: rgba(255, 215, 141, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 215, 141, 0.14), rgba(255, 180, 71, 0.08)),
    rgba(255, 248, 234, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 215, 141, 0.18), 0 14px 44px rgba(255, 180, 71, 0.08);
}

.premium-plan .plan-option.is-best strong {
  font-size: clamp(30px, 2.5vw, 42px);
}

.premium-plan .plan-option.is-best small {
  font-size: 13px;
}

.premium-plan .plan-option span {
  color: var(--gold-3);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.05;
}

.premium-plan .plan-option strong {
  font-size: clamp(28px, 2.2vw, 36px);
}

.premium-plan .plan-option small {
  font-size: 13px;
}

.premium-plan .plan-option.is-best span {
  font-size: clamp(24px, 2.2vw, 36px);
}

.plan-option.is-selected span,
.plan-option.is-selected strong {
  color: var(--white);
}

.premium-plan .plan-option.is-selected span {
  color: var(--gold-3);
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  margin-top: auto;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.plan-cta:hover,
.plan-cta:focus-visible {
  transform: translateY(-1px);
}

.plan-cta-primary {
  color: #120d05;
  background: linear-gradient(135deg, #fff0c0, var(--gold));
  box-shadow: 0 18px 50px rgba(255, 180, 71, 0.2);
}

.plan-cta-primary:hover,
.plan-cta-primary:focus-visible {
  background: linear-gradient(135deg, #fff6d6, #ffc15f);
}

.plan-cta-secondary {
  color: var(--white);
  border-color: rgba(255, 250, 241, 0.24);
  background: rgba(255, 250, 241, 0.055);
  box-shadow: none;
}

.plan-cta-secondary:hover,
.plan-cta-secondary:focus-visible {
  border-color: rgba(255, 250, 241, 0.4);
  background: rgba(255, 250, 241, 0.11);
  box-shadow: 0 16px 44px rgba(255, 250, 241, 0.06);
}

.faq-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 180, 71, 0.08), transparent 24rem),
    var(--night);
}

.faq-head {
  max-width: 940px;
}

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

.faq-item {
  border: 1px solid rgba(255, 242, 218, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 243, 220, 0.065), rgba(255, 180, 71, 0.025)),
    rgba(17, 18, 15, 0.86);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.faq-item[open] {
  border-color: rgba(255, 215, 141, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 215, 141, 0.12), rgba(255, 180, 71, 0.04)),
    rgba(17, 18, 15, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 248, 234, 0.08);
}

.faq-item summary {
  position: relative;
  min-height: 76px;
  padding: 23px 58px 23px 22px;
  color: rgba(255, 250, 241, 0.88);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 215, 141, 0.2);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 248, 234, 0.055);
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: -4px 22px 22px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.contest-section {
  color: var(--white);
  background: var(--night);
}

.contest-head {
  max-width: 1040px;
  margin-bottom: 28px;
}

.contest-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 212, 139, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 243, 220, 0.09), rgba(255, 180, 71, 0.04) 48%, rgba(8, 10, 8, 0.38)),
    rgba(17, 18, 15, 0.84);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.contest-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 215, 141, 0.14), transparent) top / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 248, 234, 0.045), transparent 46%);
}

.contest-copy,
.contest-board {
  position: relative;
  z-index: 1;
}

.contest-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 100%;
}

.contest-section .eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contest-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 18px;
  line-height: 1.58;
}

.contest-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.contest-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 13px;
  border: 1px solid rgba(255, 212, 139, 0.15);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.06);
}

.contest-steps strong {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #1b1000;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  font-size: 16px;
  font-weight: 900;
}

.contest-steps small {
  color: rgba(255, 250, 241, 0.76);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
}

.contest-board {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contest-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 212, 139, 0.15);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.07);
}

.contest-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #1b1000;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
}

.contest-icon svg {
  width: 24px;
  height: 24px;
}

.contest-summary strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.contest-summary small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 249, 239, 0.62);
  font-weight: 750;
}

.contest-action {
  min-width: 170px;
  min-height: 50px;
  padding: 0 20px;
  font-size: 16px;
  white-space: nowrap;
}

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

.prize-list span {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 104px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 212, 139, 0.13);
  background: rgba(255, 249, 239, 0.075);
}

.prize-list .prize-card-main {
  grid-column: 1 / -1;
  min-height: 112px;
  border-color: rgba(255, 212, 139, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 215, 141, 0.18), rgba(255, 249, 239, 0.07)),
    rgba(255, 249, 239, 0.08);
}

.prize-list strong {
  color: var(--gold-3);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.05;
}

.prize-list small {
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5%, 64px);
  color: rgba(255, 250, 241, 0.72);
  background: var(--night);
  border-top: 1px solid var(--line-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 680px;
    justify-self: start;
  }

  .hero-media img {
    width: 100%;
    max-height: none;
    transform: none;
  }

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

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

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: start;
    min-height: 0;
  }

  .main-nav {
    display: none;
  }

  .audience-switch {
    width: 100%;
  }

  .switch-item {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero h1,
  .section-head h2 {
    font-size: 40px;
    line-height: 1.06;
  }

  .hero-lead,
  .section-head p:not(.eyebrow),
  .contest-copy p {
    font-size: 16px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .pricing-layout {
    gap: 22px;
  }

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

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

  .contest-action {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .switch-item {
    min-width: 0;
    gap: 6px;
    min-height: 36px;
    padding: 0 7px;
    font-size: 12px;
  }

  .hero {
    gap: 22px;
    padding-top: 22px;
    padding-bottom: 36px;
  }

  .hero h1,
  .section-head h2 {
    font-size: 29px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .proof-strip {
    display: none;
  }

  .hero-media {
    max-width: none;
  }

  .hero-media img {
    width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  .media-status {
    display: none;
  }

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

  .protocol-card {
    min-height: auto;
  }

  .plan-panel {
    min-height: auto;
  }

  .plan-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .plan-head > span {
    white-space: normal;
  }

  .standard-benefits,
  .premium-benefits {
    grid-template-columns: 1fr;
  }

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

  .faq-item summary {
    min-height: 66px;
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item p {
    margin: -2px 18px 18px;
    font-size: 14px;
  }

  .contest-shell {
    padding: 20px;
  }

  .contest-summary {
    gap: 12px;
    padding: 14px;
  }

  .contest-icon {
    width: 50px;
    height: 50px;
  }

  .contest-summary strong {
    font-size: 26px;
  }

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

  .prize-list span,
  .prize-list .prize-card-main {
    min-height: 92px;
  }

  .contest-action {
    width: 100%;
  }

  .standard-plan .plan-options,
  .premium-plan .plan-options {
    grid-template-columns: 1fr;
  }

  .plan-option {
    grid-template-columns: 1fr;
  }

  .protocol-card p {
    min-height: 0;
  }

  .section {
    padding-top: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
