:root {
  --bg0: #05080B;
  --bg1: #0A1117;
  --bg2: #0F1820;
  --bg3: #141F29;
  --line: rgba(154, 183, 206, 0.12);
  --line-strong: rgba(154, 183, 206, 0.22);
  --txt: #EDF3F8;
  --txt2: #A3B3C1;
  --txt3: #7E92A4;
  --green: #3BE08C;
  --green-bright: #5CF3A8;
  --green-deep: #1F7A4C;
  --green-dim: rgba(59, 224, 140, 0.14);
  --green-line: rgba(59, 224, 140, 0.32);
  --green-glow: rgba(59, 224, 140, 0.28);
  --cyan: #58C7F3;
  --cyan-dim: rgba(88, 199, 243, 0.10);
  --red: #FF6B6B;
  --amber: #FFB454;
  --ink-on-green: #04150B;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg0);
  color: var(--txt);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(59, 224, 140, 0.28);
  color: #FFFFFF;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--bg2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--txt);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 14px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 36px);
  padding-right: clamp(20px, 4vw, 36px);
}

.section {
  position: relative;
  padding-top: clamp(88px, 11vh, 148px);
  padding-bottom: clamp(88px, 11vh, 148px);
}

.section-tight {
  padding-top: clamp(64px, 8vh, 104px);
  padding-bottom: clamp(64px, 8vh, 104px);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--txt);
  text-wrap: balance;
}

.h-display {
  font-size: clamp(42px, 6.4vw, 76px);
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.h-xl {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
}

.h-lg {
  font-size: clamp(27px, 3.4vw, 38px);
}

.h-md {
  font-size: clamp(20px, 2.4vw, 26px);
}

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

.muted {
  color: var(--txt2);
}

.dim {
  color: var(--txt3);
}

.lede {
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--txt2);
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--txt3);
  margin: 0 0 20px;
}

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

.eyebrow.plain::before {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn svg {
  flex: none;
}

.btn-primary {
  background: linear-gradient(180deg, #46EE9A, #29CE79);
  color: var(--ink-on-green);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 34px -10px var(--green-glow), 0 0 0 1px rgba(59, 224, 140, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 16px 44px -10px rgba(59, 224, 140, 0.45), 0 0 0 1px rgba(59, 224, 140, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-strong);
  color: var(--txt);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(154, 183, 206, 0.4);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-mini {
  padding: 7px 16px;
  font-size: 13px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--txt3);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn-mini:hover {
  color: var(--txt);
  border-color: var(--line-strong);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.atmosphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 10, 15, 0.74);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--line);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

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

.brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--txt);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--txt2);
  transition: color 0.2s var(--ease);
  padding: 6px 2px;
}

.nav-links a:hover {
  color: var(--txt);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.6px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20.5px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 20.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 8, 11, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(24px, 7vw, 48px) 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.mobile-menu a.m-link {
  display: block;
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 10px 0;
  color: var(--txt);
}

.mobile-menu .m-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: -6px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: clip;
}

.hero-atmo-1 {
  width: 720px;
  height: 720px;
  left: -280px;
  top: -180px;
  background: radial-gradient(circle, rgba(59, 224, 140, 0.09), transparent 65%);
}

.hero-atmo-2 {
  width: 900px;
  height: 900px;
  right: -320px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(70, 140, 220, 0.08), transparent 65%);
}

.core-stage {
  position: absolute;
  top: 50%;
  right: max(-160px, -12vw);
  transform: translateY(-50%);
  width: min(58vw, 860px);
  aspect-ratio: 1;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  pointer-events: none;
}

.core-stage.on {
  opacity: 1;
}

.core-stage canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.core-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-fallback svg {
  width: 82%;
  height: 82%;
}

.cf-orbit {
  animation: cf-spin 60s linear infinite;
  transform-origin: center;
}

.cf-orbit.reverse {
  animation-direction: reverse;
  animation-duration: 90s;
}

.cf-dot {
  animation: cf-pulse 4.5s ease-in-out infinite;
}

