:root {
  color-scheme: dark;
  --bg: #02060b;
  --bg-soft: #05111e;
  --panel: rgba(2, 15, 27, 0.88);
  --panel-2: rgba(3, 20, 34, 0.82);
  --line: rgba(28, 224, 255, 0.56);
  --line-soft: rgba(152, 209, 225, 0.23);
  --text: #f7fbff;
  --muted: #b8d2df;
  --cyan: #1fe2ff;
  --cyan-soft: #8ff5ff;
  --gold: #ffd84c;
  --gold-deep: #a66d08;
  --lime: #91ff52;
  --magenta: #ff4db7;
  --site: 808px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #eaf8ff;
  --bg-soft: #cceef8;
  --panel: rgba(240, 252, 255, 0.9);
  --panel-2: rgba(223, 244, 251, 0.84);
  --line: rgba(0, 151, 190, 0.58);
  --line-soft: rgba(19, 104, 134, 0.22);
  --text: #06131d;
  --muted: #2e5366;
  --cyan: #009dd2;
  --cyan-soft: #005f86;
  --gold: #b77900;
  --gold-deep: #8b5600;
  --lime: #247c15;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(13, 51, 73, 0.32), transparent 22%),
    radial-gradient(circle at 50% 78%, rgba(11, 63, 84, 0.24), transparent 18%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 50% 32%, rgba(0, 183, 227, 0.18), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(0, 111, 154, 0.16), transparent 20%),
    linear-gradient(180deg, #f5fcff 0%, var(--bg) 45%, #f7fdff 100%);
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.site-frame {
  width: min(calc(100% - 56px), var(--site));
  margin: 0 auto;
}

.theme-toggle {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 48;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 12px 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 0, rgba(31, 226, 255, 0.2), transparent 50%),
    rgba(1, 8, 16, 0.9);
  color: var(--text);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.theme-toggle-track {
  position: relative;
  display: block;
  width: 56px;
  height: 28px;
  border: 1px solid rgba(151, 207, 224, 0.42);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(4, 17, 30, 0.96), rgba(0, 8, 17, 0.86));
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.55);
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f8fdff, #9eefff);
  box-shadow: 0 0 14px rgba(31, 226, 255, 0.62), 0 4px 10px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-icon {
  position: absolute;
  top: 7px;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.theme-icon-moon {
  left: 7px;
  color: #07101a;
}

.theme-icon-sun {
  right: 7px;
  color: rgba(255, 216, 76, 0.82);
}

:root[data-theme="light"] .theme-toggle {
  border-color: rgba(0, 129, 169, 0.38);
  background:
    radial-gradient(circle at 70% 0, rgba(255, 216, 76, 0.28), transparent 50%),
    rgba(248, 253, 255, 0.92);
  color: #06131d;
  box-shadow: 0 14px 28px rgba(16, 88, 120, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

:root[data-theme="light"] .theme-toggle-track {
  border-color: rgba(0, 135, 178, 0.28);
  background: linear-gradient(180deg, #d9f5ff, #f9fdff);
  box-shadow: inset 0 2px 8px rgba(0, 75, 105, 0.16);
}

:root[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(28px);
  background: linear-gradient(180deg, #fff6b8, #ffc82f);
  box-shadow: 0 0 14px rgba(255, 197, 45, 0.55), 0 4px 10px rgba(31, 95, 125, 0.22);
}

.site-header {
  height: 78px;
  background: rgba(1, 5, 10, 0.98);
  border-bottom: 1px solid rgba(102, 150, 165, 0.3);
}

:root[data-theme="light"] .site-header {
  background: rgba(245, 252, 255, 0.96);
  border-bottom-color: rgba(19, 104, 134, 0.22);
  box-shadow: 0 12px 24px rgba(20, 91, 120, 0.08);
}

.header-frame {
  display: grid;
  grid-template-columns: 145px 1fr 136px;
  align-items: center;
  gap: 16px;
  height: 78px;
}

.brand-link img {
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.nav-links a,
.site-footer nav a {
  color: #f3f7fb;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

:root[data-theme="light"] .nav-links a,
:root[data-theme="light"] .site-footer nav a {
  color: #06131d;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.button-gold {
  color: #050607;
  background: linear-gradient(180deg, #ffe980 0%, #ffc52d 58%, #a96b08 100%);
  border-color: rgba(255, 235, 130, 0.82);
}

.button-outline {
  color: var(--cyan-soft);
  background: rgba(1, 11, 20, 0.78);
  border-color: var(--cyan);
}

.header-cta {
  width: 132px;
  height: 40px;
  padding: 0 13px;
  font-size: 12px;
}

.hero {
  position: relative;
  height: 556px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #02070d;
}

:root[data-theme="light"] .hero {
  background: #dff6ff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
}

:root[data-theme="light"] .hero-bg {
  opacity: 0.78;
  filter: saturate(1.06) contrast(0.98);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 11, 0.16), rgba(2, 6, 11, 0.02) 45%, rgba(2, 6, 11, 0.08)),
    linear-gradient(180deg, rgba(2, 6, 11, 0), rgba(2, 6, 11, 0.18) 78%, #02060b);
  pointer-events: none;
}

:root[data-theme="light"] .hero::after {
  background:
    linear-gradient(90deg, rgba(2, 6, 11, 0.28), rgba(2, 6, 11, 0.02) 45%, rgba(2, 6, 11, 0.14)),
    linear-gradient(180deg, rgba(2, 6, 11, 0), rgba(233, 248, 255, 0.46) 78%, var(--bg));
}

.hero-frame {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), 1540px);
  height: 556px;
}

.hero-copy {
  position: absolute;
  top: 19px;
  left: 0;
  width: 230px;
  z-index: 4;
}

.domain-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  color: var(--cyan-soft);
  font-size: 13px;
  font-weight: 850;
}

.domain-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(31, 226, 255, 0.12);
}

h1 {
  width: 260px;
  margin-bottom: 17px;
  font-size: 66px;
  line-height: 0.93;
  font-weight: 950;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.78);
}

.hero-copy p {
  width: 300px;
  margin-bottom: 31px;
  color: #eef8ff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
  text-shadow: 0 7px 18px #000;
}

:root[data-theme="light"] h1,
:root[data-theme="light"] .hero-copy p {
  color: #f7fbff;
}

.hero-actions {
  display: grid;
  gap: 13px;
  width: 188px;
}

.hero-actions .button {
  width: 188px;
  height: 50px;
  justify-content: space-between;
}

.hero-drop-countdown {
  position: relative;
  width: 188px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 9px;
  background:
    radial-gradient(circle at 0 0, rgba(31, 226, 255, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(8, 15, 26, 0.92), rgba(5, 7, 15, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 26px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.hero-drop-countdown::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  border: 1px solid rgba(31, 226, 255, 0.2);
  pointer-events: none;
}

.drop-countdown-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  color: #edf8ff;
  font-size: 8px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.drop-countdown-kicker svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.drop-countdown-values {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.drop-countdown-values span {
  display: grid;
  min-width: 0;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(19, 30, 48, 0.96), rgba(4, 7, 15, 0.92)),
    #070a12;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 13px rgba(0, 0, 0, 0.42);
}

.drop-countdown-values b {
  color: #ffffff;
  font-size: 21px;
  line-height: 0.92;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.drop-countdown-values small {
  color: #dbe7ee;
  font-size: 7px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

:root[data-theme="light"] .hero-drop-countdown {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 0 0, rgba(0, 157, 210, 0.2), transparent 44%),
    linear-gradient(180deg, rgba(13, 34, 52, 0.9), rgba(5, 11, 19, 0.78));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-product {
  position: absolute;
  top: 12px;
  left: 212px;
  width: 382px;
  height: 551px;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, 0.5));
}

.hero-phone {
  position: absolute;
  top: 30px;
  right: -15px;
  width: 257px;
  height: 540px;
  object-fit: cover;
  z-index: 2;
  filter: drop-shadow(-14px 26px 28px rgba(0, 0, 0, 0.6));
}

.section {
  width: min(calc(100% - 56px), var(--site));
  margin: 0 auto;
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.closing-cta h2 {
  color: var(--text);
  font-size: 31px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(115, 138, 151, 0.24), 0 8px 18px rgba(0, 0, 0, 0.76);
}

.section-heading p {
  margin-top: 8px;
  color: #dbeaf3;
  font-size: 16px;
  font-weight: 750;
}

:root[data-theme="light"] .section-heading p,
:root[data-theme="light"] .feature-copy > p {
  color: var(--muted);
}

:root[data-theme="light"] .section-heading h2,
:root[data-theme="light"] .feature-copy h2 {
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.82), 0 10px 20px rgba(23, 77, 104, 0.16);
}

.section-heading span {
  color: var(--cyan);
}

.section-heading .lime {
  color: var(--lime);
}

.mint-section {
  height: auto;
  padding-top: 20px;
  padding-bottom: 34px;
}

.mint-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.mint-stepper::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 17px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(31, 226, 255, 0.72), rgba(255, 255, 255, 0.2));
  opacity: 0.55;
}

.mint-stepper li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(209, 229, 238, 0.78);
  font-size: 11px;
  font-weight: 900;
}

.mint-stepper b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(169, 198, 211, 0.56);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 38%),
    rgba(3, 13, 23, 0.95);
  color: rgba(209, 229, 238, 0.9);
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.mint-stepper .active b {
  border-color: #f5fbff;
  background: linear-gradient(180deg, #ffffff, #dce9ef);
  color: #08111a;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.workflow-card,
.app-preview,
.drop-card,
.challenge-panel,
.safety-rail,
.closing-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 57, 81, 0.38), rgba(2, 15, 27, 0.9) 42%, rgba(2, 9, 17, 0.95)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(180, 243, 255, 0.12),
    inset 0 0 38px rgba(31, 226, 255, 0.08),
    0 22px 50px rgba(0, 0, 0, 0.42);
}

.workflow-card {
  position: relative;
  min-height: 194px;
  padding: 14px 12px 12px;
  overflow: hidden;
}

.workflow-card::before {
  content: "";
  position: absolute;
  inset: 8px 9px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 240, 255, 0.5), transparent);
  opacity: 0.55;
}

