:root {
  color-scheme: dark;
  --ink: #f4f7fb;
  --muted: #9aa8b8;
  --deep: #05070b;
  --carbon: #080d14;
  --glass: rgba(12, 18, 28, 0.74);
  --panel: rgba(11, 16, 24, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --green: #3ef2a2;
  --mint: #8fffe0;
  --yellow: #ffd05a;
  --blue: #60a5fa;
  --red: #ff647c;
  --violet: #9b87ff;
  --black: #05070b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 6%, rgba(62, 242, 162, 0.12), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.12), transparent 28%),
    var(--black);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(62, 242, 162, 0.1), transparent 34%),
    rgba(5, 7, 11, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(62, 242, 162, 0.52);
  background:
    linear-gradient(145deg, rgba(62, 242, 162, 0.2), rgba(96, 165, 250, 0.08)),
    rgba(62, 242, 162, 0.08);
  color: var(--green);
  font-size: 13px;
  box-shadow: 0 0 32px rgba(62, 242, 162, 0.14);
}

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

nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.nav-install {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(62, 242, 162, 0.35);
  background:
    linear-gradient(135deg, rgba(62, 242, 162, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  color: var(--green);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-install[disabled],
.install-action[disabled] {
  opacity: 0.68;
  cursor: pointer;
}

nav a:hover,
.nav-cta {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  border-color: rgba(62, 242, 162, 0.5);
  background:
    linear-gradient(135deg, rgba(62, 242, 162, 0.22), rgba(96, 165, 250, 0.08)),
    rgba(62, 242, 162, 0.08);
  color: var(--green);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 34px rgba(62, 242, 162, 0.1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 72px) 58px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.94) 0%, rgba(5, 7, 11, 0.64) 47%, rgba(5, 7, 11, 0.2) 100%),
    linear-gradient(135deg, rgba(62, 242, 162, 0.2), rgba(155, 135, 255, 0.12), transparent 62%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  transform: scale(1.02);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 17% 34%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.055), transparent 42% 100%);
  mix-blend-mode: screen;
  opacity: 0.68;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0), var(--black));
}

.hero-inner {
  position: relative;
  width: min(860px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 148px);
  line-height: 0.88;
  max-width: 920px;
}

.hero-copy {
  margin: 28px 0 0;
  max-width: 690px;
  color: #dbe5ef;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.brand-mission,
.hero-line {
  max-width: 720px;
  color: #fff;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.12);
}

.brand-mission {
  margin: 16px 0 0;
  font-family: "Space Grotesk", Sora, sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.08;
}

.hero-line {
  margin: 18px 0 0;
  color: #dffdf2;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 800;
}

.hero-actions,
.demo-grid,
.steps,
.metrics,
.split {
  display: grid;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
  margin-top: 34px;
}

.free-preview-badge {
  display: inline-flex;
  width: fit-content;
  margin: 22px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(143, 255, 224, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(62, 242, 162, 0.08)),
    rgba(255, 255, 255, 0.055);
  color: #fff;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 36px rgba(62, 242, 162, 0.16);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 48px rgba(0, 0, 0, 0.3);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 32%, transparent 64%, rgba(255, 255, 255, 0.14)),
    linear-gradient(135deg, rgba(62, 242, 162, 0.16), rgba(96, 165, 250, 0.08));
  opacity: 0.72;
}

.button::after {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  font-size: 15px;
  line-height: 1;
  transition: transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 24px 60px rgba(0, 0, 0, 0.38);
}

.button:hover::after {
  transform: translateX(2px);
}

.free-cta {
  min-height: 58px;
  padding-inline: 24px;
  border-color: rgba(255, 255, 255, 0.36);
  color: #04110c;
  background:
    linear-gradient(135deg, #ffffff, #8fffe0 54%, #60a5fa);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 0 0 7px rgba(62, 242, 162, 0.08),
    0 26px 80px rgba(62, 242, 162, 0.22);
}

.free-cta::before {
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.72) 34%, transparent 46% 100%);
  animation: buttonGleam 3.8s ease-in-out infinite;
}

.free-preview-call {
  max-width: 680px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  background:
    linear-gradient(90deg, rgba(62, 242, 162, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  color: #f8fbff;
  font-weight: 800;
  line-height: 1.5;
}

.button:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.32);
}

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--mint));
  color: #03100a;
  border-color: var(--green);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 0 0 1px rgba(62, 242, 162, 0.26),
    0 20px 58px rgba(62, 242, 162, 0.2);
}

