:root {
  --bg: #020204;
  --text: #f6f4f7;
  --muted: rgba(246, 244, 247, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --magenta: #ff2eae;
  --violet: #8a3dff;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-glow {
  position: fixed;
  inset: -20vh -20vw auto auto;
  width: 70vw;
  height: 80vh;
  background: radial-gradient(circle, rgba(255,46,174,0.12), transparent 62%);
  pointer-events: none;
  z-index: -3;
}

.header {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 10;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav a {
  font-size: 11px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  transition: color .2s ease;
}

.nav a:hover { color: white; }

.section-shell {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.hero {
  min-height: 675px;
  display: grid;
  align-items: center;
  position: relative;
  padding: 36px 0 94px;
}

.hero-copy {
  max-width: 455px;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 360px;
  max-width: 78vw;
  height: auto;
  margin-bottom: 32px;
}

.neon-orbit {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.orbit-one {
  width: 770px;
  height: 970px;
  right: -260px;
  top: 86px;
  border-left: 5px solid rgba(255, 46, 174, 0.95);
  border-top: 2px solid rgba(143, 62, 255, 0.55);
  transform: rotate(34deg);
  filter: drop-shadow(0 0 12px rgba(255, 46, 174, 0.95)) drop-shadow(0 0 45px rgba(143, 62, 255, 0.65));
  opacity: 0.96;
}

.orbit-two {
  width: 665px;
  height: 865px;
  right: -218px;
  top: 116px;
  border-left: 1px solid rgba(255, 46, 174, 0.18);
  transform: rotate(34deg);
  filter: drop-shadow(0 0 25px rgba(143, 62, 255, 0.35));
  opacity: 0.8;
}

.accent-line {
  width: 42px;
  height: 2px;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(255,46,174,.9);
  margin: 0 0 28px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

.hero p, .focus-intro p, .about-text p, .feature p, .contact p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, border .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  border: 1px solid rgba(255,46,174,.8);
  box-shadow: 0 0 24px rgba(255,46,174,.22), inset 0 0 18px rgba(255,46,174,.06);
  background: rgba(255,46,174,.035);
}

.button.ghost { border: 1px solid var(--line); color: rgba(255,255,255,.82); }

section { padding: 90px 0; }

.section-label {
  color: var(--magenta);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 70px;
  align-items: center;
}

.portrait-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  max-width: 330px;
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(2,2,4,.4));
  pointer-events: none;
}

.portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-text h2, .focus-intro h2, .feature h2, .philosophy h2, .contact h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 26px;
}

.statement { color: white !important; font-size: 19px !important; }
.closing-line { color: white !important; }

.focus-intro { max-width: 660px; margin-bottom: 34px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 246px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,.025));
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.card-number { color: var(--magenta); font-size: 13px; letter-spacing: .18em; font-weight: 800; }

.card h3 {
  margin: 66px 0 16px;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.card p { color: var(--muted); line-height: 1.75; }

.feature-card, .contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 48px;
  border: 1px solid rgba(255,46,174,.32);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(255,255,255,.06), rgba(255,46,174,.05));
  box-shadow: 0 0 34px rgba(255,46,174,.08);
}

.feature-card p { max-width: 650px; }

.philosophy { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

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

.questions span {
  color: rgba(255,255,255,.82);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  line-height: 1.5;
}

.footer {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 58px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.footer img {
  width: 108px;
  height: auto;
  opacity: .95;
  margin-bottom: 14px;
}

.footer strong { color: white; letter-spacing: .08em; text-transform: uppercase; }

.footer-links {
  display: flex;
  gap: 22px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}

@media (max-width: 850px) {
  .header {
    align-items: flex-start;
    width: min(var(--max), calc(100% - 36px));
  }

  .nav { display: none; }

  .brand img { width: 96px; }

  .section-shell { width: min(var(--max), calc(100% - 36px)); }

  .hero {
    min-height: 610px;
    padding-top: 28px;
  }

  .hero-logo {
    width: 270px;
    max-width: 78vw;
  }

  .orbit-one {
    width: 530px;
    height: 680px;
    right: -355px;
    top: 150px;
    opacity: .72;
  }

  .orbit-two { display: none; }

  .about-grid, .cards, .questions { grid-template-columns: 1fr; }

  .about-grid { gap: 34px; }

  .portrait-wrap { max-width: 320px; }

  .feature-card, .contact-box, .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