.span-2 {
  grid-column: span 2;
}

.workflow-head {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 7px;
  align-items: start;
}

.workflow-head strong {
  color: var(--cyan);
  font-size: 39px;
  line-height: 0.9;
  font-weight: 950;
}

.workflow-head h3 {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.workflow-head p {
  margin-top: 4px;
  color: #f3f8fb;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.28;
}

.step-photo {
  height: 92px;
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid rgba(215, 246, 255, 0.36);
  background: url("assets/images/mockup-mint-photo.png") center / cover;
  box-shadow: inset 0 0 18px rgba(31, 226, 255, 0.18), 0 12px 18px rgba(0, 0, 0, 0.38);
}

.real-sport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 11px;
}

.real-sport-grid span {
  display: grid;
  min-height: 42px;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(160, 215, 230, 0.42);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(10, 26, 39, 0.8), rgba(2, 9, 17, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 0 16px rgba(31, 226, 255, 0.05);
}

.real-sport-grid img {
  width: 25px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 5px 6px rgba(0, 0, 0, 0.48));
}

.real-sport-grid b,
.template-pair-row small {
  color: rgba(232, 242, 248, 0.88);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-fields,
.stat-stack {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.detail-fields span,
.stat-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(151, 205, 222, 0.24);
  border-radius: 6px;
  background: rgba(0, 7, 15, 0.55);
}

.detail-fields em,
.stat-stack em {
  color: rgba(151, 207, 224, 0.65);
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-fields b,
.stat-stack b {
  max-width: 84px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.template-pair-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 11px;
}

.template-pair-row span {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.template-pair-row img {
  height: 97px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.58));
}

.edition-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.edition-options span {
  display: grid;
  min-height: 39px;
  place-items: center;
  border: 1px solid rgba(151, 205, 222, 0.28);
  border-radius: 8px;
  background: rgba(0, 7, 15, 0.56);
  color: #dbeaf3;
  font-size: 13px;
  font-weight: 950;
}

.edition-options .selected {
  border-color: rgba(255, 216, 76, 0.78);
  background: linear-gradient(180deg, rgba(255, 216, 76, 0.24), rgba(99, 62, 4, 0.5));
  color: var(--gold);
}

.review-preview {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
}

.review-preview img {
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.58));
}