.button.ghost {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(155, 135, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(155, 135, 255, 0.22);
}

.button[disabled] {
  opacity: 0.74;
  cursor: not-allowed;
  transform: none;
}

.button[disabled]::after {
  content: "•";
  transform: none;
}

.metrics {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.metrics div {
  min-height: 136px;
  padding: 28px clamp(20px, 4vw, 48px);
  background: #070a10;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 18px;
}

.metrics span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 92px clamp(20px, 6vw, 72px);
}

.section h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.98;
}

.section p {
  max-width: 710px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 38px;
  align-items: center;
}

.split {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 30%, rgba(62, 242, 162, 0.1), transparent 34%),
    #05070b;
}

.split::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(143, 255, 224, 0.6) 0 1px, transparent 1.8px);
  background-size: 88px 88px, 141px 141px;
  background-position: 12px 18px, 55px 45px;
  opacity: 0.18;
  animation: starDrift 22s linear infinite;
}

.split > * {
  position: relative;
  z-index: 1;
}

.command-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  padding: 18px;
}

.premium-cockpit {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(62, 242, 162, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 20, 0.88);
  padding: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 36px 100px rgba(0, 0, 0, 0.42);
}

.premium-cockpit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 43px);
  pointer-events: none;
  animation: panelScan 6s linear infinite;
}

.premium-cockpit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.8px);
  background-size: 72px 72px;
  background-position: 18px 12px;
  opacity: 0.12;
  animation: starDrift 18s linear infinite reverse;
}

.cockpit-top,
.cockpit-grid,
.cockpit-stats,
.workflow-board {
  position: relative;
  z-index: 1;
}

.cockpit-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cockpit-top span {
  color: var(--green);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cockpit-top strong {
  max-width: 260px;
  color: #fff;
  font-family: "Space Grotesk", Sora, sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 0.95;
  text-align: right;
}

.workflow-board {
  height: 210px;
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(62, 242, 162, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 0 46px rgba(96, 165, 250, 0.08);
}

.workflow-board::before,
.workflow-board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.workflow-board::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.92), transparent 18% 82%, rgba(5, 7, 11, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.04) 39px);
  z-index: 2;
}

.workflow-board::after {
  inset: auto 0 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 242, 162, 0.72), rgba(255, 255, 255, 0.54), transparent);
  box-shadow: 0 0 30px rgba(62, 242, 162, 0.22);
  animation: boardPulse 3.8s ease-in-out infinite;
  z-index: 3;
}

.board-row {
  position: absolute;
  left: 0;
  display: flex;
  width: max-content;
  gap: 10px;
}

.board-row span {
  display: inline-grid;
  place-items: center;
  min-width: 116px;
  height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(8, 13, 20, 0.82);
  color: #fff;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.row-a {
  top: 24px;
  animation: boardMoveA 14s linear infinite;
}

.row-b {
  bottom: 24px;
  animation: boardMoveB 16s linear infinite;
}

.row-b span {
  border-color: rgba(62, 242, 162, 0.26);
  color: #dffdf2;
}

