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

:root {
  --black: #030408;
  --dark: #070810;
  --white: #eae8e3;
  --accent: #1a8fff;
  --accent-light: #4da8ff;
  --accent-dark: #0066cc;
  --accent-glow: rgba(26,143,255,0.2);
  --accent-glow-strong: rgba(26,143,255,0.4);
  --gray: #777;
  --gray-light: #a0a0a8;
  --glass: rgba(255,255,255,0.03);
  --glass-hover: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);
  --radius: 20px;
  --radius-lg: 28px;
}

html { scroll-behavior: smooth; font-size: 16px; scrollbar-width: thin; scrollbar-color: var(--accent) var(--black); }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Canvas */
#particleCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* Animated Background Blobs */
.bg-blobs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1a8fff 0%, transparent 70%);
  top: -10%; left: -10%;
  animation: blob-float-1 20s ease-in-out infinite;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0066cc 0%, transparent 70%);
  bottom: -10%; right: -10%;
  animation: blob-float-2 25s ease-in-out infinite;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #4da8ff 0%, transparent 70%);
  top: 40%; right: 30%;
  opacity: 0.2;
  animation: blob-float-3 18s ease-in-out infinite;
}
@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, 50px) scale(1.1); }
  66% { transform: translate(-50px, 100px) scale(0.9); }
}
@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, -60px) scale(1.15); }
  66% { transform: translate(60px, -40px) scale(0.95); }
}
@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-120px, 80px) scale(1.2); }
}

/* Noise */
body::after {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}

.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); z-index: 9999; width: 0%; transition: width 0.1s linear; box-shadow: 0 0 15px var(--accent); }

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

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 16px 48px; display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  background: rgba(3,4,8,0.7); border-bottom: 1px solid var(--glass-border);
  transition: transform 0.4s ease, background 0.3s;
}
nav.hidden { transform: translateY(-100%); }
nav.scrolled { background: rgba(3,4,8,0.92); }

.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: opacity 0.3s; }
.logo-link:hover { opacity: 0.85; }
.logo-img { height: 40px; width: auto; filter: drop-shadow(0 0 12px rgba(26,143,255,0.3)); }
.footer-logo-img { height: 36px; width: auto; filter: drop-shadow(0 0 10px rgba(26,143,255,0.25)); }

.logo {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.4rem;
  letter-spacing: -0.03em; display: flex; align-items: center; gap: 1px;
}
.logo .kap { color: var(--white); }
.logo .prompt { color: var(--accent); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--gray-light); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 11px 28px !important; border-radius: 100px !important;
  font-weight: 700 !important; font-size: 0.82rem !important;
  letter-spacing: 0.02em !important; text-transform: none !important;
  transition: transform 0.3s, box-shadow 0.3s !important; border: none;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: scale(1.05) !important; box-shadow: 0 6px 30px var(--accent-glow-strong) !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(3,4,8,0.97); backdrop-filter: blur(20px);
  padding: 24px; z-index: 999; flex-direction: column; gap: 16px;
  border-bottom: 1px solid var(--glass-border);
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a { color: var(--gray-light); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--glass-border); }
.mobile-menu .nav-cta { text-align: center; margin-top: 8px; border-bottom: none !important; display: block; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
  padding: 140px 64px 100px; z-index: 2;
  max-width: 1500px; margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 22px 8px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 100px; font-size: 0.78rem; font-weight: 500;
  color: var(--gray-light); margin-bottom: 32px;
  backdrop-filter: blur(10px); background: var(--glass);
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-badge .pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; position: relative; }
.hero-badge .pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--accent); animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(2.5); opacity: 0; } }

