* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes pulse-line {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
body {
  font-family: "Space Grotesk", sans-serif;
  background: #050810;
  color: #eef0f5;
  overflow-x: hidden;
}

section {
  display: flex;
  align-items: center;
  padding: 0 48px;
  min-height: 100vh;
}
@media (max-width: 720px) {
  section {
    padding: 0 24px;
  }
}

h1 {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(38px, 6.5vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1 .grad {
  color: transparent;
  background: linear-gradient(90deg, #6fa8dc, #ff6b47);
  -webkit-background-clip: text;
  background-clip: text;
}

#canvas-holder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
#canvas-holder canvas {
  display: block;
}

#err {
  position: fixed;
  top: 10px;
  left: 10px;
  max-width: 90vw;
  font-family: monospace;
  font-size: 12px;
  white-space: pre-wrap;
  color: #ff4444;
  z-index: 100;
}

.content {
  position: relative;
  pointer-events: none;
  z-index: 2;
}
.content a,
.content button {
  pointer-events: auto;
}

nav {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 720px) {
  nav {
    padding: 20px 24px;
  }
}

.logo {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.logo span {
  color: #ff6b47;
}

.nav-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: right;
  line-height: 1.6;
  color: #5e6274;
}
@media (max-width: 720px) {
  .nav-meta {
    display: none;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6fa8dc;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: #ff6b47;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.hero-sub {
  margin: 26px auto 0;
  max-width: 480px;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  color: #9599ab;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 720px) {
  .hero-cta {
    flex-direction: column;
  }
}

.scroll-hint {
  position: absolute;
  display: flex;
  bottom: 48px;
  left: 50%;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #5e6274;
}
.scroll-hint .line {
  width: 32px;
  height: 1px;
  background: #5e6274;
  animation: pulse-line 2s ease-in-out infinite;
}

.btn-primary {
  padding: 15px 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #050810;
  background: #6fa8dc;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  pointer-events: auto;
}
.btn-primary:hover {
  background: #8fbde5;
}

.btn-secondary {
  padding: 15px 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #eef0f5;
  background: transparent;
  border: 1px solid #191d2c;
  border-radius: 6px;
  cursor: pointer;
  pointer-events: auto;
}
.btn-secondary:hover {
  border-color: #6fa8dc;
}

.region-section {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 14vh;
  text-align: center;
}

.region-block {
  padding: 0 24px;
  max-width: 640px;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
}
.region-block.visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 720px) {
  .region-block {
    padding: 26px;
    max-width: 320px;
  }
}

.region-tag {
  margin-bottom: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6b47;
}
.region-section:nth-of-type(even) .region-tag {
  color: #6fa8dc;
}

.region-block h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.region-block h2 .num {
  font-family: "JetBrains Mono", monospace;
  color: #ff6b47;
}

.region-block p {
  margin: 0 auto;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #9599ab;
}

.region-block .mini-quote {
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
  max-width: 460px;
  font-size: 14px;
  font-style: italic;
  color: #5e6274;
}

.inline-stat {
  font-family: "JetBrains Mono", monospace;
  color: #ff6b47;
}

#modal-overlay {
  position: fixed;
  display: none;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 3, 7, 0.75);
  backdrop-filter: blur(6px);
  pointer-events: auto;
  z-index: 50;
}
#modal-overlay.open {
  display: flex;
}

#modal-box {
  position: relative;
  padding: 36px 36px 32px;
  width: 100%;
  max-width: 440px;
  background: #0b0e1a;
  border: 1px solid #191d2c;
  border-radius: 12px;
}
#modal-box h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
#modal-box .modal-sub {
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.5;
  color: #5e6274;
}

#modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px;
  font-size: 20px;
  line-height: 1;
  color: #5e6274;
  background: none;
  border: none;
  cursor: pointer;
}
#modal-close:hover {
  color: #eef0f5;
}

#modal-submit {
  margin-top: 10px;
  padding: 14px 28px;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #050810;
  background: #6fa8dc;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
#modal-submit:hover {
  background: #8fbde5;
}

#modal-success {
  display: none;
  padding: 12px 0;
  text-align: center;
}
#modal-success.open {
  display: block;
}
#modal-success .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 52px;
  height: 52px;
  font-size: 22px;
  color: #6fa8dc;
  border-radius: 50%;
  background: rgba(111, 168, 220, 0.12);
  border: 1px solid #6fa8dc;
}
#modal-success h3 {
  margin-bottom: 12px;
}
#modal-success p {
  font-size: 14px;
  color: #5e6274;
  line-height: 1.6;
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5e6274;
  margin-bottom: 8px;
}
.field input {
  padding: 12px 14px;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  color: #eef0f5;
  background: #050810;
  border: 1px solid #191d2c;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus {
  border-color: #6fa8dc;
}
.field input.error {
  border-color: #ff6b47;
}
.field .error-msg {
  margin-top: 6px;
  min-height: 14px;
  font-size: 12px;
  font-family: "JetBrains Mono", monospace;
  color: #ff6b47;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  text-align: center;
  border-top: 1px solid #191d2c;
}
footer .footer-logo {
  margin-bottom: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #5e6274;
}
footer h2 {
  margin-bottom: 28px;
  max-width: 600px;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
}/*# sourceMappingURL=main.css.map */