:root {
  --or: #ff6b1a;
  --or2: #ff8c42;
  --or3: #ffaa55;

  --bg: #18212e;
  --bg2: #1e2836;
  --bg3: #242f3e;

  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --line: rgba(255, 255, 255, 0.08);

  --mono: "Share Tech Mono", monospace;
  --head: "Barlow Condensed", sans-serif;
  --body: "Rajdhani", sans-serif;

  --shadow-orange: 0 0 18px rgba(255, 107, 26, 0.35);
}

body.light {
  --bg: #f5f3ef;
  --bg2: #ece9e4;
  --bg3: #e4e1db;
  --text: #1e3a5f;
  --muted: rgba(30, 58, 95, 0.68);
  --line: rgba(30, 58, 95, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}

body {
  position: relative;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* BOOT */
.boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #18212e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.boot.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.boot__logo {
  width: 220px;
  opacity: 1;
  animation: bootLogo 0.5s 0.2s ease forwards;
}

.boot__wrap {
  width: min(280px, 80vw);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.boot__label,
.boot__message,
.boot__percent {
  font-family: var(--mono);
}

.boot__label {
  font-size: 0.65rem;
  color: var(--or);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.4s 0.4s forwards;
}

.boot__track {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.boot__fill {
  height: 100%;
  width: 0;
  background: var(--or);
  box-shadow: 0 0 12px var(--or);
}

.boot__percent {
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  opacity: 0;
  animation: fadeIn 0.4s 0.5s forwards;
}

.boot__message {
  min-height: 1rem;
  text-align: center;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation: fadeIn 0.4s 0.6s forwards;
}

/* CURSOR */
#cursor-dot,
#cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 8888;
  border-radius: 50%;
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--or);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--or);
}

#cursor-ring {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(232, 64, 28, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, border-color 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
  body,
  .interactive {
    cursor: none;
  }
}

/* BACKGROUND */
#background-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hexbg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0 34L0 84V52l28-16 28 16v32L28 100z' fill='none' stroke='%23e8401c' stroke-width='.5'/%3E%3C/svg%3E");
}

.scan {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 3px
  );
}

.glitch-line {
  position: fixed;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  animation: glitchSweep 12s 3s ease-in-out infinite;
}

/* CORNERS */
.corner {
  position: fixed;
  width: 40px;
  height: 40px;
  z-index: 3;
  pointer-events: none;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: var(--or);
}

.corner::before {
  width: 100%;
  height: 1px;
}

.corner::after {
  width: 1px;
  height: 100%;
}

.tl {
  top: 16px;
  left: 16px;
}

.tr {
  top: 16px;
  right: 16px;
  transform: scaleX(-1);
}

.bl {
  bottom: 16px;
  left: 16px;
  transform: scaleY(-1);
}

.br {
  bottom: 16px;
  right: 16px;
  transform: scale(-1);
}

/* LAYOUT */
.page {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
}

.stripe {
  width: 3px;
  flex-shrink: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--or) 18%,
    var(--or) 82%,
    transparent 100%
  );
  box-shadow: 0 0 20px var(--or);
  animation: stripePulse 3s ease-in-out infinite;
}

.content {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* TOPNAV */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 107, 26, 0.35);
  animation: slideDown 0.6s 2.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.nav-logo img {
  height: 44px;
  filter: drop-shadow(0 0 14px rgba(255, 107, 26, 0.4));
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

body.light .nav-status {
  color: rgba(30, 58, 95, 0.55);
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  box-shadow: 0 0 8px var(--or);
  animation: blink 1.2s ease-in-out infinite;
}

.nav-time {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

body.light .nav-time {
  color: rgba(30, 58, 95, 0.45);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem 0;
}

.hero-l {
  flex: 1;
  max-width: 560px;
}

.hero-r {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: fadeRight 0.7s 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.sys-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  opacity: 0;
  animation: fadeUp 0.5s 2.3s forwards;
}

.sys-tag::before,
.sys-tag::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--or);
}