.hero h1 {
  font-family: 'Outfit', sans-serif; font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 0.95; letter-spacing: -0.05em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line-1 { opacity: 0; animation: heroReveal 1s 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero h1 .line-2 { opacity: 0; animation: heroReveal 1s 0.65s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero h1 .line-3 { opacity: 0; animation: heroReveal 1s 0.8s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light) 50%, #80c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero h1 .period { color: var(--accent); }

.hero-sub {
  margin-top: 32px;
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 540px;
  line-height: 1.65;
  font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s 1s ease forwards;
}
.hero-sub .highlight { color: var(--white); font-weight: 500; }

.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 1.15s ease forwards; }

.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 17px 36px; border-radius: 100px; text-decoration: none;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.98rem;
  letter-spacing: -0.01em; transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.7s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px var(--accent-glow-strong); }

.btn-ghost {
  border: 1px solid var(--glass-border); color: var(--white);
  padding: 17px 36px; border-radius: 100px; text-decoration: none;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.98rem;
  backdrop-filter: blur(10px); background: var(--glass);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(26,143,255,0.06); transform: translateY(-2px); }

.hero-trust {
  margin-top: 36px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.3s ease forwards;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-light); font-size: 0.82rem; font-weight: 400;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* Hero Visual - Logo Orbit */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  min-height: 500px;
  opacity: 0; animation: fadeUp 1s 0.7s ease forwards;
}
.logo-orbit {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-logo {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(26,143,255,0.5)) drop-shadow(0 0 30px rgba(26,143,255,0.3));
  animation: logo-float 5s ease-in-out infinite;
  position: relative;
  z-index: 3;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,143,255,0.15);
}
.ring-1 { width: 280px; height: 280px; animation: rotate-ring 20s linear infinite; }
.ring-2 { width: 340px; height: 340px; animation: rotate-ring 30s linear infinite reverse; border-style: dashed; }
.ring-3 { width: 400px; height: 400px; animation: rotate-ring 40s linear infinite; }
@keyframes rotate-ring { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orbit-particle {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
}
.p1 { animation: orbit-1 12s linear infinite; }
.p2 { animation: orbit-2 15s linear infinite; width: 6px; height: 6px; }
.p3 { animation: orbit-3 18s linear infinite; width: 8px; height: 8px; }
.p4 { animation: orbit-4 22s linear infinite; width: 5px; height: 5px; }
@keyframes orbit-1 {
  from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}
@keyframes orbit-2 {
  from { transform: rotate(90deg) translateX(170px) rotate(-90deg); }
  to { transform: rotate(450deg) translateX(170px) rotate(-450deg); }
}
@keyframes orbit-3 {
  from { transform: rotate(180deg) translateX(200px) rotate(-180deg); }
  to { transform: rotate(540deg) translateX(200px) rotate(-540deg); }
}
@keyframes orbit-4 {
  from { transform: rotate(270deg) translateX(120px) rotate(-270deg); }
  to { transform: rotate(630deg) translateX(120px) rotate(-630deg); }
}

.scroll-cue { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); opacity: 0; animation: fadeUp 0.8s 1.5s ease forwards; }
.scroll-cue span { display: block; width: 20px; height: 32px; border: 2px solid var(--gray); border-radius: 20px; position: relative; }
.scroll-cue span::after {
  content: ''; width: 3px; height: 6px; background: var(--accent); border-radius: 2px;
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scroll-dot 2s ease infinite;
}
@keyframes scroll-dot { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 18px 0; overflow: hidden; position: relative; z-index: 2;
  background: rgba(3,4,8,0.5);
  backdrop-filter: blur(10px);
}
.marquee-inner { display: flex; width: max-content; animation: scroll-marquee 30s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Space Mono', monospace; font-weight: 400; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--gray);
  white-space: nowrap; padding: 0 28px; display: flex; align-items: center; gap: 28px;
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--accent); }
.marquee-item::after { content: '◆'; color: var(--accent); font-size: 0.45rem; }
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== STATEMENT ===== */
.statement {
  position: relative; z-index: 2;
  padding: 140px 48px; max-width: 1300px; margin: 0 auto;
  text-align: center;
}
.statement-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--gray-light);
}
.statement-line { display: block; }
.statement-text em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: 1.08em;
  padding: 0 4px;
}

/* ===== SECTIONS ===== */
.section { position: relative; z-index: 2; padding: 140px 48px; max-width: 1400px; margin: 0 auto; }

.section-header { margin-bottom: 80px; }

.section-label {
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }

