:root {
  --bg: #071018;
  --bg-2: #0b1722;
  --panel: #10202c;
  --panel-2: #132635;
  --ink: #e8f2f7;
  --muted: #93a9b8;
  --line: #1d3344;
  --sun: #f0b429;
  --sun-deep: #d98916;
  --teal: #1ed6c3;
  --blue: #4f8cff;
  --glow: rgba(30, 214, 195, 0.16);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --font: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--teal); color: #041016; }

.sky, .grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.sky {
  background:
    radial-gradient(ellipse 70% 45% at 80% 8%, rgba(240, 180, 41, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 40% at 12% 20%, rgba(79, 140, 255, 0.14), transparent 62%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(30, 214, 195, 0.08), transparent 70%),
    linear-gradient(180deg, #08131c 0%, #071018 45%, #050d14 100%);
}
.grid-glow {
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(30, 214, 195, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 140, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 80%);
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 5vw;
  background: rgba(7, 16, 24, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(29, 51, 68, 0.9);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(30, 214, 195, 0.35);
  box-shadow: 0 0 24px rgba(79, 140, 255, 0.18);
  padding: 5px;
}
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: var(--sun);
}
.brand em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  color: #1a1203 !important;
  font-weight: 700;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 5vw 3.5rem;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8f2f7;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: var(--sun);
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  color: #c5d7e3;
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 0.85rem;
}
.tagline {
  font-family: var(--mono);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  color: #1a1203;
  box-shadow: 0 10px 28px rgba(240, 180, 41, 0.22);
}
.btn-ghost {
  border-color: rgba(30, 214, 195, 0.35);
  color: #e8f2f7;
  background: rgba(16, 32, 44, 0.55);
}
.btn-ghost:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px rgba(30, 214, 195, 0.18);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 36rem;
}
.hero-stats div {
  border: 1px solid var(--line);
  background: rgba(16, 32, 44, 0.7);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}
.hero-stats span {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: #e8f2f7;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}
.hero-stats p {
  font-size: 0.9rem;
  color: #d5e5ef;
  line-height: 1.35;
}

.logo-card {
  border: 1px solid rgba(30, 214, 195, 0.28);
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(236, 244, 248, 0.98));
  border-radius: 22px;
  box-shadow: var(--shadow), 0 0 80px rgba(79, 140, 255, 0.12);
  padding: 1.4rem 1.3rem 1.2rem;
  color: #10202c;
  position: relative;
  overflow: hidden;
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-lockup {
  width: min(100%, 460px);
  margin: 0.2rem auto 1.1rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(7, 16, 24, 0.12));
}
.signal-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}
.signal-list li {
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(29, 51, 68, 0.12);
  color: #173041;
  font-size: 0.94rem;
}
.signal-list strong {
  color: var(--sun-deep);
  font-weight: 800;
}

.strip {
  padding: 0 5vw 1rem;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 180, 41, 0.18);
  background: linear-gradient(90deg, rgba(240, 180, 41, 0.08), rgba(30, 214, 195, 0.06));
  text-align: center;
  color: #d7e4ed;
  font-size: 0.95rem;
}

section {
  padding: 4.5rem 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
section.alt {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(180deg, rgba(16, 32, 44, 0.35), rgba(7, 16, 24, 0));
}
section.alt > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}
.sec-label {
  font-family: var(--mono);
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.8rem;
}
.sec-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 2rem;
}
.sec-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.sec-head p, .muted { color: var(--muted); }

