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

:root {
  --bg: #08080E;
  --bg-2: #0F0F18;
  --bg-3: #141421;
  --border: rgba(255,255,255,0.08);
  --border-h: rgba(255,255,255,0.15);
  --text: #F2F2F5;
  --text-2: #9898A8;
  --text-3: #5A5A6E;
  --accent: #6C47FF;
  --accent-2: #8B6FFF;
  --accent-glow: rgba(108,71,255,0.25);
  --teal: #00C896;
  --teal-glow: rgba(0,200,150,0.2);
  --amber: #F5A623;
  --amber-glow: rgba(245,166,35,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── 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;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(8,8,14,0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--accent-2); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--accent-2) !important; transform: translateY(-1px); }

/* ─── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(108,71,255,0.18);
  top: -100px; left: 50%;
  transform: translateX(-60%);
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(0,200,150,0.1);
  bottom: 50px; right: -80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,71,255,0.12);
  border: 1px solid rgba(108,71,255,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--text);
  max-width: 780px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #6C47FF 0%, #00C896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-h);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--text-2); background: rgba(255,255,255,0.04); }
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeUp 0.6s 0.5s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  animation: scrollBob 2s infinite;
}
@keyframes scrollBob { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.6);opacity:0.5} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ─── SECTION BASE ────────────────────────────────── */
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--accent);
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-2);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 60px;
  line-height: 1.65;
}

/* ─── PRODUCTS ────────────────────────────────────── */
#products { background: var(--bg-2); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.product-card.teal::before { background: radial-gradient(ellipse at top left, var(--teal-glow), transparent 60%); }
.product-card.amber::before { background: radial-gradient(ellipse at top left, var(--amber-glow), transparent 60%); }
.product-card:hover::before { opacity: 1; }

.product-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}
.product-icon.teal { background: rgba(0,200,150,0.12); border: 1px solid rgba(0,200,150,0.25); }
.product-icon.amber { background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.25); }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-badge.dev { background: rgba(0,200,150,0.1); color: var(--teal); border: 1px solid rgba(0,200,150,0.25); }
.product-badge.soon { background: rgba(245,166,35,0.1); color: var(--amber); border: 1px solid rgba(245,166,35,0.25); }
.product-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.product-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.product-tagline {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.product-desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist-form input {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-h);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input::placeholder { color: var(--text-3); }
.waitlist-form input:focus { border-color: var(--accent); }
.btn-teal {
  background: var(--teal);
  color: #08080E;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-teal:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-amber {
  background: var(--amber);
  color: #08080E;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-amber:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── SERVICES ────────────────────────────────────── */
#services { background: var(--bg); }
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-3);
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.service-item:hover { border-color: rgba(108,71,255,0.3); background: rgba(108,71,255,0.04); }
.service-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(108,71,255,0.1);
  border: 1px solid rgba(108,71,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.service-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.service-item p { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.services-pitch {
  padding: 40px;
  background: linear-gradient(135deg, rgba(108,71,255,0.1), rgba(0,200,150,0.05));
  border: 1px solid rgba(108,71,255,0.2);
  border-radius: var(--radius-lg);
}
.services-pitch blockquote {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 24px;
}
.services-pitch blockquote em { font-style: normal; color: var(--accent-2); }
.services-pitch p { color: var(--text-2); font-size: 15px; margin-bottom: 32px; line-height: 1.6; }
.services-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tag {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
}

/* ─── ABOUT ───────────────────────────────────────── */
#about { background: var(--bg-2); }
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story { font-size: 17px; color: var(--text-2); line-height: 1.75; margin-bottom: 32px; }
.about-story strong { color: var(--text); font-weight: 600; }
.founders { display: flex; flex-direction: column; gap: 20px; }
.founder-card {
  padding: 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s;
}
.founder-card:hover { border-color: var(--border-h); }
.founder-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.founder-info h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.founder-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.founder-bio { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.founder-avatar--alt { background: linear-gradient(135deg, var(--teal), var(--accent)); }

/* ─── CONTACT ─────────────────────────────────────── */
#contact { background: var(--bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-2); font-size: 16px; line-height: 1.65; margin-bottom: 32px; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.contact-email:hover { border-color: var(--border-h); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-3); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(108,71,255,0.5); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.honeypot { display: none !important; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.footer-logo span { color: var(--accent-2); }
footer p { color: var(--text-3); font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-3); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-2); }

/* ─── MOBILE ──────────────────────────────────────── */
@media(max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  section { padding: 72px 20px; }
  .services-layout,
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .waitlist-form { flex-direction: column; }
  h1 { letter-spacing: -1.5px; }
}

.btn-submit { align-self: flex-start; }
.form-error { color: #f09595; font-size: 13px; margin-top: 8px; }

/* ─── SUCCESS STATE ───────────────────────────────── */
.success-msg {
  display: none;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
}
.success-msg.visible { display: block; }