.board-output {
  position: absolute;
  inset: 72px 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(62, 242, 162, 0.28);
  background:
    linear-gradient(135deg, rgba(62, 242, 162, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(4, 12, 16, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 44px rgba(62, 242, 162, 0.18);
  animation: outputFloat 5s ease-in-out infinite;
  z-index: 4;
}

.board-output strong,
.board-output small {
  display: block;
  text-align: center;
}

.board-output strong {
  color: #fff;
  font-size: 25px;
}

.board-output small {
  color: var(--green);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cockpit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cockpit-grid article {
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 20, 0.72);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.cockpit-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 242, 162, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(62, 242, 162, 0.04)),
    rgba(8, 13, 20, 0.8);
}

.cockpit-grid span {
  color: var(--green);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.cockpit-grid strong {
  display: block;
  margin-top: 26px;
  color: #fff;
  font-size: 24px;
}

.cockpit-grid p {
  margin: 7px 0 0;
  color: #cfd9e6;
  font-size: 13px;
  line-height: 1.45;
}

.cockpit-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cockpit-stats span {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

.cockpit-stats strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.panel-line {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: #d7e2ee;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 62%),
    rgba(255, 255, 255, 0.018);
}

.panel-line:hover {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(62, 242, 162, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
}

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

.panel-line span {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 20px currentColor;
}

.green {
  color: var(--green);
}

.yellow {
  color: var(--yellow);
}

.blue {
  color: var(--blue);
}

.red {
  color: var(--red);
}

.demo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.sample-grid article {
  min-height: 280px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #080d14;
}

.sample-grid span {
  color: var(--green);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-grid h3 {
  margin: 44px 0 12px;
  font-size: 25px;
  line-height: 1.05;
}

.sample-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.custom-work {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(62, 242, 162, 0.1), transparent 45%),
    #05070b;
  border-top: 1px solid var(--line);
}

.work-proof {
  background:
    linear-gradient(180deg, rgba(155, 135, 255, 0.08), transparent 36%),
    #070a10;
}

.work-grid,
.work-roll {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.work-roll {
  display: block;
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.work-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-block: 8px 16px;
  animation: workRoll 48s linear infinite;
}

.work-roll:hover .work-track {
  animation-play-state: paused;
}

.work-grid article,
.work-track article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.024)),
    rgba(8, 13, 20, 0.84);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.28);
}

.work-track article {
  width: min(380px, 78vw);
  flex: 0 0 auto;
}

.work-grid span,
.work-track span {
  color: var(--green);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-grid h3,
.work-track h3 {
  margin: 52px 0 12px;
  font-size: 31px;
}

.work-grid p,
.work-track p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.work-grid .button,
.work-track .button {
  margin-top: auto;
}

.work-preview {
  position: relative;
  width: 100%;
  height: 116px;
  margin: 10px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.work-preview::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 28%, transparent 28% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 18px);
  animation: previewScan 3.8s ease-in-out infinite;
}

.work-preview i {
  position: absolute;
  display: block;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
  opacity: 0.88;
}

.work-preview i:nth-child(1) {
  left: 18px;
  top: 18px;
  width: 44%;
  height: 7px;
}

.work-preview i:nth-child(2) {
  right: 18px;
  top: 42px;
  width: 28%;
  height: 30px;
}

.work-preview i:nth-child(3) {
  left: 18px;
  bottom: 20px;
  width: 68%;
  height: 8px;
}

@keyframes workRoll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes previewScan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.apiary-preview {
  color: var(--yellow);
}

.pricer-preview {
  color: var(--blue);
}

.revival-preview,
.custom-preview {
  color: var(--green);
}

.icon-preview {
  color: #fff;
}

.custom-panel {
  border: 1px solid rgba(62, 242, 162, 0.24);
  background:
    linear-gradient(145deg, rgba(62, 242, 162, 0.1), rgba(96, 165, 250, 0.06)),
    rgba(8, 13, 20, 0.86);
  padding: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.custom-panel h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

.custom-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #dce7f2;
}

.custom-panel li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-panel::after {
  content: "Routes to pain2hustle1@gmail.com";
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.demo-card {
  min-height: 340px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 20, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.demo-card h3 {
  margin: 36px 0 10px;
  font-size: 30px;
}

.demo-card p {
  font-size: 16px;
}

.demo-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #dce7f2;
}

.demo-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.browser-bar {
  display: flex;
  gap: 7px;
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.14);
}

.before {
  border-color: rgba(255, 100, 124, 0.34);
}

.after {
  border-color: rgba(62, 242, 162, 0.4);
}

.claim {
  border-color: rgba(96, 165, 250, 0.4);
}

.process {
  background:
    linear-gradient(180deg, rgba(96, 165, 250, 0.06), transparent 34%),
    #070a10;
}

.founder-strip,
.account-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(62, 242, 162, 0.12), transparent 58%),
    #05070b;
}

.founder-strip .button,
.account-strip .button {
  flex: 0 0 auto;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  background: transparent;
  border: 0;
}

.steps article {
  min-height: 285px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.028)),
    radial-gradient(circle at 18% 0%, rgba(62, 242, 162, 0.16), transparent 42%),
    rgba(8, 13, 20, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 26px 72px rgba(0, 0, 0, 0.3);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #04110c;
  background: linear-gradient(135deg, #fff, var(--green));
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-weight: 800;
  box-shadow:
    0 0 0 6px rgba(62, 242, 162, 0.08),
    0 0 34px rgba(62, 242, 162, 0.24);
}

.steps h3 {
  margin: 58px 0 10px;
  color: #fff;
  font-size: 34px;
  line-height: 0.98;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.09);
}

