*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }


:root {
  --bg:        #080709;
  --bg2:       #0f0e12;
  --bg3:       #16141b;
  --pink:      #e91e8c;
  --pink-h:    #ff40a8;
  --pink-dim:  rgba(233,30,140,.15);
  --pink-glow: rgba(233,30,140,.35);
  --white:     #f2eef7;
  --muted:     #7a6f8a;
  --border:    rgba(233,30,140,.22);
  --font-head: 'Racing Sans One', sans-serif;
  --font-body: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --r:         12px;
}


body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}


body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}


.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(233,30,140,.18) 0%, transparent 70%); top: -150px; right: -100px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(120,20,200,.1) 0%, transparent 70%);  bottom: 0; left: -100px; }


.wrapper { position: relative; z-index: 1; }


nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,7,9,.8);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--pink), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-ig {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-ig:hover { color: var(--pink); }


.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 32px;
  animation: fadeSlideDown .6s ease both;
}
.hero-badge span { width: 6px; height: 6px; background: var(--pink); border-radius: 50%; animation: pulse 1.5s infinite; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 10vw, 120px);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 8px;
  animation: fadeSlideDown .7s .1s ease both;
}
.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--pink) 0%, #ff80cf 50%, #fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero-title .sub {
  font-size: clamp(28px, 5vw, 60px);
  background: linear-gradient(135deg, #fff 0%, var(--muted) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--muted);
  max-width: 560px;
  margin: 20px auto 48px;
  font-weight: 500;
  animation: fadeSlideDown .8s .2s ease both;
  line-height: 1.4;
}
.hero-tagline strong { color: var(--white); font-weight: 700; }

.hero-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--pink), #b5166d);
  color: #fff;
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1px;
  padding: 20px 40px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(233,30,140,.5);
  animation: pulse-hero 2s infinite;
  transition: transform .2s;
}
.hero-arrow:hover { transform: translateY(-2px); }
.hero-arrow .cta-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes pulse-hero {
  0%   { box-shadow: 0 0 0 0   rgba(233,30,140,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(233,30,140,0); }
  100% { box-shadow: 0 0 0 0   rgba(233,30,140,0); }
}


.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  background: var(--bg);
  padding: 28px 48px;
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 42px;
  color: var(--pink);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}


.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}


.prize-section {
  padding: 80px 24px;
  max-width: 960px;
  margin: 0 auto;
}


.prize-img-wrap {
  background: linear-gradient(135deg, #1a0d1f 0%, #0d0810 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.prize-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  
}
.bike-placeholder {
  font-size: 110px;
  filter: drop-shadow(0 0 30px rgba(233,30,140,.55));
  animation: float 3s ease-in-out infinite;
  position: relative; z-index: 1;
}


.prize-story {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.prize-story::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.prize-story::after {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(233,30,140,.07);
  pointer-events: none;
}
.story-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.story-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pink), #8b0054);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.story-handle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--pink);
  font-weight: 700;
}
.story-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.story-body {
  font-size: 15px;
  line-height: 1.85;
  color: #c8bfd8;
}
.story-body p {
  margin-bottom: 14px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--white); font-weight: 700; }
.story-body .story-pink { color: var(--pink); }
.story-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.story-date span { color: var(--pink); }


.prize-specs-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 32px;
}
.specs-title {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.specs-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--white);
  transition: border-color .2s;
}
.spec-item:hover { border-color: rgba(233,30,140,.3); }
.spec-icon {
  font-size: 16px;
  flex-shrink: 0;
}
.prize-cta-strip {
  background: linear-gradient(135deg, rgba(233,30,140,.12) 0%, rgba(120,20,200,.08) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.prize-cta-text {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}
.prize-cta-text span { color: var(--pink); }
.prize-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), #b5166d);
  color: #fff;
  font-family: var(--font-head);
  font-size: 17px;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(233,30,140,.25);
}
.prize-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(233,30,140,.4); }


.unlock-section {
  padding: 20px 24px 80px;
  max-width: 960px;
  margin: 0 auto;
}
.unlock-card {
  background: var(--bg2);
  border: 1px solid rgba(255,180,0,.2);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.unlock-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #ffd060, transparent);
}

.unlock-card::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,190,0,.05) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.unlock-header {
  text-align: center;
  margin-bottom: 40px;
}
.unlock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,208,96,.1);
  border: 1px solid rgba(255,208,96,.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd060;
  margin-bottom: 16px;
}
.unlock-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.05;
  margin-bottom: 10px;
}
.unlock-title span { color: #ffd060; }
.unlock-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 40px;
}

.milestones::before {
  content: '';
  position: absolute;
  top: 48px; left: calc(16.66% + 8px); right: calc(16.66% + 8px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255,208,96,.2), rgba(255,208,96,.4), rgba(255,208,96,.2));
  z-index: 0;
}
.milestone {
  background: var(--bg3);
  border: 1px solid rgba(255,208,96,.15);
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: border-color .3s, transform .3s;
}
.milestone:hover {
  border-color: rgba(255,208,96,.4);
  transform: translateY(-3px);
}
.milestone-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: rgba(255,208,96,.08);
  border: 1px solid rgba(255,208,96,.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  position: relative;
}

