@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap");

/* Shared site styling (distinct, non-template look)
   Theme: clean, map-adjacent product UI (light surfaces + crisp typography).
   Design system: spacing (8px base), fluid type, neutral palette, responsive containers. */

:root {
  /* Breakpoint reference (use in media queries; documented for maintainers):
     mobile: max 640px | tablet: 641–1024px | desktop: 1025–1440px | wide: 1441–1920px | ultra-wide: 1921px+ */

  /* Spacing scale (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;

  /* Clean, minimal UI palette (light surfaces, high-contrast text). */
  --night: #0b1220;
  --ocean: #eef1f6;
  --surface-alt: #d4dae6;
  --surface-odd: #ffffff;
  --surface-contact: #e2e7f0;
  --paper: #ffffff;
  --paper-2: #fafbfc;
  --ink: #0f172a;
  --muted: #475569;
  --border-subtle: rgba(15, 23, 42, 0.08);

  /* Primary + accents (deeper blue, reads more “premium” than default link blue) */
  --teal: #3ecf8e;
  --teal-hover: #2db87a;
  --sky: #6ee7b7;
  --sun: #fbbc04;
  --rose: #ea4335;
  --ring: rgba(21, 88, 184, 0.35);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* Minimal elevation (premium: spacing over shadow) */
  --shadow-1: 0 1px 2px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-2: 0 2px 8px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);

  /* Layout: fluid width, capped on ultra-wide */
  --maxw: 1280px;
  --prose: 65ch;
  --prose-wide: 72ch;

  /* Typography (mobile-first fluid) */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --text-body: clamp(16px, 0.2vw + 15.5px, 18px);
  --text-sm: clamp(13px, 0.15vw + 12px, 14px);
  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-body: 1.66;

  --header-h: 122px;
  --header-h-sm: 108px;
}

@media (min-width: 1921px) {
  :root {
    --maxw: 1320px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--ink);
  background-color: var(--ocean);
  /* Calm neutral canvas (premium / editorial; avoids busy multi-radial look). */
  background-image: none;
  overflow-x: hidden;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Home: calm canvas so sections read clearly (no competing full-bleed photo). */
body.page-home {
  background-color: var(--ocean);
  background-image: none;
}

body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(238, 241, 246, 0.85) 48%, rgba(228, 233, 242, 0.92) 100%);
  pointer-events: none;
  z-index: 0;
}
body.page-home main,
body.page-home .site-footer {
  position: relative;
  z-index: 1;
}

/* Contact page: keep the page calm and distraction-free (no animated canvas, no gradients). */
body.page-contact {
  background-color: #ffffff;
  background-image: none;
}

/* Anchor jumps should account for fixed header. */
section[id],
article[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

@media (max-width: 640px) {
  body {
    padding-top: var(--header-h-sm);
  }

  section[id],
  article[id] {
    scroll-margin-top: calc(var(--header-h-sm) + 18px);
  }
}

a {
  color: #1e5fbf;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(21, 88, 184, 0.38);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

a:hover {
  color: var(--teal-hover);
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(18, 74, 154, 0.72);
}

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 3.8vw, 56px);
  position: relative;
  z-index: 1;
}

.section {
  padding-block: clamp(var(--space-9), 7.5vw, 112px);
}

/*
 * Section breaks — designed to read clearly at a glance (not “maybe there’s a stripe”).
 * Hero is usually main > section.hero; these rules apply only to .section.
 */
main > section.section {
  position: relative;
  border-top: none;
  /* Full-width accent rule — impossible to miss when scrolling */
  box-shadow:
    inset 0 5px 0 0 var(--teal),
    inset 0 6px 0 0 rgba(15, 23, 42, 0.35);
}

@media (max-width: 640px) {
  main > section.section {
    box-shadow:
      inset 0 4px 0 0 var(--teal),
      inset 0 5px 0 0 rgba(15, 23, 42, 0.35);
  }
}

/* Alternating bands: high contrast (white vs cool gray). */
main > section.section:nth-child(even) {
  background-color: var(--surface-alt);
}

main > section.section:nth-child(odd) {
  background-color: var(--surface-odd);
}

/* Home: opaque bands so the photo doesn’t swallow the rhythm. */
body.page-home main > section.section:nth-child(even) {
  background-color: #d0d8e6;
}

body.page-home main > section.section:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.98);
}

/* Contact: form block stays white; secondary sections use soft gray. */
body.page-contact main > section.section:nth-child(even) {
  background-color: #ffffff;
}

body.page-contact main > section.section:nth-child(odd) {
  background-color: var(--surface-contact);
}

/* Cards lift off gray bands so sections don’t read as flat mush. */
main > section.section:nth-child(even) .paper {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
}

@media (min-width: 1441px) {
  .section {
    padding-block: clamp(88px, 5.5vw, 120px);
  }
}

.hero {
  position: relative;
  padding: clamp(56px, 7vw, 100px) 0;
  /* Keep hero overlay + content above any background layers. */
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Near-solid light panel behind text; image visible on the right. */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.97) 50%,
    rgba(248, 250, 252, 0.92) 62%,
    rgba(246, 248, 251, 0.65) 78%,
    rgba(246, 248, 251, 0.3) 92%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* CLI / install snippets (e.g. mbse.html) */
.cli-snippet {
  margin: var(--space-3) 0 0;
  padding: var(--space-4) var(--space-5);
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-sm);
  font-size: clamp(0.82rem, 0.25vw + 0.76rem, 0.95rem);
  overflow-x: auto;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.cli-snippet code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: rgba(15, 23, 42, 0.92);
}

.cli-inline {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
  padding: 0.12em 0.35em;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 4px;
}

/* Docs-style code blocks: label + copy (vectorowl.html, mbse.html) */
.code-block {
  margin: var(--space-3) 0 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.035);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.code-block:first-child {
  margin-top: 0;
}

.code-block__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 8px 12px 8px 14px;
  background: rgba(15, 23, 42, 0.055);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.code-block__label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 27, 37, 0.52);
  font-weight: 600;
}

.code-block__copy {
  flex-shrink: 0;
  margin: 0;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(15, 23, 42, 0.85);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.code-block__copy:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(62, 207, 142, 0.45);
  color: rgba(22, 163, 74, 0.95);
}

.code-block__copy:focus-visible {
  outline: 2px solid rgba(62, 207, 142, 0.6);
  outline-offset: 2px;
}

.code-block__copy.is-copied {
  color: rgba(22, 101, 52, 0.95);
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(240, 253, 244, 0.95);
}