.review-preview span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 216, 76, 0.78);
  border-radius: 7px;
  background: linear-gradient(180deg, #fff1a6, #ffd84c 48%, #996305);
  color: #07101a;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 13px 18px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.step-arrow {
  width: 24px;
  height: 48px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(31, 226, 255, 0.65));
}

.drops-section {
  width: 100%;
  height: auto;
  padding-top: 34px;
  padding-bottom: 18px;
  background:
    radial-gradient(circle at 50% 35%, rgba(22, 94, 122, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(3, 15, 25, 0.5), rgba(2, 6, 11, 0));
}

:root[data-theme="light"] .drops-section {
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 166, 214, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(226, 247, 255, 0.72), rgba(245, 252, 255, 0));
}

.drops-section > .section-heading,
.drops-section > .drops-grid {
  width: min(calc(100% - 56px), var(--site));
  margin-left: auto;
  margin-right: auto;
}

.drops-grid {
  display: grid;
  grid-template-columns: 344px 1fr;
  gap: 16px;
  margin-top: 12px;
}

.drop-card {
  position: relative;
  display: grid;
  grid-template-columns: 184px 1fr;
  gap: 10px;
  align-items: center;
  height: 250px;
  padding: 20px;
  overflow: hidden;
}

.drop-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 100%;
}

.drop-card::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: -26px;
  width: 150px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(31, 226, 255, 0.46);
  box-shadow: inset 0 0 22px rgba(31, 226, 255, 0.18), 0 0 28px rgba(31, 226, 255, 0.18);
}

.drop-card h3,
.challenge-panel h3 {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 950;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  gap: 8px;
  margin: 24px 0 0;
}

.countdown span {
  display: grid;
  width: 52px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(174, 213, 225, 0.48);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(8, 18, 31, 0.92), rgba(0, 8, 17, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 15px rgba(0, 0, 0, 0.34);
}

.countdown b {
  font-size: 30px;
  line-height: 0.9;
  font-weight: 950;
}

.countdown small {
  color: #dbe7ee;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.drop-pack {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 145px;
  height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(31, 226, 255, 0.26)) drop-shadow(0 18px 20px rgba(0, 0, 0, 0.56));
}

.challenge-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 250px;
  padding: 20px;
  background:
    radial-gradient(circle at 60% 30%, rgba(31, 226, 255, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(5, 28, 46, 0.86), rgba(2, 11, 21, 0.96));
}

.challenge-panel::before {
  content: "";
  position: absolute;
  inset: 9px 10px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 240, 255, 0.5), transparent);
}

.challenge-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-self: center;
  margin: 18px 0 0;
}

.challenge-card {
  position: relative;
  min-width: 0;
  height: 122px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(13, 39, 56, 0.72), rgba(2, 10, 19, 0.9)),
    rgba(2, 10, 19, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 18px rgba(0, 0, 0, 0.28);
}

.challenge-card.magenta {
  border-color: rgba(255, 77, 183, 0.72);
  background:
    radial-gradient(circle at 25% 5%, rgba(255, 77, 183, 0.26), transparent 48%),
    linear-gradient(140deg, rgba(255, 77, 183, 0.22), rgba(2, 10, 19, 0.8) 52%);
}

.challenge-card.gold {
  border-color: rgba(255, 216, 76, 0.66);
  background:
    radial-gradient(circle at 25% 5%, rgba(255, 216, 76, 0.18), transparent 48%),
    linear-gradient(140deg, rgba(255, 216, 76, 0.16), rgba(2, 10, 19, 0.8) 52%);
}

.challenge-card img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin-bottom: 5px;
}

.challenge-card h4 {
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1.05;
  font-weight: 950;
}

.challenge-card p {
  height: 24px;
  color: #eff8fb;
  font-size: 8.8px;
  line-height: 1.15;
  font-weight: 650;
}

.challenge-card em {
  position: absolute;
  left: 12px;
  bottom: 29px;
  color: var(--cyan);
  font-size: 12px;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
}

.challenge-card b {
  position: absolute;
  left: 12px;
  bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.progress {
  position: absolute;
  right: 12px;
  bottom: 28px;
  left: 40px;
  width: auto;
  height: 8px;
  margin: 0;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.65);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--cyan);
}

.full-button {
  width: 252px;
  height: 34px;
  min-height: 0;
  margin: 0 auto;
  font-size: 12px;
}

.app-feature-section {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 16px;
  align-items: stretch;
  padding-top: 31px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 6px 0;
}

.feature-copy h2 {
  color: var(--text);
  font-size: 31px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(115, 138, 151, 0.24), 0 8px 18px rgba(0, 0, 0, 0.76);
}

.feature-copy > p {
  margin-top: 12px;
  color: #dbeaf3;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.35;
}

.feature-copy > p span {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-weight: 950;
}

