:root {
  --bg: #080d1a;
  --panel: rgba(255,255,255,.055);
  --line: rgba(255,255,255,.12);
  --text: #f7f8fb;
  --muted: #aeb8ca;
  --orange: #ff8a00;
  --red: #f51b42;
  --yellow: #ffc400;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(245,27,66,.12), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(255,138,0,.11), transparent 30%),
    var(--bg);
  overflow-x: hidden;
}

.page-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: 30px clamp(22px, 5vw, 76px) 24px;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 88%);
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .22;
  z-index: -2;
  animation: drift 10s ease-in-out infinite alternate;
}

.ambient-one { width: 300px; height: 300px; background: var(--red); top: -120px; right: 12%; }
.ambient-two { width: 340px; height: 340px; background: var(--orange); bottom: -170px; left: 8%; animation-delay: -4s; }

.site-header, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,.28);
  overflow: hidden;
}

.logo-wrap img { width: 48px; height: 48px; object-fit: contain; }

.brand-name { font-size: 16px; letter-spacing: .16em; font-weight: 600; }
.brand-name strong { font-weight: 800; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  color: #c7d0df;
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28dc8b;
  box-shadow: 0 0 0 5px rgba(40,220,139,.12);
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 50px 0 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d5dbea;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 700;
  margin-bottom: 25px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--yellow), var(--orange) 48%, var(--red));
  background-clip: text;
  -webkit-background-clip: text;
}

.intro {
  max-width: 720px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.8;
}

.launch-card {
  width: min(480px, 100%);
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.launch-card small { display: block; color: #9ba7ba; font-size: 10px; letter-spacing: .18em; margin-bottom: 6px; }
.launch-card strong { font-size: 25px; }

.pulse-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,138,0,.42);
  display: grid;
  place-items: center;
}

.pulse-mark span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 0 0 0 rgba(255,104,0,.45);
  animation: pulse 2s infinite;
}

.visual-panel {
  min-height: 530px;
  display: grid;
  place-items: center;
}

.orbital {
  width: min(500px, 86vw);
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255,255,255,.085) 0%, rgba(255,255,255,.015) 47%, transparent 69%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  animation: rotate 22s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  top: 10%;
  left: 14%;
  box-shadow: 0 0 22px rgba(255,138,0,.9);
}

.orbit-1 { width: 82%; height: 82%; }
.orbit-2 { width: 58%; height: 58%; animation-direction: reverse; animation-duration: 15s; }
.orbit-2::after { background: var(--red); top: auto; left: auto; right: 8%; bottom: 18%; box-shadow: 0 0 22px rgba(245,27,66,.9); }

.center-logo {
  width: 142px;
  height: 142px;
  border-radius: 38px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 25px 80px rgba(0,0,0,.4), 0 0 70px rgba(255,107,0,.15);
  animation: float 5s ease-in-out infinite;
}
.center-logo img { width: 112px; height: 112px; object-fit: contain; }

.focus-chip {
  position: absolute;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11,16,32,.72);
  color: #e8ebf2;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

.chip-ai { top: 12%; right: 2%; }
.chip-digital { bottom: 12%; right: 4%; }
.chip-consulting { bottom: 22%; left: -2%; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  color: #78859a;
  font-size: 12px;
}

.site-footer p { margin: 0; }
.footer-note { text-align: right; }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 14px rgba(255,104,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,104,0,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes drift { to { transform: translate3d(30px, 24px, 0) scale(1.08); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .visual-panel { min-height: 450px; }
  .orbital { width: min(450px, 88vw); }
}

@media (max-width: 640px) {
  .page-shell { padding: 20px 18px; }
  .status-pill { display: none; }
  .brand-name { font-size: 14px; }
  .logo-wrap { width: 48px; height: 48px; border-radius: 13px; }
  .logo-wrap img { width: 41px; height: 41px; }
  .hero { gap: 28px; padding: 62px 0 28px; }
  h1 { font-size: clamp(44px, 14vw, 68px); }
  .intro { font-size: 15px; line-height: 1.72; }
  .visual-panel { min-height: 360px; }
  .center-logo { width: 105px; height: 105px; border-radius: 28px; }
  .center-logo img { width: 82px; height: 82px; }
  .focus-chip { font-size: 10px; padding: 8px 11px; }
  .chip-ai { right: -1%; }
  .chip-consulting { left: -3%; bottom: 18%; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
