:root {
  --black: #050607;
  --dark: #0a0d12;
  --panel: #11171c;
  --panel-2: #0f1419;
  --lime: #8fe000;
  --lime-bright: #64f500;
  --lime-soft: rgba(143, 224, 0, 0.12);
  --lime-glow: rgba(143, 224, 0, 0.35);
  --text: #f4f6f8;
  --muted: rgba(220, 228, 242, 0.68);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 72px;
  --page-gutter: 20px;
  --wrap: min(1180px, calc(100% - (var(--page-gutter) * 2)));
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--lime); color: var(--black); padding: 10px 16px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { width: var(--wrap); margin: 0 auto; }

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
}
.brand-x {
  color: var(--lime);
  text-shadow: 0 0 20px var(--lime-glow);
  animation: x-pulse 4s ease-in-out infinite;
}
@keyframes x-pulse {
  0%, 100% { text-shadow: 0 0 12px var(--lime-glow); }
  50% { text-shadow: 0 0 28px var(--lime-glow), 0 0 48px rgba(100, 245, 0, 0.2); }
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  background: rgba(5, 6, 7, 0.78);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s, box-shadow 0.25s;
  overflow: visible;
}
/* Blur on a layer that does not trap fixed mobile nav (backdrop-filter creates a containing block). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner,
.site-nav {
  position: relative;
  z-index: 1;
}
.site-header.is-scrolled {
  background: rgba(5, 6, 7, 0.96);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-nav { display: flex; align-items: center; gap: 10px; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: none;
  font-family: var(--font);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-item.is-active-group > .nav-link,
.nav-item.is-active-group > .nav-trigger,
.nav-link.is-active { color: var(--lime); }
.nav-trigger .nav-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}
.nav-item.is-open > .nav-trigger .nav-chevron { transform: rotate(180deg); }
.header-cta { margin-left: 8px; flex-shrink: 0; }

/* Header CTA — animated shine border (CSS mask technique) */
.header-cta--shine.btn,
.header-cta--shine.btn-sm {
  padding: 0;
}
.header-cta--shine {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 28px var(--lime-glow);
}
.header-cta__shine-mask {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) border-box;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.header-cta__shine-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(100, 245, 0, 0.95) 9%,
    #f4ffe8 12%,
    rgba(143, 224, 0, 0.5) 17%,
    transparent 22%
  );
  transform: rotate(0deg) translate(-50%, -50%);
  transform-origin: 0 0;
  animation: header-cta-shine-rotate 3s linear infinite;
}
.header-cta__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--lime);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.25s ease;
}
.header-cta--shine:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--lime-glow);
}
.header-cta--shine:hover .header-cta__label {
  background: var(--lime-bright);
}
.header-cta--shine:focus-visible {
  outline: 2px solid var(--lime-bright);
  outline-offset: 3px;
}
@keyframes header-cta-shine-rotate {
  0% { transform: rotate(0deg) translate(-50%, -50%); }
  100% { transform: rotate(360deg) translate(-50%, -50%); }
}

/* Premium nav dropdown */
.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  /* Invisible bridge — keeps hover active while moving from trigger to panel */
  padding-top: 12px;
  transform: translateX(-50%) translateY(4px);
  min-width: min(420px, 92vw);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
