* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

:root {
  --green: #1cff00;
  --green-soft: rgba(28, 255, 0, 0.12);
  --border: rgba(255, 255, 255, 0.10);
  --muted: rgba(255, 255, 255, 0.68);
  --dim: rgba(255, 255, 255, 0.46);
  --panel: rgba(255, 255, 255, 0.035);
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 8%, rgba(28, 255, 0, 0.15), transparent 25%),
    radial-gradient(circle at 15% 75%, rgba(28, 255, 0, 0.07), transparent 28%),
    linear-gradient(180deg, #010101 0%, #000 42%, #020202 100%);
  z-index: -5;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 60% 20%, black, transparent 70%);
}

.section-shell,
.nav {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.logo {
  width: 78px;
  height: auto;
  display: block;
}

.logo-wrap,
.footer-logo {
  display: inline-flex;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.footer a {
  color: #fff;
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--green);
}

.nav-cta {
  border: 1px solid var(--green);
  color: var(--green) !important;
  padding: 13px 24px;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--green);
  color: #000 !important;
}

.hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0 70px;
}

.hero h1,
.what h2,
.difference h2,
.contact h2 {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  margin: 0;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.92;
  font-weight: 800;
}

.hero h1 span,
.what h2 span,
.difference h2 span,
.contact h2 span,
.hero-lead span {
  color: var(--green);
}

.hero-lead {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  margin: 24px 0 0;
  max-width: 470px;
  font-weight: 500;
}

.hero-body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 440px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 800;
}

.button-primary {
  background: var(--green);
  color: #000;
  padding: 0 28px;
  border-radius: 3px;
  box-shadow: 0 0 34px rgba(28, 255, 0, 0.25);
}

.button-secondary {
  color: #fff;
  border-bottom: 1px solid var(--green);
}

.button-secondary:hover {
  color: var(--green);
}

.impact-visual {
  height: 440px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 68% 45%, rgba(28,255,0,0.14), transparent 30%),
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  position: relative;
  overflow: hidden;
}

.grid-floor {
  position: absolute;
  inset: 42% -10% -30% 0;
  background-image:
    linear-gradient(rgba(28,255,0,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,255,0,0.10) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(420px) rotateX(62deg);
  opacity: 0.48;
}

.bar-wrap {
  position: absolute;
  bottom: 58px;
  width: 150px;
  text-align: center;
}

.bar-wrap p {
  margin: 0 0 10px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bar-wrap strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 34px;
  margin-bottom: 14px;
}

.bar-over {
  left: 26%;
  color: rgba(255,255,255,0.60);
}

.bar-over strong {
  color: rgba(255,255,255,0.22);
}

.bar-actual {
  right: 17%;
  color: var(--green);
}

.bar {
  margin-inline: auto;
  width: 90px;
  border-radius: 7px 7px 0 0;
}

.bar-tall {
  height: 240px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 0 30px rgba(255,255,255,0.04);
}

.bar-short {
  height: 140px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), transparent 28%),
    var(--green);
  box-shadow: 0 0 70px rgba(28,255,0,0.45);
}

.built-for {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 24px 20px;
  text-align: center;
}

.built-for p,
.eyebrow {
  margin: 0;
  color: var(--green);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 800;
  font-size: 13px;
}

.built-for p {
  color: rgba(255,255,255,0.65);
}

.problem {
  padding: 58px 0;
}

.problem-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card,
.difference-grid article {
  min-height: 196px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.card h2 {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.18;
}

.card p,
.what-copy p,
.steps p,
.difference-grid p,
.contact-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.card p {
  margin: 12px 0 0;
  font-size: 14px;
}

.icon {
  width: 38px;
  height: 38px;
  color: var(--green);
  border-color: var(--green);
}

.bars {
  display: flex;
  gap: 6px;
  align-items: end;
}

.bars span {
  width: 7px;
  border: 2px solid var(--green);
}

.bars span:nth-child(1) { height: 19px; }
.bars span:nth-child(2) { height: 30px; }
.bars span:nth-child(3) { height: 38px; }

.target,
.growth,
.search-icon,
.identify-icon {
  border: 3px solid var(--green);
  border-radius: 50%;
  position: relative;
}

.target::before,
.target::after,
.identify-icon::before,
.identify-icon::after {
  content: "";
  position: absolute;
  background: var(--green);
}

.target::before,
.identify-icon::before {
  width: 48px;
  height: 2px;
  left: -7px;
  top: 50%;
}

.target::after,
.identify-icon::after {
  width: 2px;
  height: 48px;
  top: -7px;
  left: 50%;
}

.growth {
  border-radius: 0;
  border: 0;
}

.growth::before {
  content: "↗";
  font-size: 40px;
  font-weight: 900;
  color: var(--green);
}

.money {
  display: grid;
  place-items: center;
  border: 3px solid var(--green);
  border-radius: 4px;
  font-family: Oswald, sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.what {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 70px 0;
}

.what h2,
.difference h2,
.contact h2 {
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.05;
}

.what-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 24px;
}

.dashboard-card {
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.035);
  border-radius: 14px;
  padding: 24px;
}

