:root {
  color-scheme: dark;
  --bg: #06101d;
  --bg-deep: #030a12;
  --surface: rgba(13, 27, 44, 0.78);
  --surface-solid: #0b1828;
  --surface-raised: #102238;
  --line: rgba(153, 190, 220, 0.14);
  --line-strong: rgba(153, 220, 242, 0.25);
  --text: #f4f8fb;
  --muted: #91a6b8;
  --muted-strong: #b7c6d2;
  --cyan: #3de0ff;
  --cyan-soft: rgba(61, 224, 255, 0.14);
  --violet: #8b7cff;
  --violet-soft: rgba(139, 124, 255, 0.14);
  --green: #79e6a1;
  --green-soft: rgba(121, 230, 161, 0.14);
  --orange: #ffbd70;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 174, 234, 0.08), transparent 32%),
    linear-gradient(180deg, #06101d 0%, #07121f 42%, #050d17 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: absolute;
  z-index: -3;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.ambient-one {
  top: -14rem;
  right: -10rem;
  background: rgba(54, 200, 255, 0.12);
}

.ambient-two {
  top: 45rem;
  left: -24rem;
  background: rgba(118, 95, 255, 0.11);
}

.page-grid {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  width: min(100%, 1500px);
  height: 900px;
  transform: translateX(-50%);
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  background-image:
    linear-gradient(rgba(116, 170, 204, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 170, 204, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 20px 24px;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 14, 24, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 11px;
  font-size: 1rem;
  font-weight: 730;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(95, 223, 255, 0.24);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(61, 224, 255, 0.13), rgba(139, 124, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.22);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-ring { stroke: var(--cyan); }
.mark-console { stroke: #fff; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(147, 187, 215, 0.11);
  border-radius: 999px;
  background: rgba(10, 23, 38, 0.56);
}

.desktop-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.87rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(16, 40, 59, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-cta svg,
.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(61, 224, 255, 0.48);
  background: rgba(22, 53, 76, 0.9);
  transform: translateY(-1px);
}

.nav-cta:hover svg,
.button:hover svg { transform: translateX(3px); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(620px, 1.12fr);
  align-items: center;
  width: min(calc(100% - 48px), 1360px);
  min-height: 860px;
  margin: 0 auto;
  padding: 138px 0 82px;
  gap: 52px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  color: #b5cbd9;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(121, 230, 161, 0.8);
}

.signal-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(121, 230, 161, 0.36);
  border-radius: 50%;
  content: "";
  animation: pulse-ring 2.4s ease-out infinite;
}

.hero h1 {
  max-width: 700px;
  margin: 25px 0 24px;
  font-size: clamp(3.5rem, 5.5vw, 5.65rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

.hero h1 span,
.section-heading h2 span,
.workspace-heading h2 span,
.principles-copy h2 span {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 4%, #63dfff 42%, #a89eff 88%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, #5be7ff, #55c9f9 52%, #9386ff);
  color: #03101a;
  box-shadow: 0 13px 34px rgba(51, 203, 245, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 17px 42px rgba(51, 203, 245, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.79rem;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 14px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  perspective: 1600px;
}

.visual-halo {
  position: absolute;
  top: 10%;
  left: 8%;
  z-index: -1;
  width: 82%;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 208, 255, 0.17), rgba(117, 88, 255, 0.08) 38%, transparent 70%);
  filter: blur(36px);
}

.console-window {
  position: relative;
  overflow: hidden;
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(145, 209, 237, 0.2);
  border-radius: 22px;
  background: #071321;
  box-shadow: 0 55px 120px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease;
}

.console-window:hover {
  border-color: rgba(88, 219, 255, 0.34);
  transform: rotateY(-1.5deg) rotateX(0.5deg) translateY(-4px);
}

.window-bar {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  height: 45px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(151, 196, 220, 0.1);
  background: #0d1b2b;
}

.window-controls { display: flex; gap: 6px; }
.window-controls i { width: 7px; height: 7px; border-radius: 50%; background: #31475a; }
.window-controls i:nth-child(1) { background: #ff7885; }
.window-controls i:nth-child(2) { background: #ffc86a; }
.window-controls i:nth-child(3) { background: #6ddb9a; }

.address-pill {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: rgba(3, 11, 18, 0.42);
  color: #7890a3;
  font-size: 0.61rem;
}

.address-pill svg { width: 10px; fill: none; stroke: #7792a7; stroke-width: 1.5; }
.preview-label { justify-self: end; color: #52697b; font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; }

.console-layout {
  display: grid;
  grid-template-columns: 132px 1fr;
  height: 460px;
}

.console-sidebar {
  display: flex;
  flex-direction: column;
  padding: 15px 10px 10px;
  border-right: 1px solid rgba(146, 191, 215, 0.09);
  background: #091725;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 6px 16px;
  color: #dcebf3;
  font-size: 0.68rem;
  font-weight: 700;
}

.mini-mark {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--cyan), var(--violet));
  color: #06111d;
  font-size: 0.62rem;
  font-weight: 900;
}

.side-group { display: flex; flex: 1; flex-direction: column; gap: 4px; }
.side-label { padding: 5px 7px 4px; color: #4f687b; font-size: 0.5rem; font-weight: 750; letter-spacing: 0.11em; text-transform: uppercase; }
.side-link { display: flex; align-items: center; gap: 7px; padding: 7px 8px; border-radius: 7px; color: #718a9d; font-size: 0.58rem; }
.side-link svg { width: 12px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.side-link.active { background: linear-gradient(90deg, rgba(61, 224, 255, 0.13), rgba(61, 224, 255, 0.035)); color: #d8f7ff; box-shadow: inset 2px 0 var(--cyan); }
.side-footer { display: grid; grid-template-columns: 24px 1fr 12px; align-items: center; gap: 6px; padding: 9px 6px 2px; border-top: 1px solid rgba(255, 255, 255, 0.06); color: #9db1c0; }
.avatar { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 7px; background: #152b3d; font-size: 0.5rem; font-weight: 800; }
.side-footer span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.25; }
.side-footer b { color: #b9cbd7; font-size: 0.52rem; }
.side-footer small { color: #526b7e; font-size: 0.45rem; }
.side-footer svg { width: 10px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.console-main {
  overflow: hidden;
  padding: 27px 25px;
  background:
    radial-gradient(circle at 95% 0, rgba(61, 224, 255, 0.045), transparent 32%),
    #071321;
}

.console-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.micro-label { color: #4f6c80; font-size: 0.48rem; font-weight: 800; letter-spacing: 0.14em; }
.console-heading h2 { margin: 5px 0 2px; color: #eef7fb; font-size: 1.18rem; letter-spacing: -0.04em; }
.console-heading p { margin: 0; color: #668094; font-size: 0.58rem; }
.system-chip { display: flex; align-items: center; gap: 5px; padding: 6px 8px; border: 1px solid rgba(121, 230, 161, 0.13); border-radius: 999px; background: rgba(121, 230, 161, 0.05); color: #8fb9a0; font-size: 0.48rem; }
.system-chip span { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(121, 230, 161, 0.8); }

.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 20px; }
.metric-card { min-width: 0; padding: 12px; border: 1px solid rgba(140, 192, 218, 0.1); border-radius: 11px; background: rgba(15, 34, 52, 0.65); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025); }
.metric-top { display: flex; align-items: center; justify-content: space-between; color: #6f899c; font-size: 0.51rem; }
.metric-icon { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 6px; font-size: 0.6rem; font-style: normal; }
.metric-icon.cyan { background: var(--cyan-soft); color: var(--cyan); }
.metric-icon.violet { background: var(--violet-soft); color: var(--violet); }
.metric-icon.green { background: var(--green-soft); color: var(--green); }
.metric-card strong { display: block; margin: 7px 0 2px; font-size: 1.08rem; letter-spacing: -0.04em; }
.metric-card strong span { color: #8298a9; font-size: 0.62rem; font-weight: 600; }
.metric-card small { color: #526c7f; font-size: 0.48rem; }

.console-bottom-grid { display: grid; grid-template-columns: 1.55fr 0.95fr; gap: 9px; margin-top: 9px; }
.chart-card, .activity-card { min-width: 0; padding: 13px; border: 1px solid rgba(140, 192, 218, 0.1); border-radius: 11px; background: rgba(11, 28, 44, 0.7); }
.card-heading { display: flex; align-items: center; justify-content: space-between; }
.card-heading > div { display: flex; flex-direction: column; }
.card-heading span { color: #bbceda; font-size: 0.57rem; font-weight: 650; }
.card-heading small { margin-top: 1px; color: #526b7e; font-size: 0.45rem; }
.card-heading button { padding: 4px 6px; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 5px; background: rgba(255, 255, 255, 0.025); color: #637d91; font-size: 0.45rem; }
.chart-wrap { position: relative; height: 136px; margin-top: 9px; }
.chart-guides { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; }
.chart-guides i { width: 100%; border-top: 1px dashed rgba(142, 184, 207, 0.08); }
.chart-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.chart-area { fill: url(#area); }
.chart-line { fill: none; stroke: var(--cyan); stroke-width: 2.2; filter: url(#glow); vector-effect: non-scaling-stroke; }
.chart-wrap circle { fill: #fff; stroke: var(--cyan); stroke-width: 2; filter: url(#glow); }
.chart-tooltip { position: absolute; top: 33px; right: 19%; display: flex; flex-direction: column; padding: 5px 7px; border: 1px solid rgba(61, 224, 255, 0.24); border-radius: 6px; background: rgba(4, 13, 22, 0.88); box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25); line-height: 1.2; }
.chart-tooltip b { font-size: 0.52rem; }
.chart-tooltip span { color: #668094; font-size: 0.42rem; }
.chart-axis { display: flex; justify-content: space-between; margin-top: -2px; color: #486174; font-size: 0.4rem; }
.live-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px rgba(121, 230, 161, 0.8); }
.activity-list { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.activity-item { display: grid; grid-template-columns: 23px 1fr auto; align-items: center; gap: 7px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.055); }
.activity-item:last-child { border: 0; }
.activity-symbol { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 6px; font-size: 0.52rem; }
.activity-symbol.accepted { background: var(--green-soft); color: var(--green); }
.activity-symbol.delivered { background: var(--cyan-soft); color: var(--cyan); }
.activity-symbol.logged { background: var(--violet-soft); color: var(--violet); }
.activity-item > span:nth-child(2) { display: flex; flex-direction: column; min-width: 0; }
.activity-item b { color: #aebfca; font-size: 0.49rem; font-weight: 650; }
.activity-item small { color: #4e687b; font-size: 0.42rem; }
.activity-item time { color: #597286; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.43rem; }
.window-shine { position: absolute; top: -60%; left: -28%; width: 28%; height: 220%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.032), transparent); transform: rotate(18deg); animation: shine 9s ease-in-out infinite; pointer-events: none; }

.floating-status {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(142, 209, 234, 0.18);
  border-radius: 13px;
  background: rgba(11, 26, 42, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.floating-status > span:last-child { display: flex; flex-direction: column; }
.floating-status b { font-size: 0.63rem; }
.floating-status small { color: #6d879a; font-size: 0.5rem; }
.status-one { right: -15px; bottom: 72px; }
.status-two { top: 76px; left: -25px; animation-delay: -2.2s; }
.status-icon { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 8px; background: var(--green-soft); color: var(--green); font-size: 0.76rem; }
.tiny-wave { display: flex; width: 29px; height: 27px; align-items: center; justify-content: center; gap: 2px; border-radius: 8px; background: var(--cyan-soft); }
.tiny-wave i { width: 2px; height: var(--h, 6px); border-radius: 999px; background: var(--cyan); animation: wave 1.2s ease-in-out infinite; }
.tiny-wave i:nth-child(1) { --h: 6px; }
.tiny-wave i:nth-child(2) { --h: 12px; animation-delay: -0.2s; }
.tiny-wave i:nth-child(3) { --h: 17px; animation-delay: -0.4s; }
.tiny-wave i:nth-child(4) { --h: 10px; animation-delay: -0.6s; }
.tiny-wave i:nth-child(5) { --h: 5px; animation-delay: -0.8s; }

.module-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(8, 20, 33, 0.66);
}

.module-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 52px);
  padding: 19px 32px;
  color: #6f8798;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.module-track i { width: 4px; height: 4px; border-radius: 50%; background: #2a5267; }

.section {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 132px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 56px;
  margin-bottom: 52px;
}

.section-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -24px; color: #6f8ba0; }
.section-heading h2,
.workspace-heading h2,
.principles-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-heading p,
.workspace-heading > p,
.principles-copy > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(139, 124, 255, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(15, 33, 52, 0.86), rgba(8, 21, 35, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(117, 205, 238, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.feature-card-large {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 470px;
  gap: 70px;
  background:
    radial-gradient(circle at 82% 28%, rgba(61, 224, 255, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(15, 34, 53, 0.9), rgba(8, 21, 35, 0.78));
}

.feature-number { position: absolute; top: 28px; right: 32px; color: #3b566a; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; }
.feature-icon { display: grid; width: 45px; height: 45px; place-items: center; margin-bottom: 24px; border: 1px solid rgba(61, 224, 255, 0.2); border-radius: 14px; background: var(--cyan-soft); color: var(--cyan); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.feature-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon.violet-icon { border-color: rgba(139, 124, 255, 0.2); background: var(--violet-soft); color: var(--violet); }
.feature-icon.green-icon { border-color: rgba(121, 230, 161, 0.2); background: var(--green-soft); color: var(--green); }
.feature-copy h3 { margin: 0 0 12px; font-size: clamp(1.55rem, 2.5vw, 2.2rem); letter-spacing: -0.04em; }
.feature-copy p { max-width: 480px; margin: 0; color: var(--muted); font-size: 0.98rem; line-height: 1.72; }

.code-preview {
  overflow: hidden;
  border: 1px solid rgba(139, 204, 232, 0.16);
  border-radius: 18px;
  background: rgba(3, 12, 21, 0.78);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.26);
}

.code-bar { display: grid; grid-template-columns: 7px 7px 7px 1fr auto; align-items: center; gap: 5px; padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); background: rgba(17, 34, 51, 0.72); }
.code-bar > span { width: 6px; height: 6px; border-radius: 50%; background: #30495d; }
.code-bar small { margin-left: 7px; color: #698195; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.61rem; }
.code-bar b { padding: 3px 6px; border-radius: 5px; background: var(--green-soft); color: var(--green); font-size: 0.52rem; }
.code-preview pre { margin: 0; padding: 27px; color: #8ca4b5; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.8rem; line-height: 1.85; white-space: pre-wrap; }
.code-preview code em { color: #7a91a2; font-style: normal; }
.code-preview code span { color: #76dff4; }
.code-preview code b { color: #90e2ac; font-weight: 500; }
.code-preview code u { color: #b6aaff; text-decoration: none; }
.code-preview code i { color: #ffcb88; font-style: normal; }
.code-foot { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-top: 1px solid rgba(255, 255, 255, 0.055); color: #5e788c; font-size: 0.58rem; }
.code-foot span { display: flex; align-items: center; gap: 6px; color: #81a58e; }
.code-foot i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(121, 230, 161, 0.75); }

.mini-bars { position: absolute; right: 34px; bottom: 34px; left: 34px; display: flex; height: 120px; align-items: end; gap: 12px; padding-top: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mini-bars::before, .mini-bars::after { position: absolute; left: 0; width: 100%; border-top: 1px dashed rgba(255, 255, 255, 0.055); content: ""; }
.mini-bars::before { top: 34%; }
.mini-bars::after { top: 66%; }
.mini-bars i { z-index: 1; flex: 1; height: var(--h); min-width: 8px; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, #9182ff, rgba(91, 75, 196, 0.24)); box-shadow: 0 -7px 24px rgba(139, 124, 255, 0.12); }

.stack-list { position: absolute; right: 34px; bottom: 34px; left: 34px; display: flex; flex-direction: column; gap: 8px; }
.stack-list > span { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid rgba(255, 255, 255, 0.065); border-radius: 10px; background: rgba(6, 17, 28, 0.48); }
.stack-list i { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 8px; font-size: 0.67rem; font-style: normal; font-weight: 800; }
.stack-a { background: var(--cyan-soft); color: var(--cyan); }
.stack-b { background: var(--violet-soft); color: var(--violet); }
.stack-c { background: var(--green-soft); color: var(--green); }
.stack-list b { color: #b9c9d4; font-size: 0.75rem; }
.stack-list small { color: #5b7488; font-size: 0.62rem; }

.workspace-section { width: min(calc(100% - 48px), 1260px); }
.workspace-heading { display: grid; grid-template-columns: 1fr 0.7fr; align-items: end; gap: 60px; margin-bottom: 52px; }
.workspace-heading .section-kicker, .principles-copy .section-kicker { margin-bottom: 17px; color: #6f8ba0; }
.workspace-demo { display: grid; grid-template-columns: 340px 1fr; overflow: hidden; min-height: 600px; border: 1px solid rgba(143, 200, 227, 0.17); border-radius: 30px; background: linear-gradient(135deg, rgba(13, 31, 49, 0.88), rgba(6, 18, 30, 0.88)); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.035); }
.module-selector { display: flex; flex-direction: column; gap: 7px; padding: 20px; border-right: 1px solid var(--line); background: rgba(6, 17, 29, 0.46); }
.module-button { display: grid; grid-template-columns: 42px 1fr 16px; align-items: center; gap: 11px; padding: 13px; border: 1px solid transparent; border-radius: 14px; background: transparent; color: inherit; text-align: left; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.module-button:hover { background: rgba(255, 255, 255, 0.035); transform: translateX(2px); }
.module-button.active { border-color: rgba(61, 224, 255, 0.15); background: linear-gradient(90deg, rgba(61, 224, 255, 0.11), rgba(61, 224, 255, 0.025)); box-shadow: inset 2px 0 var(--cyan); }
.module-icon { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 11px; background: rgba(255, 255, 255, 0.035); color: #8198aa; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; font-weight: 700; }
.module-button.active .module-icon { border-color: rgba(61, 224, 255, 0.18); background: var(--cyan-soft); color: var(--cyan); }
.module-button > span:nth-child(2) { display: flex; flex-direction: column; }
.module-button b { color: #bdccd6; font-size: 0.82rem; }
.module-button small { margin-top: 2px; color: #5e788b; font-size: 0.66rem; }
.module-button > i { color: #405a6e; font-style: normal; transition: transform 0.2s ease, color 0.2s ease; }
.module-button.active > i { color: var(--cyan); transform: rotate(45deg); }
.module-detail { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 72px); background: radial-gradient(circle at 85% 15%, rgba(60, 214, 255, 0.08), transparent 32%); }
.detail-topline { display: flex; align-items: center; justify-content: space-between; color: #6d8799; font-size: 0.68rem; font-weight: 760; letter-spacing: 0.13em; }
.detail-state { display: flex; align-items: center; gap: 7px; padding: 6px 9px; border: 1px solid rgba(121, 230, 161, 0.13); border-radius: 999px; color: #87ad94; font-size: 0.58rem; letter-spacing: 0; text-transform: none; }
.detail-state i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(121, 230, 161, 0.8); }
.module-detail h3 { max-width: 700px; margin: 25px 0 16px; font-size: clamp(2.1rem, 4vw, 3.5rem); letter-spacing: -0.055em; line-height: 1.04; }
.module-detail > p { max-width: 680px; margin: 0; color: var(--muted); font-size: 0.98rem; line-height: 1.72; }
.detail-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 36px 0 24px; border-block: 1px solid var(--line); }
.detail-stats > div { display: flex; flex-direction: column; gap: 5px; padding: 19px 18px 19px 0; }
.detail-stats > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.detail-stats span { color: #698296; font-size: 0.68rem; }
.detail-stats strong { font-size: 1.15rem; letter-spacing: -0.03em; }
.detail-visual { overflow: hidden; border: 1px solid rgba(140, 199, 226, 0.13); border-radius: 16px; background: rgba(3, 12, 21, 0.58); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.detail-visual[data-mode="integrations"], .detail-visual[data-mode="webhooks"] { border-color: rgba(139, 124, 255, 0.18); box-shadow: inset 0 0 45px rgba(139, 124, 255, 0.025); }
.detail-visual[data-mode="routing"], .detail-visual[data-mode="reports"] { border-color: rgba(121, 230, 161, 0.16); box-shadow: inset 0 0 45px rgba(121, 230, 161, 0.025); }
.detail-toolbar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 11px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); }
.detail-toolbar > span { display: flex; align-items: center; gap: 5px; color: var(--green); font-size: 0.57rem; font-weight: 800; }
.detail-toolbar > span i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.detail-toolbar code { overflow: hidden; padding: 7px 10px; border: 1px solid rgba(255, 255, 255, 0.055); border-radius: 7px; background: rgba(255, 255, 255, 0.025); color: #627b8e; font-size: 0.57rem; text-overflow: ellipsis; white-space: nowrap; }
.detail-toolbar button { padding: 7px 10px; border: 0; border-radius: 7px; background: var(--cyan); color: #03101a; font-size: 0.57rem; font-weight: 750; }
.detail-code-lines { display: flex; flex-direction: column; gap: 9px; padding: 18px; }
.detail-code-lines span { width: var(--w); height: 5px; border-radius: 999px; background: linear-gradient(90deg, rgba(61, 224, 255, 0.42), rgba(139, 124, 255, 0.12)); }
.detail-response { display: flex; align-items: center; justify-content: space-between; padding: 9px 13px; border-top: 1px solid rgba(255, 255, 255, 0.055); color: #658095; font-size: 0.58rem; }
.detail-response span { display: flex; align-items: center; gap: 6px; color: #86aa93; }
.detail-response i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.detail-response b { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 500; }

.principles-section { width: min(calc(100% - 48px), 1260px); }
.principles-shell { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 90px; padding: clamp(40px, 6vw, 78px); border: 1px solid var(--line); border-radius: 30px; background: radial-gradient(circle at 8% 12%, rgba(139, 124, 255, 0.1), transparent 32%), rgba(10, 24, 39, 0.7); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035); }
.principles-copy { align-self: center; }
.principles-copy > p { margin-top: 22px; }
.principle-list { display: flex; flex-direction: column; }
.principle-list article { display: grid; grid-template-columns: 38px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.principle-list article:last-child { border: 0; }
.principle-list article > span { padding-top: 3px; color: #4c697d; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.68rem; }
.principle-list h3 { margin: 0 0 7px; font-size: 1.16rem; letter-spacing: -0.025em; }
.principle-list p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

.final-cta {
  position: relative;
  display: grid;
  overflow: hidden;
  width: min(calc(100% - 48px), 1260px);
  min-height: 520px;
  place-items: center;
  margin-bottom: 112px;
  border: 1px solid rgba(125, 208, 235, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 110%, rgba(61, 224, 255, 0.15), transparent 42%),
    radial-gradient(circle at 82% 12%, rgba(139, 124, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(14, 34, 52, 0.88), rgba(5, 16, 27, 0.88));
}

.final-cta::before { position: absolute; inset: 0; content: ""; opacity: 0.32; background-image: linear-gradient(rgba(121, 184, 210, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(121, 184, 210, 0.08) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at center, black, transparent 70%); }
.cta-content { position: relative; z-index: 2; max-width: 760px; padding: 60px 24px; text-align: center; }
.cta-content .eyebrow { margin: 0 auto; }
.cta-content h2 { margin: 24px 0 18px; font-size: clamp(3rem, 6vw, 5.3rem); letter-spacing: -0.065em; line-height: 0.98; }
.cta-content p { max-width: 600px; margin: 0 auto 29px; color: var(--muted-strong); font-size: 1.02rem; line-height: 1.7; }
.cta-orbit { position: absolute; border: 1px solid rgba(74, 191, 226, 0.12); border-radius: 50%; }
.orbit-one { width: 580px; height: 580px; animation: orbit 20s linear infinite; }
.orbit-one::before { position: absolute; top: 42px; left: 92px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); content: ""; }
.orbit-two { width: 820px; height: 330px; border-color: rgba(139, 124, 255, 0.1); transform: rotate(-14deg); }

.site-footer { border-top: 1px solid var(--line); background: rgba(3, 10, 18, 0.65); }
.footer-shell { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: min(calc(100% - 48px), 1260px); min-height: 120px; margin: 0 auto; gap: 30px; }
.footer-shell > p { color: #60798b; font-size: 0.78rem; }
.footer-meta { display: flex; align-items: center; justify-self: end; gap: 10px; color: #536c7e; font-size: 0.7rem; }
.footer-meta i { width: 3px; height: 3px; border-radius: 50%; background: #385266; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-ring { 0% { opacity: 0.7; transform: scale(0.65); } 75%, 100% { opacity: 0; transform: scale(1.35); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes wave { 0%, 100% { transform: scaleY(0.45); } 50% { transform: scaleY(1); } }
@keyframes shine { 0%, 25% { transform: translateX(-140%) rotate(18deg); } 55%, 100% { transform: translateX(560%) rotate(18deg); } }
@keyframes orbit { to { transform: rotate(360deg); } }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(0, 0.85fr) minmax(530px, 1.15fr); gap: 24px; }
  .console-layout { height: 430px; }
  .floating-status { transform: scale(0.9); }
  .status-one { right: 0; }
  .status-two { left: -8px; }
}

@media (max-width: 980px) {
  .site-header { padding-inline: 18px; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; width: min(calc(100% - 36px), 760px); padding-top: 145px; gap: 62px; }
  .hero-copy { max-width: 720px; text-align: center; }
  .hero .eyebrow, .hero-actions, .hero-proof { justify-content: center; margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .console-window { transform: none; }
  .console-window:hover { transform: translateY(-4px); }
  .status-one { right: -10px; }
  .status-two { left: -10px; }
  .section-heading, .workspace-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading .section-kicker { margin-bottom: -2px; }
  .feature-card-large { grid-template-columns: 1fr; gap: 40px; }
  .workspace-demo { grid-template-columns: 275px 1fr; }
  .module-detail { padding: 38px; }
  .principles-shell { grid-template-columns: 1fr; gap: 42px; }
  .footer-shell { grid-template-columns: 1fr; justify-items: center; padding-block: 32px; text-align: center; gap: 8px; }
  .footer-meta { justify-self: center; }
}

@media (max-width: 760px) {
  .site-header { padding: 13px 14px; }
  .nav-cta { padding: 9px 11px; font-size: 0.78rem; }
  .nav-cta svg { display: none; }
  .hero { width: min(calc(100% - 28px), 680px); min-height: auto; padding-top: 122px; padding-bottom: 68px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.65rem); }
  .hero-lede { font-size: 1rem; }
  .hero-proof { gap: 10px 16px; }
  .console-window { border-radius: 17px; }
  .window-bar { grid-template-columns: 52px 1fr 52px; height: 39px; padding-inline: 10px; }
  .preview-label { display: none; }
  .console-layout { grid-template-columns: 64px 1fr; height: 400px; }
  .console-sidebar { padding-inline: 7px; }
  .mini-brand { justify-content: center; padding-inline: 0; }
  .mini-brand > span:last-child, .side-label, .side-link:not(.active), .side-link.active { font-size: 0; }
  .side-link { justify-content: center; padding: 8px; }
  .side-link svg { width: 15px; }
  .side-link.active { box-shadow: inset 0 -2px var(--cyan); }
  .side-footer { grid-template-columns: 1fr; justify-items: center; }
  .side-footer span:nth-child(2), .side-footer svg { display: none; }
  .console-main { padding: 19px 14px; }
  .system-chip { display: none; }
  .metric-grid { gap: 6px; }
  .metric-card { padding: 9px; }
  .metric-top > span { font-size: 0.44rem; }
  .metric-card strong { font-size: 0.83rem; }
  .metric-card small { display: none; }
  .metric-icon { width: 16px; height: 16px; }
  .console-bottom-grid { grid-template-columns: 1fr; }
  .activity-card { display: none; }
  .chart-wrap { height: 142px; }
  .floating-status { display: none; }
  .module-track { justify-content: flex-start; gap: 20px; overflow: hidden; font-size: 0.64rem; }
  .section { width: min(calc(100% - 28px), 680px); padding: 94px 0; }
  .section-heading h2, .workspace-heading h2, .principles-copy h2 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: auto; }
  .feature-card { min-height: 430px; padding: 26px; }
  .feature-card-large { min-height: 0; }
  .code-preview pre { padding: 20px; font-size: 0.69rem; }
  .workspace-demo { grid-template-columns: 1fr; }
  .module-selector { display: grid; grid-template-columns: repeat(3, 1fr); padding: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .module-button { display: flex; justify-content: center; padding: 9px; }
  .module-button > span:nth-child(2), .module-button > i { display: none; }
  .module-button.active { box-shadow: inset 0 -2px var(--cyan); }
  .module-icon { width: 38px; height: 38px; }
  .module-detail { min-height: 520px; padding: 32px 22px; }
  .detail-stats > div { padding-right: 10px; }
  .detail-stats > div + div { padding-left: 10px; }
  .detail-stats span { font-size: 0.58rem; }
  .detail-stats strong { font-size: 0.94rem; }
  .detail-toolbar code { display: none; }
  .detail-toolbar { grid-template-columns: 1fr auto; }
  .principles-shell { padding: 32px 24px; }
  .final-cta { width: min(calc(100% - 28px), 680px); min-height: 480px; margin-bottom: 82px; }
  .final-cta h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .footer-meta { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 460px) {
  .brand > span:last-child { font-size: 0.92rem; }
  .nav-cta { min-height: 38px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { font-size: 0.7rem; }
  .console-layout { height: 360px; }
  .console-heading h2 { font-size: 0.96rem; }
  .chart-wrap { height: 122px; }
  .feature-card { min-height: 410px; }
  .mini-bars { gap: 7px; }
  .module-detail h3 { font-size: 2rem; }
  .detail-topline > span:first-child { font-size: 0.58rem; }
  .principle-list article { grid-template-columns: 28px 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