.code-block .cli-snippet {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

/* Narrative sections (what / why / how) */
.section--narrative .narrative-head {
  max-width: min(52rem, 100%);
  margin-bottom: clamp(var(--space-6), 4vw, var(--space-8));
}

.section--narrative .narrative-lede {
  margin-top: var(--space-4);
  max-width: min(52rem, 100%);
}

.narrative-tags {
  margin-top: var(--space-6);
}

.narrative-split {
  align-items: stretch;
}

.section--alt {
  background-color: rgba(255, 255, 255, 0.65) !important;
}

/* On an all-white page, keep the hero overlay plain white too. */
body.page-contact .hero::before {
  background: #ffffff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
  z-index: 0;
}

/* Home page hero: keep the illustration band centered (avoid "chopped" look). */
.page-home .hero__bg {
  object-position: 50% 50%;
}

@media (max-width: 640px) {
  /* Slightly bias upward on tall/narrow viewports. */
  .page-home .hero__bg {
    object-position: 50% 46%;
  }
}

.hero__route {
  position: absolute;
  inset: -40px 0 auto 0;
  height: 320px;
  width: 100%;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.hero__route path {
  stroke: rgba(15, 23, 42, 0.18);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 6 7;
}

.subcopy {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(15, 23, 42, 0.62);
  max-width: min(76ch, var(--prose-wide));
}

.subcopy--ink {
  color: rgba(15, 23, 42, 0.62);
}

.paper {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.paper--tight {
  border-radius: var(--radius-sm);
}

/* Hero product card: single soft lift so flat cards still feel dimensional in hero. */
.hero .paper {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.07);
}

/* Editorial featured hero (MBSE / framework pages): restrained card + accent kicker — reads “product narrative,” not template. */
.hero.hero--editorial {
  padding-bottom: clamp(48px, 6vw, 88px);
}

.hero.hero--editorial .hero__route {
  opacity: 0.11;
}

.hero.hero--editorial .hero__route path {
  stroke: rgba(15, 23, 42, 0.11);
}

.hero.hero--editorial::before {
  background: linear-gradient(
    185deg,
    rgba(237, 241, 247, 1) 0%,
    rgba(248, 250, 252, 0.98) 52%,
    rgba(255, 255, 255, 0.97) 100%
  );
}

.featured-panel {
  background: var(--paper);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
  padding: clamp(1.35rem, 3.2vw, 2.35rem);
}

.featured-panel > .display {
  margin-top: 0;
  font-size: clamp(2rem, 4vw + 0.85rem, 3rem);
  letter-spacing: -0.035em;
}

.featured-panel > .kicker--accent {
  margin-bottom: 0.65rem;
}

.featured-panel > .display + .lede {
  margin-top: var(--space-4);
}

.hero.hero--editorial .featured-panel > .lede:not(.lede--ethernet) {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.35vw + 0.94rem, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
  color: var(--muted);
  max-width: min(52ch, 100%);
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.hero.hero--editorial .featured-panel > .lede:not(.lede--ethernet) + .lede:not(.lede--ethernet) {
  margin-top: var(--space-3);
}

.kicker--accent {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
}

.tag-row--editorial {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.hero.hero--editorial .featured-panel .paper {
  margin-top: var(--space-5);
  box-shadow: none;
  border-color: rgba(15, 23, 42, 0.08);
}

.hero.hero--editorial .featured-panel .actions {
  margin-top: var(--space-4);
}

/* Full-width container: cap the featured card (e.g. MBSE page) for an editorial column width. */
.hero.hero--editorial .container > .featured-panel {
  max-width: min(48rem, 100%);
  margin-inline: auto;
}

.featured-subcopy {
  margin-top: var(--space-4);
  max-width: 42rem;
}

@media (max-width: 640px) {
  .hero.hero--editorial .featured-panel > .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero.hero--editorial .featured-panel > .actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.paper__inner {
  padding: clamp(18px, 3.2vw, 28px);
}

.kicker {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.85rem;
  font-weight: 750;
  color: rgba(15, 23, 42, 0.62);
}

.kicker--ink {
  color: rgba(15, 23, 42, 0.62);
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: var(--leading-tight);
  font-size: clamp(32px, 4.8vw + 0.5rem, 58px);
  color: var(--ink);
}

/* Hero text: dark ink for high contrast on light overlay */
.hero .kicker {
  color: rgba(11, 27, 37, 0.88);
}
.hero .lede {
  color: rgba(11, 27, 37, 0.9);
}
.hero .tag {
  color: rgba(11, 27, 37, 0.85);
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.18);
}
.hero .subcopy {
  color: rgba(11, 27, 37, 0.78);
}

/* Dark mode hero text overrides */
.dark .hero .kicker {
  color: rgba(255, 255, 255, 0.7);
}
.dark .hero .lede {
  color: rgba(255, 255, 255, 0.85);
}
.dark .hero .tag {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.dark .hero .subcopy {
  color: rgba(255, 255, 255, 0.65);
}

/* Home hero: solid panel behind copy so wrapped headlines never sit on the photo fade. */
.page-home .hero .grid--2 > div:first-child {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: clamp(18px, 2.8vw, 26px) clamp(18px, 2.8vw, 28px);
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Home hero (copy column only): full-opacity ink + light halo over the rack photo; exclude .paper aside. */
.page-home .hero .grid--2 > div:first-child .lede,
.page-home .hero .grid--2 > div:first-child .subcopy {
  color: var(--ink);
}
/* High-contrast type on the copy panel + light halo if any texture still shows through. */
.page-home .hero .grid--2 > div:first-child .kicker {
  color: #1e293b;
  text-shadow: 0 0 1px rgba(255, 255, 255, 1), 0 1px 2px rgba(255, 255, 255, 0.9);
}
.page-home .hero .grid--2 > div:first-child .display {
  color: #0f172a;
  text-shadow: 0 0 1px rgba(255, 255, 255, 1), 0 1px 3px rgba(255, 255, 255, 0.95);
}
.page-home .hero .grid--2 > div:first-child .tag {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 23, 42, 0.2);
  text-shadow: none;
}

.lede {
  font-size: clamp(16px, 1.9vw, 20px);
  color: rgba(15, 23, 42, 0.82);
  margin-top: 14px;
  max-width: 64ch;
}

.lede--ink {
  color: rgba(15, 23, 42, 0.82);
}

/* Patch-cable / Ethernet label: mono type on jacket yellow */
.lede--ethernet {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(13px, 1.55vw, 16px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.62;
  max-width: 70ch;
  padding: 14px 16px 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(180, 130, 8, 0.42);
  border-left: 5px solid #b45309;
  background: linear-gradient(
    165deg,
    rgba(254, 249, 195, 0.97) 0%,
    rgba(253, 230, 138, 0.55) 48%,
    rgba(250, 204, 21, 0.28) 100%
  );
  color: #1a170f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 1px 2px rgba(120, 90, 10, 0.08);
}

.hero .lede.lede--ethernet,
.page-home .hero .grid--2 > div:first-child .lede.lede--ethernet {
  color: #1a170f;
}

.hero .lede--ethernet + .lede--ethernet {
  margin-top: 12px;
}

/* Services bullet list in the hero left column */
.services-list--hero {
  margin: 16px 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}
.services-list--hero li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.45;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.services-list--hero li:first-child {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.services-list--hero li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(15, 23, 42, 0.45);
  font-size: 12px;
  top: 8px;
}

.section-title {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw + 0.5rem, 38px);
  letter-spacing: -0.03em;
  line-height: var(--leading-tight);
  font-weight: 600;
  color: var(--ink);
  max-width: var(--prose-wide);
}

.services-lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

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

.services-lead__media {
  margin: 0;
  width: min(100%, 430px);
  justify-self: end;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #000;
  box-shadow: var(--shadow-1);
}

/* ---------- Product visuals (homepage) ---------- */

.product-shot {
  margin-top: 14px;
}

.product-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: var(--shadow-1);
}

.product-shot--logo-flight .product-shot__frame {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background:
    radial-gradient(circle at 24% 30%, rgba(79, 142, 245, 0.2), transparent 44%),
    radial-gradient(circle at 78% 62%, rgba(56, 189, 248, 0.18), transparent 40%),
    linear-gradient(140deg, #05121d, #0b1b25 48%, #122f3d);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}

.logo-flight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 25%, rgba(148, 200, 255, 0.12) 38%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 42px);
  mix-blend-mode: screen;
}

.product-shot--logo-flight .logo-flight__logo {
  width: clamp(100px, 28%, 186px);
  height: auto;
  display: block;
  border: none;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42);
  position: absolute;
  top: 50%;
  left: -22%;
  z-index: 1;
  transform-origin: center;
  animation: logo-flight-path 7.2s ease-in-out infinite;
}

@keyframes logo-flight-path {
  0% {
    left: -24%;
    transform: translateY(-30%) rotate(-9deg) scale(0.9);
    opacity: 0.35;
  }
  18% {
    opacity: 1;
  }
  50% {
    left: 46%;
    transform: translateY(-58%) rotate(2deg) scale(1);
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    left: 108%;
    transform: translateY(-18%) rotate(10deg) scale(0.92);
    opacity: 0.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-shot--logo-flight .logo-flight__logo {
    animation: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.product-shot--crop .product-shot__frame {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  /* Crop tighter than the source screenshot so in-app chrome doesn't show
     (e.g. reset/refresh buttons and the legend/diagnostics panel). */
  aspect-ratio: 1 / 1;
}

.product-shot--crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep the map center prominent while cropping UI side panels. */
  object-position: 50% 64%;
  /* Extra zoom so screenshot UI chrome stays out of frame. */
  transform: scale(1.42);
  transform-origin: 50% 60%;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 640px) {
  /* Keep the same "map-only" crop on small screens too. */
  .product-shot--crop .product-shot__frame {
    aspect-ratio: 1 / 1;
  }
}

.product-shot figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(15, 23, 42, 0.66);
}

.product-shot--crop figcaption {
  max-width: 66ch;
}

/* ---------- Deployment figure (services / infrastructure imagery) ---------- */

.deployment-figure {
  margin: 24px 0;
}

.deployment-figure__frame {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.deployment-figure__frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.deployment-figure__frame--pdf {
  min-height: 420px;
}

.inline-pdf-frame {
  width: 100%;
  height: clamp(420px, 58vh, 760px);
  border: 0;
  display: block;
  background: #ffffff;
}

.deployment-figure--research-pdf {
  grid-column: 1 / -1;
}

.inline-pdf-frame--research {
  height: clamp(760px, 92vh, 1400px);
}

@media (max-width: 900px) {
  .inline-pdf-frame--research {
    height: 82vh;
  }
}

.logo-placeholder {
  min-height: 360px;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.logo-placeholder--owl {
  background:
    radial-gradient(circle at 24% 24%, rgba(26, 115, 232, 0.16), rgba(26, 115, 232, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(16, 185, 129, 0.14), rgba(16, 185, 129, 0) 46%),
    linear-gradient(160deg, #0f172a 0%, #111827 56%, #1f2937 100%);
  border: 1px dashed rgba(255, 255, 255, 0.36);
}

.logo-placeholder--owl span {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(2, 6, 23, 0.34);
}

.deployment-figure__caption {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(15, 23, 42, 0.66);
  max-width: 66ch;
}

.deployment-figure--secondary {
  margin-top: 18px;
}

.rack-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rack-gallery .deployment-figure__frame {
  height: 460px;
}

.rack-gallery .deployment-figure__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 680px) {
  .rack-gallery {
    grid-template-columns: 1fr;
  }

  .rack-gallery .deployment-figure__frame {
    height: 320px;
  }
}

/* Suppress missing/broken images until they load */
img.img-suppress {
  opacity: 0;
  transition: opacity 0.25s ease;
}
img.img-suppress.img-loaded {
  opacity: 1;
}
img.img-suppress.img-error {
  display: none !important;
}
.deployment-figure.has-img-error,
.product-shot.has-img-error {
  display: none;
}

.product-ui {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  box-shadow: var(--shadow-1);
}

/* ---------- Header / nav ---------- */

.site-skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 9999;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-2);
  text-decoration: none;
  font-weight: 850;
}

.site-skip-link:focus {
  left: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  min-height: var(--header-h);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.97);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: var(--header-h-sm);
  }
}

.site-header__banner {
  width: 100%;
  background: linear-gradient(90deg, rgba(11, 27, 37, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.site-header__banner-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-2) clamp(var(--space-3), 3.2vw, var(--space-8));
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__banner-logo {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(2, 6, 23, 0.42);
}

.site-header__banner-text {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(241, 245, 249, 0.95);
}

.site-header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-3) clamp(var(--space-3), 3.2vw, var(--space-8));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.12));
}

.brand__name {
  font-size: 1.12rem;
  letter-spacing: 0.18px;
  font-weight: 820;
  color: var(--ink);
}

@media (max-width: 900px) {
  .brand__name {
    font-size: 0.98rem;
  }
}

@media (max-width: 640px) {
  .site-header__banner-inner {
    padding: 6px 14px;
    gap: 8px;
  }

  .site-header__banner-logo {
    width: 20px;
    height: 20px;
  }

  .site-header__banner-text {
    font-size: 11px;
    letter-spacing: 0.01em;
  }

  .site-header__inner {
    padding: 8px 14px;
  }
}

.vectorowl-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vectorowl-logo {
  width: clamp(180px, 30vw, 260px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(11, 27, 37, 0.18));
}

.vectorowl-overview-grid {
  align-items: start;
  gap: 28px;
  margin-bottom: 32px;
}

.vectorowl-overview-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.vectorowl-overview-list li {
  margin: 0;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.92));
  color: rgba(11, 27, 37, 0.78);
  font-size: 0.93rem;
  line-height: 1.45;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.vectorowl-overview-tile .paper__inner {
  animation: vectorowl-tile-enter 700ms ease-out both;
}