.section-title {
  font-family: 'Outfit', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.05;
  letter-spacing: -0.04em; max-width: 800px;
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.4s, background 0.4s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(26,143,255,0.25); background: rgba(26,143,255,0.03); }
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card::before {
  content: ''; position: absolute;
  bottom: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(26,143,255,0.08) 0%, transparent 70%);
  transition: opacity 0.4s;
  opacity: 0;
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,143,255,0.12), rgba(26,143,255,0.04));
  border: 1px solid rgba(26,143,255,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
  transition: transform 0.4s;
  position: relative; z-index: 2;
}
.service-card:hover .service-icon-wrap { transform: rotate(-5deg) scale(1.05); }
.service-icon-wrap svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 14px; letter-spacing: -0.02em; position: relative; z-index: 2; }
.service-card > p { color: var(--gray-light); font-size: 0.93rem; line-height: 1.65; font-weight: 300; position: relative; z-index: 2; flex-grow: 1; margin-bottom: 20px; }
.service-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 4rem; line-height: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(26,143,255,0.06));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; position: relative; z-index: 2; }
.service-tags span {
  font-family: 'Space Mono', monospace; font-size: 0.68rem;
  padding: 4px 10px;
  background: rgba(26,143,255,0.08);
  border: 1px solid rgba(26,143,255,0.15);
  border-radius: 100px;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}

/* ===== SHOWCASE ===== */
.showcase { position: relative; z-index: 2; overflow: hidden; padding: 0 48px; }
.showcase-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; min-height: 80vh; padding: 120px 0; }
.showcase-text h2 { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.05; letter-spacing: -0.04em; margin-top: 12px; margin-bottom: 24px; }
.showcase-lead { color: var(--gray-light); font-size: 1.05rem; line-height: 1.7; font-weight: 300; margin-bottom: 32px; max-width: 480px; }

.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.comp-col {
  padding: 24px; border-radius: 16px; border: 1px solid var(--glass-border); background: var(--glass);
}
.comp-col.comp-new { border-color: rgba(26,143,255,0.3); background: rgba(26,143,255,0.04); }
.comp-label {
  font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-light);
  margin-bottom: 16px;
}
.comp-col.comp-new .comp-label { color: var(--accent); }
.comp-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.comp-col li { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--gray-light); font-weight: 400; }
.comp-col.comp-new li { color: var(--white); }

.showcase-visual { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); }
.showcase-visual canvas { width: 100%; height: 100%; display: block; }
.visual-overlay { position: absolute; inset: 0; pointer-events: none; }
.code-floater {
  position: absolute;
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  padding: 6px 14px;
  background: rgba(3,4,8,0.85);
  border: 1px solid rgba(26,143,255,0.3);
  border-radius: 8px;
  color: var(--accent-light);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(26,143,255,0.1);
}
.code-floater.f1 { top: 20%; left: 12%; animation: float-code 6s ease-in-out infinite; }
.code-floater.f2 { top: 55%; right: 10%; animation: float-code 7s ease-in-out infinite 1s; }
.code-floater.f3 { bottom: 18%; left: 20%; animation: float-code 8s ease-in-out infinite 2s; }
@keyframes float-code {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== STATS ===== */
.stats-bar {
  position: relative; z-index: 2;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 72px 48px;
  background: linear-gradient(180deg, transparent, rgba(26,143,255,0.02), transparent);
}
.stats-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; text-align: center; }
.stat-item h3 {
  font-family: 'Outfit', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4rem); letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent-light) 60%, #80c4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.stat-item p { color: var(--gray); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== PROCESS ===== */
.process-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.process-timeline::before {
  content: ''; position: absolute; left: 31px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(26,143,255,0.3) 50%, transparent 100%);
  box-shadow: 0 0 12px var(--accent-glow);
}
.process-step { display: flex; gap: 36px; margin-bottom: 64px; position: relative; }
.process-step:last-child { margin-bottom: 0; }
.step-marker {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--black); position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s, transform 0.4s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.step-marker span {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: var(--accent);
  transition: color 0.4s;
}
.process-step:hover .step-marker { background: var(--accent); transform: scale(1.1); }
.process-step:hover .step-marker span { color: var(--white); }
.step-content h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.35rem; margin-bottom: 10px; margin-top: 4px; letter-spacing: -0.02em; }
.step-content p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.7; font-weight: 300; max-width: 500px; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 44px 32px;
  position: relative; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s, background 0.4s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(26,143,255,0.2); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(26,143,255,0.08), rgba(26,143,255,0.02));
  box-shadow: 0 8px 60px rgba(26,143,255,0.15);
}
.price-card.featured:hover { box-shadow: 0 12px 80px rgba(26,143,255,0.25); }

