:root {
  --bg: #080810;
  --bg2: #0e0e1a;
  --bg3: #13131f;
  --surface: #181826;
  --surface2: #1e1e2e;
  --border: rgba(139,120,255,0.12);
  --border2: rgba(139,120,255,0.22);
  --accent: #8b78ff;
  --accent2: #6c5ce7;
  --accent3: #a78bfa;
  --teal: #2dd4bf;
  --text: #f0eeff;
  --text2: #a099c8;
  --text3: #6b6490;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::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: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ORB BACKGROUND */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: rgba(108,92,231,0.12); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(45,212,191,0.07); bottom: 10%; left: -100px; }

/* 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;
  background: rgba(8,8,16,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent2), var(--teal));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

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

.nav-cta {
  padding: 10px 22px;
  background: var(--accent2);
  color: white !important;
  border-radius: 8px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

.hero-content { max-width: 700px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(139,120,255,0.1);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent3);
  margin-bottom: 32px;
  font-weight: 500;
}

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

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

h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}

h1 .accent {
  background: linear-gradient(135deg, var(--accent3), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent2);
  color: white;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text2);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--border2);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(139,120,255,0.4); background: rgba(139,120,255,0.06); }

.hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text3);
  margin-top: 2px;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent3);
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* SERVICES */
.services { padding: 100px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--bg2);
  padding: 40px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px; height: 44px;
  background: rgba(139,120,255,0.1);
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.service-card p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: 13px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* FOR WHO */
.forwho { padding: 100px 0; background: var(--bg2); }

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.forwho-card {
  padding: 32px 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
}
.forwho-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  background: var(--surface);
}
.forwho-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.forwho-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.forwho-card p { font-size: 14px; color: var(--text2); line-height: 1.6; font-weight: 300; }

/* METHOD */
.method { padding: 100px 0; }

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), var(--border2), transparent);
}

.method-step { padding: 0 24px; position: relative; }

.method-step-num {
  width: 56px; height: 56px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent3);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.method-step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.method-step p { font-size: 14px; color: var(--text2); line-height: 1.7; font-weight: 300; }

/* WHY */
.why { padding: 100px 0; background: var(--bg2); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.why-left h2 { margin-bottom: 40px; }
.why-points { display: flex; flex-direction: column; gap: 28px; }

.why-point { display: flex; gap: 16px; align-items: flex-start; }

.why-check {
  width: 28px; height: 28px;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--teal);
  margin-top: 2px;
}
.why-point h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.why-point p { font-size: 14px; color: var(--text2); font-weight: 300; line-height: 1.6; }

.why-right {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.why-right::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139,120,255,0.15), transparent);
  border-radius: 50%;
}

.terminal { font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.8; }
.term-line { display: flex; gap: 10px; margin-bottom: 6px; }
.term-prompt { color: var(--teal); }
.term-cmd { color: var(--text); }
.term-out { color: var(--text3); padding-left: 20px; margin-bottom: 4px; }
.term-ok { color: var(--teal); }
.term-warn { color: #f59e0b; }
.term-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--accent3);
  animation: blink 1s infinite;
  vertical-align: middle;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ABOUT */
.about { padding: 100px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-avatar {
  width: 100%;
  aspect-ratio: 1;
  max-width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.about-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(108,92,231,0.15), transparent);
}
.about h2 { margin-bottom: 20px; }
.about-text { font-size: 16px; color: var(--text2); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }

.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.tag {
  padding: 6px 14px;
  background: rgba(139,120,255,0.08);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent3);
  font-weight: 500;
}

/* CONTACT */
.contact { padding: 100px 0; background: var(--bg2); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact h2 { margin-bottom: 12px; }
.contact-sub { font-size: 16px; color: var(--text2); margin-bottom: 40px; font-weight: 300; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.contact-method:hover {
  border-color: var(--border2);
  background: var(--surface);
  transform: translateX(4px);
}
.contact-method-icon {
  width: 40px; height: 40px;
  background: rgba(139,120,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-method-label { font-size: 13px; color: var(--text3); margin-bottom: 2px; }
.contact-method-value { font-size: 14px; font-weight: 500; color: var(--text); }

.contact-promise {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.contact-promise h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.promise-items { display: flex; flex-direction: column; gap: 14px; }
.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
}
.promise-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* FOOTER */
footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer-brand { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text2); }
.footer-copy { font-size: 13px; color: var(--text3); }

/* ANIMATIONS */
.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: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .forwho-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .method-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}