.feature-button {
  width: 100%;
  height: 43px;
  margin-top: auto;
  justify-content: space-between;
}

.app-preview {
  position: relative;
  min-height: 360px;
  padding: 22px;
  overflow: hidden;
}

.collection-preview {
  background:
    linear-gradient(135deg, rgba(9, 31, 48, 0.34), rgba(2, 9, 17, 0.74)),
    var(--panel);
}

.collection-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: saturate(1.15) contrast(1.05);
}

.preview-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-header h3 {
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.preview-header a {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.preview-header.compact h3 {
  font-size: 15px;
}

.collection-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.collection-stats span {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 10px 6px;
  border: 1px solid rgba(152, 209, 225, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 5%, rgba(255, 255, 255, 0.12), transparent 32%),
    rgba(2, 11, 21, 0.7);
}

.collection-stats svg,
.collection-stats img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  fill: none;
  stroke: rgba(217, 234, 244, 0.85);
  stroke-width: 1.8;
}

.collection-stats b {
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}

.collection-stats small {
  color: rgba(221, 236, 246, 0.74);
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-filters {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 11px;
  border: 1px solid rgba(152, 209, 225, 0.24);
  border-radius: 7px;
  background: rgba(2, 10, 19, 0.68);
}

@media (min-width: 821px) {
  .collection-section .feature-copy {
    padding-bottom: 0;
  }

  .collection-section .collection-filters {
    flex: 1;
    align-content: center;
  }
}

.collection-filters span {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 7px;
  color: rgba(223, 238, 248, 0.8);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-filters i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.lime-dot { background: var(--lime); }
.magenta-dot { background: #aa5cff; }
.cyan-dot { background: #2da8ff; }
.muted-dot { background: #a8bdc7; }

.collection-card-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.collection-card-rail article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 3px;
}

.collection-card-rail img {
  height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.65));
}

.collection-card-rail strong {
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
}

.collection-card-rail small {
  color: rgba(220, 237, 248, 0.68);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-shelves {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 14px;
}

.collection-shelves span {
  display: grid;
  gap: 2px;
  min-height: 44px;
  padding: 8px;
  border: 1px solid rgba(152, 209, 225, 0.24);
  border-radius: 7px;
  background: rgba(2, 10, 19, 0.62);
}

.collection-shelves b {
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
}

.collection-shelves small {
  color: var(--cyan-soft);
  font-size: 8px;
  font-weight: 850;
}

.app-tab-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: 17px;
  padding: 11px 12px;
  border: 1px solid rgba(152, 209, 225, 0.2);
  border-radius: 8px;
  background: rgba(0, 5, 10, 0.78);
}

.app-tab-preview span {
  color: rgba(212, 227, 238, 0.68);
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.app-tab-preview .selected {
  color: var(--cyan);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(152, 209, 225, 0.25);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(10, 38, 58, 0.34), rgba(2, 10, 19, 0.7));
}

.feature-list svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(31, 226, 255, 0.5);
  border-radius: 999px;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(31, 226, 255, 0.09);
}

.feature-list h3 {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-list p {
  margin-top: 3px;
  color: rgba(225, 238, 246, 0.78);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.25;
}

@media (min-width: 821px) {
  .nearby-section .feature-copy,
  .friends-section .feature-copy {
    padding: 0;
  }

  .nearby-section .feature-list,
  .friends-section .feature-list {
    flex: 1;
    align-content: space-between;
    margin-bottom: 0;
  }

  .nearby-section .feature-list article {
    min-height: 86px;
  }

  .friends-section .feature-list article {
    min-height: 82px;
  }
}

.nearby-section,
.friends-section {
  margin-top: 4px;
}

.drops-section + .nearby-section {
  padding-top: 18px;
}

.radar-preview {
  min-height: 432px;
  background: #020912;
}

.radar-preview > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.12) contrast(1.08);
}

.radar-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(31, 226, 255, 0.36);
  border-radius: 7px;
  background: rgba(1, 8, 16, 0.76);
}

.radar-topbar span,
.radar-topbar b {
  color: #dbeaf3;
  font-size: 11px;
  font-weight: 950;
}

.radar-topbar b {
  color: var(--cyan);
}