.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white); padding: 5px 20px;
  border-radius: 100px; font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.price-tier { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 12px; }
.price-amount { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 3rem; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.price-period { color: var(--gray); font-size: 0.85rem; font-weight: 300; margin-bottom: 32px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.price-features li { color: var(--gray-light); font-size: 0.88rem; font-weight: 400; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.price-features li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--accent); margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-6' stroke='%231a8fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-btn {
  display: block; text-align: center; padding: 15px 32px; border-radius: 100px;
  text-decoration: none; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
  transition: all 0.3s;
}
.price-btn.solid { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px var(--accent-glow); }
.price-btn.solid:hover { transform: scale(1.03); box-shadow: 0 8px 30px var(--accent-glow-strong); }
.price-btn.outline { border: 1px solid var(--glass-border); color: var(--white); background: transparent; }
.price-btn.outline:hover { border-color: var(--accent); background: rgba(26,143,255,0.06); }

.pricing-footnote { text-align: center; color: var(--gray); font-size: 0.85rem; font-weight: 300; margin-top: 40px; }

/* ===== FAQ ===== */
.faq-section { max-width: 900px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item:hover { border-color: rgba(26,143,255,0.2); }
.faq-item[open] { background: rgba(26,143,255,0.03); border-color: rgba(26,143,255,0.2); }
.faq-item summary {
  padding: 22px 28px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.05rem;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--white); user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a8fff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p {
  padding: 0 28px 22px; color: var(--gray-light);
  font-size: 0.93rem; line-height: 1.7; font-weight: 300;
}

/* ===== CONTACT ===== */
.contact-section { padding-top: 120px; padding-bottom: 120px; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-title {
  font-family: 'Outfit', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.05;
  letter-spacing: -0.04em; margin: 12px 0 20px;
}
.contact-desc { color: var(--gray-light); font-size: 1.05rem; line-height: 1.7; font-weight: 300; margin-bottom: 40px; max-width: 440px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--glass-border);
  text-decoration: none; color: var(--white);
  transition: all 0.3s;
}
a.contact-detail-card:hover { border-color: var(--accent); background: rgba(26,143,255,0.04); transform: translateX(4px); }
.detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(26,143,255,0.1); border: 1px solid rgba(26,143,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.detail-text { display: flex; flex-direction: column; gap: 2px; }
.detail-label {
  font-family: 'Space Mono', monospace; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray);
}
.detail-value { font-size: 0.95rem; font-weight: 500; color: var(--white); }

.contact-form-wrap {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 44px 40px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: ''; position: absolute;
  top: -1px; left: -1px; right: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-light);
}
.form-group .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--gray); font-size: 0.75rem; }

