:root {
  --bg: #02040f;
  --bg2: #050818;
  --surface: #080c1e;
  --surface2: #0d1230;
  --border: rgba(80, 160, 255, 0.10);
  --border2: rgba(0, 255, 224, 0.18);
  --c1: #00ffe0;
  --c2: #4f8cff;
  --c3: #b06cff;
  --c4: #ff4fa3;
  --text: #dde8ff;
  --muted: rgba(180, 210, 255, 0.45);
  --font-head: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-serif: 'Instrument Serif', serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
/* Logo Pyramid with 7 Glowing Dots */
.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-pyramid {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pyramid-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.glow-dots {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.glow-dots .dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ffe0;
  box-shadow: 0 0 12px #00ffe0, 0 0 24px #00ffe0;
  animation: dotPulse 1.5s ease-in-out infinite;
}

/* Dot positions around pyramid */
.glow-dots .dot-1 { top: 8px; left: 19px; animation-delay: 0s; }
.glow-dots .dot-2 { top: 18px; left: 6px; animation-delay: 0.2s; }
.glow-dots .dot-3 { top: 18px; left: 32px; animation-delay: 0.4s; }
.glow-dots .dot-4 { top: 30px; left: 12px; animation-delay: 0.6s; }
.glow-dots .dot-5 { top: 30px; left: 26px; animation-delay: 0.8s; }
.glow-dots .dot-6 { top: 38px; left: 19px; animation-delay: 1s; }
.glow-dots .dot-7 { top: 22px; left: 19px; animation-delay: 1.2s; }

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.8);
    box-shadow: 0 0 8px #00ffe0, 0 0 16px #00ffe0;
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 20px #00ffe0, 0 0 40px #00ffe0;
  }
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 1;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-name span {
  -webkit-text-fill-color: rgba(180, 210, 255, 0.4);
  font-weight: 400;
}

.logo-sub {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Custom Cursor */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--c1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width 0.15s, height 0.15s;
}

#cur-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 255, 224, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: left 0.08s, top 0.08s;
}

/* Noise Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.45;
}

/* Scanline */
.scanline {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 224, 0.25), transparent);
  pointer-events: none;
  z-index: 9996;
  animation: scan 8s linear infinite;
}

@keyframes scan {
  0% {
    top: -2px;
  }
  100% {
    top: 100vh;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: linear-gradient(to bottom, rgba(2, 4, 15, 0.97) 70%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(80, 160, 255, 0.07);
  transition: padding 0.3s, background 0.3s;
}

nav.scrolled {
  padding: 12px 60px;
  background: rgba(2, 4, 15, 0.98);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-dots {
  display: grid;
  grid-template-columns: repeat(4, 8px);
  grid-template-rows: repeat(3, 8px);
  gap: 5px;
  width: 44px;
  height: 36px;
}

.ldot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c, #00ffe0);
  box-shadow: 0 0 7px var(--c, #00ffe0), 0 0 14px var(--c, #00ffe0);
  animation: ldp 2.6s var(--d, 0s) ease-in-out infinite;
}

@keyframes ldp {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.6);
  }
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 1;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-name span {
  -webkit-text-fill-color: rgba(180, 210, 255, 0.4);
  font-weight: 400;
}

.logo-sub {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c1);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-drop {
  position: relative;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: rgba(5, 8, 24, 0.97);
  border: 1px solid var(--border2);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  backdrop-filter: blur(20px);
}

.nav-drop:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s, background 0.3s;
}

.nav-drop-menu a:hover {
  color: var(--c1);
  background: rgba(0, 255, 224, 0.05);
}

.nav-drop-menu a::after {
  display: none !important;
}

.nav-cta {
  border: 1px solid rgba(0, 255, 224, 0.3);
  padding: 10px 20px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c1);
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
  font-family: var(--font-mono);
}

.nav-cta:hover {
  background: rgba(0, 255, 224, 0.1);
  box-shadow: 0 0 30px rgba(0, 255, 224, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c1);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 15, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--c1);
}

.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--muted);
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* Page Hero */
.page-hero {
  padding: 160px 60px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.page-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--c1);
}

.page-eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c1);
}

.page-h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6.5vw, 100px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.page-h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--c1), var(--c2), var(--c3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.page-sub {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}

/* Section Styles */
.sec {
  padding: 100px 60px;
  position: relative;
  z-index: 1;
}

.sec-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sec-label::before {
  content: '//';
  color: var(--muted);
}

.sec-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.sec-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-body {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 560px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: #000;
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: box-shadow 0.3s, transform 0.2s;
  font-weight: 700;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 255, 224, 0.3);
  color: var(--c1);
  padding: 13px 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(0, 255, 224, 0.04);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-ghost:hover {
  background: rgba(0, 255, 224, 0.1);
  box-shadow: 0 0 24px rgba(0, 255, 224, 0.2);
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(5, 8, 24, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff4fa3;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.chk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
}

.chk-item input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--c1);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
}

