:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --panel-2: #101214;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #9fef00;
  --accent-2: #6be000;
  --muted: #9ca3af;
  --text: #ffffff;
  --shadow: 0 25px 90px rgba(0, 0, 0, 0.55);
  --glow: 0 0 0 1px rgba(159, 239, 0, 0.16), 0 0 40px rgba(107, 224, 0, 0.16);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(159, 239, 0, 0.08), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.08), transparent 18%),
    linear-gradient(180deg, #060606 0%, #050505 48%, #080b0e 100%);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 92%);
  opacity: 0.16;
}

body::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='%23ffffff' fill-opacity='.035'%3E%3Ccircle cx='12' cy='18' r='1'/%3E%3Ccircle cx='78' cy='24' r='1'/%3E%3Ccircle cx='148' cy='38' r='1'/%3E%3Ccircle cx='32' cy='88' r='1'/%3E%3Ccircle cx='112' cy='96' r='1'/%3E%3Ccircle cx='158' cy='146' r='1'/%3E%3Ccircle cx='52' cy='156' r='1'/%3E%3Ccircle cx='90' cy='132' r='1'/%3E%3Ccircle cx='180' cy='92' r='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 68px 0;
}

.section-tech-stack {
  padding-top: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(22px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(159, 239, 0, 0.24);
  background: rgba(159, 239, 0, 0.08);
  box-shadow: var(--glow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: block;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.18em;
  font-size: 1.05rem;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  transition: color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #050505;
  border-color: rgba(159, 239, 0, 0.45);
  box-shadow: var(--glow);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.hero {
  padding-top: 52px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: start;
  gap: 40px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-screen,
.workflow-panel,
.observability-panel,
.ai-panel,
.about-panel,
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.9), rgba(7, 8, 10, 0.95));
  box-shadow: var(--shadow);
}

.stage-panel {
  border-radius: 34px;
  padding: 18px;
}

.hero-screen::before,
.workflow-panel::before,
.observability-panel::before,
.ai-panel::before,
.about-panel::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(159, 239, 0, 0.14), transparent 24%);
  pointer-events: none;
}

.hero-screen-head,
.panel-head,
.chart-head,
.dashboard-visual-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.hero-screen-head {
  padding: 14px 16px 18px;
}

.hero-screen-body {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: #05080d;
  padding: 12px;
}

.hero-screen-body > img {
  border-radius: 24px;
  border: 1px solid var(--border);
}

.hero-real-shot {
  width: 100%;
  height: clamp(320px, 34vw, 460px);
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.92) contrast(1.03) brightness(0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.floating-card {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 23, 0.84);
  backdrop-filter: blur(16px);
  padding: 16px;
  transition: transform 220ms ease;
}

.floating-card-left {
  top: 24px;
  left: 24px;
  width: min(38%, 320px);
}

.floating-card-right {
  right: 24px;
  bottom: 138px;
  width: min(34%, 290px);
}

.hero-command-rail {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.command-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(7, 17, 23, 0.92), rgba(10, 14, 18, 0.92));
  backdrop-filter: blur(14px);
}

.command-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.command-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}