.feature-grid, .packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.feature, .pkg, .split-card, .pill, .contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 32, 44, 0.92), rgba(11, 23, 34, 0.92));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature { padding: 1.4rem; }
.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(30, 214, 195, 0.28);
  background: rgba(7, 16, 24, 0.7);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.feature h3, .pkg h3, .split-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.feature p, .pkg > p, .split-card p {
  color: var(--muted);
  font-size: 0.96rem;
}
.feature ul, .pkg ul, .split-card ul {
  margin-top: 0.9rem;
  padding-left: 1.05rem;
  color: #d5e5ef;
}
.feature li, .pkg li, .split-card li { margin: 0.35rem 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.split-card { padding: 1.5rem; }
.split-card.glow {
  background: linear-gradient(180deg, rgba(19, 38, 53, 0.95), rgba(10, 22, 32, 0.96));
  border-color: rgba(30, 214, 195, 0.28);
  box-shadow: var(--shadow), 0 0 40px rgba(30, 214, 195, 0.08);
}

.pkg { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.pkg-top { display: grid; gap: 0.35rem; }
.pkg-tag {
  display: inline-flex;
  width: fit-content;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8f2f7;
  border: 1px solid rgba(232, 242, 247, 0.22);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.04);
}
.price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}
.pkg.featured {
  border-color: rgba(30, 214, 195, 0.45);
  background: linear-gradient(180deg, rgba(19, 42, 56, 0.98), rgba(11, 24, 35, 0.98));
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 40px rgba(79, 140, 255, 0.12);
}
.agent-band {
  margin-top: 1.2rem;
  border: 1px solid rgba(79, 140, 255, 0.28);
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(90deg, rgba(79, 140, 255, 0.08), rgba(30, 214, 195, 0.06));
}
.agent-band h3 { margin-bottom: 0.35rem; }
.agent-band p { color: var(--muted); max-width: 44rem; }
.agent-band-follow { margin-top: 1.4rem; }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.eco-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 32, 44, 0.96), rgba(10, 22, 32, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.eco-head {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(29, 51, 68, 0.95);
  background: linear-gradient(180deg, rgba(19, 38, 53, 0.9), rgba(11, 23, 34, 0.55));
}
.eco-tag {
  display: inline-flex;
  width: fit-content;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(30, 214, 195, 0.28);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  background: rgba(30, 214, 195, 0.08);
  margin-bottom: 0.7rem;
}
.eco-head h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
  color: var(--sun);
}
.eco-head p {
  color: var(--muted);
  font-size: 0.93rem;
}
.tier-stack {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
}
.tier {
  border: 1px solid rgba(29, 51, 68, 0.95);
  border-radius: 14px;
  background: rgba(7, 16, 24, 0.55);
  padding: 0.95rem 1rem;
}
.tier.featured-tier {
  border-color: rgba(30, 214, 195, 0.4);
  background: linear-gradient(180deg, rgba(19, 42, 56, 0.9), rgba(11, 24, 35, 0.92));
  box-shadow: 0 0 24px rgba(79, 140, 255, 0.08);
}
.tier-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}
.tier-label span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8f2f7;
  border: 1px solid rgba(232, 242, 247, 0.18);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  white-space: nowrap;
}
.tier.featured-tier .tier-label span {
  color: #041016;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-color: transparent;
  font-weight: 700;
}
.tier-label strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-align: right;
}
.tier-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0.15rem 0 0.45rem;
  letter-spacing: -0.01em;
}
.tier.featured-tier .tier-price {
  color: var(--sun);
}
.tier > p:not(.tier-price) {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}
.tier ul {
  margin: 0;
  padding-left: 1rem;
  color: #d5e5ef;
  font-size: 0.88rem;
}
.tier li { margin: 0.28rem 0; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  counter-reset: step;
}
.steps li {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 32, 44, 0.88);
  padding: 1.15rem;
  min-height: 100%;
}
.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  color: var(--teal);
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
}
.steps strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}
.steps p { color: var(--muted); font-size: 0.94rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}
.about-grid h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.about-grid > div > p { margin-bottom: 0.8rem; max-width: 36rem; }
.pill-stack { display: grid; gap: 0.8rem; }
.pill {
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.25rem;
}
.pill span {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8f2f7;
}
.pill p { color: var(--muted); font-size: 0.94rem; }

.contact { max-width: none; }
.contact-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5vw;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19, 38, 53, 0.96), rgba(10, 22, 32, 0.96));
  border: 1px solid rgba(30, 214, 195, 0.22);
}
.contact-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  margin: 0.4rem 0 0.8rem;
}
.contact-card > p { color: var(--muted); max-width: 40rem; margin-bottom: 1.1rem; }
.fine {
  margin-top: 1rem;
  color: #9fb4c2;
  font-size: 0.92rem;
}
.fine a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.6rem 5vw 2.4rem;
  border-top: 1px solid rgba(29, 51, 68, 0.9);
  color: #8ea5b5;
  font-size: 0.9rem;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.foot-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.95;
}
.foot-brand strong {
  display: block;
  color: #e8f2f7;
  font-size: 0.92rem;
}
.foot-brand span {
  display: block;
  font-size: 0.78rem;
  color: #8ea5b5;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero, .sec-head, .split, .about-grid, .feature-grid, .packages, .steps, .hero-stats, .ecosystem-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 2.8rem; }
  .pkg.featured { transform: none; }
  .agent-band { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
}