@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,800&family=Inter:wght@300;400;500;600;700;800;900&family=Permanent+Marker&family=Black+Ops+One&display=swap');

:root {
  --bg: #05111d;
  --bg-deep: #020813;
  --panel: rgba(11, 26, 43, 0.88);
  --panel-soft: rgba(18, 35, 55, 0.72);
  --line: rgba(151, 182, 218, 0.24);
  --line-strong: rgba(165, 195, 230, 0.42);
  --text: #f7fbff;
  --muted: #b8c8d7;
  --blue: #1982ff;
  --blue-soft: #48a4ff;
  --orange: #ff8a18;
  --red: #ff2e2e;
  --green: #18bd68;
  --purple: #a85cff;
  --gold: #ffc342;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --condensed: 'Barlow', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.03em;
  word-spacing: 0.06em;
  line-height: 1.35;
}

p, li, label, select, input, textarea {
  letter-spacing: 0.03em;
  word-spacing: 0.06em;
  line-height: 1.7;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 128, 24, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(24, 130, 255, 0.17), transparent 25rem),
    linear-gradient(180deg, #061427 0%, #03101c 42%, #061321 100%);
  font-family: var(--body);
  line-height: 1.7;
  letter-spacing: 0.03em;
  word-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 72%);
}

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

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

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

.site-header {
  display: none !important;
}

.brand {
  display: flex;
  align-items: center;
  width: 184px;
  height: 54px;
  overflow: hidden;
}

.brand img {
  width: 184px;
  height: 54px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  padding: 27px 0 24px;
  color: #edf6ff;
  opacity: 0.86;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--orange);
  opacity: 1;
}

.header-cta,
.submit-btn {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(100deg, #ff971a 0%, #ff2e2e 100%);
  box-shadow: 0 14px 32px rgba(255, 72, 24, 0.3);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta {
  padding: 13px 23px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 26, 44, 0.85);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid rgba(94, 139, 189, 0.24);
  background: var(--bg-deep);
}

.hero-skyline {
  position: absolute;
  inset: 0;
  background-image: url("assets/delhi-skyline.png");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.95;
  z-index: 0;
}

.hero-crowd-layer {
  display: none; /* The new backdrop has the crowd integrated directly; hiding double-layer to keep it clean */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, var(--bg-deep) 0%, rgba(2, 8, 19, 0.95) 15%, rgba(2, 8, 19, 0.45) 45%, rgba(2, 8, 19, 0) 65%, rgba(2, 8, 19, 0.25) 100%),
    linear-gradient(180deg, rgba(2, 8, 19, 0) 65%, var(--bg-deep) 98%, var(--bg-deep) 100%);
  z-index: 1;
}

.hero-grid-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.8fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: center;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 98px;
  z-index: 2;
}

/* =========================================================================
   LEFT ZONE: TYPOGRAPHY REPLICATION
   ========================================================================= */
.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brush-stroke-top-left {
  position: absolute;
  top: -45px;
  left: -65px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 138, 24, 0.22) 0%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.title-container {
  margin-bottom: 28px;
}

.movement-logo-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
  display: block;
  margin: 0 0 10px 0;
  animation: titleBrushFloat 6s ease-in-out infinite;
}

.subtitle-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
}

