:root {
  --bg: #03111a;
  --line: rgba(43, 95, 124, 0.45);
  --text: #f7fafc;
  --muted: #d6e1e9;
  --green: #2ee55f;
  --green-2: #1fc855;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 66% 15%, rgba(93, 149, 197, 0.32), transparent 24%),
    linear-gradient(135deg, #020b12 0%, #041624 58%, #03111a 100%);
  min-height: 100vh;
}
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 32%, rgba(46, 229, 95, 0.05), transparent 24%),
    radial-gradient(circle at 74% 14%, rgba(121, 184, 231, 0.12), transparent 20%),
    radial-gradient(circle at 76% 76%, rgba(46, 229, 95, 0.05), transparent 18%);
}
.page-shell {
  position: relative;
  max-width: 1490px;
  margin: 0 auto;
  padding: 38px 40px 20px;
}
.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.logo-wrap { text-decoration: none; }
.logo {
  width: 340px;
  max-width: 100%;
  display: block;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(46, 229, 95, 0.85);
  color: #d4ffe0;
  background: rgba(3, 18, 15, 0.26);
  box-shadow: 0 0 26px rgba(46, 229, 95, 0.12);
  font-size: 1.05rem;
  font-weight: 600;
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 38px;
  align-items: center;
}
.hero-copy { padding-top: 6px; }
.eyebrow {
  display: inline-flex;
  padding: 12px 22px;
  border: 1px solid rgba(46, 229, 95, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(2, 15, 23, 0.62);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 1rem;
}
.hero-copy h1 {
  font-size: clamp(3.5rem, 5.8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 24px 0 20px;
  font-weight: 900;
}
.hero-copy h1 span { color: var(--green); }
.accent-line {
  width: 126px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(46, 229, 95, 0.08));
  margin-bottom: 22px;
}
.lead {
  max-width: 760px;
  font-size: clamp(1.2rem, 1.55vw, 1.75rem);
  line-height: 1.52;
  color: #ecf3f8;
  margin: 0 0 28px;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
}
.feature-card {
  min-height: 126px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(39, 88, 114, 0.55);
  background: rgba(3, 15, 23, 0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 229, 95, 0.08);
  border: 1px solid rgba(46, 229, 95, 0.24);
  flex-shrink: 0;
}
.feature-icon svg, .social-links svg { width: 26px; height: 26px; }
.feature-text { min-width: 0; }
.feature-card h3,
.ghost-action strong {
  margin: 3px 0 8px;
  font-size: 1rem;
  line-height: 1.15;
}
.feature-card p,
.ghost-action small {
  margin: 0;
  color: #d5dfe8;
  font-size: 0.95rem;
  line-height: 1.38;
}
.highlight-card { padding: 0; overflow: hidden; }
.ghost-action {
  width: 100%;
  height: 100%;
  min-height: 126px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  text-align: left;
  padding: 16px 18px;
  border: none;
  color: inherit;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(3, 15, 23, 0.62), rgba(3, 21, 16, 0.82));
}
.ghost-action:hover .feature-icon {
  box-shadow: 0 0 18px rgba(46, 229, 95, 0.22);
  transform: translateY(-1px);
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-art {
  width: 100%;
  max-width: 745px;
  border-radius: 30px;
  display: block;
  box-shadow: 0 30px 65px rgba(0,0,0,0.38);
}
.site-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(39, 88, 114, 0.5);
  text-align: center;
}
.social-block p {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
}
.social-links {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.social-links a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(3, 15, 23, 0.58);
  border: 1px solid rgba(46, 229, 95, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 229, 95, 0.18);
}
.footer-rights {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(39, 88, 114, 0.45);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  color: #eef4f8;
  font-size: 1rem;
}
.footer-rights .divider { opacity: 0.68; }
.floating { animation: floatY 6.2s ease-in-out infinite; }
.pulse-soft { animation: pulseSoft 2.6s ease-in-out infinite; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes pulseSoft {
  0%,100% { box-shadow: 0 0 26px rgba(46, 229, 95, 0.12); }
  50% { box-shadow: 0 0 34px rgba(46, 229, 95, 0.22); }
}
@media (max-width: 1280px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-content: center; }
  .feature-strip { max-width: none; }
}
@media (max-width: 960px) {
  .page-shell { padding: 20px 18px 18px; }
  .topbar { flex-direction: column; align-items: flex-start; }
  .feature-strip { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 3.2rem; }
  .lead { font-size: 1.08rem; }
  .footer-rights { font-size: 0.95rem; }
}
@media (prefers-reduced-motion: reduce) {
  .floating, .pulse-soft, .social-links a { animation: none !important; transition: none !important; }
}