.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(26,143,255,0.04);
  box-shadow: 0 0 0 3px rgba(26,143,255,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); font-weight: 300; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option { background: #0a0a0a; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; font-family: 'Outfit', sans-serif; }

.form-submit {
  width: 100%; margin-top: 10px;
  justify-content: center; font-size: 1rem;
}
.submit-icon { transition: transform 0.3s; }
.form-submit:hover .submit-icon { transform: translateX(4px); }

.form-note { color: var(--gray); font-size: 0.78rem; font-weight: 300; text-align: center; margin-top: 4px; }

.form-success { text-align: center; padding: 60px 20px; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(26,143,255,0.1); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin: 0 auto 24px;
  animation: success-pop 0.5s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 0 40px var(--accent-glow);
}
@keyframes success-pop { from { transform: scale(0) rotate(-180deg); } to { transform: scale(1) rotate(0); } }
.form-success h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { color: var(--gray-light); font-weight: 300; line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--glass-border);
  padding: 72px 48px 40px;
  max-width: 1400px; margin: 0 auto;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .logo-link { margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; font-weight: 300; max-width: 320px; margin-top: 12px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; color: var(--white); }
.footer-col a { display: block; color: var(--gray); text-decoration: none; font-size: 0.88rem; font-weight: 300; margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-location { display: block; color: var(--gray); font-size: 0.8rem; font-weight: 300; font-style: italic; margin-top: 4px; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--gray); font-size: 0.78rem; font-weight: 300; }
.footer-bottom a { color: var(--gray); text-decoration: none; font-size: 0.78rem; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 24px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
[data-parallax] { will-change: transform; }

/* ===== LEGAL PAGES ===== */
.legal-page { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 140px 48px 100px; }
.legal-page h1 { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2.5rem; letter-spacing: -0.04em; margin-bottom: 48px; }
.legal-page h2 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.3rem; margin-top: 40px; margin-bottom: 16px; color: var(--accent); }
.legal-page p, .legal-page li { color: var(--gray-light); font-size: 0.95rem; line-height: 1.7; font-weight: 300; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page a { color: var(--accent); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 120px 32px 80px; gap: 40px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-badge, .hero-trust { justify-content: center; }
  .hero-trust { display: flex; }
  .hero-ctas { justify-content: center; }
  .logo-orbit { width: 340px; height: 340px; }
  .orbit-logo { width: 180px; }
  .ring-1 { width: 230px; height: 230px; }
  .ring-2 { width: 280px; height: 280px; }
  .ring-3 { width: 330px; height: 330px; }
  @keyframes orbit-1 { from { transform: rotate(0deg) translateX(115px) rotate(0deg); } to { transform: rotate(360deg) translateX(115px) rotate(-360deg); } }
  @keyframes orbit-2 { from { transform: rotate(90deg) translateX(140px) rotate(-90deg); } to { transform: rotate(450deg) translateX(140px) rotate(-450deg); } }
  @keyframes orbit-3 { from { transform: rotate(180deg) translateX(165px) rotate(-180deg); } to { transform: rotate(540deg) translateX(165px) rotate(-540deg); } }
  @keyframes orbit-4 { from { transform: rotate(270deg) translateX(100px) rotate(-270deg); } to { transform: rotate(630deg) translateX(100px) rotate(-630deg); } }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .statement { padding: 100px 32px; }
}
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .logo-img { height: 32px; }
  .hero { padding: 110px 20px 60px; }
  .logo-orbit { width: 280px; height: 280px; }
  .orbit-logo { width: 140px; }
  .ring-1 { width: 190px; height: 190px; }
  .ring-2 { width: 230px; height: 230px; }
  .ring-3 { width: 270px; height: 270px; }
  @keyframes orbit-1 { from { transform: rotate(0deg) translateX(95px) rotate(0deg); } to { transform: rotate(360deg) translateX(95px) rotate(-360deg); } }
  @keyframes orbit-2 { from { transform: rotate(90deg) translateX(115px) rotate(-90deg); } to { transform: rotate(450deg) translateX(115px) rotate(-450deg); } }
  @keyframes orbit-3 { from { transform: rotate(180deg) translateX(135px) rotate(-180deg); } to { transform: rotate(540deg) translateX(135px) rotate(-540deg); } }
  @keyframes orbit-4 { from { transform: rotate(270deg) translateX(80px) rotate(-270deg); } to { transform: rotate(630deg) translateX(80px) rotate(-630deg); } }
  .section { padding: 90px 20px; }
  .section-header { margin-bottom: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .comparison { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; }
  .showcase { padding: 0 20px; }
  .stats-bar { padding: 48px 20px; }
  .contact-section { padding: 80px 20px; }
  .contact-form-wrap { padding: 32px 24px; }
  footer { padding: 48px 20px 32px; }
  .legal-page { padding: 120px 20px 80px; }
  .statement { padding: 80px 20px; }
  .blob-1, .blob-2, .blob-3 { width: 300px; height: 300px; }
}