@keyframes cf-spin {
  to { transform: rotate(360deg); }
}

@keyframes cf-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
  color: var(--txt2);
  margin-bottom: 26px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green-glow);
  animation: status-breathe 2.6s ease-in-out infinite;
  flex: none;
}

@keyframes status-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 224, 140, 0.5); }
  55% { box-shadow: 0 0 0 7px rgba(59, 224, 140, 0); }
}

.hero-status strong {
  color: var(--txt);
  font-weight: 600;
}

.hero-note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--txt3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt3);
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--line-strong), transparent);
  animation: hint-drop 2.2s var(--ease) infinite;
}

@keyframes hint-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scenario-card {
  position: relative;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.scenario-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.scenario-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 46px;
}

.scenario-icon {
  position: absolute;
  top: 28px;
  right: 26px;
  color: var(--txt3);
}

.scenario-quote {
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 0;
  color: var(--txt);
}

.story-verdict {
  margin-top: clamp(52px, 7vw, 84px);
  text-align: center;
}

.story-verdict .line-a {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--txt3);
  font-weight: 550;
  letter-spacing: -0.02em;
  display: block;
}

.story-verdict .line-b {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 650;
  letter-spacing: -0.03em;
  display: block;
  margin-top: 6px;
}

.phone-wrap {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.phone {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
}

.phone-bar {
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 6px;
  background: var(--bg1);
}

.phone-bar i {
  width: 84px;
  height: 18px;
  border-radius: 12px;
  background: var(--bg0);
  border: 1px solid var(--line);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 14px;
  background: var(--bg1);
  border-bottom: 1px solid var(--line);
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1C3A2B, #0B1F16);
  border: 1px solid var(--green-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.chat-name {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.25;
}

.chat-sub {
  font-size: 12px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-body {
  padding: 20px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 380px;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(59, 224, 140, 0.04), transparent 55%),
    var(--bg0);
}

.bubble {
  max-width: 86%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.5;
}

.bubble-user {
  align-self: flex-end;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-bottom-right-radius: 6px;
  color: var(--txt);
}

.bubble-guardian {
  align-self: flex-start;
  background: rgba(59, 224, 140, 0.07);
  border: 1px solid rgba(59, 224, 140, 0.2);
  border-bottom-left-radius: 6px;
  color: #D9EFE4;
}

.bubble-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  padding: 14px 16px;
  background: rgba(59, 224, 140, 0.07);
  border: 1px solid rgba(59, 224, 140, 0.2);
  border-radius: 18px;
  border-bottom-left-radius: 6px;
}

.bubble-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--txt2);
  animation: typing-bounce 1.2s ease-in-out infinite;
}

.bubble-typing i:nth-child(2) { animation-delay: 0.15s; }
.bubble-typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.risk-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
}

.risk-chip {
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--txt3);
}

.risk-chip.high {
  color: #FFD9D9;
  border-color: rgba(255, 107, 107, 0.45);
  background: rgba(255, 107, 107, 0.1);
}

.risk-chip.info {
  color: #CFEBFF;
  border-color: rgba(88, 199, 243, 0.35);
  background: rgba(88, 199, 243, 0.09);
}

.verdict {
  border-left: 2px solid var(--red);
  padding: 4px 0 4px 12px;
  margin-top: 8px;
  color: #FFE3E3;
}

.verdict.safe {
  border-color: var(--amber);
  color: #FFEFD9;
}

.analysis-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--txt2);
}

.analysis-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.spinner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.6px solid rgba(163, 179, 193, 0.25);
  border-top-color: var(--green);
  animation: spin 0.9s linear infinite;
  flex: none;
}

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

.analysis-list li.done .spinner {
  animation: none;
  border-top-color: var(--txt3);
  opacity: 0.45;
}

.demo-side h3 {
  margin-bottom: 14px;
}