.steps p {
  font-size: 15px;
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 6vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }

  :root {
    --ink: #f9fbff;
    --muted: #c5d0dd;
    --line: rgba(255, 255, 255, 0.18);
  }

  body {
    background:
      radial-gradient(circle at 8% 4%, rgba(143, 255, 224, 0.34), transparent 34%),
      radial-gradient(circle at 94% 16%, rgba(255, 208, 90, 0.24), transparent 30%),
      radial-gradient(circle at 50% 100%, rgba(96, 165, 250, 0.22), transparent 38%),
      linear-gradient(180deg, #112035 0%, #07101b 48%, #05070b 100%);
  }

  .topbar {
    position: fixed;
    align-items: center;
    min-height: 72px;
    padding: 12px 14px;
    background:
      linear-gradient(90deg, rgba(62, 242, 162, 0.22), rgba(96, 165, 250, 0.16)),
      rgba(9, 17, 29, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  }

  .brand {
    max-width: calc(100% - 62px);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    border-color: rgba(62, 242, 162, 0.32);
    background:
      linear-gradient(145deg, rgba(62, 242, 162, 0.16), rgba(96, 165, 250, 0.08)),
      rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 28px rgba(62, 242, 162, 0.12);
  }

  nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(62, 242, 162, 0.22);
    background:
      linear-gradient(145deg, rgba(62, 242, 162, 0.08), rgba(96, 165, 250, 0.08)),
      rgba(5, 7, 11, 0.97);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  }

  .nav-open nav {
    display: flex;
  }

  nav a {
    min-height: 48px;
    justify-content: space-between;
    padding: 0 14px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
  }

  .hero {
    min-height: auto;
    align-items: center;
    padding: 116px 16px 48px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.7), rgba(5, 7, 11, 0.95)),
      linear-gradient(135deg, rgba(62, 242, 162, 0.22), rgba(155, 135, 255, 0.16), transparent 58%),
      url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1100&q=80")
        center / cover;
  }

  h1 {
    font-size: clamp(42px, 13vw, 68px);
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .metrics div,
  .demo-card,
  .steps article,
  .command-panel,
  .experience-strip article,
  .sample-grid article,
  .work-grid article,
  .work-track article,
  .custom-panel {
    border-color: rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
      rgba(16, 28, 43, 0.86);
  }

  .hero-actions,
  .metrics,
  .split,
  .demo-grid,
  .sample-grid,
  .work-grid,
  .custom-work,
  .steps {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 16px;
  }

  .section h2 {
    font-size: clamp(31px, 10vw, 46px);
    line-height: 1.04;
  }

  .section p {
    font-size: 16px;
    line-height: 1.58;
  }

  .metrics div,
  .experience-strip article,
  .demo-card,
  .sample-grid article,
  .work-grid article,
  .steps article {
    min-height: auto;
    padding: 20px;
  }

  .sample-grid h3,
  .work-grid h3,
  .steps h3,
  .demo-card h3 {
    margin-top: 24px;
  }

  footer {
    flex-direction: column;
  }

  .founder-strip,
  .account-strip {
    align-items: stretch;
    flex-direction: column;
  }
}

/* AMH experience polish layer */
body {
  font-family: Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.brand,
h1,
h2,
h3 {
  font-family: "Space Grotesk", Sora, sans-serif;
}

.hero {
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 92px clamp(20px, 6vw, 72px) auto;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--blue), var(--yellow), transparent);
  box-shadow: 0 0 34px rgba(62, 242, 162, 0.34);
  animation: railPulse 5s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.075) 33%, transparent 39% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 92px);
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: slowSweep 12s linear infinite alternate;
}

.hero-inner {
  z-index: 2;
}

.hero-title {
  position: relative;
  width: min-content;
  min-width: min(100%, 620px);
  font-size: clamp(52px, 8.2vw, 112px);
  line-height: 0.94;
  color: #fff;
  background: none;
  filter:
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 22px rgba(62, 242, 162, 0.18));
  animation: titleBreathe 5.5s ease-in-out infinite;
}

.hero-title::before,
.hero-title::after {
  content: "Site Revival";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.hero-title::before {
  color: var(--green);
  transform: translate(2px, -1px);
  clip-path: inset(0 0 58% 0);
  animation: titleSpaz 3.2s steps(2, end) infinite;
}

.hero-title::after {
  color: var(--blue);
  transform: translate(-2px, 1px);
  clip-path: inset(52% 0 0 0);
  animation: titleSpaz 2.7s steps(2, end) infinite reverse;
}

.section h2,
.dash-hero h1,
.auth-card h1 {
  color: #fff;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.1),
    0 0 28px rgba(62, 242, 162, 0.08);
}

.section h2::selection,
.hero-title::selection {
  background: rgba(62, 242, 162, 0.34);
  color: #fff;
}

.button::after {
  content: "\2192";
}

.button[disabled]::after {
  content: "\2022";
}

nav a,
.button,
.nav-button {
  background-position: 50% 50%;
}

nav a:hover,
.button:hover,
.nav-button:hover {
  background-image:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.2), transparent 120px);
}

.signal-runway {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  color: rgba(244, 247, 251, 0.84);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.signal-runway span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(62, 242, 162, 0.05)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  animation: chipDance 4.4s ease-in-out infinite;
}

