
:root {
  --bg: #06100f;
  --bg-soft: #0a1715;
  --panel: rgba(12, 29, 26, 0.78);
  --panel-solid: #0d201c;
  --line: rgba(195, 255, 225, 0.14);
  --text: #f3f7f5;
  --muted: #9fb1aa;
  --green: #74ff9a;
  --green-2: #22d765;
  --silver: #d7e2de;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 7%, rgba(58, 223, 117, 0.12), transparent 26%),
    linear-gradient(180deg, #050b0b 0%, var(--bg) 48%, #07110f 100%);
  color: var(--text);
  font-family: Inter, sans-serif;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,.015), rgba(255,255,255,0));
  z-index: -1;
}
.background-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .2;
  background-image:
    linear-gradient(rgba(126,255,169,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,255,169,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 28px rgba(72,255,133,.14);
}
.brand div { display: flex; flex-direction: column; }
.brand-name { font: 700 17px/1 Space Grotesk, sans-serif; letter-spacing: .12em; }
.brand-subtitle { color: var(--green); font-size: 10px; letter-spacing: .32em; margin-top: 7px; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; color: #c7d1cd; }
.main-nav a:not(.nav-button):hover { color: var(--green); }
.nav-button, .primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 7px;
  font-weight: 700;
  transition: .2s ease;
}
.nav-button, .primary-button {
  background: linear-gradient(135deg, var(--green), #37e876);
  color: #04100b;
  box-shadow: 0 14px 35px rgba(50, 226, 111, .15);
}
.nav-button:hover, .primary-button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.secondary-button {
  border: 1px solid rgba(203,255,221,.25);
  background: rgba(255,255,255,.025);
  color: var(--text);
}
.secondary-button:hover { border-color: var(--green); color: var(--green); }
.menu-button { display: none; }

.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
  padding: 70px 0 90px;
}
.eyebrow {
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .22em;
}
.hero h1, h2, h3 { font-family: Space Grotesk, sans-serif; }
.hero h1 {
  margin: 22px 0;
  font-size: clamp(58px, 7vw, 94px);
  line-height: .95;
  letter-spacing: -.055em;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(141,255,177,.92);
  text-shadow: 0 0 36px rgba(60,255,123,.15);
}
.hero-lead {
  color: #b8c6c0;
  font-size: 18px;
  line-height: 1.75;
  max-width: 690px;
}
.hero-lead strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.hero-proof {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-proof div { display: flex; flex-direction: column; gap: 5px; }
.hero-proof strong { font: 700 24px Space Grotesk; }
.hero-proof span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 540px; }
.hero-visual > img {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(175,255,205,.15), 0 35px 110px rgba(0,0,0,.58);
}
.logo-halo {
  position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(67,255,127,.21), transparent 66%);
  filter: blur(25px);
}
.live-card {
  position: absolute;
  z-index: 3;
  width: 215px;
  padding: 18px 20px;
  background: rgba(7,22,18,.9);
  border: 1px solid rgba(139,255,177,.24);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  border-radius: 9px;
}
.live-card span { color: var(--green); font-size: 9px; letter-spacing: .18em; font-weight: 800; }
.live-card strong { display: block; margin-top: 8px; font-size: 14px; }
.card-one { left: -10px; top: 90px; }
.card-two { right: -15px; bottom: 105px; }

.ticker-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  font: 700 13px Space Grotesk;
  letter-spacing: .2em;
  color: #d9e5df;
}
.ticker-strip i { color: var(--green); font-style: normal; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 120px 0;
}
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading h2, .split-section h2, .about-card h2, .cta-section h2 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  margin: 16px 0 20px;
  letter-spacing: -.04em;
}
.section-heading p, .split-section p, .about-card p, .cta-section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.feature-card {
  min-height: 290px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(15,35,30,.8), rgba(8,22,19,.66));
  border: 1px solid var(--line);
  border-radius: 11px;
}
.feature-number {
  color: var(--green);
  font: 700 12px Space Grotesk;
  letter-spacing: .14em;
  margin-bottom: 65px;
}
.feature-card h3 { font-size: 22px; margin: 0 0 14px; }
.feature-card p { color: var(--muted); line-height: 1.65; margin: 0; font-size: 14px; }