@keyframes lockPulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%      { opacity: .7; transform: scale(1.1); }
}
.lock-glyph {
  font-size: 22px;
  animation: lockPulse 3s ease-in-out infinite;
}
.milestone-num {
  font-family: var(--font-head);
  font-size: 32px;
  color: #ffd060;
  line-height: 1;
  margin-bottom: 4px;
}
.milestone-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,208,96,.5);
  margin-bottom: 12px;
}
.milestone-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.milestone-last {
  border-color: rgba(233,30,140,.3);
  background: linear-gradient(135deg, rgba(233,30,140,.05), var(--bg3));
}
.milestone-last .milestone-icon {
  background: var(--pink-dim);
  border-color: var(--border);
}
.milestone-last .milestone-num { color: var(--pink); }
.milestone-last .milestone-label { color: rgba(233,30,140,.5); }
.milestone-last:hover { border-color: rgba(233,30,140,.5); }

.unlock-footer {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.unlock-footer strong { color: var(--white); }


.form-section {
  padding: 80px 24px;
  max-width: 620px;
  margin: 0 auto;
}

.form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 0 80px rgba(233,30,140,.07);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.form-title {
  font-family: var(--font-head);
  font-size: 32px;
  margin-bottom: 6px;
}
.form-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,.12);
}
.field input.error { border-color: #ff4444; }


.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--pink);
  pointer-events: none;
  font-size: 16px;
}
.field select { padding-right: 36px; cursor: pointer; }
.field select option { background: var(--bg3); color: var(--white); }


.chances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.chance-card {
  background: var(--bg3);
  border: 2px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.chance-card:hover { border-color: var(--pink); }
.chance-card.active {
  border-color: var(--pink);
  background: var(--pink-dim);
  box-shadow: 0 0 20px rgba(233,30,140,.15);
}
.chance-card.active::before {
  content: '✔';
  position: absolute;
  top: 8px; right: 10px;
  font-size: 10px;
  color: var(--pink);
}
.chance-card input[type=radio] { display: none; }
.chance-qty {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--pink);
  line-height: 1;
}
.chance-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 4px 0 10px;
}
.chance-price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.chance-saving {
  font-size: 10px;
  color: #6bff8a;
  margin-top: 3px;
}


.error-banner {
  background: rgba(255,68,68,.1);
  border: 1px solid rgba(255,68,68,.3);
  border-radius: var(--r);
  padding: 12px 16px;
  color: #ff6b6b;
  font-size: 14px;
  margin-bottom: 24px;
}


.btn-pay {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--pink) 0%, #c2126e 100%);
  border: none;
  border-radius: var(--r);
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .2s;
  box-shadow: 0 4px 30px rgba(233,30,140,.3);
  position: relative;
  overflow: hidden;
}
.btn-pay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(233,30,140,.45);
}
.btn-pay:hover::after { opacity: 1; }
.btn-pay:active { transform: translateY(0); }
.btn-pay:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.mp-logo { font-size: 14px; opacity: .85; }

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}
.form-disclaimer a { color: var(--pink); text-decoration: none; }


.how-section {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: var(--font-head);
  font-size: 64px;
  color: var(--pink-dim);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(233,30,140,.3);
  color: transparent;
}
.step-icon { font-size: 36px; margin-bottom: 12px; }
.step-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--muted); line-height: 1.6; }


