@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-0: #04060D;
  --bg-1: #080C18;
  --bg-2: #0D1120;
  --bg-card: #10161F;
  --bg-card-hover: #141C28;
  --accent: #22D3EE;
  --accent-glow: rgba(34,211,238,0.15);
  --accent-dim: #0891B2;
  --gold: #F59E0B;
  --gold-dim: #D97706;
  --text-1: #F0F4FF;
  --text-2: #A8B4CC;
  --text-3: #5C6B85;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(34,211,238,0.3);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; line-height: 1.2; }

/* ── Utilities ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-1);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(4,6,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-0);
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--accent-glow);
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-0);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { opacity: 0.9; box-shadow: 0 0 20px var(--accent-glow); }
.nav-mobile-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(34,211,238,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 60%, rgba(245,158,11,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
h1.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-title span {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-0);
  background: var(--accent);
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.92; box-shadow: 0 8px 30px var(--accent-glow); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  background: none;
  border: 1px solid var(--border);
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover { color: var(--text-1); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── Stats ── */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── About ── */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
}
.about-orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 40%, rgba(34,211,238,0.15), rgba(34,211,238,0.02) 70%, transparent);
  border: 1px solid var(--border-accent);
}
.about-orb-2 {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 60% 60%, rgba(245,158,11,0.1), transparent 70%);
  border: 1px solid rgba(245,158,11,0.2);
}
.about-orb-3 {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(34,211,238,0.2), transparent 60%);
  border: 1px solid var(--border-accent);
}
.about-orb-center {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px var(--accent-glow);
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.point-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.point-text h4 { font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.point-text p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── Portfolio / Brands ── */
.portfolio {
  padding: 120px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.brands-grid .brand-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
}
.brand-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  overflow: hidden;
  cursor: default;
}
.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at var(--mx,50%) var(--my,0%), var(--accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.brand-card:hover { border-color: var(--border-accent); background: var(--bg-card-hover); transform: translateY(-4px); }
.brand-card:hover::before { opacity: 1; }
.brand-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.brand-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid var(--border);
}
.brand-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.status-soon { color: var(--gold); background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); }
.status-active { color: #34D399; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.25); }
.brand-name { font-size: 18px; font-weight: 600; color: var(--text-1); margin-bottom: 8px; }
.brand-sector {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.brand-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.brand-divider { height: 1px; background: var(--border); margin: 20px 0; }
.brand-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.brand-tag {
  font-size: 11px;
  color: var(--text-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ── Pipeline card ── */
.pipeline-card {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 40px;
}
.pipeline-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.pi-ring { transform-origin: center; }
.pi-ring-1 { animation: spinCW  8s linear infinite; }
.pi-ring-2 { animation: spinCCW 5s linear infinite; }
@keyframes spinCW  { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }

/* ── Vision ── */
.vision {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,211,238,0.06) 0%, transparent 70%);
}
.vision-content { position: relative; max-width: 720px; margin: 0 auto; }
.vision-quote {
  font-size: clamp(22px, 3vw, 32px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: var(--text-1);
  line-height: 1.5;
  margin: 24px 0 32px;
}
.vision-quote em { font-style: normal; color: var(--accent); }
.vision-author { font-size: 14px; color: var(--text-3); }

/* ── Sectors ── */
.sectors { padding: 120px 0; background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.sector-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.sector-icon { font-size: 28px; margin-bottom: 16px; }
.sector-name { font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 8px; }
.sector-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── Contact ── */
.contact { padding: 120px 0; }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-2); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-1);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--border-accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--bg-0);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: opacity 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.9; box-shadow: 0 8px 24px var(--accent-glow); }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: var(--text-2); text-decoration: none; }
.contact-info-text a:hover { color: var(--accent); }

/* ── Footer ── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--text-3); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h5 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-bottom a { color: var(--text-3); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 24px; }

/* ── Fade-in animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid .brand-card { flex: 1 1 calc(50% - 12px); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .brands-grid .brand-card { flex: 1 1 100%; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; justify-content: center; }
}

/* ── Legal pages ── */
.legal-hero { padding: 140px 0 80px; background: var(--bg-1); border-bottom: 1px solid var(--border); }
.legal-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.legal-hero .updated { font-size: 13px; color: var(--text-3); }
.legal-body { padding: 72px 0 100px; }
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 22px; color: var(--text-1); margin: 48px 0 16px; padding-top: 48px; border-top: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 8px; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--text-1); font-weight: 600; }