.signal-runway span:nth-child(2n) {
  animation-delay: -0.8s;
  border-color: rgba(96, 165, 250, 0.24);
}

.signal-runway span:nth-child(3n) {
  animation-delay: -1.6s;
  border-color: rgba(255, 208, 90, 0.25);
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(62, 242, 162, 0.24), rgba(96, 165, 250, 0.18), rgba(255, 208, 90, 0.16)),
    var(--line);
}

.experience-strip article {
  min-height: 230px;
  padding: 26px clamp(18px, 3vw, 34px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.032)),
    radial-gradient(circle at 20% 0%, rgba(62, 242, 162, 0.18), transparent 42%),
    #08111c;
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.experience-strip span,
.showcase-chip,
.help-card span {
  color: var(--green);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-strip strong {
  display: block;
  margin-top: 58px;
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.96;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 24px rgba(255, 255, 255, 0.1),
    0 0 34px rgba(62, 242, 162, 0.1);
}

.experience-strip p {
  margin: 12px 0 0;
  color: #d8e2ee;
  line-height: 1.55;
}

.experience-strip article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.65), transparent);
  box-shadow: 0 0 22px rgba(62, 242, 162, 0.28);
  opacity: 0.78;
}

.walkthrough,
.showcase-lab,
.value-class,
.help-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 44px;
  align-items: center;
  overflow: hidden;
}

.value-class {
  display: block;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.1), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(62, 242, 162, 0.14), transparent 34%),
    #070a10;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.value-grid article {
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(8, 13, 20, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.3);
}