.vectorowl-overview-list li {
  animation: vectorowl-item-rise 560ms ease-out both;
}

.vectorowl-overview-list li:nth-child(1) { animation-delay: 90ms; }
.vectorowl-overview-list li:nth-child(2) { animation-delay: 170ms; }
.vectorowl-overview-list li:nth-child(3) { animation-delay: 250ms; }
.vectorowl-overview-list li:nth-child(4) { animation-delay: 330ms; }

.vectorowl-plain-english {
  max-width: 52rem;
  margin: 0 auto var(--space-6);
}

.vectorowl-plain-english__list {
  margin-top: var(--space-3);
}

.framework-plain-english {
  margin-top: var(--space-4);
  margin-bottom: var(--space-5);
  max-width: 42rem;
}

.framework-plain-english__list {
  margin-top: var(--space-3);
}

.vectorowl-readmore {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.03);
}

.vectorowl-readmore summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

.vectorowl-readmore[open] summary {
  margin-bottom: var(--space-2);
}

/* VectorOWL paper embed */
.vectorowl-paper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.vectorowl-paper-frame-wrap {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: var(--shadow-1);
}

.vectorowl-paper-frame {
  width: 100%;
  height: clamp(560px, 76vh, 980px);
  border: 0;
  display: block;
  background: #ffffff;
}