.command-state {
  width: fit-content;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.state-stable,
.state-healthy {
  border-color: rgba(159, 239, 0, 0.2);
  background: rgba(159, 239, 0, 0.08);
  color: var(--accent);
}

.state-review {
  border-color: rgba(255, 196, 87, 0.22);
  background: rgba(255, 196, 87, 0.08);
  color: #f4cf65;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mini-stats article,
.signal-card,
.stat-tile,
.metric-card,
.surface-card,
.stack-grid .surface-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.mini-stats article {
  border-radius: 20px;
  padding: 14px;
}

.mini-stats strong,
.metric-value,
.signal-card strong,
.stat-tile strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.mini-stats strong {
  font-size: 1.4rem;
}

.mini-stats span,
.metric-label,
.signal-card span,
.stat-tile span,
.card-text,
.hero-summary,
.hero-subtitle,
.muted,
.brief-card,
.prompt-card p,
.contact-card,
.about-note,
.score-head span,
.phase-card span,
.workflow-node span {
  color: rgba(255, 255, 255, 0.62);
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 130px;
  margin-top: 16px;
}

.mini-bars span,
.bars-chart span,
.dashboard-graph span {
  flex: 1;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, var(--accent), rgba(159, 239, 0, 0.18));
}

.pill-accent,
.kicker,
.status-pill,
.eyebrow,
.mono {
  font-family: "IBM Plex Mono", monospace;
}

.pill-accent,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(159, 239, 0, 0.2);
  background: rgba(159, 239, 0, 0.1);
  color: var(--accent);
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 600;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(159, 239, 0, 0.25);
  background: rgba(159, 239, 0, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.dashboard-copy h3,
.card-title,
.contact-email,
.cta-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.hero-copy {
  position: relative;
  padding-top: 10px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.028);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.hero-copy h1 {
  margin-top: 24px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.94;
  max-width: 12ch;
}

.hero-subtitle {
  margin: 22px 0 0;
  font-size: 1.28rem;
  line-height: 1.7;
}

.hero-summary {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 28px;
}

.metric-card::before,
.surface-card::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 239, 0, 0.65), transparent);
  opacity: 0;
  transition: opacity 260ms ease;
}

.metric-card:hover::before,
.surface-card:hover::before {
  opacity: 1;
}

.metric-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
}

.metric-value {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-strip-pill,
.hero-proof-pill,
.chip-row span,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.66);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.tech-stack-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.84), rgba(7, 8, 10, 0.92));
  box-shadow: var(--shadow);
}

.hero-tech-stack {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 28px;
}

.tech-stack-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.tech-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-badge-row-compact {
  gap: 10px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  min-width: 148px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.92);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 28px rgba(0, 0, 0, 0.18);
}

.tech-badge-featured {
  min-width: 136px;
}

.tech-badge-compact {
  min-width: 124px;
  min-height: 50px;
  padding: 10px 16px;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.tech-badge-logo {
  width: auto;
  height: 24px;
  max-width: 104px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  filter: saturate(1.08) contrast(1.06) brightness(1.08);
}

.tech-badge-logo-light {
  filter: saturate(1) contrast(1.04) brightness(0) invert(1);
}

.tech-badge-label {
  white-space: nowrap;
}

.ecosystem-section {
  padding-top: 14px;
}

.ecosystem-intro {
  margin-bottom: 28px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ecosystem-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(159, 239, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ecosystem-card-head {
  margin-bottom: 18px;
}

.ecosystem-card-title {
  margin: 0;
  font-size: 1.22rem;
}

.ecosystem-card-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section-heading-compact {
  display: block;
}

.section-heading h2,
.cta-copy h2 {
  margin-top: 20px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
}

.section-heading p,
.cta-copy p {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  line-height: 1.8;
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surface-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-radius: 30px;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.surface-card:hover,
.dashboard-card:hover {
  transform: translateY(-6px);
  border-color: rgba(159, 239, 0, 0.2);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(159, 239, 0, 0.22);
  background: rgba(159, 239, 0, 0.1);
  color: var(--accent);
  font-size: 1.2rem;
}

.card-title {
  margin-top: 22px;
  font-size: 1.38rem;
  line-height: 1.2;
}

.card-text {
  margin: 14px 0 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.automation-grid,
.ai-grid,
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 32px;
}

.check-list,
.stack-grid,
.social-stack {
  display: grid;
  gap: 16px;
}

.check-list {
  margin-top: 32px;
}

.check-item,
.phase-card,
.workflow-node,
.signal-card,
.chart-card,
.score-card,
.prompt-card,
.brief-card,
.contact-card {
  border-radius: 28px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.check-item span {
  color: var(--accent);
  font-weight: 800;
}

.workflow-panel {
  border-radius: 34px;
  padding: 24px;
}

.workflow-top-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.phase-card {
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.phase-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.phase-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.phase-lines i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.workflow-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
}

.workflow-map::before {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(159, 239, 0, 0), rgba(159, 239, 0, 0.6), rgba(159, 239, 0, 0));
}

.workflow-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.workflow-node strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(159, 239, 0, 0.25);
  background: rgba(159, 239, 0, 0.1);
  color: var(--accent);
}

.observability-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 24px;
  margin-top: 32px;
}

.observability-panel,
.ai-panel,
.about-panel,
.cta-panel {
  border-radius: 36px;
  padding: 24px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.observability-body {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  margin-top: 24px;
}

.observability-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: #06080c;
}

.observability-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1) contrast(1.04) brightness(1.02);
}