.demo-points {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.demo-points li {
  display: flex;
  gap: 14px;
  color: var(--txt2);
  font-size: 15.5px;
}

.demo-points svg {
  flex: none;
  margin-top: 3px;
  color: var(--green);
}

.demo-caption {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--txt3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.mono-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006));
  padding: 34px 32px;
}

.mono-panel h3 {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 22px;
}

.stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--txt2);
}

.stack-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.stack-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stack-list i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--txt3);
  flex: none;
}

.human-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.human-list li {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(59, 224, 140, 0.25);
  background: rgba(59, 224, 140, 0.06);
  color: #C9EDDA;
  font-size: 14.5px;
  font-weight: 500;
}

.perimeter-figure {
  position: relative;
  margin: 0;
}

.perimeter-svg {
  width: 100%;
  height: auto;
}

.perimeter-svg .edge {
  stroke: rgba(154, 183, 206, 0.2);
  stroke-width: 1;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.1s var(--ease);
  transition-delay: var(--d, 0ms);
}

.js .perimeter-svg:not(.drawn) .edge {
  stroke-dashoffset: 1;
}

.perimeter-svg .node-g {
  transition: opacity 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}

.js .perimeter-svg:not(.drawn) .node-g {
  opacity: 0;
}

.perimeter-svg .attack-path {
  fill: none;
  stroke: rgba(255, 107, 107, 0.55);
  stroke-width: 1.4;
  stroke-dasharray: 5 9;
  transition: opacity 0.8s var(--ease) 1.4s;
  animation: march 1.4s linear infinite;
}

.js .perimeter-svg:not(.drawn) .attack-path {
  opacity: 0;
}

@keyframes march {
  to { stroke-dashoffset: -14; }
}

.perimeter-caption {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  color: var(--txt3);
}

.pipeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  margin-top: 10px;
}

.pipeline-step {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 24px 20px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pipeline-step:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.pipeline-step:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pipeline-step + .pipeline-step {
  border-left: none;
}

.pipeline-step.hot {
  background: linear-gradient(180deg, rgba(59, 224, 140, 0.08), rgba(59, 224, 140, 0.015));
  border-color: rgba(59, 224, 140, 0.3);
}

.pipeline-step.hot + .pipeline-step {
  border-left-color: rgba(59, 224, 140, 0.3);
}

.pipeline-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--txt3);
  letter-spacing: 0.1em;
}

.pipeline-title {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pipeline-desc {
  font-size: 13px;
  color: var(--txt3);
  line-height: 1.45;
}

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

.chip-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.005));
  padding: 22px 18px 20px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  cursor: default;
}

.chip-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-line);
  background: linear-gradient(180deg, rgba(59, 224, 140, 0.05), rgba(255, 255, 255, 0.005));
}

.chip-card svg {
  color: var(--txt3);
  margin-bottom: 14px;
  transition: color 0.3s var(--ease);
}

.chip-card:hover svg {
  color: var(--green);
}

.chip-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.cap-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.014);
  align-items: flex-start;
}

.cap-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.cap-title {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 3px;
}

.cap-desc {
  font-size: 13.5px;
  color: var(--txt3);
  line-height: 1.5;
}

.arch-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(59, 224, 140, 0.05), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
  padding: clamp(16px, 3vw, 40px);
  overflow: hidden;
}

.arch-svg {
  width: 100%;
  height: auto;
  display: block;
}

.arch-note {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 15px;
  color: var(--txt2);
}

.arch-note strong {
  color: var(--txt);
}

.arch-note svg {
  color: var(--green);
  flex: none;
}

.integrations-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.004));
}