.radar-scope {
  position: relative;
  z-index: 1;
  height: 268px;
  margin-top: 14px;
  border: 1px solid rgba(31, 226, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(rgba(31, 226, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 226, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(31, 226, 255, 0.22), rgba(0, 7, 14, 0.48) 34%, rgba(0, 3, 8, 0.84));
  background-size: 28px 28px, 28px 28px, cover;
  overflow: hidden;
}

.radar-ring,
.radar-sweep,
.radar-you,
.radar-pin {
  position: absolute;
}

.radar-ring {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(31, 226, 255, 0.34);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.radar-ring.one { width: 74px; height: 74px; }
.radar-ring.two { width: 140px; height: 140px; }
.radar-ring.three { width: 210px; height: 210px; }

.radar-sweep {
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  transform-origin: 0 0;
  transform: rotate(32deg);
  background: linear-gradient(45deg, rgba(31, 226, 255, 0.42), transparent 62%);
  clip-path: polygon(0 0, 100% 12%, 0 100%);
  opacity: 0.8;
}

.radar-you {
  left: 50%;
  top: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--cyan);
  color: #02101a;
  font-size: 9px;
  font-weight: 950;
  box-shadow: 0 0 26px rgba(31, 226, 255, 0.76);
}

.radar-pin {
  left: var(--x);
  top: var(--y);
  display: grid;
  gap: 1px;
  transform: translate(-50%, -50%);
  min-width: 86px;
  padding: 6px 7px;
  border: 1px solid var(--cyan);
  border-radius: 999px;
  background: rgba(1, 8, 16, 0.86);
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(31, 226, 255, 0.32);
}

.radar-pin small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
}

.radar-pin.friend { border-color: var(--lime); }
.radar-pin.friend small { color: var(--lime); }
.radar-pin.team { border-color: #aa5cff; }
.radar-pin.team small { color: #c994ff; }

.nearby-meta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 13px;
}

.nearby-meta-grid span {
  display: grid;
  gap: 2px;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(152, 209, 225, 0.23);
  border-radius: 7px;
  background: rgba(0, 6, 13, 0.72);
}

.nearby-meta-grid b {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 950;
}

.nearby-meta-grid small {
  color: rgba(219, 234, 243, 0.72);
  font-size: 8px;
  font-weight: 950;
  text-transform: uppercase;
}

.privacy-note {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(145, 255, 82, 0.28);
  border-radius: 7px;
  background: rgba(34, 78, 20, 0.18);
  color: rgba(223, 241, 230, 0.82);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.32;
}

.friends-preview {
  min-height: 480px;
}

.friends-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(152, 209, 225, 0.18);
}

.friends-tabs span {
  position: relative;
  padding: 0 0 12px;
  color: rgba(219, 234, 243, 0.62);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.friends-tabs .active {
  color: var(--cyan);
}

.friends-tabs .active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: var(--cyan);
}

.friends-tabs b {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-left: 4px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: #03100b;
  font-size: 10px;
}

.friend-list,
.request-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.friend-list article,
.request-list article,
.team-chat-row {
  display: grid;
  grid-template-columns: 42px 1fr 52px 52px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(152, 209, 225, 0.2);
  border-radius: 8px;
  background: rgba(0, 7, 15, 0.54);
}

.avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(31, 226, 255, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31, 226, 255, 0.28), rgba(2, 11, 21, 0.86));
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.avatar.blue {
  border-color: #2da8ff;
  background: linear-gradient(135deg, rgba(45, 168, 255, 0.32), rgba(2, 11, 21, 0.86));
}

.avatar.gold {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 216, 76, 0.32), rgba(2, 11, 21, 0.86));
}

.avatar.magenta {
  border-color: #ff4db7;
  background: linear-gradient(135deg, rgba(255, 77, 183, 0.32), rgba(2, 11, 21, 0.86));
}

.avatar.team {
  border-color: var(--lime);
  background: linear-gradient(135deg, rgba(145, 255, 82, 0.26), rgba(2, 11, 21, 0.86));
}

.friend-list b,
.request-list b,
.team-chat-row b {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.friend-list small,
.request-list small,
.team-chat-row small {
  display: block;
  margin-top: 2px;
  color: rgba(219, 234, 243, 0.7);
  font-size: 10px;
  font-weight: 760;
}

.friend-list em {
  display: grid;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(31, 226, 255, 0.36);
  border-radius: 7px;
  color: var(--cyan);
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.team-chat-row {
  grid-template-columns: 42px 1fr;
  margin-top: 10px;
  border-color: rgba(145, 255, 82, 0.3);
}

.request-list {
  margin-top: 18px;
}

.request-list article {
  grid-template-columns: 42px 1fr 74px 74px;
}

.request-list button {
  height: 32px;
  border: 1px solid rgba(145, 255, 82, 0.72);
  border-radius: 7px;
  background: rgba(47, 94, 20, 0.24);
  color: var(--lime);
  font: inherit;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.request-list .decline {
  border-color: rgba(255, 77, 120, 0.72);
  background: rgba(93, 12, 33, 0.22);
  color: #ff4d78;
}

.themes-section {
  padding: 32px 0 36px;
}

.themes-heading {
  margin-bottom: 18px;
}

.theme-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.theme-card {
  --theme-a: 0, 245, 255;
  --theme-b: 57, 255, 20;
  --theme-base: #020617;
  --theme-surface: #041326;
  --theme-card: #06243a;
  --theme-text: #f8feff;
  --theme-muted: #8fefff;
  position: relative;
  min-width: 0;
  min-height: 210px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(var(--theme-a), 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0, rgba(var(--theme-a), 0.22), transparent 46%),
    radial-gradient(circle at 88% 100%, rgba(var(--theme-b), 0.14), transparent 48%),
    linear-gradient(145deg, var(--theme-card), var(--theme-surface) 52%, var(--theme-base));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 38px rgba(var(--theme-a), 0.1),
    0 18px 42px rgba(0, 0, 0, 0.36);
}

.theme-card::before {
  content: "";
  position: absolute;
  inset: 8px 10px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  opacity: 0.52;
}

.theme-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(var(--theme-a), 0.24);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--theme-a), 0.16), transparent 62%);
}

.theme-pink {
  --theme-a: 255, 79, 216;
  --theme-b: 155, 92, 255;
  --theme-base: #16051f;
  --theme-surface: #2b0d3a;
  --theme-card: #45155d;
  --theme-text: #fff7ff;
  --theme-muted: #f7c7ff;
}

.theme-titanium {
  --theme-a: 215, 222, 232;
  --theme-b: 85, 168, 255;
  --theme-base: #05070a;
  --theme-surface: #111822;
  --theme-card: #1d2734;
  --theme-text: #f7faff;
  --theme-muted: #c7d3e2;
}

.theme-gold {
  --theme-a: 242, 192, 120;
  --theme-b: 217, 155, 82;
  --theme-base: #160a04;
  --theme-surface: #281207;
  --theme-card: #3b1d0d;
  --theme-text: #fff7ea;
  --theme-muted: #f2cfa1;
}

.theme-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.theme-topline span,
.theme-topline b {
  color: rgba(var(--theme-a), 0.96);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.theme-topline b {
  display: inline-grid;
  min-width: 58px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(var(--theme-a), 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--theme-text);
  font-size: 8px;
}

.theme-card h3,
.theme-card p,
.theme-swatches,
.theme-preview {
  position: relative;
  z-index: 1;
}

.theme-card h3 {
  color: var(--theme-text);
  font-size: 17px;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.34);
}