.faq-section {
  padding: 80px 24px;
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-q {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .faq-icon { color: var(--pink); font-size: 20px; flex-shrink: 0; transition: transform .2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  display: none;
  padding-top: 8px;
}
.faq-a.open { display: block; }


footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 28px;
  background: linear-gradient(135deg, var(--pink), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.footer-text { font-size: 13px; color: var(--muted); }
.footer-ig { color: var(--pink); text-decoration: none; }


@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}


.spiderweb-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.web {
  position: absolute;
  opacity: .055;
  filter: blur(.3px);
}
.web-tl { top: -4px; left: -4px; }
.web-tr { top: -4px; right: -4px; transform: scaleX(-1); }
.web-br { bottom: -4px; right: -4px; transform: scale(-1); }

.spider-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spider-thread {
  width: 1px;
  background: rgba(255,255,255,.09);
  transform-origin: top center;
}
.spider { opacity: .13; filter: blur(.2px); }

@keyframes spiderSway {
  0%,100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}
@keyframes spiderDangle {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
@keyframes threadStretch {
  0%,100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.06); }
}
.spider-wrap-1 { top: 0; left: 18%; animation: spiderSway 9s ease-in-out infinite; }
.spider-wrap-1 .spider-thread { height: 90px; animation: threadStretch 9s ease-in-out infinite; }
.spider-wrap-1 .spider { animation: spiderDangle 9s ease-in-out infinite; }
.spider-wrap-2 { top: 0; right: 22%; animation: spiderSway 12s ease-in-out infinite reverse; animation-delay: -3s; }
.spider-wrap-2 .spider-thread { height: 60px; animation: threadStretch 12s ease-in-out infinite reverse; animation-delay: -3s; }
.spider-wrap-2 .spider { animation: spiderDangle 12s ease-in-out infinite reverse; animation-delay: -3s; }
.spider-wrap-3 { top: 0; left: 62%; animation: spiderSway 15s ease-in-out infinite; animation-delay: -6s; }
.spider-wrap-3 .spider-thread { height: 44px; animation: threadStretch 15s ease-in-out infinite; animation-delay: -6s; }
.spider-wrap-3 .spider { animation: spiderDangle 15s ease-in-out infinite; animation-delay: -6s; }


@media (max-width: 700px) {
  nav { padding: 20px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .stat-item { padding: 20px 24px; }
  .chances-grid { grid-template-columns: 1fr; }
  .chance-card { display: flex; align-items: center; gap: 16px; text-align: left; }
  .chance-card.active::before { top: 50%; right: 14px; transform: translateY(-50%); }
  .prize-story { padding: 32px 24px; }
  .prize-specs-card { padding: 28px 24px; }
  .specs-grid { grid-template-columns: 1fr; }
  .unlock-card { padding: 32px 24px; }
  .milestones { grid-template-columns: 1fr; gap: 12px; }
  .milestones::before { display: none; }
  .prize-cta-strip { flex-direction: column; text-align: center; }
}


.spiderweb-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}


.web {
  position: absolute;
  opacity: .055;
  filter: blur(.3px);
}
.web-tl { top: -4px; left: -4px; }
.web-tr { top: -4px; right: -4px; transform: scaleX(-1); }
.web-br { bottom: -4px; right: -4px; transform: scale(-1); }


.spider-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spider-thread {
  width: 1px;
  background: rgba(255,255,255,.09);
  transform-origin: top center;
}

.spider {
  opacity: .13;
  filter: blur(.2px);
}


@keyframes spiderSway {
  0%,100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}

@keyframes spiderDangle {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

@keyframes threadStretch {
  0%,100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.06); }
}

.spider-wrap-1 {
  top: 0; left: 18%;
  animation: spiderSway 9s ease-in-out infinite;
}
.spider-wrap-1 .spider-thread {
  height: 90px;
  animation: threadStretch 9s ease-in-out infinite;
}
.spider-wrap-1 .spider {
  animation: spiderDangle 9s ease-in-out infinite;
}

.spider-wrap-2 {
  top: 0; right: 22%;
  animation: spiderSway 12s ease-in-out infinite reverse;
  animation-delay: -3s;
}
.spider-wrap-2 .spider-thread {
  height: 60px;
  animation: threadStretch 12s ease-in-out infinite reverse;
  animation-delay: -3s;
}
.spider-wrap-2 .spider {
  animation: spiderDangle 12s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.spider-wrap-3 {
  top: 0; left: 62%;
  animation: spiderSway 15s ease-in-out infinite;
  animation-delay: -6s;
}
.spider-wrap-3 .spider-thread {
  height: 44px;
  animation: threadStretch 15s ease-in-out infinite;
  animation-delay: -6s;
}
.spider-wrap-3 .spider {
  animation: spiderDangle 15s ease-in-out infinite;
  animation-delay: -6s;
}

.progress-wrap {
  margin-top: 20px;
  max-width: 340px;
  width: 100%;
  text-align: center;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.progress-label span { color: var(--pink); }
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,.07);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), #ff80cf);
  border-radius: 100px;
}
.hero-badge.urgency {
  background: rgba(255,160,0,.12);
  border-color: rgba(255,160,0,.35);
  color: #ffa000;
  animation: urgencyPulse 1.8s ease-in-out infinite;
}
.hero-badge.urgency span { background: #ffa000; }
@keyframes urgencyPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,160,0,.3); }
  50%      { box-shadow: 0 0 0 8px rgba(255,160,0,0); }
}
.hero-soldout {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 20px 40px;
  text-align: center;
}
.hero-soldout-title {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--muted);
  letter-spacing: 1px;
}
.hero-soldout-sub {
  font-size: 13px;
  color: var(--muted);
  opacity: .7;
}
.form-soldout {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}
.form-soldout-icon { font-size: 52px; margin-bottom: 16px; }
.form-soldout-title {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-soldout-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  opacity: .8;
}
.form-soldout-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--pink);
  text-decoration: none;
  transition: all .2s;
}
.form-soldout-ig:hover { background: var(--pink-dim); }
.urgency-banner {
  background: rgba(255,160,0,.08);
  border: 1px solid rgba(255,160,0,.25);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #ffa000;
  margin-bottom: 20px;
  font-weight: 600;
}