@media (min-width: 901px) {
  .nav-item--dropdown:nth-last-child(-n+2) .nav-dropdown {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(6px);
  }
  .nav-item--dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-item--dropdown:nth-last-child(-n+2).is-open .nav-dropdown {
    transform: translateX(0) translateY(0);
  }
}
.nav-dropdown-panel {
  position: relative;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(143, 224, 0, 0.18);
  background: linear-gradient(165deg, rgba(17, 23, 28, 0.98) 0%, rgba(8, 10, 12, 0.98) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 40px rgba(143, 224, 0, 0.06);
  backdrop-filter: blur(18px);
}
.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 224, 0, 0.45), transparent);
  border-radius: 16px 16px 0 0;
}
.nav-dropdown-intro {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 10px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.nav-dropdown-intro__brace {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 200;
  color: rgba(143, 224, 0, 0.22);
  margin-top: -4px;
  user-select: none;
}
.nav-dropdown-intro__title {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.nav-dropdown-intro__lead {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 32ch;
}
.nav-dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 901px) {
  .nav-dropdown-grid--multi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    min-width: 480px;
  }
  .nav-item--dropdown:has(.nav-dropdown-grid--multi) .nav-dropdown {
    min-width: 520px;
  }
}
.nav-dropdown-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-dropdown-card:hover {
  background: rgba(143, 224, 0, 0.06);
  border-color: rgba(143, 224, 0, 0.15);
  transform: translateX(2px);
}
.nav-dropdown-card.is-active {
  background: rgba(143, 224, 0, 0.08);
  border-color: rgba(143, 224, 0, 0.25);
}
.nav-dropdown-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(143, 224, 0, 0.08);
  border: 1px solid rgba(143, 224, 0, 0.2);
  color: var(--lime);
  box-shadow: 0 0 20px rgba(143, 224, 0, 0.08);
}
.nav-dropdown-card__icon svg {
  width: 20px;
  height: 20px;
}
.nav-dropdown-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-dropdown-card__desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}
.nav-dropdown-card__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(143, 224, 0, 0.5);
  transition: color 0.2s, transform 0.2s;
}
.nav-dropdown-card:hover .nav-dropdown-card__arrow {
  color: var(--lime);
  transform: translateX(2px);
}
.nav-dropdown-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.nav-dropdown-footer a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.02em;
}
.nav-dropdown-footer a:hover { color: var(--lime-bright); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: transparent; border-radius: 10px; cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  display: block; width: 18px; height: 2px; background: #fff;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { content: ""; top: -6px; }
.nav-toggle-bar::after { content: ""; top: 6px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem; padding: 13px 22px;
  border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 8px 28px var(--lime-glow);
}
.btn-primary:hover { background: var(--lime-bright); }
.btn-primary.header-cta--shine,
.btn-primary.header-cta--shine:hover {
  background: transparent;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--lime); color: var(--lime); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--line);
}
.btn-sm { padding: 10px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "⦿";
  font-size: 0.55rem;
  opacity: 0.9;
}
.eyebrow-pill {
  padding: 8px 14px;
  border: 1px solid rgba(143, 224, 0, 0.35);
  border-radius: 999px;
  background: rgba(143, 224, 0, 0.06);
}
.eyebrow-pill::before { display: none; }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 20px;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 14px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 32px;
  line-height: 1.7;
}
.text-lime { color: var(--lime); }
.text-center { text-align: center; }
.text-center .section-lead,
.text-center .hero-lead { margin-left: auto; margin-right: auto; }

/* Sections */
section { padding: clamp(64px, 10vw, 110px) 0; position: relative; }
.section-dark { background: var(--black); }
.section-panel { background: var(--dark); }
.section-muted {
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}
.brace-left::before,
.brace-section::after {
  content: "{";
  position: absolute;
  font-size: clamp(120px, 18vw, 200px);
  line-height: 0.78;
  font-weight: 200;
  color: rgba(190, 198, 220, 0.12);
  pointer-events: none;
  z-index: 0;
}
.brace-left::before { left: -8px; top: 50%; transform: translateY(-50%); }
.brace-section::after { right: 20px; top: 28%; }
.brace-close::before {
  content: "}";
  position: absolute;
  left: 24px;
  bottom: 80px;
  font-size: clamp(100px, 14vw, 180px);
  line-height: 0.78;
  font-weight: 200;
  color: rgba(190, 198, 220, 0.1);
  pointer-events: none;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.92;
  pointer-events: none;
}
.hero-aurora {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(100, 245, 0, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 25%, rgba(143, 224, 0, 0.07), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 90%, rgba(143, 224, 0, 0.05), transparent 55%);
  animation: hero-aurora-shift 18s ease-in-out infinite alternate;
  opacity: 0.85;
}
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 42% 38% at var(--hero-mx, 50%) var(--hero-my, 42%),
    rgba(143, 224, 0, 0.16),
    transparent 72%
  );
  opacity: 0.55;
  transition: opacity 0.45s ease;
  will-change: opacity;
}
.hero--active .hero-spotlight {
  opacity: 1;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(900px, 120vw);
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(143, 224, 0, 0.14), transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate3d(calc(-50% + (var(--hero-mx, 50%) - 50%) * 0.35), 0, 0);
  transition: transform 0.2s ease-out;
  will-change: transform;
}
.hero--interactive .hero-glow,
.hero--interactive .hero-logo-x {
  transition: none;
}
.hero-logo-x {
  display: block;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0 auto 24px;
  color: var(--lime);
  text-shadow: 0 0 40px var(--lime-glow), 0 0 80px rgba(143, 224, 0, 0.15);
  transition: transform 0.12s ease-out;
  will-change: transform;
  backface-visibility: hidden;
}
.hero--interactive.hero--active .hero-spotlight {
  transition: opacity 0.2s ease;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero--static .hero-aurora {
  animation: none;
}
.hero--interactive {
  cursor: default;
  touch-action: pan-y;
}
.hero--mobile .hero-aurora {
  animation: hero-aurora-shift 24s ease-in-out infinite alternate;
  opacity: 0.75;
}
.hero--ambient .hero-spotlight,
.hero--mobile.hero--ambient .hero-spotlight {
  opacity: 0.82;
}
.hero--mobile .hero-spotlight {
  background: radial-gradient(
    ellipse 50% 42% at var(--hero-mx, 50%) var(--hero-my, 42%),
    rgba(143, 224, 0, 0.12),
    transparent 70%
  );
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
@keyframes hero-aurora-shift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -1.5%) scale(1.04); }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-compact { min-height: auto; padding-top: calc(var(--header-h) + 64px); padding-bottom: 64px; }

