:root {
  --bg: #080b12;
  --bg-soft: #0d1322;
  --panel: #111827;
  --panel-2: #151d2e;
  --text: #f8fafc;
  --muted: #9ca3af;
  --muted-2: #cbd5e1;
  --line: rgba(255, 255, 255, 0.1);
  --yellow: #ffd84d;
  --yellow-2: #f7c948;
  --green: #35f0a3;
  --cyan: #4cc9f0;
  --danger: #ff6b6b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 216, 77, 0.16), transparent 28%),
    radial-gradient(circle at 80% 5%, rgba(76, 201, 240, 0.12), transparent 26%),
    linear-gradient(180deg, #080b12 0%, #090d17 45%, #070911 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 18, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.banana-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 216, 77, 0.45);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.28), rgba(255, 216, 77, 0.06));
  box-shadow: 0 0 24px rgba(255, 216, 77, 0.16);
}

.banana-shape {
  width: 21px;
  height: 12px;
  border-bottom: 6px solid var(--yellow);
  border-radius: 0 0 22px 22px;
  transform: rotate(-18deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted-2);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 750;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 77, 0.5);
}

.btn.primary {
  color: #151102;
  border-color: transparent;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 12px 32px rgba(255, 216, 77, 0.2);
}

.btn.ghost {
  color: var(--muted-2);
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 70px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 216, 77, 0.26);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 216, 77, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: clamp(46px, 7vw, 88px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: 23px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted-2);
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.04);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.system-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  pointer-events: none;
}

.system-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--muted-2);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.diagram {
  position: relative;
  display: grid;
  gap: 14px;
}

.node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 11, 18, 0.78);
}

.node strong {
  display: block;
}

.node span {
  color: var(--muted);
  font-size: 13px;
}

.node.accent {
  border-color: rgba(255, 216, 77, 0.46);
  background: rgba(255, 216, 77, 0.08);
}

.node small {
  flex: 0 0 auto;
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px 0 0;
}

.metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.metric b {
  display: block;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 58px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted-2);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.card:hover {
  border-color: rgba(255, 216, 77, 0.36);
}

.card p {
  margin: 12px 0 0;
  color: var(--muted-2);
}

.card .tagline {
  margin-top: 18px;
  color: var(--yellow);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.pain-card {
  border-color: rgba(255, 107, 107, 0.18);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 15px;
  color: #161102;
  background: var(--yellow);
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  position: relative;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
  border-radius: 50%;
  color: #141004;
  background: var(--yellow);
  font-weight: 900;
}

.case-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.case-visual {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 216, 77, 0.22), transparent 28%),
    linear-gradient(145deg, #121a2b, #0a0e18);
  padding: 22px;
}

.chat-bubble {
  max-width: 86%;
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 17px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.07);
}

.chat-bubble.bot {
  margin-left: auto;
  color: #141004;
  background: var(--yellow);
}

.case-card .metric-line {
  margin-top: 18px;
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.12), rgba(53, 240, 163, 0.04));
}

.price-card.featured {
  border-color: rgba(255, 216, 77, 0.48);
  box-shadow: 0 20px 60px rgba(255, 216, 77, 0.08);
}

.price {
  margin-top: 18px;
  color: var(--yellow);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero {
  padding: 78px 0 50px;
}

.page-hero h1 {
  max-width: 940px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.8fr;
  gap: 24px;
}

.footer a {
  display: block;
  margin-top: 9px;
  color: var(--muted-2);
}

.footer strong {
  color: var(--text);
}

.mini-kicker {
  color: var(--yellow);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .case-feature,
  .split-band,
  .contact-panel,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four,
  .timeline,
  .metrics-strip,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
    padding: 54px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

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

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .grid.three,
  .grid.four,
  .timeline,
  .metrics-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }
}