.dashboard-section {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  padding: 20px 0 110px;
}
.dashboard-shell {
  background: rgba(7,20,17,.84);
  border: 1px solid rgba(139,255,177,.2);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 120px rgba(0,0,0,.38);
}
.dashboard-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
}
.status-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 14px var(--green); margin-right: 8px;
}
.dashboard-grid { display: grid; grid-template-columns: 1.65fr .8fr; }
.dashboard-main { padding: 48px; border-right: 1px solid var(--line); }
.mini-label { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.dashboard-main h3 { font-size: 38px; margin: 14px 0; }
.dashboard-main > p { color: var(--muted); line-height: 1.7; }
.rail-graphic { display: grid; gap: 8px; margin-top: 38px; }
.rail {
  height: 38px; display: flex; align-items: center; padding: 0 15px;
  border-left: 3px solid var(--green);
  background: linear-gradient(90deg, rgba(68,255,129,.13), transparent);
  color: #cfddd7; font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
}
.rail.extension { margin-inline: 22px; opacity: .7; }
.rail.mid { border-color: white; background: linear-gradient(90deg, rgba(255,255,255,.12), transparent); }
.rail.lower { border-left: none; border-right: 3px solid var(--green); justify-content: flex-end; background: linear-gradient(270deg, rgba(68,255,129,.13), transparent); }
.dashboard-side { padding: 28px; display: grid; gap: 13px; }
.stat-box {
  padding: 23px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 9px;
}
.stat-box span { color: var(--muted); font-size: 9px; letter-spacing: .16em; font-weight: 800; }
.stat-box strong { display: block; font: 700 40px Space Grotesk; margin: 10px 0 3px; }
.stat-box p { color: var(--muted); margin: 0; font-size: 13px; line-height: 1.6; }
.stat-box.accent { border-color: rgba(105,255,153,.35); background: rgba(72,255,130,.05); }

.membership-section { padding-top: 125px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 980px; }
.price-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(10,25,22,.82);
  border-radius: 13px;
}
.price-card.featured {
  border-color: rgba(106,255,153,.48);
  box-shadow: 0 25px 80px rgba(42,222,102,.1);
}
.popular-badge {
  position: absolute; top: 18px; right: 18px;
  color: #06110c; background: var(--green); padding: 7px 9px;
  border-radius: 4px; font-size: 8px; font-weight: 900; letter-spacing: .12em;
}
.price-label { color: var(--green); font-size: 10px; letter-spacing: .17em; font-weight: 800; }
.price-card h3 { font-size: 29px; margin: 17px 0 10px; }
.price { color: var(--muted); }
.price span { color: white; font: 700 54px Space Grotesk; }
.price-description { color: var(--muted); line-height: 1.65; min-height: 54px; }
.price-card ul { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 14px; }
.price-card li { color: #d0dbd6; font-size: 14px; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 800; margin-right: 10px; }
.full-width { width: 100%; }

.split-section {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px;
  border-top: 1px solid var(--line);
}
.text-link { color: var(--green); font-weight: 700; display: inline-block; margin-top: 15px; }
.about-section { padding-top: 25px; }
.about-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
  padding: 55px;
  border-radius: 15px;
  background:
    linear-gradient(120deg, rgba(46,213,104,.08), transparent 45%),
    rgba(10,25,22,.86);
  border: 1px solid var(--line);
}
.cta-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 20px auto 110px;
  padding: 44px;
  display: grid; grid-template-columns: 95px 1fr auto; align-items: center; gap: 28px;
  border: 1px solid rgba(109,255,156,.25);
  background: rgba(12,30,26,.9);
  border-radius: 14px;
}
.cta-section img { width: 90px; height: 90px; object-fit: cover; border-radius: 50%; }
.cta-section h2 { font-size: 38px; margin: 10px 0 5px; }
.cta-section p { margin: 0; font-size: 14px; }

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 45px 0 35px;
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; }
.footer-brand div { display: flex; flex-direction: column; gap: 6px; }
.footer-brand strong { font: 700 14px Space Grotesk; letter-spacing: .1em; }
.footer-brand span { color: var(--muted); font-size: 11px; }
.disclaimer { max-width: 760px; color: #71827b; font-size: 11px; line-height: 1.7; margin: 28px 0; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  color: #71827b; font-size: 11px;
}
.footer-bottom a:hover { color: var(--green); }

@media (max-width: 980px) {
  .main-nav { display: none; position: absolute; left: 20px; right: 20px; top: 82px; padding: 20px; background: #0a1715; border: 1px solid var(--line); z-index: 20; flex-direction: column; align-items: stretch; }
  .main-nav.open { display: flex; }
  .menu-button { display: block; background: none; border: 0; color: white; font-size: 26px; }
  .hero { grid-template-columns: 1fr; text-align: left; padding-top: 70px; }
  .hero-visual { min-height: 500px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-main { border-right: none; border-bottom: 1px solid var(--line); }
  .split-section, .about-card { grid-template-columns: 1fr; gap: 25px; }
  .cta-section { grid-template-columns: 75px 1fr; }
  .cta-section .primary-button { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .site-header, .hero, .section, .dashboard-section, .cta-section, footer { width: min(calc(100% - 28px), var(--max)); }
  .brand-name { font-size: 14px; }
  .hero { min-height: 0; padding: 60px 0 70px; gap: 20px; }
  .hero h1 { font-size: 58px; }
  .hero-actions, .hero-proof { flex-direction: column; }
  .hero-actions a { width: 100%; }
  .hero-visual { min-height: 390px; }
  .hero-visual > img { width: 330px; }
  .logo-halo { width: 340px; height: 340px; }
  .live-card { width: 180px; padding: 14px; }
  .card-one { left: 0; top: 45px; }
  .card-two { right: 0; bottom: 40px; }
  .ticker-strip { gap: 12px; font-size: 9px; letter-spacing: .08em; padding: 0 10px; }
  .section { padding: 85px 0; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; }
  .feature-number { margin-bottom: 35px; }
  .dashboard-main { padding: 28px; }
  .dashboard-main h3 { font-size: 30px; }
  .price-card { padding: 28px; }
  .about-card { padding: 32px; }
  .cta-section { padding: 28px; grid-template-columns: 1fr; text-align: center; }
  .cta-section img { margin: 0 auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