h1 {
  margin: 0 0 1.5rem;
  font-family: var(--head);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.6s 2.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.line1,
.line2,
.line3 {
  display: block;
}

.line1 {
  color: #fff;
}

body.light .line1 {
  color: #1e3a5f;
}

.line2 {
  color: transparent;
  -webkit-text-stroke: 1.7px var(--or);
  text-shadow: 0 0 40px rgba(255, 107, 26, 0.3);
}

.line3 {
  background: linear-gradient(90deg, var(--or), var(--or2), var(--or3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  max-width: 430px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.5s 2.55s forwards;
}

/* GLITCH */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: inherit;
  -webkit-text-stroke: inherit;
}

.glitch::before {
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translateX(-3px);
  opacity: 0;
  animation: glitch1 4s 4s infinite;
}

.glitch::after {
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  transform: translateX(3px);
  opacity: 0;
  animation: glitch2 4s 4s infinite;
}

/* PROGRESS */
.prog-section {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.5s 2.65s forwards;
}

.prog-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

body.light .prog-meta {
  color: rgba(30, 58, 95, 0.364);
}

.prog-meta span:last-child {
  color: var(--or);
  font-size: 0.85rem;
}

.prog-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

body.light .prog-track {
  background: rgba(30, 58, 95, 0.296);
}

.prog-fill {
  position: relative;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--or), var(--or2));
  box-shadow: 0 0 16px var(--or), 0 0 40px rgba(255, 107, 26, 0.3);
}

.prog-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--or2);
  box-shadow: 0 0 14px var(--or2);
}

/* BUTTONS */
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.5s 2.75s forwards;
}

.btn-primary,
.btn-ghost {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary::before,
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before,
.btn-ghost:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  border: 1px solid var(--or);
  background: rgba(255, 107, 26, 0.1);
  color: #fff;
}

body.light .btn-primary {
  color: #1e3a5f;
}

.btn-primary::before {
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
}

body.light .btn-primary::before {
  background: linear-gradient(120deg, transparent 30%, rgba(0, 0, 0, 0.06) 50%, transparent 70%);
}

.btn-primary:hover {
  background: rgba(232, 64, 28, 0.25);
  box-shadow: 0 0 30px rgba(255, 107, 26, 0.35);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
}

body.light .btn-ghost {
  border-color: rgba(30, 58, 95, 0.2);
  color: rgba(30, 58, 95, 0.52);
}

.btn-ghost::before {
  background: linear-gradient(120deg, transparent 30%, rgba(232, 64, 28, 0.08) 50%, transparent 70%);
}

.btn-ghost:hover {
  border-color: rgba(255, 107, 26, 0.5);
  color: rgba(255, 255, 255, 0.85);
}

body.light .btn-ghost:hover {
  color: rgba(30, 58, 95, 0.82);
}

/* COUNTDOWN */
.cd-label {
  margin-bottom: 0.4rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

body.light .cd-label {
  color: rgba(30, 58, 95, 0.6);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.cd-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 0.4rem 0.8rem;
  border: 1px solid rgba(255, 107, 26, 0.2);
  background: rgba(255, 107, 26, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

body.light .cd-box {
  background: rgba(30, 58, 95, 0.05);
  border-color: rgba(30, 58, 95, 0.15);
}

body.light .cd-box:hover {
  background: rgba(30, 58, 95, 0.1);
  border-color: rgba(30, 58, 95, 0.3);
}


.cd-box::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  opacity: 0.5;
}

.cd-box:hover {
  border-color: rgba(255, 107, 26, 0.5);
  background: rgba(255, 107, 26, 0.1);
}

.cd-num {
  font-family: var(--head);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 107, 26, 0.4);
}

body.light .cd-num {
  color: #1e3a5f;
  text-shadow: none;
}

.cd-lbl {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

body.light .cd-lbl {
  color: rgba(30, 58, 95, 0.60);
}

/* PANEL */
.panel {
  position: relative;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

body.light .panel {
  border-color: rgba(30, 58, 95, 0.225);
  background: rgba(30, 58, 95, 0.03);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--or), transparent);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
}

body.light .panel-title {
  color: #c03010;
}

.panel-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 107, 26, 0.2);
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