.topology-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(159, 239, 0, 0.12), transparent 38%), #06080c;
}

.topology-grid,
.topology-lines {
  position: absolute;
  inset: 0;
}

.topology-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.42;
}

.topology-layer {
  position: absolute;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.topology-layer::before {
  content: "";
  position: absolute;
  inset: 0;
}

.topology-layer-core {
  top: 58px;
}

.topology-layer-distribution {
  top: 184px;
}

.topology-layer-access {
  top: 318px;
}

.topology-layer-core::before,
.topology-layer-distribution::before,
.topology-layer-access::before {
  content: "";
  display: block;
}

.topology-layer-core,
.topology-layer-distribution,
.topology-layer-access {
  height: 62px;
}

.topology-layer-core {
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 255, 255, 0.8) 0 14px, transparent 15px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0 14px, transparent 15px),
    radial-gradient(circle at 92% 50%, rgba(255, 255, 255, 0.8) 0 14px, transparent 15px);
}

.topology-layer-distribution {
  background:
    radial-gradient(circle at 10% 50%, rgba(159, 239, 0, 0.9) 0 16px, transparent 17px),
    radial-gradient(circle at 30% 50%, rgba(212, 147, 52, 0.95) 0 16px, transparent 17px),
    radial-gradient(circle at 50% 50%, rgba(58, 192, 214, 0.9) 0 16px, transparent 17px),
    radial-gradient(circle at 72% 50%, rgba(255, 215, 71, 0.95) 0 16px, transparent 17px),
    radial-gradient(circle at 92% 50%, rgba(238, 78, 58, 0.95) 0 16px, transparent 17px);
}

.topology-layer-access {
  background:
    radial-gradient(circle at 12% 50%, rgba(58, 192, 214, 0.95) 0 14px, transparent 15px),
    radial-gradient(circle at 38% 50%, rgba(58, 192, 214, 0.95) 0 14px, transparent 15px),
    radial-gradient(circle at 72% 50%, rgba(58, 192, 214, 0.95) 0 14px, transparent 15px),
    radial-gradient(circle at 90% 50%, rgba(58, 192, 214, 0.95) 0 14px, transparent 15px);
}

.topology-lines {
  background:
    linear-gradient(26deg, transparent 44%, rgba(156, 216, 255, 0.55) 49%, transparent 54%),
    linear-gradient(-18deg, transparent 42%, rgba(255, 168, 108, 0.45) 49%, transparent 56%),
    linear-gradient(13deg, transparent 39%, rgba(159, 239, 0, 0.45) 49%, transparent 58%);
  opacity: 0.72;
}

.signal-stack,
.ai-side-stack {
  display: grid;
  gap: 16px;
}

.signal-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-card {
  padding: 18px;
}

.signal-card span,
.stat-tile span,
.brief-grid span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card strong {
  margin-top: 14px;
  font-size: 2rem;
}

.chart-card,
.score-card,
.prompt-card,
.brief-card,
.contact-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.chart-head strong,
.score-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.chart-head p,
.dashboard-copy p,
.score-card,
.prompt-card p,
.brief-card p,
.cta-copy p,
.contact-card {
  line-height: 1.8;
}

.chart-head span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.bars-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
  margin-top: 22px;
}

.ai-panel {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.brief-grid article {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.brief-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
}

.score-bars {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}

.score-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.score-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.dashboard-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  margin-top: 32px;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(159, 239, 0, 0.28) transparent;
}

.dashboard-card {
  min-width: min(480px, 82vw);
  border-radius: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #090d11, #07090c);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease;
}

.dashboard-visual {
  min-height: 280px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(159, 239, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #0d1420 0%, #050709 100%);
}

.dashboard-real-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #050709;
}

.dashboard-real-media img {
  width: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.02) brightness(0.84);
}

.dashboard-real-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 9, 0.18), rgba(5, 7, 9, 0.28) 55%, rgba(5, 7, 9, 0.88));
}