@media (max-width: 900px) {
  .vectorowl-paper-frame {
    height: 72vh;
  }
}

/* On wider layouts, lower and widen the "What it does" tile
   so dense copy does not feel overly tall and cramped. */
@media (min-width: 1240px) {
  .vectorowl-overview-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .vectorowl-overview-tile {
    margin-top: 28px;
  }
}

@media (max-width: 820px) {
  .vectorowl-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .vectorowl-overview-list {
    grid-template-columns: 1fr;
  }
}

@keyframes vectorowl-tile-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes vectorowl-item-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vectorowl-overview-tile .paper__inner,
  .vectorowl-overview-list li {
    animation: none;
  }
}

.site-nav > ul {
  list-style: none;
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: rgba(15, 23, 42, 0.78);
  font-weight: 650;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
  font-family: inherit;
  letter-spacing: 0.01em;
  font-size: 0.98rem;
}

.site-nav a:hover {
  color: rgba(15, 23, 42, 0.92);
  border-bottom-color: rgba(21, 88, 184, 0.55);
}

.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 10px;
}

.site-nav a[aria-current="page"] {
  color: rgba(15, 23, 42, 0.92);
  border-bottom-color: rgba(21, 88, 184, 0.88);
}

/* Services dropdown (desktop) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 240px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(15, 23, 42, 0.12);
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown__panel {
  display: flex;
}

.nav-dropdown__panel li {
  border: none;
}

.nav-dropdown__panel a {
  display: block;
  padding: 10px 16px;
  border-bottom: none;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-dropdown__panel a:hover {
  background: rgba(21, 88, 184, 0.08);
}

.nav-dropdown__trigger::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  vertical-align: 0.2em;
  border: 5px solid transparent;
  border-top-color: currentColor;
}

.nav-dropdown.is-open .nav-dropdown__trigger::after {
  transform: rotate(180deg);
  vertical-align: -0.1em;
}

.menu-toggle {
  display: none;
  margin-left: var(--space-3);
  min-height: 44px;
  min-width: 44px;
  height: 44px;
  width: 44px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.14);
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Desktop: nav always visible, hamburger hidden */
@media (min-width: 901px) {
  .site-nav {
    display: flex !important;
    position: relative;
  }
  .site-nav > ul {
    display: flex !important;
    position: static;
    min-width: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    overflow: visible;
  }
  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: relative;
    display: block;
  }

  .site-nav > ul {
    position: absolute;
    top: 52px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    box-shadow: var(--shadow-2);
    overflow: hidden;
    min-width: 210px;
    border: 1px solid rgba(15, 23, 42, 0.12);
  }

  .site-nav li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: var(--space-3) var(--space-4);
    border-bottom: none;
  }

  .site-header.is-open .site-nav > ul {
    display: flex;
  }

  /* Mobile: services dropdown as expandable nested list */
  .nav-dropdown__panel {
    position: static;
    margin-top: 0;
    padding: 0 0 0 16px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    display: flex;
    padding-top: 4px;
    padding-bottom: 8px;
  }

  .nav-dropdown__panel a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: var(--space-3) var(--space-4);
  }
}

@media (max-width: 640px) {
  .site-nav > ul {
    top: 48px;
    min-width: 190px;
  }
}

/* ---------- Buttons / tags ---------- */

.actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  font-weight: 820;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.14);
  transition:
    transform 0.14s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.15s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  opacity: 0.96;
}

.btn--primary {
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 55%, var(--bg-1) 100%);
  color: #ffffff;
  border-color: rgba(10, 50, 110, 0.45);
  box-shadow:
    0 2px 6px rgba(15, 60, 130, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.btn--primary:hover {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
  box-shadow:
    0 4px 14px rgba(15, 60, 130, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 23, 42, 0.86);
  border-color: rgba(15, 23, 42, 0.16);
}

.btn--ghost:hover {
  background: rgba(62, 207, 142, 0.1);
  border-color: rgba(62, 207, 142, 0.35);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: rgba(15, 23, 42, 0.68);
}

.tag--ink {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.1);
  color: rgba(15, 23, 42, 0.66);
}

/* Sentence-case chips (homepage / sections); pairs with .tag */
.tag.tag--editorial {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.07);
}

.tag--location {
  background: rgba(34, 139, 34, 0.10);
  border-color: rgba(34, 139, 34, 0.28);
  color: rgba(15, 23, 42, 0.80);
}

/* ---------- Location badge ---------- */

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(246, 240, 230, 0.82);
  margin-top: 10px;
  margin-bottom: 2px;
}

.location-badge__icon {
  flex-shrink: 0;
  opacity: 0.75;
}

.location-badge--ink {
  color: rgba(15, 23, 42, 0.65);
  font-size: 12.5px;
}

/* ---------- Prototype CTA (hero product card) ---------- */

.prototype-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  font-weight: 820;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--teal-hover);
  background: linear-gradient(135deg, rgba(21, 88, 184, 0.09), rgba(21, 88, 184, 0.04));
  border: 1px solid rgba(21, 88, 184, 0.28);
  box-shadow: 0 1px 2px rgba(21, 88, 184, 0.1);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease, gap 0.2s ease;
}

.prototype-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 88, 184, 0.45);
  box-shadow: 0 2px 6px rgba(21, 88, 184, 0.16);
  background: linear-gradient(135deg, rgba(21, 88, 184, 0.13), rgba(21, 88, 184, 0.06));
  gap: 14px;
}

.prototype-cta:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.prototype-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prototype-cta__icon svg {
  width: 18px;
  height: 18px;
}