.subtitle-separator .sep-line {
  flex-grow: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.subtitle-separator .separator-text {
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0.88;
  white-space: nowrap;
}

.slogan-container {
  margin-bottom: 34px;
  max-width: 520px;
}

.slogan-white {
  color: #fff;
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.slogan-brush {
  font-family: 'Permanent Marker', cursive;
  color: #ffa800;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.05;
  margin: 0 0 8px 0;
  transform: rotate(-1deg);
  text-shadow: 0 0 16px rgba(255, 168, 0, 0.28);
  font-weight: normal;
}

.slogan-accent-line {
  width: 100%;
  max-width: 380px;
  height: 3.5px;
  background: linear-gradient(90deg, #ffa800 0%, rgba(255, 168, 0, 0.4) 60%, transparent 100%);
  border-radius: 4px;
  box-shadow: 0 0 12px #ffa800;
  margin: 6px 0 18px 0;
}

.slogan-sub {
  color: #edf6ff;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 0 0 8px 0;
  opacity: 0.92;
}

.slogan-tricolor {
  font-family: var(--condensed);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 900;
  letter-spacing: 1.5px;
  margin: 0;
}

.tricolor-orange {
  color: #ff9124;
  text-shadow: 0 0 12px rgba(255, 145, 36, 0.35);
}

.tricolor-white {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
  margin: 0 8px;
}

.tricolor-green {
  color: #18bd68;
  text-shadow: 0 0 12px rgba(24, 189, 104, 0.35);
}

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

/* =========================================================================
   CENTER ZONE: LEADER SPOTLIGHT & ANTENNAE
   ========================================================================= */
.hero-center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  position: relative;
}

.leader-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 445px; /* Stand taller and more dominant as the leader */
  /* Bottom feathering mask so her legs blend organically with the silhouette crowd */
  mask-image: linear-gradient(to bottom, black 0%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 86%, transparent 100%);
}

/* Warm ambient sunset overlay on top of her to cast golden hour colors on her front */
.leader-image-wrapper::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(to top, rgba(255, 138, 24, 0.18) 0%, rgba(255, 195, 66, 0.06) 50%, transparent 100%);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
}