.dashboard-real-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-real-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(159, 239, 0, 0.12);
  border: 1px solid rgba(159, 239, 0, 0.2);
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.dashboard-real-overlay small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.dashboard-mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.dashboard-mini-metrics article {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
  padding: 14px;
}

.dashboard-mini-metrics strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.dashboard-mini-metrics span,
.dashboard-visual-head small {
  color: rgba(255, 255, 255, 0.45);
}

.dashboard-visual-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(159, 239, 0, 0.1);
  border: 1px solid rgba(159, 239, 0, 0.2);
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.dashboard-graph {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  height: 120px;
  margin-top: 24px;
}

.dashboard-copy {
  padding: 24px;
}

.dashboard-copy h3 {
  font-size: 1.7rem;
}

.about-panel,
.cta-panel {
  padding: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.team-card img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.team-card img {
  min-height: 260px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border);
}

.team-card,
.team-card-copy {
  border-radius: 28px;
}

.team-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.team-card-copy {
  padding: 20px;
}

.team-card-copy strong {
  display: block;
  margin-top: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.team-card-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.stat-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-tile {
  padding: 22px;
  border-radius: 28px;
}

.stat-tile strong {
  font-size: 2.5rem;
}

.about-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 28px;
  background:
    radial-gradient(circle at top left, rgba(159, 239, 0, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(159, 239, 0, 0.08), #0b0f13 38%, #060708 100%);
}

.contact-card {
  background: rgba(0, 0, 0, 0.24);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 132px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(159, 239, 0, 0.34);
  background: rgba(159, 239, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(159, 239, 0, 0.14);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  line-height: 1.7;
}

.contact-email {
  display: block;
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.social-link {
  justify-content: space-between;
  min-height: 52px;
  margin-top: 12px;
}

.social-link::after {
  content: "↗";
  color: rgba(255, 255, 255, 0.48);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .automation-grid,
  .ai-grid,
  .about-grid,
  .observability-grid,
  .cta-panel,
  .observability-body {
    grid-template-columns: 1fr;
  }

  .tech-stack-panel {
    grid-template-columns: 1fr;
  }

  .card-grid-4,
  .card-grid-3,
  .stat-panel-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-card-left,
  .floating-card-right {
    width: min(42%, 300px);
  }

  .hero-command-rail {
    grid-template-columns: 1fr;
  }

  .hero-screen-body {
    padding-bottom: 12px;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-screen {
    order: 2;
  }

  .hero-copy {
    order: 1;
    grid-row: 1;
    max-width: 980px;
  }

  .hero-visual {
    grid-row: 2;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-real-shot {
    height: clamp(300px, 38vw, 400px);
  }
}

@media (max-width: 900px) {
  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-mark img {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 11, 11, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 52px 0;
  }

  .section-tech-stack {
    padding-top: 0;
  }

  .container {
    width: min(100% - 28px, 1400px);
  }

  .tech-badge {
    min-width: 132px;
    min-height: 52px;
    padding: 10px 16px;
  }

  .tech-badge-logo {
    height: 22px;
    max-width: 92px;
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(2.3rem, 9vw, 3.8rem);
  }

  .hero-stats,
  .signal-metrics,
  .brief-grid,
  .workflow-top-row,
  .workflow-map,
  .dashboard-mini-metrics,
  .stat-panel-grid,
  .team-grid,
  .card-grid-4,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .hero-screen-body {
    padding-bottom: 16px;
  }

  .hero-real-shot {
    height: 260px;
  }

  .hero-command-rail {
    position: static;
    margin-top: 16px;
  }

  .dashboard-card {
    min-width: 86vw;
  }

  .dashboard-real-media,
  .dashboard-real-media img {
    min-height: 220px;
  }

  .dashboard-real-media img {
    object-position: center top;
  }

  .contact-email {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }

  .contact-form-actions {
    flex-direction: column;
  }

  .contact-form-actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    width: 100%;
  }

  .brand-copy strong {
    letter-spacing: 0.14em;
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }

  .hero-real-shot {
    height: 220px;
  }

  .dashboard-real-media,
  .dashboard-real-media img {
    min-height: 196px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}