.prototype-cta:hover .prototype-cta__icon {
  transform: translate(2px, -2px);
}

@media (prefers-reduced-motion: reduce) {
  .prototype-cta,
  .prototype-cta__icon {
    transition: none;
  }
  .prototype-cta:hover {
    transform: none;
  }
}

/* ---------- Grids + notes ---------- */

.grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 641px) {
  .grid {
    gap: var(--space-6);
  }
}

@media (min-width: 1441px) {
  .grid--pillars {
    gap: var(--space-7);
  }
}

.grid--2 {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

@media (max-width: 1024px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

.grid--cards {
  grid-template-columns: repeat(12, 1fr);
}

.grid--cards.grid--tight {
  margin: 0;
  gap: var(--space-3);
}

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

@media (max-width: 1024px) {
  .grid--pillars {
    grid-template-columns: 1fr;
  }

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

  .services-lead__media {
    justify-self: start;
    width: min(100%, 520px);
  }
}

.span-4 {
  grid-column: span 4;
}

@media (max-width: 1024px) {
  .span-4 {
    grid-column: 1 / -1;
  }
}

.span-full {
  grid-column: 1 / -1;
}

.span-6 {
  grid-column: span 6;
}

@media (max-width: 1024px) {
  .span-6 {
    grid-column: 1 / -1;
  }
}

.note {
  position: relative;
  overflow: hidden;
}

.note::before {
  content: "";
  position: absolute;
  inset: 10px 12px auto auto;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(240, 178, 62, 0.65), rgba(232, 93, 117, 0.15) 70%, transparent 72%);
  opacity: 0.55;
  pointer-events: none;
}

.note p {
  color: rgba(15, 23, 42, 0.72);
}

/* Fluid subsection headings (use instead of inline h2 styles) */
.heading-subsection {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw + 0.45rem, 30px);
  letter-spacing: -0.03em;
  line-height: 1.18;
  font-weight: 600;
  color: var(--ink);
  max-width: var(--prose-wide);
}

.heading-subsection--lead {
  font-size: clamp(24px, 2.6vw + 0.4rem, 34px);
  line-height: 1.15;
}

.heading-subsection--flush {
  margin-top: 0;
}

.note h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

/* Prose lists (replaces inline-styled ul in sections) */
.list-content {
  margin: var(--space-3) 0 0 var(--space-5);
  padding: 0;
  color: rgba(11, 27, 37, 0.78);
  line-height: var(--leading-snug);
}

.list-content li + li {
  margin-top: var(--space-2);
}

.list-content--tight {
  margin-top: var(--space-3);
}

.list-content--tight li + li {
  margin-top: var(--space-1);
}

/* Section rhythm helpers */
.section-block-end {
  margin-bottom: var(--space-6);
}

.section-block-top {
  margin-top: clamp(var(--space-4), 2.2vw, var(--space-5));
}

/* ---------- Forms (Contact) ---------- */

.site-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-3);
}

@media (max-width: 900px) {
  .site-form {
    grid-template-columns: 1fr;
  }
}

.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 820;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.82);
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: var(--space-3) var(--space-4);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: var(--paper);
  color: rgba(15, 23, 42, 0.92);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(15, 23, 42, 0.22);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: rgba(21, 88, 184, 0.5);
  box-shadow: 0 0 0 3px var(--ring);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.help {
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.62);
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: var(--space-8);
  padding-block: var(--space-7);
  border-top: none;
  box-shadow:
    inset 0 5px 0 0 var(--teal),
    inset 0 6px 0 0 rgba(15, 23, 42, 0.35);
  background: linear-gradient(180deg, #e2e6ee 0%, var(--ocean) 100%);
  color: rgba(15, 23, 42, 0.62);
  font-size: var(--text-sm);
}

.site-footer a {
  color: rgba(15, 23, 42, 0.72);
}

.site-footer__meta {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(15, 23, 42, 0.52);
  line-height: var(--leading-snug);
}

.site-footer__link-row {
  margin-top: var(--space-3);
}

/* ---------- GitHub Sponsors button ---------- */

@keyframes vss-sponsor-wiggle {
  0%,  100% { transform: rotate(0deg)   translateY(0); }
  10%        { transform: rotate(-4deg) translateY(-2px); }
  20%        { transform: rotate( 4deg) translateY(-3px); }
  30%        { transform: rotate(-3deg) translateY(-1px); }
  40%        { transform: rotate( 3deg) translateY(-2px); }
  50%        { transform: rotate(0deg)  translateY(0); }
}

.btn--sponsor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 820;
  font-size: 0.9rem;
  text-decoration: none;
  color: #7c2d12;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid rgba(217, 119, 6, 0.40);
  box-shadow:
    0 2px 6px rgba(217, 119, 6, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.60);
  animation: vss-sponsor-wiggle 2.8s ease-in-out infinite;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
  margin-top: 14px;
}

.btn--sponsor:hover,
.btn--sponsor:focus-visible {
  animation: none;
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  box-shadow:
    0 4px 10px rgba(217, 119, 6, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn--sponsor:focus-visible {
  outline: 3px solid rgba(217, 119, 6, 0.55);
  outline-offset: 2px;
}

.btn--sponsor__heart {
  font-size: 1rem;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .btn--sponsor {
    animation: none;
  }
}

/* ---------- Legal pages (privacy, terms, etc.) ---------- */

.legal {
  color: rgba(15, 23, 42, 0.78);
  max-width: min(var(--prose-wide), 100%);
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  color: rgba(15, 23, 42, 0.92);
}

.legal .meta {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.62);
}

.legal h2 {
  margin-top: 22px;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.90);
}

.legal p {
  margin-top: 12px;
  color: rgba(15, 23, 42, 0.74);
}

.legal ul {
  margin: 10px 0 0 18px;
  color: rgba(15, 23, 42, 0.74);
}

.legal li {
  margin: 6px 0;
}

.legal a {
  color: rgba(15, 23, 42, 0.92);
  text-decoration-color: rgba(21, 88, 184, 0.55);
}

.legal a:hover {
  text-decoration-color: rgba(21, 88, 184, 0.88);
}

/* Optional loading / empty states (no JS required until wired) */
.skeleton {
  display: block;
  min-height: 1em;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.06) 0%,
    rgba(15, 23, 42, 0.1) 50%,
    rgba(15, 23, 42, 0.06) 100%
  );
  background-size: 200% 100%;
  animation: vss-skeleton-shimmer 1.1s ease-in-out infinite;
}

@keyframes vss-skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.empty-state {
  padding: var(--space-6);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-subtle);
  color: var(--muted);
  font-size: var(--text-sm);
  text-align: center;
  line-height: var(--leading-snug);
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
    background: rgba(15, 23, 42, 0.08);
  }
}