.value-grid span {
  color: var(--green);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.value-grid h3 {
  margin: 74px 0 12px;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.9;
}

.value-grid p {
  color: #d8e2ee;
  font-size: 16px;
}

.walkthrough {
  background:
    radial-gradient(circle at 88% 40%, rgba(96, 165, 250, 0.13), transparent 36%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.motion-lanes {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, rgba(62, 242, 162, 0.1), rgba(155, 135, 255, 0.08)),
    rgba(8, 13, 20, 0.72);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.motion-lanes::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(62, 242, 162, 0.22);
  box-shadow: inset 0 0 70px rgba(62, 242, 162, 0.08);
}

.motion-lanes span {
  position: absolute;
  top: calc(42px + var(--lane) * 56px);
  left: -110px;
  display: inline-grid;
  place-items: center;
  min-width: 104px;
  min-height: 38px;
  padding: 0 14px;
  color: #06110d;
  background: linear-gradient(135deg, var(--green), var(--mint));
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(62, 242, 162, 0.26);
  animation: laneRun 5.8s linear infinite;
  animation-delay: calc(var(--lane) * -0.75s);
}

.motion-lanes span:nth-child(2n) {
  background: linear-gradient(135deg, var(--blue), #b6d5ff);
}

.motion-lanes span:nth-child(3n) {
  background: linear-gradient(135deg, var(--yellow), #fff0b0);
}

.showcase-lab {
  background:
    radial-gradient(circle at 78% 46%, rgba(62, 242, 162, 0.17), transparent 34%),
    radial-gradient(circle at 95% 10%, rgba(255, 208, 90, 0.13), transparent 32%),
    #070a10;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.showcase-chip {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.showcase-visual {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 20, 0.78);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.035) 35px);
  animation: panelScan 6.5s linear infinite;
  pointer-events: none;
}

.orbital-globe {
  position: absolute;
  inset: 60px 50px 50px;
  margin: auto;
  width: min(280px, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(62, 242, 162, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.68), transparent 8%),
    radial-gradient(circle at 52% 50%, rgba(62, 242, 162, 0.3), transparent 34%),
    radial-gradient(circle at 65% 68%, rgba(96, 165, 250, 0.2), transparent 36%),
    rgba(4, 13, 18, 0.92);
  box-shadow:
    inset 0 0 70px rgba(96, 165, 250, 0.14),
    0 0 70px rgba(62, 242, 162, 0.22);
  animation: globeFloat 7s ease-in-out infinite;
}

.orbital-globe::before,
.orbital-globe::after,
.orbital-globe span {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbital-globe::before {
  transform: rotateX(68deg);
}

.orbital-globe::after {
  transform: rotateY(68deg);
}

.orbital-globe span:nth-child(1) {
  inset: -18%;
  border-color: rgba(62, 242, 162, 0.2);
  animation: orbitSpin 12s linear infinite;
}

.orbital-globe span:nth-child(2) {
  inset: 26%;
  border-color: rgba(255, 208, 90, 0.28);
  transform: rotate(45deg);
}

.orbital-globe span:nth-child(3) {
  inset: -7%;
  border-color: rgba(96, 165, 250, 0.22);
  transform: rotate(-25deg);
}

.hud-card {
  position: absolute;
  width: 180px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.hud-card strong,
.hud-card small {
  display: block;
}

.hud-card small {
  margin-top: 5px;
  color: var(--muted);
}

.hud-a {
  top: 42px;
  left: 30px;
}

.hud-b {
  right: 24px;
  top: 42%;
}

.hud-c {
  left: 44px;
  bottom: 38px;
}

.help-section {
  background:
    linear-gradient(135deg, rgba(62, 242, 162, 0.08), transparent 45%),
    #05070b;
}

.help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.help-card {
  min-height: 380px;
  padding: 28px;
  border: 1px solid rgba(62, 242, 162, 0.24);
  background:
    linear-gradient(145deg, rgba(62, 242, 162, 0.1), rgba(96, 165, 250, 0.055)),
    rgba(8, 13, 20, 0.84);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
}

.help-card h3 {
  margin: 62px 0 12px;
  font-size: 32px;
}

.help-card p {
  color: var(--muted);
  line-height: 1.6;
}

.bee-fact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 208, 90, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 208, 90, 0.12), rgba(62, 242, 162, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.bee-fact strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.bee-fact p {
  margin: 6px 0 0;
  font-size: 14px;
}

.bee-fact .bee-mission {
  color: #fff;
  font-weight: 800;
}

.fact-button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.reveal-section {
  opacity: 1;
  transform: none;
}

.reveal-section > * {
  opacity: 1;
  transform: none;
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal-section.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero.reveal-section > * {
  opacity: 1;
  transform: none;
}

.sample-grid article,
.work-grid article,
.demo-card,
.custom-panel,
.command-panel,
.metrics div,
.steps article,
.experience-strip article,
.auth-card,
.dash-card,
.help-card,
.showcase-visual,
.showcase-chip,
.motion-lanes {
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.fx-glare::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(255, 255, 255, 0.18), transparent 150px),
    linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.055) 40%, transparent 48%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.fx-glare:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 242, 162, 0.28);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.38);
}

.fx-glare:hover::before {
  opacity: 1;
}

.fx-glare > * {
  position: relative;
  z-index: 1;
}

.skeleton-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.skeleton-stack span {
  display: block;
  height: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  background-size: 220% 100%;
  animation: skeletonFlow 2.4s ease-in-out infinite;
}

.skeleton-stack span:last-child {
  width: 68%;
}

.tooltip {
  position: relative;
}

.tooltip::before {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 240px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 11, 0.94);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  transform: translate(-50%, 6px);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.tooltip:hover::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.egg-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 208, 90, 0.35);
  background:
    linear-gradient(135deg, rgba(255, 208, 90, 0.16), rgba(62, 242, 162, 0.1)),
    rgba(5, 7, 11, 0.92);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.egg-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding: 104px 16px 26px;
  }

  .hero-title {
    min-width: 0;
    font-size: clamp(42px, 13vw, 68px);
    width: auto;
  }

  .reveal-section > * {
    opacity: 1;
    transform: none;
  }

  .eyebrow,
  .section-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-actions,
  .help-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .experience-strip,
  .walkthrough,
  .showcase-lab,
  .value-grid,
  .help-section {
    grid-template-columns: 1fr;
  }

  .value-grid article {
    min-height: auto;
    padding: 22px;
  }

  .value-grid h3 {
    margin-top: 34px;
    font-size: 42px;
  }

  .work-roll {
    margin-inline: -16px;
    padding-left: 16px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent);
    mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent);
  }

  .work-track {
    gap: 12px;
    animation-duration: 62s;
  }

  .work-track article {
    width: 82vw;
    min-height: 390px;
    padding: 20px;
  }

  .work-preview {
    height: 104px;
  }

  .motion-lanes {
    min-height: 230px;
  }

  .showcase-visual {
    min-height: 330px;
    border-color: rgba(143, 255, 224, 0.2);
    background:
      linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
      rgba(14, 28, 44, 0.82);
  }

  .orbital-globe {
    width: min(210px, 62vw);
    inset: 58px 0 44px;
  }

  .hud-card {
    width: 136px;
    padding: 10px;
    font-size: 12px;
  }

  .hud-a {
    top: 18px;
    left: 14px;
  }

  .hud-b {
    right: 12px;
    top: 44%;
  }

  .hud-c {
    left: 18px;
    bottom: 16px;
  }

  .help-card {
    min-height: auto;
    padding: 22px;
  }

  .help-card h3 {
    margin-top: 28px;
    font-size: 27px;
  }

  .bee-fact {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .signal-runway {
    margin-top: 22px;
  }

  .signal-runway span,
  .showcase-chip {
    font-size: 11px;
    padding: 7px 9px;
  }

  .premium-cockpit {
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.18);
    background:
      radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
      radial-gradient(circle at 80% 16%, rgba(143, 255, 224, 0.18), transparent 38%),
      linear-gradient(150deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
      rgba(12, 24, 38, 0.92);
  }

  .cockpit-top {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .cockpit-top strong {
    max-width: none;
    text-align: left;
    font-size: clamp(30px, 10vw, 42px);
  }

  .workflow-board {
    height: 190px;
  }

  .board-row span {
    min-width: 106px;
    height: 42px;
    font-size: 11px;
  }

  .board-output {
    inset: 66px 16px;
  }

  .board-output strong {
    font-size: 22px;
  }

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

  .cockpit-grid article {
    min-height: auto;
  }

  .cockpit-grid strong {
    margin-top: 18px;
  }

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

@keyframes titleBreathe {
  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(62, 242, 162, 0.18));
    transform: translateY(0);
  }
  50% {
    filter:
      drop-shadow(0 0 32px rgba(62, 242, 162, 0.28))
      drop-shadow(0 0 16px rgba(96, 165, 250, 0.18));
    transform: translateY(-2px);
  }
}

