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

:root {
  --cyan: #00D4E8;
  --cyan-dim: rgba(0, 212, 232, 0.15);
  --cyan-border: rgba(0, 212, 232, 0.3);
  --bg: #060608;
  --surface: #0E0E12;
  --surface2: #16161C;
  --text: #FFFFFF;
  --text-muted: #6B6B80;
  --text-dim: #9999AA;
  --border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--cyan-border);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, width 0.2s, height 0.2s, border-color 0.2s;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── GRID BACKGROUND ── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(6,6,8,0.7);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 34px; height: 34px;
  position: relative;
}

.logo-mark svg { width: 100%; height: 100%; }

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 8px 20px;
  border: 1px solid var(--cyan-border);
  border-radius: 6px;
  color: var(--cyan) !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--cyan-dim) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,232,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--cyan-border);
  border-radius: 100px;
  background: var(--cyan-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero h1 .word-melr {
  display: block;
  color: var(--text);
}

.hero-slogan {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.hero-slogan .accent {
  color: var(--cyan);
  font-weight: 500;
}

.hero-slogan-pt {
  font-size: clamp(13px, 1.8vw, 17px);
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 300;
  margin-bottom: 48px;
}

.hero-slogan-pt::before { content: '// '; color: var(--cyan); opacity: 0.5; }

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--cyan);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,212,232,0.3);
}

.btn-ghost {
  padding: 14px 32px;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--cyan-border);
  color: var(--cyan);
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 24px 40px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.stat-value span { color: var(--cyan); }

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-visual {
  position: relative;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,212,232,0.05) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,212,232,0.02) 20px, rgba(0,212,232,0.02) 21px);
}

.about-logo-big {
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.05);
  user-select: none;
  position: relative;
}

.about-logo-big .cyan-accent { color: rgba(0,212,232,0.15); }

.about-corner {
  position: absolute;
  width: 60px; height: 60px;
  border-color: var(--cyan-border);
  border-style: solid;
  opacity: 0.6;
}

.about-corner.tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.about-corner.br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.about-content p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p strong {
  color: var(--text);
  font-weight: 600;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
}

.pillar-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PRODUCTS ── */
.products-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

/* ── PRODUCT TABLE ── */
.product-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.product-table thead tr {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}

.product-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.product-table th:first-child { padding-left: 28px; }

.product-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.product-table tbody tr:last-child { border-bottom: none; }
.product-table tbody tr:hover { background: rgba(0,212,232,0.03); }

.product-table td {
  padding: 22px 24px;
  vertical-align: middle;
}

.product-table td:first-child { padding-left: 28px; }

.product-name-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.product-icon.active {
  background: rgba(0,212,232,0.12);
  border: 1px solid var(--cyan-border);
}

.product-icon.soon {
  background: var(--surface2);
  border: 1px solid var(--border);
}

.product-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.product-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.product-desc {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
  max-width: 280px;
}

.product-sector {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  background: var(--surface2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.status-badge.live {
  background: rgba(0,212,232,0.12);
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
}

.status-badge.live::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-badge.beta {
  background: rgba(255, 190, 50, 0.1);
  color: #FFBE32;
  border: 1px solid rgba(255, 190, 50, 0.25);
}

.status-badge.roadmap {
  background: var(--surface2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.product-link {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.2s;
}

.product-link:hover { color: var(--cyan); }

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-4px);
}

.value-card:hover::before { opacity: 1; }

.value-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,232,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section .section-title { max-width: 700px; margin: 0 auto 20px; }
.cta-section .section-subtitle { margin: 0 auto 40px; max-width: 480px; }

.contact-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.chip {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 40px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--text);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  opacity: 0.7;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-instagram:hover { color: var(--cyan); }

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-border), transparent);
  opacity: 0.5;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .section-inner { padding: 70px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 40px; }
  .hero { padding: 100px 24px 60px; }
  .cta-section { padding: 80px 24px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .about-visual { height: 220px; }
}