body.light .contact-row {
  color: rgba(30, 58, 95, 0.804);
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-row .ico {
  width: 18px;
  flex-shrink: 0;
  text-align: center;
  color: var(--or);
}

.contact-row a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact-row a:hover {
  color: #fff;
}

body.light .contact-row a:hover {
  color: #1e3a5f;
}

/* SOS */
.sos {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(232, 64, 28, 0.35);
  background: rgba(255, 107, 26, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
body.light .sos:hover {
  background: rgba(30, 58, 95, 0.08);
  border-color: rgba(30, 58, 95, 0.3);
  box-shadow: 0 0 20px rgba(30, 58, 95, 0.1);
}

body.light .sos {
  color: #1e3a5f;
  background: rgba(30, 58, 95, 0.04);
  border-color: rgba(30, 58, 95, 0.22);
}

.sos::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--or), transparent);
}

.sos:hover {
  background: rgba(255, 107, 26, 0.15);
  border-color: rgba(232, 64, 28, 0.6);
  box-shadow: 0 0 30px rgba(255, 107, 26, 0.2);
}

.sos-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--or));
}

.sos-txt {
  display: flex;
  flex-direction: column;
}

.sos-txt .t1 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.sos-txt .t2 {
  margin-top: 0.15rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
}

body.light .sos-txt .t2 {
  color: rgba(30, 58, 95, 0.4);
}

.sos-arr {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--or);
  transition: transform 0.2s ease;
}

.sos:hover .sos-arr {
  transform: translateX(5px);
}

/* FOOTER */
.botbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  animation: fadeUp 0.5s 2.85s forwards;
}

body.light .botbar {
  border-top: 1px solid rgba(30, 58, 95, 0.12);
}

.bot-copy {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

body.light .bot-copy {
  color: rgba(30, 58, 95, 0.4);
}

.bot-stats {
  display: flex;
  gap: 2rem;
}

.bot-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.bot-stat-n {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--or);
}

body.light .bot-stat-n {
  color: #c03010;
  font-weight: 700;
}

.bot-stat-l {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

body.light .bot-stat-l {
  color: rgba(30, 58, 95, 0.45);
}

/* THEME BUTTON */
.theme-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 64, 28, 0.4);
  border-radius: 50%;
  background: rgba(232, 64, 28, 0.1);
  color: #fff;
  font-size: 18px;
  transition: background 0.2s ease;
}

body.light .theme-toggle {
  color: #1e3a5f;
}

.theme-toggle:hover {
  background: rgba(232, 64, 28, 0.3);
}

/* ANIMATIONS */
@keyframes bootLogo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes stripePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.42; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes glitchSweep {
  0% {
    top: -2px;
    opacity: 0;
  }
  2% {
    opacity: 0.8;
  }
  98% {
    opacity: 0.4;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

@keyframes glitch1 {
  0%, 90%, 100% {
    transform: translateX(0);
    opacity: 0;
  }
  92% {
    transform: translateX(-4px);
    opacity: 0.7;
  }
  94% {
    transform: translateX(4px);
    opacity: 0.7;
  }
  96% {
    transform: translateX(-2px);
    opacity: 0.7;
  }
  98% {
    transform: translateX(0);
    opacity: 0;
  }
}

@keyframes glitch2 {
  0%, 90%, 100% {
    transform: translateX(0);
    opacity: 0;
  }
  93% {
    transform: translateX(4px);
    opacity: 0.6;
  }
  95% {
    transform: translateX(-3px);
    opacity: 0.6;
  }
  97% {
    transform: translateX(2px);
    opacity: 0.6;
  }
  99% {
    transform: translateX(0);
    opacity: 0;
  }
}

@keyframes numberFlip {
  0% {
    transform: translateY(8px);
    opacity: 0.35;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 2rem 0;
  }
  .hero-r {
    width: 100%;
  }
  .stripe,
  .corner {
    display: none;
  }
  h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  .page {
    min-height: unset;
  }
  html, body {
    min-height: unset;
    height: auto;
  }
}
@media (max-width: 520px) {
  .content {
    padding: 0 1.2rem;
  }
  .nav-status {
    display: none;
  }
  .topnav {
    padding: 1rem 0;
  }
  .nav-logo img {
    height: 34px;
  }
  h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
  .btns {
    flex-direction: column;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .countdown {
    gap: 0.4rem;
  }
  .cd-num {
    font-size: 1.8rem;
  }
  .bot-stats {
    gap: 1.2rem;
  }
  #cursor-dot,
  #cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .boot__logo {
    opacity: 1 !important;
  }
}