@keyframes titleSpaz {
  0%,
  88%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  90% {
    opacity: 0.34;
    transform: translate(3px, -1px);
  }
  93% {
    opacity: 0.18;
    transform: translate(-2px, 1px);
  }
  96% {
    opacity: 0.3;
    transform: translate(1px, 0);
  }
}

@keyframes railPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.88);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes slowSweep {
  from {
    transform: translateX(-12%);
  }
  to {
    transform: translateX(12%);
  }
}

@keyframes chipDance {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes laneRun {
  0% {
    transform: translateX(0) skewX(-8deg);
  }
  100% {
    transform: translateX(calc(100vw + 280px)) skewX(-8deg);
  }
}

@keyframes panelScan {
  from {
    transform: translateY(-18%);
  }
  to {
    transform: translateY(18%);
  }
}

@keyframes starDrift {
  from {
    background-position: 12px 18px, 55px 45px;
  }
  to {
    background-position: 220px 150px, -120px 210px;
  }
}

@keyframes boardMoveA {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-504px);
  }
}

@keyframes boardMoveB {
  from {
    transform: translateX(-504px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes boardPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleX(0.78);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes outputFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 0 44px rgba(62, 242, 162, 0.18);
  }
  50% {
    transform: translateY(-4px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 62px rgba(62, 242, 162, 0.28);
  }
}

@keyframes globeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes skeletonFlow {
  0% {
    background-position: 220% 0;
  }
  100% {
    background-position: -40% 0;
  }
}

@keyframes buttonGleam {
  0%,
  74%,
  100% {
    transform: translateX(-110%);
    opacity: 0;
  }
  82% {
    opacity: 1;
  }
  92% {
    transform: translateX(110%);
    opacity: 0;
  }
}

.intake-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at 84% 20%, rgba(62, 242, 162, 0.12), transparent 34%),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 28%),
    #070a10;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.intake-form,
.intake-dialog {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(8, 13, 20, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 34px 100px rgba(0, 0, 0, 0.34);
}

.intake-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.intake-form label {
  display: grid;
  gap: 8px;
  color: #d8e2ee;
  font-size: 13px;
  font-weight: 800;
}

.intake-form input,
.intake-form textarea,
.quick-queue input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 7, 11, 0.7);
  color: var(--ink);
  font: inherit;
}

.intake-form input,
.quick-queue input {
  min-height: 46px;
  padding: 0 13px;
}

.intake-form textarea {
  min-height: 116px;
  padding: 13px;
  resize: vertical;
}

.form-msg {
  min-height: 22px;
  margin: 0;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.form-msg.ok {
  color: var(--green);
}

.intake-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.intake-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.intake-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(860px, 92vh);
  overflow: auto;
  padding: 28px;
}

.modal-open {
  overflow: hidden;
}

.modal-open .sticky-free-cta {
  opacity: 0;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.sticky-free-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 34;
  display: grid;
  gap: 2px;
  min-width: 168px;
  min-height: 58px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(135deg, #ffffff, #8fffe0 58%, #60a5fa),
    rgba(255, 255, 255, 0.14);
  color: #04110c;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 0 0 7px rgba(62, 242, 162, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.42);
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    box-shadow 160ms ease;
}

.sticky-free-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 8px rgba(62, 242, 162, 0.1),
    0 30px 84px rgba(0, 0, 0, 0.48);
}

