:root {
  --bg: #ffffff;
  --text: #1e1a2b;
  --muted: #665f73;
  --deep: #24143f;
  --violet: #6938c7;
  --gold: #c99a36;
  --soft: #f7f2ff;
  --soft-gold: #fff7e7;
  --border: rgba(105, 56, 199, 0.16);
  --shadow: 0 22px 60px rgba(36, 20, 63, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.section-pad { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  width: min(1180px, 94%);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--deep);
  font-size: 1.12rem;
}
.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--violet));
  color: white;
  box-shadow: 0 10px 25px rgba(105,56,199,.25);
}
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 700; }
.nav-links a:hover { color: var(--violet); }
.menu-toggle { display: none; border: 0; background: var(--soft); color: var(--deep); border-radius: 12px; padding: 10px 14px; font-size: 1.3rem; }

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(201,154,54,.18), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(105,56,199,.16), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .78rem;
  margin-bottom: 14px;
}
h1 { font-size: clamp(3.4rem, 8vw, 7.5rem); line-height: .9; color: var(--deep); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; color: var(--deep); margin-bottom: 18px; }
h3 { color: var(--deep); font-size: 1.3rem; margin-bottom: 10px; }
.hero h2 { color: var(--violet); font-size: clamp(1.6rem, 3vw, 2.45rem); }
.hero-text { font-size: 1.15rem; color: var(--muted); max-width: 650px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--deep), var(--violet)); color: white; box-shadow: 0 16px 35px rgba(105,56,199,.28); }
.btn-secondary { background: white; color: var(--deep); border: 1px solid var(--border); box-shadow: 0 10px 25px rgba(36,20,63,.08); }

.hero-card {
  min-height: 470px;
  border-radius: 40px;
  background: linear-gradient(160deg, #fff, #f8f1ff 60%, #fff7e7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-card:before, .hero-card:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(201,154,54,.16);
}
.hero-card:before { width: 180px; height: 180px; top: -55px; right: -50px; }
.hero-card:after { width: 120px; height: 120px; bottom: -35px; left: -25px; background: rgba(105,56,199,.12); }
.moon-orbit {
  width: 210px;
  height: 210px;
  border: 1px solid rgba(105,56,199,.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: rgba(255,255,255,.55);
}
.moon { font-size: 6.2rem; color: var(--gold); text-shadow: 0 18px 38px rgba(201,154,54,.24); }
.hero-card p { color: var(--muted); max-width: 330px; }

.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: start; }
.content-box, .contact-box, .feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.content-box p + p { margin-top: 16px; }
.center-title { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.center-title p { color: var(--muted); }
.services { background: linear-gradient(180deg, #fff 0%, #faf7ff 100%); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(36,20,63,.08);
  min-height: 220px;
  transition: transform .2s ease, border .2s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(105,56,199,.35); }
.service-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--soft-gold);
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.service-card p { color: var(--muted); }
.feature-card {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff, #f7f1ff);
}
.feature-card p { color: var(--muted); max-width: 760px; }
.visual-strip { padding: 28px 0; background: var(--deep); color: white; }
.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; text-align: center; font-weight: 800; }
.strip-grid div { padding: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.06); }
.contact { background: radial-gradient(circle at center, rgba(201,154,54,.12), transparent 40%); }
.contact-box { text-align: center; max-width: 850px; }
.contact-box p { color: var(--muted); margin-bottom: 26px; }
.footer { padding: 34px 0; background: #120b20; color: white; }
.footer-content { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.82); }
.footer strong { color: white; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 3%;
    right: 3%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; border-radius: 12px; }
  .nav-links a:hover { background: var(--soft); }
  .hero { min-height: auto; }
  .hero-grid, .two-col, .feature-card { grid-template-columns: 1fr; display: grid; }
  .feature-card { justify-items: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .section-pad { padding: 64px 0; }
  .hero-card { min-height: 360px; padding: 28px; }
  .moon-orbit { width: 160px; height: 160px; }
  .moon { font-size: 4.6rem; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-actions, .btn { width: 100%; }
  .footer-content { flex-direction: column; text-align: center; }
}
