:root {
  --bg: #090c12;
  --panel: #101521;
  --line: rgba(160, 196, 255, 0.2);
  --text: #e9eefb;
  --muted: #a8b4ce;
  --accent: #8cc8ff;
  --accent2: #9d8cff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at 15% 10%, #121a2b 0%, var(--bg) 45%) fixed;
  color: var(--text);
  min-height: 100vh;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(130,160,220,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,160,220,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  z-index: -1;
}

.container { width: min(1040px, 92%); margin: 0 auto; }

.site-header {
  width: min(1120px, 94%);
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11,16,26,0.65);
  backdrop-filter: blur(10px);
}

.logo { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 700; }
.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(140,200,255,.25), rgba(157,140,255,.3));
  box-shadow: 0 0 22px rgba(140, 200, 255, 0.35);
  border: 1px solid rgba(173, 214, 255, .45);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
}
.logo-mark i {
  display: block;
  width: 3px;
  height: 13px;
  border-radius: 99px;
  background: linear-gradient(180deg, #d5ecff, #87c6ff);
  transform: rotate(18deg);
  box-shadow: 0 0 8px rgba(139,196,255,.7);
}
.logo-mark i:nth-child(2) { transform: rotate(10deg); height: 14px; }
.logo-mark i:nth-child(3) { transform: rotate(2deg); height: 12px; }

.hero { padding: 80px 0 48px; text-align: center; }
.eyebrow { letter-spacing: .12em; color: var(--muted); font-size: .76rem; font-weight: 600; }
h1 { font-size: clamp(2rem, 6vw, 4.2rem); margin: 14px 0; line-height: 1.05; }
.subhead { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: clamp(1rem, 2.3vw, 1.24rem); }

.hero-actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  color: #061120;
  background: linear-gradient(130deg, var(--accent), #c0d6ff);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(135, 188, 255, .28); }
.cta:active { transform: translateY(0); }
.cta:focus-visible { outline: 2px solid #c9deff; outline-offset: 2px; }
.cta-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.cta-ghost:hover { box-shadow: none; border-color: rgba(170, 205, 255, .45); }

.hero-panel {
  margin: 44px auto 0;
  height: 240px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(146,190,255,0.10), rgba(137,110,255,0.08));
  position: relative;
  overflow: hidden;
}
.orb { position: absolute; width: 160px; height: 160px; border-radius: 50%; filter: blur(10px); opacity: .65; }
.orb-a { top: 24px; left: 18%; background: #7ac7ff; }
.orb-b { bottom: 18px; right: 20%; background: #a48cff; }
.trace {
  position: absolute;
  inset: 50% 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  box-shadow: 0 0 18px rgba(149,190,255,0.7);
}

.claw-trace {
  position: absolute;
  width: 140px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(180, 225, 255, .95), transparent);
  box-shadow: 0 0 14px rgba(140, 200, 255, .55);
  transform: rotate(-20deg);
  opacity: .8;
}
.claw-1 { top: 34%; left: 13%; }
.claw-2 { top: 43%; left: 17%; width: 150px; opacity: .7; }
.claw-3 { top: 52%; left: 21%; width: 132px; opacity: .6; }

.pillars {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 24px auto 30px;
}
.pillars article {
  border: 1px solid var(--line);
  background: rgba(16,21,33,0.56);
  border-radius: 18px;
  padding: 22px;
}
.pillars h3 { margin: 0 0 8px; }
.pillars p, .copy, .small { color: var(--muted); }

.section { padding: 40px 0; }
.section h2 { margin: 8px 0 0; font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
.steps { margin: 8px 0 0; padding-left: 20px; color: var(--muted); display: grid; gap: 10px; }

.social-proof {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(16,21,33,0.45);
  padding: 28px;
}
.quote { font-size: clamp(1.2rem, 2.5vw, 1.7rem); max-width: 760px; }

.contact {
  text-align: center;
  padding: 70px 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 28px 0 36px;
}

@media (max-width: 720px) {
  .hero { padding-top: 56px; }
  .site-header { border-radius: 16px; }
}