.sticky-free-cta span {
  color: rgba(4, 17, 12, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.command-center {
  width: min(1440px, calc(100% - 32px));
  margin-inline: auto;
  padding: 126px 0 70px;
}

.command-hero {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 82% 22%, rgba(62, 242, 162, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(8, 13, 20, 0.9);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
}

.quick-queue {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 28px;
}

.quick-queue label {
  display: grid;
  gap: 8px;
  color: #d8e2ee;
  font-size: 13px;
  font-weight: 800;
}

.provider-rack,
.ops-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.provider-rack {
  display: flex;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

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

.ops-card,
.provider-card,
.lead-card,
.small-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 20, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 70px rgba(0, 0, 0, 0.25);
}

.provider-card,
.ops-card {
  padding: 18px;
}

.provider-card {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
}

.dash-tabs {
  position: sticky;
  top: 82px;
  z-index: 10;
  display: flex;
  gap: 9px;
  margin-top: 18px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(5, 7, 11, 0.84);
  backdrop-filter: blur(18px);
  -webkit-overflow-scrolling: touch;
}

.dash-tabs a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.provider-card.on {
  border-color: rgba(62, 242, 162, 0.28);
}

.provider-card.off {
  border-color: rgba(255, 208, 90, 0.24);
}

.ops-card {
  --lane: var(--green);
  border-left: 4px solid var(--lane);
}

.lane-customers {
  --lane: #3ef2a2;
}

.lane-builds {
  --lane: #60a5fa;
}

.lane-send {
  --lane: #ffd05a;
}

.lane-replies {
  --lane: #c084fc;
}

.lane-approval {
  --lane: #ff647c;
}

.lane-money {
  --lane: #8fffe0;
}

.lane-portals {
  --lane: #ffffff;
}

.lane-logs {
  --lane: #94a3b8;
}

.provider-card span,
.ops-head span,
.pill,
.small-card span,
.log-row span {
  color: var(--green);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.provider-card strong,
.ops-head strong {
  display: block;
  color: #fff;
  font-family: "Space Grotesk", Sora, sans-serif;
  font-size: 28px;
}

.provider-card p,
.small-card p,
.lead-card p,
.lead-card small,
.log-row p,
.log-row small {
  color: #cfd9e6;
}

.ops-card.wide {
  grid-column: span 2;
}

.ops-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lane-toggle {
  min-height: 36px;
  min-width: 74px;
  border: 1px solid color-mix(in srgb, var(--lane) 44%, white 12%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--lane) 24%, transparent), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.ops-card.is-collapsed .ops-list {
  display: none;
}

.ops-card.is-collapsed .ops-head {
  padding-bottom: 0;
  border-bottom: 0;
}

.ops-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 16px;
}

.lead-card h3,
.small-card strong {
  margin: 8px 0 6px;
  color: #fff;
}

.score {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(62, 242, 162, 0.3);
  color: #fff;
  background: rgba(62, 242, 162, 0.1);
  font-family: "Space Grotesk", Sora, sans-serif;
  font-size: 24px;
}

.card-actions,
.provider-actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
}

.card-actions button,
.provider-actions button,
.small-card button,
.contact-row a {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(62, 242, 162, 0.045)),
    rgba(255, 255, 255, 0.07);
  color: var(--ink);
  padding: 0 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.card-actions button:hover,
.provider-actions button:hover,
.small-card button:hover,
.contact-row a:hover,
.lane-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(62, 242, 162, 0.34);
}

.contact-row a {
  display: inline-flex;
  align-items: center;
}

.small-card,
.log-row,
.empty-state {
  padding: 14px;
}

.log-row {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.empty-state {
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

@media (max-width: 860px) {
  .intake-section,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .free-preview-badge {
    margin-top: 18px;
  }

  .free-cta {
    width: 100%;
    min-height: 62px;
  }

  .free-preview-call {
    font-size: 14px;
  }

  .command-center {
    width: min(100% - 28px, 720px);
    padding-top: 112px;
  }

  .quick-queue {
    grid-template-columns: 1fr;
  }

  .dash-tabs {
    top: 74px;
    margin-inline: -4px;
  }

  .provider-card {
    flex-basis: 84vw;
  }

  .ops-card.wide {
    grid-column: auto;
  }

  .lead-card {
    grid-template-columns: 1fr;
  }

  .sticky-free-cta {
    left: 14px;
    right: 14px;
    bottom: 12px;
    min-width: 0;
    grid-template-columns: auto 1fr;
    align-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