/* p5 background canvas (only on pages that load it) */
canvas.p5Canvas {
  position: fixed !important;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   MODERN DESIGN SYSTEM — Dark Mode Utilities (v3)
   Supabase-inspired developer tool aesthetic.
   Darker backgrounds, vibrant mint accents, glow effects.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Color tokens ── */
:root {
  /* Surface scale */
  --bg-0: #000000;
  --bg-1: #0a0a0f;
  --bg-2: #12121a;
  --bg-3: #1a1a25;
  --bg-4: #232330;
  --border-1: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.1);
  --border-3: rgba(255, 255, 255, 0.14);

  /* Text scale */
  --text-1: #ffffff;
  --text-2: #e2e2ea;
  --text-3: #a0a0b0;
  --text-4: #6e6e80;
  --text-5: #4a4a5a;

  /* Primary accent — Supabase mint */
  --mint-300: #6ee7b7;
  --mint-400: #3ecf8e;
  --mint-500: #2db87a;
  --mint-600: #1a9e65;

  /* Secondary accent — warm ivory */
  --ivory-400: #e2e2ea;
  --ivory-500: #c8c8d8;

  /* Glow colors */
  --glow-mint: rgba(61, 207, 142, 0.25);

  /* Legacy aliases for backward compat */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-850: #172033;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
}