.int-row {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1.6fr;
  gap: 18px;
  align-items: center;
  padding: 19px clamp(18px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.int-row:last-child {
  border-bottom: none;
}

.int-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.int-name {
  font-size: 15.5px;
  font-weight: 600;
}

.int-name small {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--txt3);
  margin-top: 2px;
}

.status-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-available {
  color: #B8F5D6;
  background: rgba(59, 224, 140, 0.1);
  border: 1px solid rgba(59, 224, 140, 0.35);
}

.status-available i { background: var(--green); }

.status-dev {
  color: #FFE7C2;
  background: rgba(255, 180, 84, 0.09);
  border: 1px solid rgba(255, 180, 84, 0.35);
}

.status-dev i { background: var(--amber); }

.status-planned {
  color: var(--txt2);
  background: rgba(163, 179, 193, 0.07);
  border: 1px solid var(--line);
}

.status-planned i { background: var(--txt3); }

.int-detail {
  font-size: 13.5px;
  color: var(--txt3);
  line-height: 1.5;
}

.enterprise-demo {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.org-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  overflow: hidden;
}

.org-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.org-panel-title {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt3);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  color: var(--green);
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: status-breathe 2.6s ease-in-out infinite;
}

.org-feed {
  padding: 22px 24px 26px;
  display: grid;
  gap: 14px;
}

.feed-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
}

.feed-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: var(--red);
}

.feed-body {
  min-width: 0;
}

.feed-label {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 4px;
}

.feed-text {
  font-size: 14.5px;
  font-weight: 550;
  line-height: 1.45;
}

.feed-meta {
  font-size: 12.5px;
  color: var(--txt3);
  margin-top: 4px;
}

.dashboard-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  box-shadow: 0 50px 110px -50px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.dash-title {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.health-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.health-score b {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--green-bright);
}

.health-score span {
  font-size: 12.5px;
  color: var(--txt3);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-tile {
  background: var(--bg1);
  padding: 20px 22px 22px;
}

.metric-label {
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 10px;
}

.metric-value {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric-value.warn {
  color: var(--amber);
}

.metric-value.bad {
  color: var(--red);
}

.metric-sub {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--txt3);
}

.dash-lower {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1px;
  background: var(--line);
}

.dash-panel {
  background: var(--bg1);
  padding: 24px 26px 28px;
}

.panel-title {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 20px;
}

.pattern-row {
  margin-bottom: 16px;
}

.pattern-row:last-child {
  margin-bottom: 0;
}

.pattern-top {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 8px;
}

.pattern-top b {
  font-weight: 550;
  color: var(--txt2);
}

.pattern-top span {
  font-family: var(--font-mono);
  color: var(--txt3);
  font-size: 12.5px;
}

.pattern-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(163, 179, 193, 0.1);
  overflow: hidden;
}

.pattern-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #1F7A4C, var(--green));
  width: 0;
  transition: width 1.3s var(--ease-out) 0.3s;
}

.dashboard-frame.in-view .pattern-fill {
  width: var(--w, 50%);
}

.action-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.action-feed li {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: var(--txt2);
  line-height: 1.5;
}

.action-feed time {
  flex: none;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--txt3);
  padding-top: 2px;
  width: 74px;
}

.illustrative-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--txt3);
  margin-top: 18px;
}

.illustrative-tag svg {
  flex: none;
}

.stack-viz {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.stack-layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.016);
  font-size: 15px;
  font-weight: 550;
  color: var(--txt2);
}

.stack-layer small {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--txt3);
  letter-spacing: 0.02em;
}

.stack-human {
  border-color: rgba(59, 224, 140, 0.45);
  background: linear-gradient(90deg, rgba(59, 224, 140, 0.1), rgba(59, 224, 140, 0.03));
  color: var(--txt);
  position: relative;
  overflow: hidden;
}

.stack-human::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(59, 224, 140, 0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: sheen 5s var(--ease) infinite;
}

@keyframes sheen {
  0%, 55% { transform: translateX(-100%); }
  85%, 100% { transform: translateX(100%); }
}

.stack-gap {
  height: 22px;
  position: relative;
}

.stack-gap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--line-strong) 0 4px, transparent 4px 9px);
}

.ai-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.ai-principles li {
  list-style: none;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--txt2);
  background: rgba(255, 255, 255, 0.015);
}

.flow-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.chain-node {
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 14.5px;
  font-weight: 550;
  white-space: nowrap;
}