/* Service cards grid (homepage) */
.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.index-card {
  position: relative;
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.index-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,224,0,0.5), transparent);
}
.index-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 224, 0, 0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 24px rgba(143, 224, 0, 0.06);
}
.index-card__code {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(143, 224, 0, 0.65);
  margin-bottom: 12px;
}
.index-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.index-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}
.index-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 32px 0;
}
.stat-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.stat-val {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* Cards / pricing */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.plan-card {
  position: relative;
  padding: 30px 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  display: flex;
  flex-direction: column;
}
.plan-card.is-featured {
  border-color: rgba(143, 224, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(143, 224, 0, 0.12), 0 20px 50px rgba(0,0,0,0.35);
}
.plan-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--lime);
  border: 1px solid rgba(143, 224, 0, 0.3);
}
.plan-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.plan-card p.plan-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 16px;
  flex-grow: 1;
}
.plan-card ul {
  margin: 0 0 20px;
  padding: 0;
}
.plan-card li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.7;
}
/* Pricing page */
.pricing-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.pricing-jump a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pricing-jump a:hover {
  color: var(--lime);
  border-color: rgba(143, 224, 0, 0.35);
  background: rgba(143, 224, 0, 0.06);
}
.pricing-section {
  padding: clamp(72px, 9vw, 100px) 0;
  border-top: 1px solid var(--line);
}
.pricing-section.section-dark {
  border-top-color: rgba(255, 255, 255, 0.06);
}
.pricing-section__header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.pricing-section__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 32px;
}
.pricing-section__intro .section-title {
  margin-bottom: 10px;
}
.pricing-section__intro .section-lead {
  margin-bottom: 0;
  max-width: 52ch;
}
.pricing-section__link {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lime);
  white-space: nowrap;
}
.pricing-section__link:hover {
  color: var(--lime-bright);
}
.pricing-section__grid {
  margin-top: 0;
}
.pricing-section__footnote {
  margin-top: 28px;
  text-align: center;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
.plan-price-block {
  margin: 0 0 12px;
}
.plan-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.plan-price--single {
  margin: 0 0 12px;
}
.plan-price--yearly {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}
.plan-price__term {
  font-size: 0.72em;
  font-weight: 700;
  color: rgba(220, 228, 242, 0.55);
  margin-left: 2px;
}
.plan-price__save {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--lime-soft);
  border: 1px solid rgba(143, 224, 0, 0.25);
}
.page-pricing .plan-card h3 {
  padding-right: 72px;
}