.form-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--c1);
}

.form-check a {
  color: var(--c1);
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

/* Info Box */
.info-box {
  background: rgba(0, 255, 224, 0.05);
  border: 1px solid var(--border2);
  padding: 20px 24px;
  border-radius: 0;
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background: var(--border);
}

/* Legal Content */
.legal-content {
  max-width: 1000px;
  margin: 120px auto 80px;
  padding: 0 60px;
}

.legal-content h1 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
}

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
}

.legal-content p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content li {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--c1);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-date {
  font-size: 11px;
  color: var(--c1);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.legal-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 60px 36px;
  background: var(--bg2);
}

.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.f-logo {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.f-tag {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 230px;
  margin-bottom: 18px;
}

.f-socs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.f-soc {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.f-soc:hover {
  border-color: var(--c1);
  color: var(--c1);
}

.f-ct {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 16px;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.f-links a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.f-links a:hover {
  color: var(--c1);
}

.f-bot {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.f-copy {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1px;
}

.f-pl {
  display: flex;
  gap: 18px;
}

.f-pl a {
  font-size: 9px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.f-pl a:hover {
  color: var(--c1);
}

/* Chatbot */
#cbot-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  animation: fabp 3s ease-in-out infinite;
}

#cbot-fab:hover {
  transform: scale(1.1);
}

@keyframes fabp {
  0%, 100% {
    box-shadow: 0 0 18px rgba(0, 255, 224, 0.3);
  }
  50% {
    box-shadow: 0 0 42px rgba(0, 255, 224, 0.6);
  }
}

#cbot-fab svg {
  width: 24px;
  height: 24px;
  fill: #000;
}

#cbot-win {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9001;
  width: 360px;
  max-height: 520px;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
}

#cbot-win.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cb-hdr {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(0, 255, 224, 0.07), rgba(79, 140, 255, 0.07));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cb-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
}

.cb-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--c1);
  text-transform: uppercase;
  margin-top: 2px;
}

.cb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c1);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.cb-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}

.cb-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
}

.cmsg {
  max-width: 82%;
  padding: 10px 13px;
  font-size: 11px;
  line-height: 1.6;
}

.cmsg.bot {
  background: rgba(0, 255, 224, 0.07);
  border: 1px solid var(--border2);
  color: var(--text);
  align-self: flex-start;
  border-left: 2px solid var(--c1);
}

.cmsg.usr {
  background: rgba(79, 140, 255, 0.12);
  border: 1px solid rgba(79, 140, 255, 0.2);
  color: var(--text);
  align-self: flex-end;
  text-align: right;
}

.cb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 12px 10px;
}

.cchip {
  font-size: 9px;
  letter-spacing: 1px;
  border: 1px solid var(--border2);
  color: var(--c1);
  padding: 5px 9px;
  cursor: pointer;
  background: none;
  font-family: var(--font-mono);
  transition: background 0.3s;
}

.cchip:hover {
  background: rgba(0, 255, 224, 0.1);
}

.cb-row {
  padding: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 7px;
}

.cb-inp {
  flex: 1;
  background: rgba(5, 8, 24, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 11px;
  font-family: var(--font-mono);
  font-size: 11px;
  outline: none;
  transition: border-color 0.3s;
}

.cb-inp:focus {
  border-color: var(--c1);
}

.cb-snd {
  background: var(--c1);
  border: none;
  color: #000;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cb-snd svg {
  width: 15px;
  height: 15px;
  fill: #000;
}

.tdots span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c1);
  margin: 0 2px;
  animation: td 0.9s infinite both;
}

.tdots span:nth-child(2) {
  animation-delay: 0.15s;
}

.tdots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes td {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* Reveal Animation */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

/* Badge */
.badge {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border2);
  padding: 4px 10px;
  color: var(--c1);
  margin-bottom: 32px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb32 {
  margin-bottom: 32px;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  nav {
    padding: 16px 32px;
  }
  nav.scrolled {
    padding: 12px 32px;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .two-col {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }
  nav.scrolled {
    padding: 12px 20px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .page-hero {
    padding: 120px 20px 60px;
  }
  .sec {
    padding: 64px 20px;
  }
  footer {
    padding: 44px 20px 28px;
  }
  .f-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 0 20px;
    margin: 100px auto 60px;
  }
  .legal-content h1 {
    font-size: 36px;
  }
  #cbot-win {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 84px;
  }
  #cbot-fab {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .page-h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .sec-h2 {
    font-size: 28px;
  }
}