.chain-node.approval {
  border-color: rgba(255, 180, 84, 0.4);
  background: rgba(255, 180, 84, 0.07);
  color: #FFE7C2;
}

.chain-node.action {
  border-color: rgba(59, 224, 140, 0.4);
  background: rgba(59, 224, 140, 0.07);
  color: #C9EDDA;
}

.chain-arrow {
  color: var(--txt3);
  flex: none;
}

.roadmap {
  position: relative;
  margin: 0;
  padding: 0 0 0 34px;
  list-style: none;
  max-width: 720px;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green-line), var(--line));
}

.roadmap li {
  position: relative;
  padding: 0 0 44px;
}

.roadmap li:last-child {
  padding-bottom: 0;
}

.roadmap li::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg0);
  border: 2px solid var(--txt3);
}

.roadmap li.now::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 14px var(--green-glow);
}

.era {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  color: var(--txt3);
  display: block;
  margin-bottom: 8px;
}

.roadmap li.now .era {
  color: var(--green);
}

.era-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.era-desc {
  font-size: 15px;
  color: var(--txt2);
  max-width: 56ch;
}

.vision-quote {
  margin-top: clamp(48px, 7vw, 80px);
  max-width: 760px;
  border-left: 2px solid var(--green-line);
  padding-left: 28px;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
  color: var(--txt2);
  font-weight: 450;
  letter-spacing: -0.01em;
}

.trust-list {
  border-top: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: 64px 1fr 1.5fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: baseline;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.trust-row:hover {
  background: rgba(255, 255, 255, 0.014);
}

.trust-index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--txt3);
}

.trust-name {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.trust-desc {
  font-size: 15px;
  color: var(--txt2);
  line-height: 1.6;
}

.invest-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.invest-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.final-cta {
  position: relative;
  overflow: clip;
  text-align: center;
}

.final-cta-atmo {
  width: 880px;
  height: 880px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59, 224, 140, 0.08), transparent 62%);
  opacity: 0.8;
}

.final-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: 16px;
  color: var(--txt2);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 68px 0 42px;
  background: linear-gradient(180deg, var(--bg0), #030507);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 56px;
}

.footer-brand p {
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--txt3);
  max-width: 30ch;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-col a {
  font-size: 14.5px;
  color: var(--txt2);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--txt);
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--txt3);
}

.wa-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 16px));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px 13px 16px;
  border-radius: 999px;
  background: rgba(10, 17, 23, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(59, 224, 140, 0.3);
  color: var(--txt);
  box-shadow: 0 14px 40px -12px rgba(0, 0, 0, 0.7), 0 0 24px -6px rgba(59, 224, 140, 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
  animation: fab-breathe 4.5s ease-in-out infinite;
}

@keyframes fab-breathe {
  0%, 100% { box-shadow: 0 14px 40px -12px rgba(0, 0, 0, 0.7), 0 0 20px -8px rgba(59, 224, 140, 0.2); }
  50% { box-shadow: 0 14px 40px -12px rgba(0, 0, 0, 0.7), 0 0 34px -6px rgba(59, 224, 140, 0.4); }
}

.wa-fab:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 224, 140, 0.55);
}

.wa-fab-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #46EE9A, #25C974);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #052012;
  flex: none;
}

.wa-fab-text {
  display: grid;
  line-height: 1.25;
}