.dashboard-head,
.dashboard-grid {
  display: grid;
  gap: 18px;
}

.dashboard-head {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-head h3 {
  margin: 0;
  font-size: 18px;
}

.dashboard-head span {
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
}

.dashboard-grid {
  grid-template-columns: 1fr 1fr;
}

.metric-panel,
.opps-panel {
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 20px;
}

.metric-panel p,
.opps-panel p {
  color: var(--dim);
  font-size: 13px;
  margin: 0;
}

.metric-panel strong {
  display: block;
  color: var(--green);
  font-family: Oswald, sans-serif;
  font-size: 30px;
  margin-top: 6px;
}

.donut {
  width: 135px;
  height: 135px;
  margin: 24px 0;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 28%, rgba(255,255,255,0.10) 28% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 28px;
  background: #050505;
  border-radius: 50%;
}

.metric-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.metric-panel li span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
}

.opps-panel div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.opps-panel div:last-child {
  border-bottom: 0;
}

.opps-panel strong {
  color: var(--green);
}

.how {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 70px 0;
}

.steps {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.steps article {
  position: relative;
  min-height: 210px;
}

.step-num {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255,255,255,0.06);
  font-family: Oswald, sans-serif;
  font-size: 52px;
  font-weight: 800;
}

.step-icon {
  margin: 28px 0 24px 72px;
  width: 44px;
  height: 44px;
  color: var(--green);
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 3px;
  background: var(--green);
  transform: rotate(45deg);
  right: -12px;
  bottom: 2px;
}

.arrow-icon {
  display: grid;
  place-items: center;
  border: 3px solid var(--green);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 800;
}

.steps h2 {
  margin: 0;
  font-size: 22px;
}

.steps p {
  max-width: 250px;
  font-size: 14px;
}

.difference {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  padding: 72px 0 54px;
}

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

.difference-grid article {
  min-height: 160px;
  padding: 22px;
}

.difference-icon {
  color: var(--green);
  font-size: 35px;
  line-height: 1;
  margin-bottom: 18px;
}

.difference-grid h3 {
  margin: 0;
  font-size: 16px;
}

.difference-grid p {
  margin: 8px 0 0;
  font-size: 13px;
}

.contact {
  padding: 54px 0 60px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  border: 1px solid rgba(28,255,0,0.35);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 100%, rgba(28,255,0,0.10), transparent 35%),
    rgba(255,255,255,0.035);
  padding: 42px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 420px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28,255,0,0.10);
}

.contact-form button {
  justify-self: start;
  border: 0;
  background: var(--green);
  color: #000;
  padding: 15px 24px;
  border-radius: 3px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-note a {
  color: var(--green);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 36px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.footer-logo {
  width: 72px;
}

.footer div {
  display: flex;
  gap: 34px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .what,
  .difference,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .impact-visual {
    height: 390px;
  }

  .problem-grid,
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    height: 76px;
  }

  .logo {
    width: 70px;
  }

  .hero {
    padding-top: 28px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: center;
  }

  .impact-visual {
    height: 360px;
  }

  .bar-wrap {
    width: 120px;
  }

  .bar-over {
    left: 10%;
  }

  .bar-actual {
    right: 8%;
  }

  .bar-tall {
    height: 205px;
  }

  .bar-short {
    height: 122px;
  }

  .problem-grid,
  .dashboard-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .what,
  .how,
  .difference,
  .contact {
    padding-block: 48px;
  }

  .dashboard-head {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

  .footer {
    gap: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer div {
    gap: 18px;
    flex-wrap: wrap;
  }
}