.leader-img {
  width: 100%;
  height: auto;
  max-height: 550px; /* Dominant height */
  object-fit: contain;
  z-index: 2;
  /* Sepia, saturate, and contrast balanced to stand out sharply against the sunset backdrop */
  filter: sepia(0.12) saturate(1.12) brightness(1.05) contrast(1.04) drop-shadow(0 15px 42px rgba(0, 0, 0, 0.85));
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.leader-image-wrapper:hover .leader-img {
  transform: translateY(-6px) scale(1.02);
}

.cockroach-antennae {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
}

/* =========================================================================
   RIGHT ZONE: VALUE BADGES
   ========================================================================= */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.brush-stroke-right {
  position: absolute;
  right: -55px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(24, 189, 104, 0.16) 0%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.badges-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 320px;
  z-index: 2;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  border-radius: 50px;
  border: 1px solid rgba(154, 185, 222, 0.14);
  background: rgba(8, 22, 40, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.badge-item:hover {
  transform: translateX(-8px) scale(1.02);
  background: rgba(14, 34, 58, 0.88);
}

.badge-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px currentColor;
  transition: transform 0.4s ease;
}

.badge-item:hover .badge-icon {
  transform: rotate(15deg) scale(1.06);
}

.badge-icon svg {
  width: 20px;
  height: 20px;
  color: inherit;
}

.badge-orange .badge-icon { background: linear-gradient(135deg, #ffc342, #ff7b00); color: rgba(255, 145, 36, 0.45); }
.badge-blue .badge-icon { background: linear-gradient(135deg, #38a5ff, #126df0); color: rgba(30, 144, 255, 0.45); }
.badge-green .badge-icon { background: linear-gradient(135deg, #28cc76, #048d43); color: rgba(39, 208, 120, 0.45); }

.badge-orange:hover { border-color: rgba(255, 145, 36, 0.48); box-shadow: 0 10px 32px rgba(255, 145, 36, 0.22); }
.badge-blue:hover { border-color: rgba(30, 144, 255, 0.48); box-shadow: 0 10px 32px rgba(30, 144, 255, 0.22); }
.badge-green:hover { border-color: rgba(39, 208, 120, 0.48); box-shadow: 0 10px 32px rgba(39, 208, 120, 0.22); }

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

.badge-sub {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.1;
}

/* =========================================================================
   BOTTOM CARDBOARD PLACARDS
   ========================================================================= */
.hero-placards-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0 5%;
  pointer-events: none;
  z-index: 3;
}

.placard {
  background: #d5c3ac;
  color: #2b1f14;
  border: 2px solid #8e7a63;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-family: var(--condensed);
  font-weight: 900;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 4px;
  line-height: 1.1;
  position: relative;
  transition: transform 0.3s ease;
}

.placard::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 52px;
  background: #5c4935;
  border: 1px solid #3c2f21;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.placard-left {
  transform: rotate(-3.5deg);
  margin-bottom: -15px;
}

.placard-center {
  transform: rotate(1.5deg);
  margin-bottom: -22px;
  padding: 10px 20px;
  font-size: 16px;
}

.placard-right {
  transform: rotate(-1.5deg);
  margin-bottom: -18px;
}

/* =========================================================================
   ELITE ENTRANCE & FLOATING ANIMATIONS
   ========================================================================= */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 0.38; }
}

@keyframes titleBrushFloat {
  0% { transform: translateY(0px) rotate(-1.5deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(-1.5deg); }
}

@keyframes sloganBrushFloat {
  0% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(-0.5deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.3333%, 0, 0);
  }
}

@-webkit-keyframes marquee-scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-33.3333%, 0, 0);
  }
}

.hero-left {
  animation: heroFadeInUp 0.85s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.leader-image-wrapper {
  animation: heroFadeInUp 1.05s cubic-bezier(0.25, 1, 0.5, 1) 0.15s backwards;
}

.hero-right {
  animation: heroFadeInUp 0.85s cubic-bezier(0.25, 1, 0.5, 1) 0.3s backwards;
}

.hero-skyline {
  animation: heroFadeIn 1.4s ease forwards;
}

.movement-logo-img {
  animation: titleBrushFloat 6s ease-in-out infinite;
}

.slogan-brush {
  animation: sloganBrushFloat 5s ease-in-out 0.5s infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn.primary {
  background: linear-gradient(100deg, #2593ff 0%, #1269f0 100%);
  box-shadow: 0 16px 38px rgba(22, 105, 240, 0.34);
}

.btn.primary span {
  margin-left: 14px;
}

.btn.secondary {
  border: 2px solid rgba(225, 234, 245, 0.44);
  background: rgba(5, 14, 25, 0.58);
}

.hero {
  display: block;
  min-height: 0;
  padding: 0;
  background: #050505;
}

.hero > :not(.hero-reference-picture):not(.hero-code-footer) {
  display: none;
}

.hero-reference-picture {
  display: block;
}

.hero-reference-img {
  display: block;
  width: 100%;
  height: clamp(260px, 36.25vw, 580px);
  object-fit: cover;
  object-position: center top;
}

.hero-code-footer {
  background: #0a0a09;
  border-top: 1px solid rgba(255, 195, 66, 0.34);
  border-bottom: 1px solid rgba(255, 195, 66, 0.24);
  box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.42);
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.hero-value-strip {
  display: inline-flex;
  grid-template-columns: none;
  width: max-content;
  align-items: center;
  min-height: 54px;
  margin: 0;
  color: #e9edf0;
  font-family: var(--condensed);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  animation: marquee-scroll 24s linear infinite;
}

.hero-value-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 30px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 195, 66, 0.46);
  white-space: nowrap;
}

/* Make all 15 loop items visible globally */
.hero-value-strip span:nth-child(n + 6) {
  display: inline-flex;
}

/* Keep the right border on the 5th and 10th elements active so it loops seamlessly */
.hero-value-strip span:nth-child(5),
.hero-value-strip span:nth-child(10) {
  border-right: 1px solid rgba(255, 195, 66, 0.46);
}

/* The last child of all (the 15th item) shouldn't have a right border */
.hero-value-strip span:last-child {
  border-right: 0;
}

.hero-value-strip svg {
  width: 25px;
  height: 25px;
  color: #e3a945;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero-join-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 42px;
  padding: 8px 24px;
  color: #f3f4f6;
  border-top: 1px solid rgba(255, 195, 66, 0.24);
  background: #111211;
  font-family: var(--condensed);
  font-size: clamp(16px, 1.5vw, 23px);
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.hero-join-strip::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 2px 100% no-repeat,
    linear-gradient(90deg, currentColor, currentColor) 0 50% / 100% 2px no-repeat;
  opacity: 0.86;
}

.hero-join-strip small {
  padding: 3px 18px 4px;
  color: #e8d8ba;
  border: 1px solid rgba(255, 195, 66, 0.72);
  border-radius: 999px;
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hero-join-strip:hover {
  color: #ffc342;
  background: #15120c;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 36px;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 46px;
}

.bottom-sections-shell {
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 54px;
}

.content-column {
  min-width: 0;
}

.movement-block {
  padding: 0 0 30px;
}

.movement-block h2,
.title-rule h2,
.about-grid h2,
.digital-section h2 {
  font-family: var(--condensed);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.movement-block h2 {
  margin-bottom: 22px;
  text-align: center;
}

.movement-block h2 span,
.blue-statement,
.form-section h3,
.join-panel form > label > span,
.textarea-label span {
  color: var(--blue-soft);
}

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

.reason-card,
.demand-grid article,
.gallery-strip article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 34, 55, 0.92), rgba(9, 24, 42, 0.66));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #fff;
}

.reason-card.blue .icon-badge { background: linear-gradient(140deg, #38a5ff, #126df0); }
.reason-card.orange .icon-badge { background: linear-gradient(140deg, #ffc342, #ff7b00); }
.reason-card.green .icon-badge { background: linear-gradient(140deg, #28cc76, #048d43); }

.icon-badge svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reason-card h3,
.demand-grid h3,
.gallery-strip h3 {
  color: #fff;
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.reason-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #d9e5ef;
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid rgba(120, 159, 202, 0.18);
}

.about-grid h2 {
  max-width: 360px;
  font-size: clamp(44px, 6vw, 70px);
}

.blue-statement {
  margin: 18px 0 28px;
  font-family: var(--condensed);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.about-grid p {
  color: #d7e4ee;
  font-size: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(120, 159, 202, 0.22);
}

.stats-grid div {
  padding: 10px 16px 24px;
  text-align: center;
  border-right: 1px solid rgba(154, 185, 222, 0.32);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 46px;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 4px;
  color: #eef7ff;
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.value-list {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(10, 25, 43, 0.96), rgba(14, 34, 56, 0.7)),
    url("assets/hero-crowd.png") center / cover;
  box-shadow: var(--shadow);
}

.value-list div {
  position: relative;
  min-height: 46px;
  padding-left: 54px;
  margin-bottom: 14px;
}

.value-list div::before {
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  content: "";
  border: 2px solid rgba(255, 195, 66, 0.9);
  border-radius: 8px;
  background: rgba(255, 195, 66, 0.12);
}

.value-list strong {
  display: block;
  color: #fff;
  font-family: var(--condensed);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.value-list span {
  color: #c9d7e5;
  font-size: 13px;
}

.title-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin: 16px 0 28px;
}

.title-rule span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(171, 202, 238, 0.34), transparent);
}

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

.demands-section {
  padding: 34px 0 42px;
}

.demands-subtitle {
  max-width: 560px;
  margin: -12px auto 28px;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

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

.demand-column {
  display: grid;
  gap: 14px;
}

.demand-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 195, 66, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 34, 55, 0.94), rgba(9, 24, 42, 0.76)),
    #07101b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 48px rgba(0, 0, 0, 0.28);
}

.demand-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(140deg, var(--orange), #d84f09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.demand-item:nth-child(2) .demand-icon { background: linear-gradient(140deg, var(--gold), #bf8704); }
.demand-item:nth-child(3) .demand-icon { background: linear-gradient(140deg, var(--green), #147b2c); }
.demand-item:nth-child(4) .demand-icon { background: linear-gradient(140deg, #55d8ef, #137c94); }
.demand-item:nth-child(5) .demand-icon { background: linear-gradient(140deg, var(--purple), #5735af); }
.demand-column:nth-child(2) .demand-item:nth-child(1) .demand-icon { background: linear-gradient(140deg, #ff74c8, #b42e78); }
.demand-column:nth-child(2) .demand-item:nth-child(2) .demand-icon { background: linear-gradient(140deg, var(--orange), #d84f09); }
.demand-column:nth-child(2) .demand-item:nth-child(3) .demand-icon { background: linear-gradient(140deg, #35d6d4, #117f8d); }
.demand-column:nth-child(2) .demand-item:nth-child(4) .demand-icon { background: linear-gradient(140deg, #b7c716, #7a9408); }
.demand-column:nth-child(2) .demand-item:nth-child(5) .demand-icon { background: linear-gradient(140deg, var(--blue), #0f63bc); }

.demand-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.demand-item h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--condensed);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.demand-item p {
  margin: 0;
  color: #d8e4ee;
  font-size: 15px;
  line-height: 1.42;
}

.demand-grid article {
  position: relative;
  min-height: 190px;
  padding: 18px 12px 20px;
  overflow: hidden;
  text-align: center;
}

.demand-grid article::after {
  position: absolute;
  inset: auto -30px -42px auto;
  width: 110px;
  height: 110px;
  content: "";
  border-radius: 50%;
  background: currentColor;
  filter: blur(38px);
  opacity: 0.22;
}

.demand-grid article:nth-child(1) { color: var(--blue); }
.demand-grid article:nth-child(2) { color: var(--orange); }
.demand-grid article:nth-child(3) { color: #ff74c8; }
.demand-grid article:nth-child(4) { color: var(--green); }
.demand-grid article:nth-child(5) { color: var(--gold); }
.demand-grid article:nth-child(6) { color: var(--purple); }
.demand-grid article:nth-child(7) { color: #8fe36a; }
.demand-grid article:nth-child(8) { color: #55d8ef; }
.demand-grid article:nth-child(9) { color: #ff8b3d; }

.demand-grid strong {
  position: absolute;
  left: 12px;
  top: 8px;
  font-family: var(--condensed);
  font-size: 36px;
  line-height: 1;
}

.demand-grid svg {
  width: 54px;
  height: 54px;
  margin: 36px auto 16px;
  fill: currentColor;
}

.demand-grid h3 {
  font-size: 18px;
  line-height: 1.03;
}

.joiners {
  padding: 26px 0 30px;
}

.joiner-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(76px, 1fr));
  gap: 12px;
}

.joiner-row div {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.joiner-row svg {
  width: 66px;
  height: 66px;
  padding: 16px;
  color: #edf6ff;
  fill: currentColor;
  border: 2px solid rgba(178, 206, 237, 0.46);
  border-radius: 50%;
  background: rgba(8, 23, 42, 0.62);
}

.joiner-row span,
.joiners p {
  color: #dce8f2;
  font-size: 13px;
  text-align: center;
}

.digital-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 38px 0 28px;
  border-top: 1px solid rgba(120, 159, 202, 0.18);
}

.digital-section img {
  width: 270px;
  border-radius: 12px;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.38));
}

.digital-section p:not(.section-kicker) {
  max-width: 520px;
  color: #dbe7f1;
  font-size: 18px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 0 10px;
}

.gallery-strip:empty {
  display: none;
}

.gallery-strip article {
  min-height: 0;
  padding: 12px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(184, 207, 232, 0.22);
}

.gallery-strip h3 {
  margin: 14px 6px 6px;
  font-size: 19px;
  text-align: left;
}

.join-panel {
  position: relative;
  align-self: start;
  padding: 28px;
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(13, 29, 48, 0.96), rgba(4, 14, 27, 0.95)),
    radial-gradient(circle at 50% 0%, rgba(37, 147, 255, 0.22), transparent 18rem);
  box-shadow: var(--shadow);
}

.join-panel h2 {
  color: #fff;
  font-family: var(--condensed);
  font-size: 46px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.join-panel > p {
  width: min(320px, 100%);
  margin: 13px auto 22px;
  color: #d4e0eb;
  font-size: 13px;
  text-align: center;
}

.join-panel label {
  display: block;
}

.join-panel form > label > span,
.textarea-label span {
  display: block;
  margin: 15px 0 6px;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-grid.two {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 12px;
}

.form-grid.two span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: #f6fbff;
  border: 1px solid rgba(174, 204, 237, 0.18);
  border-radius: 7px;
  background: rgba(21, 36, 55, 0.92);
  outline: none;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #a9bdd0 50%), linear-gradient(135deg, #a9bdd0 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 82px;
  padding: 14px 16px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder,
select {
  color: #a7b8c8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(60, 160, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(37, 147, 255, 0.15);
}

.form-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 2px solid rgba(207, 218, 232, 0.54);
}

.form-section h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
}

.form-section p {
  margin: 2px 0 15px;
  color: #d5e1ec;
  font-size: 13px;
}

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

.check-grid label,
.support-list label,
.pledge {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #e3edf6;
  font-size: 13px;
  line-height: 1.25;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--orange);
}

.support-list {
  display: grid;
  gap: 10px;
}

.pledge {
  margin-top: 15px;
}

.submit-btn {
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  font-size: 22px;
}

.form-note {
  margin: 12px 0 0;
  color: #d8e4ef;
  text-align: center;
}

@keyframes gold-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 195, 66, 0.4), 0 0 20px rgba(255, 195, 66, 0.2);
    box-shadow: 0 0 15px rgba(255, 195, 66, 0.15), inset 0 0 10px rgba(255, 195, 66, 0.05);
    background: rgba(255, 195, 66, 0.05);
    border-color: rgba(255, 195, 66, 0.2);
  }
  50% {
    text-shadow: 0 0 16px rgba(255, 195, 66, 0.8), 0 0 28px rgba(255, 195, 66, 0.4);
    box-shadow: 0 0 25px rgba(255, 195, 66, 0.35), inset 0 0 15px rgba(255, 195, 66, 0.12);
    background: rgba(255, 195, 66, 0.1);
    border-color: rgba(255, 195, 66, 0.4);
  }
}

.form-note-highlight {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  color: var(--gold);
  font-weight: 800;
  border: 1px solid rgba(255, 195, 66, 0.2);
  border-radius: 30px;
  background: rgba(255, 195, 66, 0.05);
  box-shadow: 0 0 15px rgba(255, 195, 66, 0.15);
  animation: gold-glow 2s infinite ease-in-out;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.quote-banner {
  overflow: hidden;
  background: #04111f;
}

.quote-banner img {
  width: 100%;
  min-height: 128px;
  object-fit: cover;
}

.site-footer {
  padding: 56px 0;
  background: #030b14;
  border-top: 1px solid rgba(151, 182, 218, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: 44px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-grid img {
  width: 198px;
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: #c7d6e5;
  font-size: 15px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--condensed);
  font-size: 21px;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(151, 182, 218, 0.12);
  padding-top: 32px;
  text-align: center;
}

.copyright {
  margin: 0;
  color: #8fa3b6;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.footer-credit-divider {
  width: 80px;
  height: 1px;
  background: rgba(151, 182, 218, 0.15);
  margin: 12px auto;
}

.footer-credit {
  margin: 0;
  color: #8fa3b6;
  font-size: 14.5px;
  letter-spacing: 0.02em;
}

.footer-credit a {
  display: inline !important;
  color: var(--blue-soft) !important;
  text-decoration: underline !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  margin: 0 !important;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--blue) !important;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.socials a.facebook { background: #1877f2; }
.socials a.youtube { background: #ff0000; }
.socials a.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.socials a.x { background: #000; border: 1px solid rgba(255, 255, 255, 0.24); }
.socials a.wikipedia { background: #555c66; }

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 24px 18px;
    background: rgba(3, 11, 20, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(151, 182, 218, 0.12);
  }

  .hero-grid-container {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 16px;
    padding: 70px 0 80px;
  }

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

  .join-panel {
    order: -1;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: 
      linear-gradient(180deg, var(--bg-deep) 0%, rgba(2, 8, 19, 0.94) 15%, rgba(2, 8, 19, 0.9) 70%, var(--bg-deep) 100%);
  }

  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 70px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .subtitle-separator {
    justify-content: center;
    margin: 0 auto 12px;
  }

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

  .hero-center {
    order: 2;
    margin: 20px 0;
  }

  .leader-image-wrapper {
    max-width: 330px;
    margin: 0 auto;
  }

  .leader-img {
    max-height: 420px;
  }

  .cockroach-antennae {
    width: 140px;
    height: 140px;
    top: 6px;
  }

  .hero-right {
    order: 3;
    justify-content: center;
  }

  .badges-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 100%;
  }

  .badge-item {
    padding: 10px 18px;
    border-radius: 30px;
  }

  .badge-item:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .hero-placards-container {
    display: none;
  }

  .reason-grid,
  .about-grid,
  .demands-layout,
  .gallery-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-reference-img {
    height: clamp(260px, 44vw, 430px);
  }

  .hero-value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(720px, calc(100% - 28px));
    padding: 8px 0;
  }

  .hero-value-strip span {
    justify-content: flex-start;
    border-right: 0;
    padding: 8px 12px;
  }

  .hero-value-strip span:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero-join-strip {
    flex-wrap: wrap;
    gap: 10px 16px;
    text-align: center;
  }

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

  .joiner-row {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
  }
}

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

  .brand,
  .brand img {
    width: 166px;
    height: 50px;
  }

  .title-top {
    font-size: 44px;
  }

  .title-brush {
    font-size: 34px;
    margin: -4px 0 10px -2px;
  }

  .slogan-white {
    font-size: 24px;
  }

  .slogan-brush {
    font-size: 28px;
  }

  .badges-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .badge-item {
    width: 100%;
    max-width: 280px;
  }

  .hero-reference-img {
    height: auto;
    content: url("assets/mobile-hero-poster.jpg");
    object-fit: contain;
    object-position: center top;
    background: #050505;
  }

  .hero-reference-picture {
    background: #050505;
  }



  .hero-join-strip {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 17px;
  }

  .hero-join-strip small {
    width: 100%;
    max-width: 230px;
  }

  .page-shell {
    width: calc(100% - 28px);
    gap: 24px;
    padding-top: 20px;
  }

  .join-panel {
    padding: 20px;
  }

  .form-grid.two,
  .check-grid,
  .demand-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid div {
    border-right: none;
    border-bottom: 1px solid rgba(154, 185, 222, 0.32);
    padding: 16px 8px;
  }

  .stats-grid div:nth-child(odd) {
    border-right: 1px solid rgba(154, 185, 222, 0.32);
  }

  .stats-grid div:nth-child(3),
  .stats-grid div:nth-child(4) {
    border-bottom: 0;
  }

  .value-list,
  .quote-banner {
    display: none;
  }

  .demand-item {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px;
  }

  .demand-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .demand-icon svg {
    width: 28px;
    height: 28px;
  }

  .demand-item h3 {
    font-size: 21px;
  }

  .demand-item p {
    font-size: 14px;
  }

  .joiner-row {
    grid-template-columns: repeat(2, minmax(92px, 1fr));
  }

  .title-rule {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer-grid > div:nth-child(1) {
    grid-column: span 2;
    text-align: center;
  }

  .footer-grid > div:nth-child(1) img {
    margin: 0 auto 18px;
    display: block;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    text-align: center;
  }

  .footer-grid > div:nth-child(4) {
    grid-column: span 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid .socials {
    justify-content: center;
  }
}

/* =========================================================================
   PREMIUM THANK YOU MODAL OVERLAY STYLES (MATCHING SCREENSHOT)
   ========================================================================= */
.thank-you-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.thank-you-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.thank-you-card {
  position: relative;
  width: min(440px, 100%);
  padding: 48px 36px 36px 36px;
  border: 1px solid rgba(154, 185, 222, 0.16);
  border-radius: 16px;
  background: #07121e;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.72), radial-gradient(circle at 50% 0%, rgba(37, 147, 255, 0.08), transparent 15rem);
  text-align: center;
  transform: translateY(28px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-you-overlay.is-active .thank-you-card {
  transform: translateY(0) scale(1);
}

.thank-you-close-cross {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  color: #a7b8c8;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.thank-you-close-cross:hover {
  color: #fff;
}

.thank-you-header {
  position: relative;
  width: 140px;
  height: 96px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-checkmark-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 4.5px solid #18bd68;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(24, 189, 104, 0.45);
  background: rgba(24, 189, 104, 0.08);
}

.success-checkmark-svg {
  width: 38px;
  height: 38px;
}

.checkmark-check-path {
  stroke: #18bd68;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.15s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.confetti {
  position: absolute;
  border-radius: 50%;
  animation: sparkle 2.2s infinite ease-in-out;
}

@keyframes sparkle {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  50% { transform: scale(1.3) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 0.8; }
}

.confetti.c1 { background: #ff8a18; left: 16%; top: 38%; width: 7px; height: 7px; transform: rotate(45deg); border-radius: 0; animation-delay: 0.2s; }
.confetti.c2 { background: #1982ff; left: 24%; top: 68%; width: 6px; height: 6px; animation-delay: 0.8s; }
.confetti.c3 { background: #ffc342; left: 34%; top: 16%; width: 7px; height: 7px; transform: rotate(-30deg); border-radius: 0; animation-delay: 1.3s; }
.confetti.c4 { background: #18bd68; right: 18%; top: 42%; width: 7px; height: 7px; transform: rotate(15deg); border-radius: 0; animation-delay: 0.4s; }
.confetti.c5 { background: #1982ff; right: 30%; top: 22%; width: 5px; height: 5px; animation-delay: 0.9s; }
.confetti.c6 { background: #ff8a18; right: 24%; top: 72%; width: 8px; height: 8px; transform: rotate(55deg); border-radius: 0; animation-delay: 1.5s; }

.thank-you-card h3 {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--condensed);
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.thank-you-subtitle {
  margin: 0;
  color: #18bd68;
  font-family: var(--condensed);
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.thank-you-divider {
  border: 0;
  height: 2.5px;
  width: 44px;
  background-color: #18bd68;
  margin: 14px auto 16px;
}

.thank-you-desc {
  margin: 0 0 24px;
  color: #dce7f2;
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
}

.thank-you-email-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #091929;
  border: 1px solid rgba(24, 189, 104, 0.1);
  text-align: left;
  margin-bottom: 28px;
}

.email-notice-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #18bd68;
  flex-shrink: 0;
}

.email-notice-text {
  color: #c0cfdd;
  font-family: var(--body);
  font-size: 12.5px;
  line-height: 1.45;
}

.thank-you-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #030c14;
  background: linear-gradient(90deg, #18bd68 0%, #15d1bb 100%);
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.thank-you-action-btn:hover {
  transform: translateY(-1.5px);
  filter: brightness(1.08);
  box-shadow: 0 12px 30px rgba(24, 189, 104, 0.28);
}

.thank-you-action-btn:active {
  transform: translateY(0);
}

.thank-you-action-btn .arrow {
  margin-left: 8px;
  font-family: var(--body);
  font-size: 15px;
}

.thank-you-return-link {
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 0;
  color: #8fa3b6;
  font-family: var(--body);
  font-size: 13.5px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.thank-you-return-link:hover {
  color: #fff;
}

@media (max-width: 920px) {
  .digital-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .digital-section img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 24px;
    display: block;
  }

  .digital-section p:not(.section-kicker) {
    margin-left: auto;
    margin-right: auto;
  }

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