.wa-fab-text b {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.wa-fab-text span {
  font-size: 11.5px;
  color: var(--txt3);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0ms);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.step-hidden {
  opacity: 0 !important;
  transform: translateY(10px) !important;
}

[data-step] {
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

@media (max-width: 1060px) {
  .chip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pipeline {
    flex-wrap: wrap;
    gap: 10px;
  }
  .pipeline-step {
    flex: 1 1 calc(33.33% - 10px);
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .core-stage {
    right: 50%;
    transform: translate(50%, -42%);
    width: min(130vw, 640px);
    opacity: 0.55;
  }
  .hero-content {
    max-width: 100%;
  }
  .scenario-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .scenario-tag {
    margin-bottom: 34px;
  }
  .split-2,
  .phone-wrap,
  .enterprise-demo {
    grid-template-columns: 1fr;
  }
  .trust-row {
    grid-template-columns: 44px 1fr;
  }
  .trust-desc {
    grid-column: 2;
  }
  .wa-fab-text {
    display: none;
  }
  .wa-fab {
    padding: 14px;
  }
  .scroll-hint {
    display: none;
  }
}

@media (max-width: 620px) {
  .chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .dash-lower {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .pipeline-step {
    flex: 1 1 100%;
  }
  .flow-chain {
    justify-content: center;
  }
  .int-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .status-pill {
    justify-self: start;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-row .btn {
    width: 100%;
  }
  .invest-actions .btn {
    width: auto;
  }
  .chat-body {
    min-height: 340px;
  }
}

.legal-page {
  padding: 150px 0 100px;
}

.legal-page .container {
  max-width: 780px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--txt3);
  margin-bottom: 36px;
  transition: color 0.2s var(--ease);
}

.legal-back:hover {
  color: var(--txt);
}

.legal-page h1 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 13px;
  color: var(--txt3);
  margin-bottom: 44px;
}

.legal-body h2 {
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 38px 0 12px;
}

.legal-body p,
.legal-body li {
  color: var(--txt2);
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-body ul {
  padding-left: 20px;
  margin: 10px 0;
}

.legal-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  font-size: 13px;
  color: var(--txt3);
}

@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;
    transition-delay: 0ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .stack-human::after {
    display: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(59, 224, 140, 0.32);
  background: rgba(59, 224, 140, 0.07);
  color: #BDF2D8;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.045em;
  margin: 0 0 24px;
  box-shadow: 0 0 24px -10px rgba(59, 224, 140, 0.4);
}

.hero-badge svg {
  flex: none;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
  margin-top: 28px;
}

.hero-meta-row .hero-status {
  margin-bottom: 0;
}

.hero-meta-row .hero-note {
  margin-top: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 60px 130px -45px rgba(0, 0, 0, 0.9), 0 0 90px -40px rgba(59, 224, 140, 0.35);
  background: var(--bg1);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 8, 11, 0.55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(40px, 5vw, 76px);
    align-items: center;
    width: 100%;
  }
  .hero-content {
    max-width: 600px;
  }
  .hero-visual {
    max-width: 560px;
    justify-self: end;
  }
}

@media (max-width: 1023px) {
  .hero-visual {
    margin: 48px auto 0;
    max-width: 560px;
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.plan-featured {
  border-color: rgba(59, 224, 140, 0.45);
  background: linear-gradient(180deg, rgba(59, 224, 140, 0.07), rgba(255, 255, 255, 0.006));
  box-shadow: 0 30px 70px -34px rgba(59, 224, 140, 0.3);
}

.plan-featured:hover {
  border-color: rgba(59, 224, 140, 0.7);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #46EE9A, #29CE79);
  color: var(--ink-on-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px -8px rgba(59, 224, 140, 0.55);
}

.plan-name {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 4px;
}

.plan-price .amount {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-price .per {
  font-size: 13px;
  color: var(--txt3);
}

.plan-tag {
  font-size: 13px;
  color: var(--txt3);
  margin: 0 0 22px;
}

.plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 14.5px;
  color: var(--txt2);
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.plan-features li::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: none;
  margin-top: 3px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233BE08C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.plan-card .btn {
  margin-top: auto;
}

.btn-block {
  width: 100%;
}

.enterprise-strip {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(88, 199, 243, 0.06), rgba(255, 255, 255, 0.012));
}

.strip-label {
  display: block;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 7px;
}

.enterprise-strip strong {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.strip-desc {
  display: block;
  margin-top: 7px;
  font-size: 13.5px;
  color: var(--txt3);
}

.plans-note {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--txt3);
}

@media (max-width: 1060px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .enterprise-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-badge {
    font-size: 11.5px;
    padding: 8px 14px;
  }
}