.theme-card p {
  min-height: 45px;
  margin-top: 8px;
  color: var(--theme-muted);
  font-size: 10.5px;
  font-weight: 820;
  line-height: 1.22;
}

.theme-swatches {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.theme-swatches span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: 0 0 16px rgba(var(--theme-a), 0.22);
}

.theme-preview {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  min-height: 58px;
  margin-top: 12px;
  padding: 8px;
  border: 1px solid rgba(var(--theme-a), 0.3);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(var(--theme-a), 0.16), transparent 45%),
    rgba(0, 0, 0, 0.26);
}

.theme-preview span {
  display: block;
  min-width: 0;
  border-radius: 5px;
  background: rgba(var(--theme-a), 0.24);
}

.theme-preview span:first-child {
  grid-row: span 2;
  border: 1px solid rgba(var(--theme-a), 0.4);
  background:
    radial-gradient(circle at 50% 34%, rgba(var(--theme-b), 0.32), transparent 38%),
    rgba(0, 0, 0, 0.36);
}

.theme-preview span:nth-child(2) {
  height: 17px;
}

.theme-preview span:nth-child(3) {
  height: 17px;
  background: rgba(var(--theme-b), 0.24);
}

:root[data-theme="light"] .themes-section {
  background: radial-gradient(circle at 50% 0, rgba(0, 166, 214, 0.12), transparent 42%);
}

:root[data-theme="light"] .theme-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 0 32px rgba(var(--theme-a), 0.12),
    0 16px 34px rgba(13, 74, 99, 0.16);
}

.print-studio-section {
  --print-studio-panel-height: 508px;
  padding-top: 26px;
  padding-bottom: 34px;
}

.print-studio-section .feature-copy {
  min-height: var(--print-studio-panel-height);
  padding: 0;
}

.print-feature-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 0;
  margin-top: 22px;
  margin-bottom: 0;
}

.print-feature-list article {
  min-height: 78px;
}

.print-studio-preview {
  display: grid;
  grid-template-columns: 276px 1fr;
  gap: 18px;
  align-items: center;
  min-height: var(--print-studio-panel-height);
  background: linear-gradient(135deg, rgba(18, 57, 81, 0.34), rgba(2, 15, 27, 0.92) 46%, rgba(2, 9, 17, 0.96));
}

.print-studio-preview::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(31, 226, 255, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.print-studio-screen {
  position: relative;
  z-index: 1;
  width: 276px;
  background: transparent;
}

.print-studio-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.print-studio-callouts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
}

.print-studio-callouts span {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 13px 13px 12px;
  border: 1px solid rgba(152, 209, 225, 0.25);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(31, 226, 255, 0.12), transparent 48%),
    rgba(0, 7, 15, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.print-studio-callouts b {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.print-studio-callouts small {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

:root[data-theme="light"] .print-studio-preview {
  background: linear-gradient(135deg, rgba(219, 244, 251, 0.86), rgba(240, 252, 255, 0.96));
}

:root[data-theme="light"] .print-studio-callouts span {
  background:
    radial-gradient(circle at 0 0, rgba(0, 151, 190, 0.13), transparent 48%),
    rgba(255, 255, 255, 0.72);
}

:root[data-theme="light"] .print-studio-callouts b {
  color: #06131d;
}

.safety-section {
  height: 233px;
  padding-top: 24px;
  background: radial-gradient(circle at 50% 0, rgba(31, 226, 255, 0.06), transparent 42%);
}

:root[data-theme="light"] .safety-section {
  background: radial-gradient(circle at 50% 0, rgba(0, 166, 214, 0.12), transparent 42%);
}

.safety-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 128px;
  margin-top: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 24, 39, 0.88), rgba(1, 10, 19, 0.96)),
    var(--panel);
}

