/* SpaceIntel — Global Styles */
:root {
  --bg: #000000;
  --bg2: #111111;
  --card-bg: #1a1a1a;
  --border: rgba(255,255,255,0.1);
  --text: #ffffff;
  --text-muted: #cccccc;
  --accent: #ffffff;
  --accent2: #cccccc;
  --accent3: #ffffff;
  --green: #22d3a0;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --radius: 16px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}
.btn-nav {
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.85; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.2rem;
}
.mobile-menu a {
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta {
  margin-top: 0.75rem;
  background: var(--accent) !important;
  color: #000 !important;
  border-radius: 8px;
  padding: 0.7rem 1rem !important;
  text-align: center;
  font-weight: 600;
  border: none !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: block;
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent2);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(255,255,255,0.35);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.5); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.2); }
.hero-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); }
.stat-div { width: 1px; height: 32px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both;
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
.orb-1 {
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(90,127,255,0.2), transparent 70%);
  top: -60px; right: -40px;
}
.orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.15), transparent 70%);
  bottom: -40px; left: -20px;
  animation-delay: 1.5s;
}
.orb-3 {
  width: 150px; height: 150px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2), transparent 70%);
  top: 40%; right: -10px;
  animation-delay: 0.75s;
}
.terminal {
  background: #0a0f1e;
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 380px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(90,127,255,0.08);
  position: relative;
  z-index: 1;
}
.terminal-bar {
  display: flex;
  gap: 7px;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.terminal-body { padding: 1.25rem 1.5rem 1.5rem; font-family: 'Courier New', monospace; font-size: 0.82rem; }
.t-line { margin-bottom: 0.4rem; }
.t-prompt { color: var(--accent); margin-right: 0.5rem; }
.t-out { color: var(--text-muted); padding-left: 1.1rem; }
.t-green { color: var(--green); }
.cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: var(--accent);
}

/* ── SECTIONS ── */
.section { padding: 7rem 0; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(90,127,255,0.3); }
.card-accent {
  background: linear-gradient(135deg, rgba(90,127,255,0.15), rgba(0,212,255,0.08));
  border-color: rgba(90,127,255,0.3);
}
.card-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent2);
  font-size: 0.88rem;
  font-weight: 600;
}
.card-link:hover { text-decoration: underline; }

/* ── PRODUCT SECTION ── */
.product-section {
  padding: 7rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-inner {
  display: block;
}
.product-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.product-text p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}
.feature-list li {
  padding: 0.45rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.feature-list li span { color: var(--accent); margin-right: 0.5rem; }

/* Chat window */
.chat-window {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(90,127,255,0.06);
}
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.chat-name { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.chat-status { font-size: 0.75rem; color: var(--green); }
.chat-messages { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
}
.msg.user {
  background: linear-gradient(135deg, var(--accent), #3b60ff);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.msg.bot {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--text-muted);
}
.msg.typing { font-style: italic; }

/* ── TEAM PREVIEW ── */
.team-preview { background: var(--bg); }
.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: rgba(90,127,255,0.3); transform: translateY(-3px); }
.team-avatar {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.team-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-info p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ── CTA ── */
.cta-section { padding: 7rem 0; }
.cta-inner {
  background: linear-gradient(135deg, rgba(90,127,255,0.12), rgba(0,212,255,0.06));
  border: 1px solid rgba(90,127,255,0.25);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cta-inner p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-ghost-light {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.06); }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 260px; margin-bottom: 1rem; }
.footer-product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(90,127,255,0.1);
  border: 1px solid rgba(90,127,255,0.2);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--accent2);
  transition: 0.2s;
}
.footer-product-link:hover { background: rgba(90,127,255,0.2); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(90,127,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,127,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.about-values { margin-top: 2rem; }
.about-values h3 {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 1rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  align-items: flex-start;
}
.value-icon { font-size: 1.25rem; flex-shrink: 0; }
.value-text h4 { font-weight: 600; margin-bottom: 0.25rem; font-size: 0.95rem; }
.value-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.about-stats {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.about-stats h3 {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.big-stat {
  text-align: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.big-stat:last-child { border-bottom: none; }
.big-stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.big-stat-label { color: var(--text-muted); font-size: 0.85rem; }

/* ── TEAM PAGE ── */
.team-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.team-full-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.team-full-card:hover { border-color: rgba(90,127,255,0.4); transform: translateY(-4px); }
.team-card-top {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(90,127,255,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.team-avatar-lg {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.team-full-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.team-card-body { padding: 1.75rem 2rem; }
.team-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.team-card-body p:last-child { margin-bottom: 0; }
.badge {
  display: inline-block;
  background: rgba(90,127,255,0.12);
  border: 1px solid rgba(90,127,255,0.25);
  color: var(--accent2);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: 0.2s;
}
.service-card:hover { border-color: rgba(90,127,255,0.35); transform: translateY(-4px); }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(90,127,255,0.2), rgba(0,212,255,0.1));
  border: 1px solid rgba(90,127,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── DOCS ── */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 2rem;
}
.docs-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.docs-sidebar h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
  padding-left: 0.5rem;
}
.docs-sidebar h3:first-child { margin-top: 0; }
.docs-sidebar a {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: 0.2s;
  margin-bottom: 0.1rem;
}
.docs-sidebar a:hover, .docs-sidebar a.active {
  color: var(--text);
  background: rgba(90,127,255,0.1);
}
.docs-content h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.docs-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.docs-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}
.docs-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; font-size: 0.95rem; }
.docs-content ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.code-block {
  background: #060a14;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.83rem;
  color: var(--accent2);
  margin: 1rem 0;
  overflow-x: auto;
}
.docs-callout {
  background: rgba(90,127,255,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(90,127,255,0.1);
  border: 1px solid rgba(90,127,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-weight: 600; margin-bottom: 0.2rem; font-size: 0.9rem; }
.contact-item a, .contact-item p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.contact-item a:hover { color: var(--accent2); }
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(90,127,255,0.5);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #3b60ff);
  color: #fff;
  border: none;
  padding: 0.85rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  margin-top: 0.5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90,127,255,0.4); }

/* ── PRIVACY / TERMS ── */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}
.legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a { color: var(--accent); }
.legal-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { justify-content: flex-start; }
  .terminal { width: 100%; max-width: 380px; }
  .product-inner { grid-template-columns: 1fr; }
  .team-cards { grid-template-columns: 1fr; }
  .team-full { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; }
}
@media (max-width: 680px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 5rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
}