/* ── Dark mode base ── */
.dark {
  background-color: var(--bg-1);
  color: var(--text-3);
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark .display,
.dark .section-title,
.dark .heading-subsection {
  color: var(--text-1);
}

.dark .lede,
.dark .lede--ink {
  color: var(--text-3);
}

.dark .kicker {
  color: var(--text-4);
}

.dark .kicker--ink {
  color: var(--text-4);
}

.dark .kicker--accent {
  color: var(--mint-400);
}

.dark .note p {
  color: var(--text-3);
}

.dark .note h3 {
  color: var(--text-1);
}

.dark .list-content {
  color: var(--text-3);
}

.dark .subcopy,
.dark .subcopy--ink {
  color: var(--text-3);
}

/* ── Dark mode: code blocks ── */
.dark .cli-snippet {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.dark .cli-snippet code {
  color: rgba(255, 255, 255, 0.9);
}
.dark .code-block {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark .code-block__bar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .code-block__label {
  color: rgba(255, 255, 255, 0.5);
}
.dark .code-block__copy {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.dark .code-block__copy:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(62, 207, 142, 0.5);
  color: var(--mint-400);
}
.dark .code-block__copy:focus-visible {
  outline-color: rgba(62, 207, 142, 0.7);
}
.dark .code-block__copy.is-copied {
  color: var(--mint-400);
  border-color: rgba(62, 207, 142, 0.45);
  background: rgba(62, 207, 142, 0.12);
}
.dark .code-block .cli-snippet {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ── Dark mode: tags ── */
.dark .tag {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.dark .tag--ink {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}
.dark .tag.tag--editorial {
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark .tag--location {
  background: rgba(62, 207, 142, 0.12);
  border-color: rgba(62, 207, 142, 0.35);
  color: var(--mint-400);
}

/* ── Dark mode: inline code ── */
.dark .cli-inline {
  background: rgba(255, 255, 255, 0.07);
}

/* ── Dark mode: buttons ── */
.dark .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.14);
}
.dark .btn--ghost:hover {
  background: rgba(62, 207, 142, 0.12);
  border-color: rgba(62, 207, 142, 0.45);
  color: var(--mint-400);
}

/* ── Dark mode: misc ── */
.dark .hero.hero--editorial .featured-panel .paper {
  border-color: rgba(255, 255, 255, 0.08);
}
.dark .vectorowl-paper-frame-wrap {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ── Elevated surfaces inside .section--alt so cards remain visible ── */
.dark .section--alt .paper,
.dark .section--alt .paper--tight,
.dark .section--alt .featured-panel {
  background: var(--bg-3);
  border-color: var(--border-3);
}

/* ── Override legacy section bands inside .dark ── */
.dark main > section.section,
.dark main > section.section:nth-child(even),
.dark main > section.section:nth-child(odd),
.dark body.page-home main > section.section:nth-child(even),
.dark body.page-home main > section.section:nth-child(odd),
.dark body.page-contact main > section.section:nth-child(even),
.dark body.page-contact main > section.section:nth-child(odd) {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.dark .paper,
.dark .paper--tight,
.dark .featured-panel {
  background: var(--bg-2);
  border-color: var(--border-2);
  color: var(--text-2);
}

.dark .hero::before,
.dark .hero.hero--editorial::before {
  background: linear-gradient(
    185deg,
    rgba(10, 10, 15, 0.98) 0%,
    rgba(10, 10, 15, 0.96) 52%,
    rgba(10, 10, 15, 0.94) 100%
  );
}

.dark .site-header {
  background: rgba(10, 10, 15, 0.85);
  border-bottom-color: var(--border-2);
}

.dark .site-header__banner {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(10, 10, 15, 0.98));
}

.dark .site-footer {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  box-shadow:
    inset 0 5px 0 0 var(--mint-600),
    inset 0 6px 0 0 rgba(0, 0, 0, 0.5);
  color: var(--text-4);
}

.dark .site-footer a {
  color: var(--text-3);
}

.dark .site-footer__meta {
  color: var(--text-5);
}

/* ── Dark mode: missing overrides ── */
.dark body.page-home::before {
  display: none;
}

.dark .section--alt {
  background-color: var(--bg-2) !important;
}

.dark .solution-card,
.dark .usecase-card {
  background: var(--bg-2);
  border-color: var(--border-2);
}

.dark .solution-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.dark .step__arrow {
  color: rgba(255, 255, 255, 0.15);
}

.dark .btn--primary {
  background: linear-gradient(135deg, var(--mint-400), var(--mint-500));
  color: #000000;
  border-color: rgba(61, 207, 142, 0.45);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}
.dark .btn--primary:hover {
  background: linear-gradient(135deg, var(--mint-300), var(--mint-400));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.dark .final-cta__form input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.dark .final-cta__form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.dark .final-cta__form input:focus {
  border-color: rgba(61, 207, 142, 0.5);
  box-shadow: 0 0 0 3px rgba(61, 207, 142, 0.25);
}

@media (max-width: 900px) {
  .dark .landing-nav.is-open .landing-nav__links,
  .dark .landing-nav.is-open .landing-nav__cta {
    background: rgba(10, 10, 15, 0.98);
    border-bottom-color: var(--border-2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }
  .dark .landing-nav.is-open .landing-nav__links a {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
}

/* ── Typography ── */
.font-system {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

.leading-tight { line-height: 1.1; }
.leading-snug   { line-height: 1.35; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.6; }

.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }

/* ── Spacing scale (4px base) ── */
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }

.p-4  { padding: 16px; }
.p-6  { padding: 24px; }
.p-8  { padding: 32px; }
.p-12 { padding: 48px; }
.p-16 { padding: 64px; }

.px-4  { padding-left: 16px; padding-right: 16px; }
.px-6  { padding-left: 24px; padding-right: 24px; }
.px-8  { padding-left: 32px; padding-right: 32px; }

.py-4  { padding-top: 16px; padding-bottom: 16px; }
.py-6  { padding-top: 24px; padding-bottom: 24px; }
.py-8  { padding-top: 32px; padding-bottom: 32px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }

.m-4  { margin: 16px; }
.m-6  { margin: 24px; }
.m-8  { margin: 32px; }

.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Layout ── */
.max-w-6xl { max-width: 1152px; }
.max-w-7xl { max-width: 1280px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

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

/* ── Components ── */

/* Primary button — Supabase mint glow */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--mint-400), var(--mint-500));
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px var(--glow-mint), 0 4px 14px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--glow-mint), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

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

.btn-primary:focus-visible {
  outline: 3px solid rgba(61, 207, 142, 0.5);
  outline-offset: 3px;
}

/* Secondary button — glass outline */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 28px;
  background: transparent;
  color: var(--mint-400);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  text-decoration: none;
  border: 1.5px solid rgba(61, 207, 142, 0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.btn-secondary:hover {
  background: rgba(61, 207, 142, 0.08);
  border-color: var(--mint-400);
  color: var(--mint-300);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(61, 207, 142, 0.15);
}

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

.btn-secondary:focus-visible {
  outline: 3px solid rgba(61, 207, 142, 0.35);
  outline-offset: 3px;
}

/* Card — gradient border effect */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(61, 207, 142, 0.15), rgba(34, 211, 238, 0.08), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(61, 207, 142, 0.08);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.card--hover:hover {
  transform: translateY(-4px);
}

/* Modern section container */
.section-new {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding: 96px 24px;
}

@media (max-width: 640px) {
  .section-new {
    padding: 64px 16px;
  }
}

/* Gradient text — animated mint glow */
.gradient-text {
  background: linear-gradient(135deg, var(--mint-300), var(--mint-400), var(--mint-500));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Animations ── */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Only hide and animate when JS has loaded successfully.
   If site.js is 404 or blocked, content stays visible by default. */
.js-enabled .fade-in,
.js-enabled .fade-in-up,
.js-enabled .fade-in-left,
.js-enabled .fade-in-right {
  opacity: 1;
}

.js-enabled .fade-in {
  transform: translateY(12px);
}

.js-enabled .fade-in-up {
  transform: translateY(24px);
}

.js-enabled .fade-in-left {
  transform: translateX(-24px);
}

.js-enabled .fade-in-right {
  transform: translateX(24px);
}

.js-enabled .fade-in.is-visible,
.js-enabled .fade-in-up.is-visible,
.js-enabled .fade-in-left.is-visible,
.js-enabled .fade-in-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-up,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Responsive utilities (mobile-first) ── */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:text-left { text-align: left; }
  .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
  .sm\:py-24 { padding-top: 96px; padding-bottom: 96px; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:text-5xl { font-size: clamp(2.4rem, 4vw, 3.2rem); }
}

@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:px-8 { padding-left: 32px; padding-right: 32px; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:px-12 { padding-left: 48px; padding-right: 48px; }
}


/* ═══════════════════════════════════════════════════════════════════
   Shared Components — Landing Nav & Footer
   Used by modern dark-mode pages. Legacy .site-header / .site-footer
   remain untouched for existing pages.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Landing Nav ── */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  border-bottom: 1px solid var(--border-1);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.landing-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f8fafc;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.landing-nav__brand img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.landing-nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.landing-nav__links a {
  color: var(--text-3);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.landing-nav__links a:hover {
  color: var(--text-1);
  border-bottom-color: var(--mint-400);
}

.landing-nav__links a[aria-current="page"] {
  color: var(--text-1);
  border-bottom-color: var(--mint-400);
}

.landing-nav__cta {
  flex-shrink: 0;
}

.landing-nav__cta .btn-primary {
  min-height: 40px;
  padding: 8px 20px;
  font-size: 0.92rem;
}

.landing-nav__hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #f8fafc;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .landing-nav__links,
  .landing-nav__cta {
    display: none;
  }

  .landing-nav.is-open .landing-nav__inner {
    flex-wrap: wrap;
  }

  .landing-nav.is-open nav,
  .landing-nav.is-open .landing-nav__cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--border-2);
    padding: 16px 24px;
    gap: 8px;
  }

  .landing-nav.is-open nav {
    order: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }

  .landing-nav.is-open .landing-nav__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .landing-nav.is-open .landing-nav__cta {
    order: 3;
    align-items: stretch;
    padding-top: 8px;
    padding-bottom: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }

  .landing-nav.is-open .landing-nav__links a {
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-1);
    color: var(--text-3);
  }

  .landing-nav.is-open .landing-nav__cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .landing-nav__hamburger {
    display: inline-flex;
    margin-left: auto;
  }
}

/* ── Landing Footer ── */
.site-footer--landing {
  background: var(--bg-0);
  color: var(--text-4);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-1);
}

.site-footer--landing a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.site-footer--landing a:hover {
  color: var(--text-1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-4);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-1);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--border-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.footer-social a:hover {
  background: var(--border-2);
  box-shadow: 0 0 12px rgba(61, 207, 142, 0.15);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--text-3);
}

/* Pricing toggle button active state */
[data-pricing-toggle] button.is-active {
  background: var(--slate-700) !important;
  color: #fff !important;
}


/* ═══════════════════════════════════════════════════════════════════
   V3 DESIGN ENHANCEMENTS — Glows, grids, noise, effects
   ═══════════════════════════════════════════════════════════════════ */

/* ── Background grid pattern ── */
.bg-grid {
  position: relative;
}
.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 207, 142, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 207, 142, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Radial glow background ── */
.bg-glow {
  position: relative;
  overflow: hidden;
}
.bg-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(61, 207, 142, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Aurora gradient background ── */
.bg-aurora {
  position: relative;
  overflow: hidden;
}
.bg-aurora::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(61, 207, 142, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(34, 211, 238, 0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

/* ── Noise texture overlay ── */
.bg-noise {
  position: relative;
}
.bg-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ── Glow badge / pill ── */
.glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint-400);
  background: rgba(61, 207, 142, 0.08);
  border: 1px solid rgba(61, 207, 142, 0.2);
  box-shadow: 0 0 16px rgba(61, 207, 142, 0.1);
}

.glow-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 8px var(--mint-400);
}

/* ── Terminal / code block styling ── */
.terminal {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.terminal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border-bottom: 1px solid var(--border-1);
  z-index: 2;
}

.terminal__dots {
  position: absolute;
  top: 14px;
  left: 16px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.terminal__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.terminal__dots span:nth-child(1) { background: #ff5f57; }
.terminal__dots span:nth-child(2) { background: #febc2e; }
.terminal__dots span:nth-child(3) { background: #28c840; }

.terminal pre {
  margin: 0;
  padding: 56px 24px 24px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-3);
  overflow-x: auto;
}

.terminal code .cmd { color: var(--mint-400); }
.terminal code .arg { color: var(--mint-300); }
.terminal code .val { color: #a5b4fc; }
.terminal code .comment { color: var(--text-5); }
.terminal code .string { color: #a5b4fc; }
.terminal code .output { color: rgba(148, 163, 184, 0.7); font-style: italic; }

/* ── Feature icon container ── */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(61, 207, 142, 0.12), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(61, 207, 142, 0.15);
  color: var(--mint-400);
  margin-bottom: 16px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

/* ── Section divider glow line ── */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 207, 142, 0.3), transparent);
  border: none;
  margin: 0;
}

/* ── Hover lift utility ── */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
}

/* ── Pricing toggle v3 update ── */
[data-pricing-toggle] button.is-active {
  background: linear-gradient(135deg, var(--mint-500), var(--mint-600)) !important;
  color: #000 !important;
  font-weight: 700 !important;
  box-shadow: 0 0 16px rgba(61, 207, 142, 0.3) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   Chatbot Widget
   ═══════════════════════════════════════════════════════════════════ */
#vss-chatbot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.45;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: max(16px, env(safe-area-inset-right, 0px));
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  pointer-events: none;
}
#vss-chatbot > * { pointer-events: auto; }

/* ── Bottom Tile ── */
.vss-chatbot__tile {
  position: relative;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #f1f5f9;
  cursor: pointer;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  user-select: none;
  outline: none;
}
.vss-chatbot__tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(61, 207, 142, 0.25);
  border-color: rgba(61, 207, 142, 0.3);
}
.vss-chatbot__tile:active {
  transform: translateY(0);
}
#vss-chatbot.is-open .vss-chatbot__tile {
  border-color: rgba(61, 207, 142, 0.4);
  box-shadow: 0 -6px 28px rgba(61, 207, 142, 0.15), 0 0 0 1px rgba(61, 207, 142, 0.2);
}

.vss-chatbot__tile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3ecf8e, #2db87a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vss-chatbot__tile-avatar svg {
  width: 14px;
  height: 14px;
}