.safety-rail article {
  min-width: 0;
  padding: 16px 16px 12px;
  border-right: 1px solid var(--line-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.safety-rail article:last-child {
  border-right: 0;
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 11px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(31, 226, 255, 0.16), rgba(2, 13, 23, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 16px rgba(31, 226, 255, 0.12);
}

.icon-box svg,
.social-links svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--cyan-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.safety-rail h3 {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 950;
}

.safety-rail p {
  min-height: 38px;
  color: #e0edf3;
  font-size: 9px;
  line-height: 1.28;
  font-weight: 650;
}

.safety-rail a {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
}

.safety-rail a::after {
  content: " >";
}

.closing-cta {
  display: grid;
  grid-template-columns: 395px 1fr;
  gap: 24px;
  align-items: center;
  width: min(calc(100% - 56px), var(--site));
  height: 181px;
  margin: 0 auto;
  padding: 17px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 50%, rgba(31, 226, 255, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(5, 25, 40, 0.92), rgba(1, 9, 18, 0.96));
}

:root[data-theme="light"] .closing-cta h2,
:root[data-theme="light"] .closing-cta p {
  color: #f7fbff;
}

.closing-cta img {
  width: 395px;
  height: 145px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(31, 226, 255, 0.24);
  box-shadow: inset 0 0 22px rgba(31, 226, 255, 0.16), 0 16px 24px rgba(0, 0, 0, 0.36);
}

.closing-cta h2 {
  margin-bottom: 10px;
  font-size: 25px;
  white-space: nowrap;
}

.closing-cta p {
  max-width: 330px;
  margin-bottom: 15px;
  color: #e3eef5;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 650;
}

.closing-cta .button {
  width: 252px;
  height: 39px;
  min-height: 0;
  justify-content: space-between;
}

.site-footer {
  height: 52px;
  border-top: 1px solid var(--line-soft);
  background: #02060b;
}

:root[data-theme="light"] .site-footer {
  background: rgba(245, 252, 255, 0.96);
  box-shadow: 0 -12px 24px rgba(20, 91, 120, 0.08);
}

.footer-frame {
  display: grid;
  grid-template-columns: 100px 150px 1fr auto;
  align-items: center;
  gap: 16px;
  height: 52px;
}

.footer-logo img {
  width: 84px;
}

.footer-domain {
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 850;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-footer nav a {
  font-size: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(153, 187, 200, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

:root[data-theme="light"] .social-links a {
  border-color: rgba(0, 122, 166, 0.25);
  background: rgba(255, 255, 255, 0.72);
}

.social-links svg {
  width: 19px;
  height: 19px;
  stroke: #d8e4ec;
}

:root[data-theme="light"] .social-links svg {
  stroke: #0c3347;
}

body.modal-open {
  overflow: hidden;
}

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
}

.info-modal[aria-hidden="true"] {
  display: none;
}

.info-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(31, 226, 255, 0.18), transparent 38%),
    rgba(0, 4, 9, 0.82);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.info-panel {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(31, 226, 255, 0.68);
  border-radius: 8px;
  outline: none;
  background:
    radial-gradient(circle at 83% 12%, rgba(31, 226, 255, 0.15), transparent 35%),
    linear-gradient(145deg, rgba(5, 28, 46, 0.98), rgba(0, 7, 15, 0.98) 58%, rgba(2, 5, 10, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.info-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(205, 228, 240, 0.38);
  border-radius: 8px;
  color: #eaf7ff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.info-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.6;
}

.info-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.info-panel h2 {
  max-width: 650px;
  margin-top: 7px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(115, 138, 151, 0.24), 0 12px 22px rgba(0, 0, 0, 0.72);
}

.info-summary {
  max-width: 680px;
  margin-top: 12px;
  color: #dceef7;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 720;
}

.info-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.info-stat {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(139, 177, 193, 0.32);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(11, 33, 49, 0.78), rgba(1, 9, 18, 0.84));
}

.info-stat span {
  display: block;
  color: rgba(203, 226, 237, 0.68);
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.info-stat b {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 950;
}

.info-body {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.info-section-card {
  padding: 16px;
  border: 1px solid rgba(31, 226, 255, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 29, 45, 0.68), rgba(1, 9, 18, 0.78)),
    rgba(3, 12, 22, 0.9);
}

.info-section-card h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 950;
  text-transform: uppercase;
}

.info-section-card p {
  margin-top: 8px;
  color: rgba(225, 239, 248, 0.88);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 650;
}

.info-mail-link {
  width: 260px;
  height: 42px;
  min-height: 0;
  margin-top: 18px;
  justify-content: space-between;
  font-size: 12px;
}

@media (min-width: 980px) {
  :root {
    --site: 808px;
  }
}

@media (max-width: 820px) {
  .site-frame,
  .section,
  .drops-section > .section-heading,
  .drops-section > .drops-grid,
  .closing-cta {
    width: min(calc(100% - 28px), 390px);
  }

  .theme-toggle {
    top: 10px;
    left: 10px;
    width: 44px;
    height: 40px;
    justify-content: center;
    padding: 0;
  }

  .theme-toggle-track {
    width: 34px;
    height: 24px;
  }

  .theme-toggle-thumb {
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
  }

  :root[data-theme="light"] .theme-toggle-thumb {
    transform: translateX(12px);
  }

  .theme-icon {
    top: 7px;
    width: 9px;
    height: 9px;
  }

  .theme-icon-moon {
    left: 6px;
  }

  .theme-icon-sun {
    right: 6px;
  }

  .theme-toggle-text {
    display: none;
  }

  .site-header,
  .header-frame {
    height: 60px;
  }

  .header-frame {
    grid-template-columns: 1fr auto;
  }

  .brand-link {
    margin-left: 50px;
  }

  .brand-link img {
    width: 62px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    width: 84px;
    height: 33px;
    font-size: 9px;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    height: 687px;
  }

  .hero-frame {
    height: 687px;
  }

  .hero-bg {
    object-position: center top;
    opacity: 0.64;
  }

  .hero-copy {
    top: 12px;
    width: 100%;
  }

  .domain-link {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .domain-link::before {
    width: 11px;
    height: 11px;
    border-width: 1px;
  }

  h1 {
    width: 250px;
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 1.02;
  }

  .hero-copy p {
    width: 285px;
    margin-bottom: 12px;
    font-size: 13px;
  }

  .hero-actions {
    width: 100%;
    gap: 7px;
  }

  .hero-actions .button {
    width: 100%;
    height: 36px;
    font-size: 10px;
  }

  .hero-drop-countdown {
    width: 100%;
    padding: 7px;
    border-radius: 9px;
  }

  .drop-countdown-kicker {
    gap: 5px;
    margin-bottom: 6px;
    font-size: 8px;
  }

  .drop-countdown-kicker svg {
    width: 12px;
    height: 12px;
  }

  .drop-countdown-values {
    gap: 6px;
  }

  .drop-countdown-values span {
    height: 39px;
    border-radius: 6px;
  }

  .drop-countdown-values b {
    font-size: 21px;
  }

  .hero-product {
    top: 202px;
    left: 0;
    width: 100%;
    height: 276px;
    border: 1px solid rgba(31, 226, 255, 0.35);
    border-radius: 8px;
  }

  .hero-phone {
    top: 487px;
    right: 0;
    width: 100%;
    height: 184px;
    object-fit: cover;
    object-position: center 9%;
    border: 1px solid rgba(31, 226, 255, 0.35);
    border-radius: 8px;
  }

  .mint-section,
  .drops-section,
  .safety-section {
    height: auto;
    padding-top: 31px;
    padding-bottom: 25px;
  }

  .section-heading h2,
  .closing-cta h2 {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 12px;
  }

  .workflow-grid,
  .app-feature-section,
  .drops-grid,
  .challenge-list,
  .safety-rail,
  .closing-cta,
  .footer-frame {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    gap: 10px;
  }

  .app-feature-section {
    gap: 14px;
    padding-top: 28px;
  }

  .drops-section {
    padding-top: 28px;
    padding-bottom: 14px;
  }

  .drops-section + .nearby-section {
    padding-top: 18px;
  }

  .feature-copy {
    min-height: auto;
    padding: 0;
  }

  .feature-copy h2 {
    font-size: 24px;
  }

  .feature-copy > p {
    margin-top: 8px;
    font-size: 12px;
  }

  .feature-button {
    margin-top: 14px;
  }

  .app-preview {
    min-height: auto;
    padding: 14px;
  }

  .collection-stats {
    margin-top: 14px;
  }

  .collection-stats span {
    min-height: 76px;
  }

  .collection-stats b {
    font-size: 20px;
  }

  .collection-card-rail {
    gap: 7px;
  }

  .collection-card-rail img {
    height: 116px;
  }

  .collection-shelves {
    grid-template-columns: 1fr;
  }

  .app-tab-preview span {
    font-size: 8px;
  }

  .feature-list {
    gap: 9px;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .radar-preview {
    min-height: auto;
  }

  .radar-scope {
    height: 238px;
  }

  .radar-pin {
    min-width: 70px;
    padding: 5px 6px;
    font-size: 8px;
  }

  .radar-pin small {
    font-size: 7px;
  }

  .nearby-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .friends-preview {
    min-height: auto;
  }

  .themes-section {
    padding: 28px 0 24px;
  }

  .themes-heading {
    margin-bottom: 14px;
  }

  .theme-showcase {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .theme-card {
    min-height: 168px;
    padding: 13px;
  }

  .theme-card p {
    min-height: auto;
    max-width: 275px;
  }

  .theme-preview {
    min-height: 50px;
  }

  .print-studio-section {
    padding-top: 22px;
    padding-bottom: 25px;
  }

  .print-studio-section .feature-copy {
    min-height: auto;
  }

  .print-feature-list {
    display: grid;
    flex: none;
    grid-template-rows: none;
    gap: 9px;
    margin-top: 14px;
  }

  .print-feature-list article {
    min-height: auto;
  }

  .print-studio-preview {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    min-height: auto;
  }

  .print-studio-screen {
    width: min(320px, 100%);
  }

  .print-studio-callouts {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .print-studio-callouts span {
    min-height: 66px;
    padding: 11px;
  }

  .print-studio-callouts b {
    font-size: 14px;
  }

  .print-studio-callouts small {
    font-size: 8px;
  }

  .friend-list article,
  .team-chat-row {
    grid-template-columns: 38px 1fr 42px 42px;
    gap: 7px;
  }

  .team-chat-row {
    grid-template-columns: 38px 1fr;
  }

  .request-list article {
    grid-template-columns: 38px 1fr;
  }

  .request-list button {
    width: 100%;
  }

  .mint-stepper {
    gap: 4px;
    margin: 15px 0 14px;
  }

  .mint-stepper::before {
    left: 18px;
    right: 18px;
    top: 14px;
  }

  .mint-stepper li {
    font-size: 8px;
  }

  .mint-stepper b {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .workflow-card {
    min-height: auto;
    padding: 13px;
  }

  .span-2 {
    grid-column: auto;
  }

  .workflow-head {
    grid-template-columns: 38px 1fr;
  }

  .workflow-head strong {
    font-size: 40px;
  }

  .workflow-head h3 {
    font-size: 12px;
  }

  .workflow-head p {
    font-size: 10px;
  }

  .step-photo {
    height: 128px;
  }

  .real-sport-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .real-sport-grid span {
    min-height: 62px;
  }

  .real-sport-grid img {
    width: 38px;
    height: 34px;
  }

  .template-pair-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .template-pair-row img {
    height: 93px;
  }

  .detail-fields b,
  .stat-stack b {
    max-width: 150px;
  }

  .review-preview {
    grid-template-columns: 80px 1fr;
  }

  .review-preview img {
    height: 118px;
  }

  .drop-card,
  .challenge-panel {
    height: auto;
  }

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

  .drop-pack {
    justify-self: center;
    width: min(210px, 64vw);
    height: 260px;
    object-fit: contain;
    background: transparent;
  }

  .challenge-card {
    height: auto;
  }

  .full-button {
    width: 100%;
  }

  .safety-rail {
    height: auto;
  }

  .safety-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .safety-rail article:last-child {
    border-bottom: 0;
  }

  .closing-cta {
    height: auto;
    margin-bottom: 20px;
    padding: 12px;
    gap: 14px;
  }

  .closing-cta img {
    width: 100%;
    height: 150px;
  }

  .closing-cta p {
    font-size: 12px;
  }

  .closing-cta .button {
    width: 100%;
  }

  .site-footer {
    height: auto;
  }

  .footer-frame {
    gap: 10px;
    height: auto;
    padding: 20px 0;
  }

  .footer-logo img {
    width: 72px;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .social-links {
    display: none;
  }

  .info-modal {
    padding: 14px;
    align-items: end;
  }

  .info-panel {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 20px 14px 16px;
  }

  .info-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .info-panel h2 {
    padding-right: 42px;
    font-size: 27px;
  }

  .info-summary {
    font-size: 12px;
  }

  .info-stat-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .info-stat {
    padding: 11px;
  }

  .info-section-card {
    padding: 13px;
  }

  .info-section-card h3 {
    font-size: 13px;
  }

  .info-section-card p {
    font-size: 11px;
  }

  .info-mail-link {
    width: 100%;
  }
}