/* Proof panel */
.proof-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(143,224,0,0.04) 0%, rgba(255,255,255,0.02) 100%);
}
.proof-panel h3 { margin: 0 0 12px; font-size: 1.4rem; }
.proof-note {
  font-size: 0.82rem;
  color: rgba(220,228,242,0.5);
  margin-top: 16px;
  line-height: 1.5;
}
.browser-mock {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #1a1f26;
  border-bottom: 1px solid var(--line);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot--r { background: #ff5f57; }
.browser-dot--y { background: #febc2e; }
.browser-dot--g { background: #28c840; }
.browser-url {
  flex: 1;
  margin-left: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(0,0,0,0.35);
  font-size: 0.72rem;
  color: var(--muted);
}
.browser-screen {
  aspect-ratio: 16/10;
  background: linear-gradient(180deg, #e8f0f8 0%, #d0dce8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  font-size: 0.85rem;
  font-weight: 600;
}
.browser-screen--media {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #0d1114;
}
.browser-screen--media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.showcase-browser {
  margin: 0;
}
.showcase-caption {
  margin: 10px 4px 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 220px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(143, 224, 0, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 12px
    );
  border: 2px dashed rgba(143, 224, 0, 0.22);
  box-sizing: border-box;
}
.media-placeholder__frame {
  width: 48px;
  height: 36px;
  border: 2px solid rgba(143, 224, 0, 0.35);
  border-radius: 6px;
  position: relative;
  opacity: 0.7;
}
.media-placeholder__frame::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 4px;
  border-radius: 2px;
  background: rgba(143, 224, 0, 0.4);
}
.media-placeholder__frame::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 14px;
  height: 12px;
  border-radius: 2px;
  background: rgba(143, 224, 0, 0.15);
}
.media-placeholder__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(220, 228, 242, 0.85);
}
.media-placeholder__hint {
  font-size: 0.72rem;
  color: rgba(143, 224, 0, 0.55);
  max-width: 28ch;
  line-height: 1.4;
}
.showcase-section .section-lead {
  max-width: 62ch;
}
.showcase-browser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.showcase-browser-grid .showcase-browser:first-child:nth-last-child(3) {
  grid-column: 1 / -1;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}
.showcase-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.serp-mock,
.support-mock {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  background: #f1f3f4;
}
.serp-mock__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #e8eaed;
  border-bottom: 1px solid #dadce0;
}
.serp-mock__tab {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9aa0a6;
}
.serp-mock__search {
  flex: 1;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.72rem;
  color: #5f6368;
  border: 1px solid #dfe1e5;
}
.serp-mock__body {
  position: relative;
  background: #fff;
  min-height: 200px;
}
.serp-mock__img {
  width: 100%;
  display: block;
}
.serp-mock__sample {
  padding: 18px 20px 8px;
  font-family: Arial, Helvetica, sans-serif;
  pointer-events: none;
  opacity: 0.35;
}
.serp-mock__breadcrumb {
  font-size: 0.78rem;
  color: #202124;
  line-height: 1.3;
  margin-bottom: 4px;
}
.serp-mock__title {
  font-size: 1.15rem;
  color: #1a0dab;
  line-height: 1.3;
  margin-bottom: 6px;
}
.serp-mock__stars {
  font-size: 0.82rem;
  color: #70757a;
  margin-bottom: 6px;
}
.serp-mock__stars span { color: #70757a; }
.serp-mock__desc {
  font-size: 0.82rem;
  color: #4d5156;
  line-height: 1.45;
  max-width: 52ch;
}
.media-placeholder--serp {
  position: absolute;
  inset: 0;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 249, 250, 0.96) 100%),
    repeating-linear-gradient(
      -45deg,
      rgba(26, 115, 232, 0.04) 0,
      rgba(26, 115, 232, 0.04) 1px,
      transparent 1px,
      transparent 10px
    );
  border: 2px dashed rgba(26, 115, 232, 0.28);
}
.media-placeholder--serp .media-placeholder__title { color: #3c4043; }
.media-placeholder--serp .media-placeholder__hint { color: #1a73e8; }
.support-mock__screen {
  aspect-ratio: 16/10;
  background: #0d1114;
  position: relative;
  overflow: hidden;
}
.support-mock__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.media-placeholder--support {
  min-height: 200px;
  border: none;
  border-radius: 0;
}

/* Cloud promo */
.cloud-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border: 1px solid rgba(143, 224, 0, 0.2);
  border-radius: var(--radius);
  background: rgba(143, 224, 0, 0.04);
}
.cloud-banner .brand-cloud-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}
.cloud-banner .brand-cloud-tag strong { color: #fff; }
.cloud-banner .brand-cloud-tag .brand-x { color: var(--lime); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: "+";
  color: var(--lime);
  font-size: 1.2rem;
  font-weight: 400;
}
.faq-item.is-open .faq-q::after { content: "−"; }
.faq-a {
  display: none;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-item.is-open .faq-a { display: block; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-email {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.contact-email:hover { color: var(--lime-bright); }

/* Footer */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-tagline { color: var(--muted); font-size: 0.92rem; margin: 12px 0 0; max-width: 28ch; }
.footer-heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 14px;
}
.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: rgba(220,228,242,0.45);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--lime); }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Service page */
.page-intro { max-width: 68ch; }
.feature-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

/* In-page pricing anchors (fixed header clearance) */
.service-pricing,
#pricing,
.pricing-section {
  scroll-margin-top: 96px;
}

/* Case study listing */
.work-card__metric {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.work-card__thumb {
  margin: -4px -4px 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 10;
  background: var(--surface);
}
.work-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Case study page specifics */
.case-hero { text-align: center; }
.case-hero-browser {
  max-width: 720px;
  margin: 48px auto 0;
}
.case-metrics-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.metric-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  font-size: 0.82rem;
  color: var(--muted);
}
.metric-pill strong { color: var(--lime); }
.content-block { max-width: 72ch; margin: 0 auto; }
.content-block p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.2em;
}
.content-block h2 {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 2.5em 0 0.75em;
  letter-spacing: -0.03em;
}
.content-block h2:first-child { margin-top: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.list-check li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 720px) {
  :root {
    --page-gutter: 28px;
  }
  .pricing-section__intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-section__link {
    white-space: normal;
  }
  .hero-inner {
    padding-inline: max(4px, env(safe-area-inset-left, 0px)) max(4px, env(safe-area-inset-right, 0px));
  }
  .brace-left::before,
  .brace-section::after,
  .brace-close::before {
    display: none;
  }
}
@media (max-width: 480px) {
  :root {
    --page-gutter: 40px;
  }
  .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    overflow-wrap: anywhere;
  }
  .hero-lead {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .proof-panel, .contact-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .showcase-browser-grid,
  .showcase-support-grid { grid-template-columns: 1fr; }
  .showcase-browser-grid .showcase-browser:first-child:nth-last-child(3) {
    max-width: none;
  }
  .nav-toggle { display: block; position: relative; z-index: 10002; }
  .site-header {
    z-index: 10000;
    overflow: visible;
  }
  .site-header::before {
    display: none;
  }
  .header-inner {
    overflow: visible;
    position: relative;
    z-index: 10001;
  }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    width: 100%;
    max-width: none;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    background: rgba(5, 6, 7, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translate3d(0, -12px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      visibility 0s linear 0.38s;
    overflow-y: auto;
    z-index: 10001;
    -webkit-overflow-scrolling: touch;
    will-change: transform, opacity;
  }
  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      visibility 0s;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 10000;
    background: rgba(5, 6, 7, 0.55);
    opacity: 1;
    pointer-events: none;
    animation: nav-backdrop-in 0.32s ease forwards;
  }
  @keyframes nav-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  body.nav-open .site-header {
    z-index: 10001;
  }
  .nav-list { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-link, .nav-trigger { width: 100%; justify-content: space-between; padding: 12px 14px; }
  .nav-item--dropdown { width: 100%; }
  .nav-dropdown {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    min-width: 0;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    margin: 4px 0 8px;
  }
  .nav-item--dropdown.is-open .nav-dropdown {
    display: block;
    transform: none;
    left: auto;
    right: auto;
  }
  .nav-dropdown-grid--multi {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }
  .nav-item--dropdown:has(.nav-dropdown-grid--multi) .nav-dropdown {
    min-width: 0;
    width: 100%;
  }
  .nav-dropdown-panel {
    padding: 12px;
    box-shadow: none;
    border-color: var(--line);
    max-width: 100%;
    box-sizing: border-box;
  }
  .nav-dropdown-card__body {
    min-width: 0;
  }
  .nav-dropdown-card:hover { transform: none; }
  .header-cta { margin: 12px 0 0; width: 100%; }
  .header-cta--shine {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }
  .header-cta__label {
    flex: 1 1 auto;
    align-self: stretch;
    margin: 1px;
    box-sizing: border-box;
    min-width: 0;
  }
}
@media (min-width: 901px) {
  .site-header::before {
    display: block;
  }
  .site-header {
    display: flex;
    justify-content: center;
  }
  .site-header > .site-nav {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--wrap);
    height: var(--header-h);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow: visible;
    z-index: 2;
  }
  .site-header > .site-nav > * {
    pointer-events: auto;
  }
  .nav-item--dropdown.is-open > .nav-dropdown[hidden] {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-x, [data-reveal] { animation: none; transition: none; }
  .header-cta__shine-glow { animation: none; }
  .hero-aurora { animation: none; }
  .hero-logo-x { transform: none !important; }
  html { scroll-behavior: auto; }
  .site-nav,
  .site-nav.is-open {
    transition: none;
    transform: none;
    will-change: auto;
  }
  body.nav-open::after { animation: none; }
}