.vss-chatbot__tile-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #f8fafc;
  white-space: nowrap;
}

.vss-chatbot__tile-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #94a3b8;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 999px;
  padding: 3px 10px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  white-space: nowrap;
}

.vss-chatbot__tile-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64748b;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.vss-chatbot__tile-dot.is-pending {
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.4);
  animation: vss-chatbot-pulse 1.5s infinite;
}
.vss-chatbot__tile-dot.is-online {
  background: #3ecf8e;
  box-shadow: 0 0 6px rgba(61, 207, 142, 0.5);
}
.vss-chatbot__tile-dot.is-offline {
  background: #f87171;
  box-shadow: 0 0 6px rgba(248, 113, 113, 0.35);
}
/* Worker up but live LLM not confirmed (no health GET or keys not configured yet) */
.vss-chatbot__tile-dot.is-partial {
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.45);
}
@keyframes vss-chatbot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.vss-chatbot__tile-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #64748b;
  transition: transform 0.25s ease, color 0.2s ease;
  flex-shrink: 0;
}
.vss-chatbot__tile-chevron svg {
  width: 14px;
  height: 14px;
}
#vss-chatbot.is-open .vss-chatbot__tile-chevron {
  transform: rotate(180deg);
  color: #3ecf8e;
}

/* ── Chat Panel ── */
.vss-chatbot__panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  left: auto;
  transform: translateY(12px) scale(0.97);
  width: min(92vw, 420px);
  max-height: min(70vh, 540px);
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 16px;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#vss-chatbot.is-open .vss-chatbot__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.vss-chatbot__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.vss-chatbot__header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3ecf8e, #2db87a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vss-chatbot__header-avatar svg {
  width: 18px;
  height: 18px;
}
.vss-chatbot__header-info {
  display: flex;
  flex-direction: column;
}
.vss-chatbot__header-info strong {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 600;
}
.vss-chatbot__header-info span {
  color: #94a3b8;
  font-size: 0.8rem;
}

.vss-chatbot__messages {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.vss-chatbot__msg {
  display: flex;
}
.vss-chatbot__msg.is-user { justify-content: flex-end; }
.vss-chatbot__msg.is-bot { justify-content: flex-start; }

.vss-chatbot__bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  word-wrap: break-word;
}
.vss-chatbot__msg.is-user .vss-chatbot__bubble {
  background: linear-gradient(135deg, #3ecf8e, #2db87a);
  color: #062c1f;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.vss-chatbot__msg.is-bot .vss-chatbot__bubble {
  background: rgba(30, 41, 59, 0.9);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom-left-radius: 4px;
}
.vss-chatbot__msg.is-bot .vss-chatbot__bubble a {
  color: #6ee7b7;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vss-chatbot__msg.is-bot .vss-chatbot__bubble a:hover {
  color: #3ecf8e;
}
.vss-chatbot__msg.is-bot .vss-chatbot__bubble code {
  background: rgba(15, 23, 42, 0.6);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: #6ee7b7;
}

.vss-chatbot__msg.is-typing .vss-chatbot__bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
}
.vss-chatbot__dot {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  animation: vss-chatbot-blink 1.4s infinite both;
}
.vss-chatbot__dot:nth-child(1) { animation-delay: 0s; }
.vss-chatbot__dot:nth-child(2) { animation-delay: 0.2s; }
.vss-chatbot__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes vss-chatbot-blink {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

.vss-chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 16px 4px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}
.vss-chatbot__quick button {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.vss-chatbot__quick button:hover {
  background: rgba(61, 207, 142, 0.12);
  border-color: rgba(61, 207, 142, 0.35);
  color: #6ee7b7;
}

.vss-chatbot__input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
}
.vss-chatbot__input input {
  flex: 1;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  color: #f1f5f9;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.vss-chatbot__input input::placeholder {
  color: #64748b;
}
.vss-chatbot__input input:focus {
  border-color: rgba(61, 207, 142, 0.5);
  box-shadow: 0 0 0 3px rgba(61, 207, 142, 0.12);
}
.vss-chatbot__input button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #3ecf8e, #2db87a);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}
.vss-chatbot__input button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(61, 207, 142, 0.3);
}
.vss-chatbot__input button svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .vss-chatbot__tile {
    bottom: 12px;
    padding: 8px 12px 8px 10px;
    gap: 8px;
  }
  .vss-chatbot__tile-label {
    font-size: 0.85rem;
  }
  .vss-chatbot__tile-status {
    font-size: 0.72rem;
    padding: 2px 8px;
  }
  .vss-chatbot__panel {
    width: calc(100vw - 24px);
    max-width: 420px;
    right: 0;
    left: auto;
    bottom: 60px;
    max-height: 65vh;
  }
}
