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

:root {
  --bg: #08070E;
  --bg-card: #111113;
  --bg-card-hover: #19191d;
  --border: rgba(95, 95, 113, 0.22);
  --border-hover: rgba(95, 95, 113, 0.45);
  --text: #f5f5f5;
  --text-muted: rgba(245, 245, 245, 0.55);
  --text-faint: rgba(245, 245, 245, 0.3);
  --accent: #00FF94;
  --accent-dim: rgba(0, 255, 148, 0.15);
  --accent-glow: rgba(0, 255, 148, 0.35);

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --max-w: 1140px;
  --px: 80px;
  --section-gap: 140px;
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }


.section {
  padding: var(--section-gap) var(--px);
  max-width: calc(var(--max-w) + var(--px) * 2);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}


.anim-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.anim-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.char-reveal {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(15px);
  transition: opacity 0.5s var(--ease-out), filter 0.6s var(--ease-out), transform 0.5s var(--ease-out);
}
.char-reveal.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}


#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8, 7, 14, 0.8);
  transition: background 0.3s var(--ease-out);
}

.nav-inner {
  max-width: calc(var(--max-w) + var(--px) * 2);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  transition: background var(--transition), border-color var(--transition);
}

.nav-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-hamburger.open span:first-child {
  transform: rotate(45deg) translate(2px, 5px);
}
.nav-hamburger.open span:last-child {
  transform: rotate(-45deg) translate(2px, -5px);
}


.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 7, 14, 0.97);
  backdrop-filter: blur(30px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 20px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--text); }



#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) var(--px) 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, rgba(0,255,148,0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

#hero-title {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 40px;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-dim);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero-trust {
  margin-top: 48px;
  text-align: center;
}

.trust-label {
  display: block;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-sep { color: var(--text-faint); }


.hero-dashboard {
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin-top: 72px;
  padding-bottom: 40px;
}

.dashboard-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.dash-nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-faint);
}

.dash-nav-active {
  color: var(--text);
  font-weight: 500;
}

.dash-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
}

.dash-main {
  padding: 24px;
  border-right: 1px solid var(--border);
}

.dash-stat-label {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.dash-stat-value {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.dash-stat-delta {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.dash-chart {
  height: 80px;
}

.dash-chart svg {
  width: 100%;
  height: 100%;
}

.dash-side {
  padding: 24px;
}

.dash-side-title {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.dash-trace {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.dash-trace:last-child { border-bottom: none; }

.trace-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.trace-icon.btc { background: #f5b300; color: #000; }
.trace-icon.eth { background: #627eea; color: #fff; }
.trace-icon.sol { background: #9945ff; color: #fff; }

.trace-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trace-name {
  font-size: 14px;
  font-weight: 500;
}

.trace-amount {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.trace-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trace-status.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.trace-status.found {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}


.marquee-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-text {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  white-space: nowrap;
  padding: 0 48px;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.02em;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}



.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 0;
}

.feature-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease-out);
}

.feature-card:last-child {
  border-right: none;
}

.feature-card:hover {
  background: var(--bg-card);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}



.intel-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.ticker-row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ticker-inner {
  display: flex;
  gap: 16px;
  width: max-content;
}

.ticker-left .ticker-inner { animation: ticker-scroll-left 40s linear infinite; }
.ticker-right .ticker-inner { animation: ticker-scroll-right 35s linear infinite; }
.ticker-left-slow .ticker-inner { animation: ticker-scroll-left 50s linear infinite; }

@keyframes ticker-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-chain {
  font-size: 15px;
  font-weight: 600;
}

.ticker-val {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.ticker-delta {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ticker-delta.positive {
  background: var(--accent-dim);
  color: var(--accent);
}

.ticker-delta.caution {
  background: rgba(245, 179, 0, 0.15);
  color: #f5b300;
}



.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 0;
}

.step-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease-out);
}

.step-card:last-child { border-right: none; }
.step-card:hover { background: var(--bg-card); }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}


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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}


.bento-glass {
  background: rgba(17, 17, 19, 0.45);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(0, 255, 148, 0.1);
}

.bento-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 148, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.bento-glass::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 148, 0.06) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}

.bento-glass:hover {
  border-color: rgba(0, 255, 148, 0.2);
  background: rgba(17, 17, 19, 0.55);
  box-shadow: 0 8px 40px rgba(0, 255, 148, 0.06), inset 0 1px 0 rgba(0, 255, 148, 0.1);
  transform: translateY(-2px);
}

.bento-glass:hover::before {
  opacity: 1;
}

.bento-glass:hover::after {
  opacity: 1;
}


.bento-glass .glass-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 148, 0.04), transparent);
  pointer-events: none;
  animation: glass-sweep 6s ease-in-out infinite;
}

@keyframes glass-sweep {
  0%, 100% { left: -100%; }
  50% { left: 140%; }
}

.bento-wide {
  grid-column: 1 / -1;
}

.bento-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  position: relative;
}

.bento-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  position: relative;
}

.bento-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  position: relative;
}


.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  padding: 20px 0;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out), color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}


.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 148, 0.15) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(80px);
}


.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 148, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 148, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
  animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}


.contact-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.3;
  animation: scanline-move 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanline-move {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { top: 100%; opacity: 0; }
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-text h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-text > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 440px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 255, 148, 0.08);
  border: 1px solid rgba(0, 255, 148, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-feature span {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-feature strong {
  color: var(--text);
  font-weight: 500;
}


.contact-form-card {
  background: rgba(17, 17, 19, 0.5);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(0, 255, 148, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 148, 0.4) 50%, transparent 100%);
}

.contact-form-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 255, 148, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 255, 148, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(245,245,245,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #111113;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn-primary:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-faint);
}



#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}


#main-nav { z-index: 100; }
#hero, .marquee-section, .section, footer, .mobile-menu {
  position: relative;
  z-index: 2;
}


footer {
  border-top: 1px solid var(--border);
  padding: 64px var(--px) 32px;
  max-width: calc(var(--max-w) + var(--px) * 2);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
}

.footer-bottom a {
  color: var(--text-faint);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--text-muted); }



@media (max-width: 1024px) {
  :root { --px: 40px; --section-gap: 100px; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card:nth-child(2) { border-right: none; }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2) { border-bottom: 1px solid var(--border); }

  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card { border-right: none; border-bottom: 1px solid var(--border); }
  .step-card:last-child { border-bottom: none; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: 1; }

  .faq-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --px: 20px; --section-gap: 80px; --nav-h: 60px; }

  .nav-links { display: none; }
  .nav-cta:not(.mobile-menu .nav-cta) { display: none; }
  .nav-hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-card:last-child { border-bottom: none; }

  .dash-body { grid-template-columns: 1fr; }
  .dash-main { border-right: none; border-bottom: 1px solid var(--border); }

  .hero-dashboard { margin-top: 48px; }

  .trust-stats {
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: 13px;
  }

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

  .contact-inner { gap: 32px; }
  .contact-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #hero-title {
    font-size: 38px;
  }
}
