/**
 * AtozServer — Terminal / Hypervisor UI.
 *
 * NOTE: Nuxt injects the bundled core CSS after the theme <link> tags,
 * so every override below uses doubled/raised specificity (:root:root,
 * .site-chrome.site-chrome) to beat equal-specificity core rules
 * regardless of stylesheet order.
 *
 * Canvas #050505 · copy #A1A1AA · accent #3CE68D ·
 * hairlines #27272A · radius 0 · no shadows.
 */

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

/*
 * Same families as the Google import, served from this theme so they
 * still load under CSP (style-src/font-src are 'self' only).
 */
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/jetbrains-mono-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/jetbrains-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root:root,
:root:root.dark,
:root:root.light {
  color-scheme: dark;

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --theme-font-display: var(--font-display);
  --theme-font-body: var(--font-sans);

  /* #050505 */
  --background: 0 0% 2%;
  /* #A1A1AA */
  --foreground: 240 5% 65%;

  /* Slight lift off the canvas so cards read as panels, not glow. */
  --card: 0 0% 4%;
  --card-foreground: 240 5% 65%;

  --popover: 0 0% 4%;
  --popover-foreground: 240 5% 65%;

  /* Accent #3CE68D — dark ink on mint green for CTAs. */
  --primary: 149 77% 57%;
  --primary-foreground: 0 0% 2%;
  --button-ink: 0 0% 2%;

  --secondary: 240 4% 8%;
  --secondary-foreground: 240 5% 65%;

  --muted: 240 4% 8%;
  --muted-foreground: 240 5% 65%;

  --accent: 240 4% 8%;
  --accent-foreground: 149 77% 57%;

  --destructive: 0 72% 45%;
  --destructive-foreground: 0 0% 98%;

  --success: 149 77% 57%;
  --success-foreground: 0 0% 2%;

  /* #27272A hairlines · #52525B field edges (must read on #050505) */
  --border: 240 4% 16%;
  --input: 240 5% 32%;
  --ring: 149 77% 57%;

  --radius: 0px;
  --theme-radius-card: 0px;

  --chrome-bg: 0 0% 2%;
  --chrome-fg: 240 5% 65%;
  --chrome-muted: 240 5% 55%;
  --chrome-border: 240 4% 16%;
  --chrome-elevated: 0 0% 4%;
  --chrome-hover: 240 4% 8%;

  --color-background: hsl(0 0% 2%);
  --color-foreground: hsl(240 5% 65%);
  --color-card: hsl(0 0% 4%);
  --color-card-foreground: hsl(240 5% 65%);
  --color-popover: hsl(0 0% 4%);
  --color-popover-foreground: hsl(240 5% 65%);
  --color-muted: hsl(240 4% 8%);
  --color-muted-foreground: hsl(240 5% 65%);
  --color-accent: hsl(240 4% 8%);
  --color-accent-foreground: hsl(149 77% 57%);
  --color-border: #27272a;
  --color-input: #52525b;
  --color-secondary: hsl(240 4% 8%);
  --color-secondary-foreground: hsl(240 5% 65%);
  --color-primary: #3CE68D;
  --color-primary-foreground: #050505;
  --color-ring: #3CE68D;

  --ui-bg: #050505;
  --ui-bg-muted: hsl(240 4% 8%);
  --ui-bg-elevated: hsl(0 0% 4%);
  --ui-bg-accented: hsl(240 4% 8%);
  --ui-border: #27272a;
  --ui-border-muted: #27272a;
  /* Brighter than panel hairlines so Nuxt UI ring-accented / input edges read. */
  --ui-border-accented: #52525b;
  --ui-text: #a1a1aa;
  --ui-text-muted: #a1a1aa;
  --ui-text-dimmed: #71717a;
  --ui-text-highlighted: #fafafa;
  --ui-text-inverted: #050505;
  --ui-primary: #3CE68D;
  --ui-primary-foreground: #050505;
  --ui-primary-50: hsl(149 77% 57% / 0.95);
  --ui-primary-100: hsl(149 77% 57% / 0.9);
  --ui-primary-200: hsl(149 77% 57% / 0.8);
  --ui-primary-300: hsl(149 77% 57% / 0.7);
  --ui-primary-400: hsl(149 77% 57% / 0.65);
  --ui-primary-500: #3CE68D;
  --ui-primary-600: hsl(149 85% 42%);
  --ui-primary-700: hsl(149 85% 34%);
  --ui-primary-800: hsl(149 80% 24%);
  --ui-primary-900: hsl(149 75% 16%);
  --ui-primary-950: hsl(149 70% 10%);
}

.dark.dark {
  --ui-bg: #050505;
  --ui-bg-muted: hsl(240 4% 8%);
  --ui-bg-elevated: hsl(0 0% 4%);
  --ui-bg-accented: hsl(240 4% 8%);
  --ui-border: #27272a;
  --ui-border-muted: #27272a;
  --ui-border-accented: #52525b;
  --ui-text: #a1a1aa;
  --ui-text-muted: #a1a1aa;
  --ui-text-dimmed: #71717a;
  --ui-text-highlighted: #fafafa;
  --ui-text-inverted: #050505;
  --ui-primary: #3CE68D;
  --ui-primary-foreground: #050505;
}

.site-chrome.site-chrome,
.site-chrome-popover.site-chrome-popover,
.site-chrome.site-chrome-admin {
  --primary: 149 77% 57%;
  --primary-foreground: 0 0% 2%;
  --ring: 149 77% 57%;
  --chrome-bg: 0 0% 2%;
  --chrome-fg: 240 5% 65%;
  --chrome-muted: 240 5% 55%;
  --chrome-border: 240 4% 16%;
  --chrome-elevated: 0 0% 4%;
  --chrome-hover: 240 4% 8%;
  --color-primary: #3CE68D;
  --color-primary-foreground: #050505;
  --color-ring: #3CE68D;
  --color-border: #27272a;
  --ui-primary: #3CE68D;
  --ui-primary-foreground: #050505;
  --ui-bg: #050505;
  --ui-border: #27272a;
  --ui-text: #a1a1aa;
  --ui-text-muted: #a1a1aa;
  --ui-text-highlighted: #fafafa;
}

/*
 * Reusable Liquid Glass material.
 *
 *   class="atoz-liquid-glass"
 *   class="atoz-liquid-glass atoz-liquid-glass--refractive"
 *   class="atoz-liquid-glass atoz-liquid-glass--lens"
 *
 * The base class provides a broadly interoperable blur. The refractive
 * modifier splits tint and backdrop into separate layers, then displaces the
 * captured backdrop with the document-local SVG filter from site-header.vue.
 * The lens modifier uses a stronger map for small circular controls. Consumers
 * can override the --atoz-glass-* custom properties locally. No decorative
 * color gradient is painted over the backdrop.
 */
@layer base {
  :root:root .atoz-liquid-glass-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  :where(.atoz-liquid-glass) {
    position: relative;
  }

  :root:root .atoz-liquid-glass.atoz-liquid-glass {
    --atoz-glass-tint: rgb(0 0 0 / 0.24);
    --atoz-glass-fallback: #0a0a0a;
    --atoz-glass-radius: 1.25rem;
    --atoz-glass-border: rgb(255 255 255 / 0.15);
    --atoz-glass-shadow: rgb(0 0 0 / 0.2);
    --atoz-glass-filter: blur(20px) saturate(1.75) contrast(1.07) brightness(1.07);
    --atoz-glass-refraction: url("#atoz-liquid-glass-surface");
    --atoz-glass-refraction-backdrop: blur(0.01px);
    --atoz-glass-refraction-opacity: 0.32;

    isolation: isolate;
    background-color: var(--atoz-glass-tint) !important;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid var(--atoz-glass-border) !important;
    border-radius: var(--atoz-glass-radius) !important;
    -webkit-backdrop-filter: var(--atoz-glass-filter);
    backdrop-filter: var(--atoz-glass-filter);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.22),
      inset 1px 0 0 rgb(255 255 255 / 0.07),
      inset -1px 0 0 rgb(255 255 255 / 0.05),
      inset 0 -1px 0 rgb(255 255 255 / 0.08),
      inset 0 -6px 16px rgb(0 0 0 / 0.12),
      0 10px 30px var(--atoz-glass-shadow) !important;
  }

  :root:root
    .atoz-liquid-glass.atoz-liquid-glass--lens {
    --atoz-glass-refraction: url("#atoz-liquid-glass-lens");
  }

  :root:root
    .atoz-liquid-glass.atoz-liquid-glass:is(
      .atoz-liquid-glass--refractive,
      .atoz-liquid-glass--lens
    ),
  :root:root .site-chrome-popover.site-chrome-popover {
    isolation: isolate;
    background-color: transparent !important;
    background-image: none !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  :root:root
    .atoz-liquid-glass.atoz-liquid-glass:is(
      .atoz-liquid-glass--refractive,
      .atoz-liquid-glass--lens
    )::before,
  :root:root .site-chrome-popover.site-chrome-popover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    border-radius: inherit !important;
    background-color: var(--atoz-glass-tint);
    -webkit-backdrop-filter: var(--atoz-glass-filter);
    backdrop-filter: var(--atoz-glass-filter);
  }

  :root:root
    .atoz-liquid-glass.atoz-liquid-glass:is(
      .atoz-liquid-glass--refractive,
      .atoz-liquid-glass--lens
    )::after,
  :root:root .site-chrome-popover.site-chrome-popover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    isolation: isolate;
    pointer-events: none;
    border-radius: inherit !important;
    opacity: var(--atoz-glass-refraction-opacity);
    -webkit-backdrop-filter: var(--atoz-glass-refraction-backdrop);
    backdrop-filter: var(--atoz-glass-refraction-backdrop);
    -webkit-filter: var(--atoz-glass-refraction);
    filter: var(--atoz-glass-refraction);
  }

  :root:root header.atoz-site-header.site-chrome {
    --atoz-glass-radius: 0px;
    --atoz-glass-filter: blur(16px) saturate(1.75) contrast(1.07) brightness(1.07);
    border: 0 !important;
    border-bottom: 1px solid rgb(255 255 255 / 0.09) !important;
    box-shadow: 0 1px 0 rgb(0 0 0 / 0.32) !important;
  }

  :root:root .store-app-bar.store-app-bar.atoz-liquid-glass {
    --atoz-glass-radius: 0px;
    --atoz-glass-tint: rgb(0 0 0 / 0.42);
    --atoz-glass-filter: blur(18px) saturate(1.7) contrast(1.06) brightness(1.06);
    --atoz-glass-refraction: url("#atoz-liquid-glass-surface");
    --atoz-glass-refraction-opacity: 0.28;

    border: 0 !important;
    border-bottom: 1px solid rgb(255 255 255 / 0.09) !important;
    box-shadow: 0 1px 0 rgb(0 0 0 / 0.32) !important;
  }

  :root:root .site-chrome-popover.site-chrome-popover {
    --atoz-glass-tint: rgb(0 0 0 / 0.46);
    --atoz-glass-fallback: #0a0a0a;
    --atoz-glass-filter: blur(20px) saturate(1.75) contrast(1.07) brightness(1.07);
    --atoz-glass-refraction: url("#atoz-liquid-glass-surface");
    --atoz-glass-refraction-backdrop: blur(0.01px);
    --atoz-glass-refraction-opacity: 0.3;

    border: 0 !important;
    border-bottom: 1px solid rgb(255 255 255 / 0.09) !important;
    box-shadow: 0 1px 0 rgb(0 0 0 / 0.32) !important;
  }

  :root:root .dynamic-nav-dropdown-shell {
    padding-top: 10px;
    pointer-events: auto;
  }

  :root:root .dynamic-nav-arrow.dynamic-nav-arrow.atoz-liquid-glass {
    --atoz-glass-tint: rgb(0 0 0 / 0.46);
    --atoz-glass-filter: blur(20px) saturate(1.75) contrast(1.07) brightness(1.07);
    --atoz-glass-refraction: url("#atoz-liquid-glass-lens");
    --atoz-glass-refraction-backdrop: blur(0.01px);
    --atoz-glass-refraction-opacity: 0.42;

    position: absolute;
    top: 2px;
    left: var(--dynamic-nav-arrow-left);
    z-index: 2;
    width: 14px !important;
    height: 14px !important;
    border: 0 !important;
    border-radius: 4px !important;
    background-color: transparent !important;
    box-shadow: none !important;
    transform: rotate(45deg);
  }

  :root:root .dynamic-nav-panel.dynamic-nav-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 14px !important;
  }

  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    :root:root .atoz-liquid-glass.atoz-liquid-glass {
      background-color: var(--atoz-glass-fallback) !important;
      background-image: none;
    }

    :root:root .site-chrome-popover.site-chrome-popover {
      background-color: var(--atoz-glass-fallback) !important;
    }

    :root:root .atoz-liquid-glass.atoz-liquid-glass::before,
    :root:root .atoz-liquid-glass.atoz-liquid-glass::after,
    :root:root .site-chrome-popover.site-chrome-popover::before,
    :root:root .site-chrome-popover.site-chrome-popover::after {
      display: none;
    }

    :root:root .dynamic-nav-arrow.dynamic-nav-arrow.atoz-liquid-glass {
      background-color: #0a0a0a !important;
    }
  }

  @media (prefers-reduced-transparency: reduce) {
    :root:root .atoz-liquid-glass.atoz-liquid-glass {
      background-color: var(--atoz-glass-fallback) !important;
      background-image: none;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      box-shadow: none !important;
    }

    :root:root .atoz-liquid-glass.atoz-liquid-glass::before {
      display: none;
    }

    :root:root .atoz-liquid-glass.atoz-liquid-glass::after {
      display: none;
    }

    :root:root .site-chrome-popover.site-chrome-popover {
      background-color: #0a0a0a !important;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
    }

    :root:root .site-chrome-popover.site-chrome-popover::before,
    :root:root .site-chrome-popover.site-chrome-popover::after {
      display: none;
    }

    :root:root .dynamic-nav-arrow.dynamic-nav-arrow.atoz-liquid-glass {
      background-color: #0a0a0a !important;
    }
  }
}

:root:root:not(:has(.site-chrome-admin)) .atoz-home {
  margin-top: -4rem;
}

@media (prefers-reduced-transparency: reduce) {
  :root:root:not(:has(.site-chrome-admin)) .atoz-home {
    margin-top: 0;
  }
}

:root:root html,
:root:root body,
:root:root.dark body,
:root:root.light body {
  background-color: #050505;
  background-image: none;
  background-attachment: scroll;
  color: #a1a1aa;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/*
 * Nuxt UI fields use border-0 + box-shadow rings. This theme kills all
 * shadows, so fields vanish against #050505. Draw a real border + fill.
 */
:root:root input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]),
:root:root textarea,
:root:root select,
:root:root [data-slot="input"],
:root:root [data-slot="control"]:has(> input):not(:has([data-slot="button"])),
:root:root [role="combobox"],
:root:root button[role="combobox"],
:root:root [data-slot="select-trigger"] {
  color: #fafafa !important;
  -webkit-text-fill-color: #fafafa;
  caret-color: #3CE68D;
  background-color: #0a0a0a !important;
  border: 1px solid #52525b !important;
  outline: none;
}

:root:root input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):hover,
:root:root textarea:hover,
:root:root select:hover,
:root:root [data-slot="input"]:hover,
:root:root [role="combobox"]:hover,
:root:root button[role="combobox"]:hover,
:root:root [data-slot="select-trigger"]:hover {
  border-color: #71717a !important;
}

:root:root input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):focus,
:root:root input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):focus-visible,
:root:root textarea:focus,
:root:root textarea:focus-visible,
:root:root select:focus,
:root:root select:focus-visible,
:root:root [data-slot="input"]:focus,
:root:root [data-slot="input"]:focus-visible,
:root:root [role="combobox"]:focus-visible,
:root:root button[role="combobox"]:focus-visible,
:root:root [data-slot="select-trigger"]:focus-visible {
  border-color: #3CE68D !important;
  outline: 1px solid #3CE68D !important;
  outline-offset: 0;
}

:root:root input::placeholder,
:root:root textarea::placeholder,
:root:root [data-slot="input"]::placeholder {
  color: #71717a !important;
  -webkit-text-fill-color: #71717a;
  opacity: 1;
}

:root:root input:-webkit-autofill,
:root:root input:-webkit-autofill:hover,
:root:root input:-webkit-autofill:focus,
:root:root textarea:-webkit-autofill {
  -webkit-text-fill-color: #fafafa;
  caret-color: #3CE68D;
  border: 1px solid #52525b !important;
  box-shadow: 0 0 0 1000px #0a0a0a inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

:root:root *,
:root:root *::before,
:root:root *::after {
  border-radius: 0px !important;
  box-shadow: none !important;
}

:root:root .atoz-term-dot {
  border-radius: 999px !important;
}

/* Homepage hero v2 is the only customer surface allowed rounded chrome. */
:root:root .atoz-hero-v2 .atoz-hero-search {
  border-radius: 0.9rem !important;
}

:root:root .atoz-hero-v2 .atoz-hero-search button,
:root:root .atoz-hero-v2 .atoz-hero-start,
:root:root .atoz-hero-v2 .atoz-hero-plans,
:root:root .atoz-hero-v2 .atoz-hero-term,
:root:root .atoz-hero-v2 .atoz-hero-flag,
:root:root .atoz-hero-v2 .atoz-hero-float,
:root:root .atoz-hero-v2 .atoz-hero-features > li > .atoz-hero-feature-icon {
  border-radius: 0.75rem !important;
}

:root:root .atoz-hero-v2 .atoz-hero-float-icon {
  border-radius: 0.5rem !important;
}

:root:root .atoz-hero-v2 .atoz-hero-title,
:root:root .atoz-hero-v2 .atoz-hero-title span {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
}

:root:root .atoz-hero-v2 .atoz-hero-search input,
:root:root .atoz-hero-v2 .atoz-hero-search input:hover,
:root:root .atoz-hero-v2 .atoz-hero-search input:focus,
:root:root .atoz-hero-v2 .atoz-hero-search input:focus-visible {
  border: none !important;
  outline: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

:root:root .atoz-hero-v2 .atoz-hero-search button {
  background: #3ce68d !important;
  color: #050505 !important;
  border: 0 !important;
}

:root:root .atoz-hero-v2 .atoz-hero-start {
  background: #ff7a00 !important;
  color: #050505 !important;
  border: 0 !important;
}

:root:root .atoz-hero-v2 .atoz-hero-plans {
  background: transparent !important;
  color: #fafafa !important;
  border: 1px solid #3f3f46 !important;
}

:root:root .atoz-hero-cta,
:root:root .atoz-hero-cta[data-slot="button"] {
  background-color: transparent !important;
  border: 1px solid #3CE68D !important;
  color: #3CE68D !important;
  box-shadow: none !important;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

:root:root .atoz-hero-cta:hover {
  background-color: #3CE68D !important;
  color: #050505 !important;
}

:root:root .atoz-hero-cta:focus-visible {
  outline: 2px solid #3CE68D;
  outline-offset: 2px;
}

/*
 * Former elevation (Tailwind shadow / ring utilities, cards, controls)
 * becomes a 1px #27272A hairline. Do not apply this to every element —
 * that would box inline text and icons.
 */
:root:root [class*="shadow"],
:root:root [class*="rounded"],
:root:root [data-slot="card"],
:root:root [data-slot="button"],
:root:root button:not([role="combobox"]):not([data-slot="select-trigger"]),
:root:root [role="dialog"],
:root:root [role="menu"],
:root:root [role="listbox"],
:root:root [role="tooltip"],
:root:root img,
:root:root video,
:root:root .atoz-rack-frame,
:root:root .atoz-rack-row {
  box-shadow: none !important;
  border-color: #27272a;
}

/* Keep field edges brighter than panel hairlines (see input rules above). */
:root:root input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]),
:root:root textarea,
:root:root select,
:root:root [data-slot="input"],
:root:root [role="combobox"],
:root:root button[role="combobox"],
:root:root [data-slot="select-trigger"] {
  box-shadow: none !important;
  border: 1px solid #52525b !important;
}

:root:root input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):focus,
:root:root input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):focus-visible,
:root:root textarea:focus,
:root:root textarea:focus-visible,
:root:root select:focus,
:root:root select:focus-visible,
:root:root [data-slot="input"]:focus,
:root:root [data-slot="input"]:focus-visible,
:root:root [role="combobox"]:focus-visible,
:root:root button[role="combobox"]:focus-visible,
:root:root [data-slot="select-trigger"]:focus-visible {
  border-color: #3CE68D !important;
  outline: 1px solid #3CE68D !important;
  outline-offset: 0;
}

:root:root [class*="shadow"] {
  border: 1px solid #27272a !important;
}

.font-display,
.font-mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

:root:root h1,
:root:root h2,
:root:root h3,
:root:root button,
:root:root [type="button"],
:root:root [type="submit"],
:root:root [role="button"],
:root:root [data-slot="button"],
:root:root .tabular-nums,
:root:root [class*="price"] {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

:root:root p {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

.atoz-hairline {
  display: block;
  height: 1px;
  background: #27272a;
}

:root:root {
  scrollbar-width: thin;
  scrollbar-color: #27272a #050505;
}

:root:root::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

:root:root::-webkit-scrollbar-track {
  background: #050505;
}

:root:root::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 0px !important;
  border: 1px solid #27272a;
}

:root:root::-webkit-scrollbar-thumb:hover {
  background: #3CE68D;
}

:root:root ::selection {
  background: hsl(149 77% 57% / 0.28);
  color: #050505;
}

/*
 * Product landings still ship emerald / slate / cyan utilities and scoped
 * hero fills from the previous brand. Remap them here so the Terminal
 * tokens win without forking every Vue class list.
 */
:root:root [class*="text-emerald"],
:root:root [class*="text-cyan"],
:root:root [class*="text-teal"] {
  color: #3CE68D !important;
}

:root:root [class*="bg-emerald"][class*="/"],
:root:root [class*="bg-cyan"][class*="/"] {
  background-color: hsl(149 77% 57% / 0.12) !important;
}

:root:root .bg-emerald-300,
:root:root .bg-emerald-400,
:root:root .bg-emerald-500,
:root:root .bg-cyan-300 {
  background-color: #3CE68D !important;
}

:root:root [class*="from-emerald"],
:root:root [class*="to-cyan"],
:root:root [class*="to-emerald"] {
  --tw-gradient-from: #3CE68D !important;
  --tw-gradient-via: #3CE68D !important;
  --tw-gradient-to: #3CE68D !important;
}

:root:root [class*="border-emerald"],
:root:root [class*="border-cyan"] {
  border-color: #27272a !important;
}

:root:root [class*="text-slate-2"],
:root:root [class*="text-slate-3"],
:root:root [class*="text-slate-4"] {
  color: #a1a1aa !important;
}

:root:root [class*="bg-slate-50"],
:root:root [class*="bg-slate-100"],
:root:root [class*="bg-slate-950"],
:root:root [class*="border-slate-300"] {
  background-color: #050505 !important;
  border-color: #27272a !important;
}

:root:root [class*="bg-slate-9"] {
  background-color: #0a0a0a !important;
}

:root:root .vps-hero,
:root:root .lsc-hero,
:root:root .atoz-ssd-hero {
  background: #050505 !important;
}

:root:root .vps-orb,
:root:root .lsc-orb,
:root:root .vps-halo,
:root:root .lsc-cloud-halo,
:root:root .atoz-hero-glow {
  background: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/*
 * Customer surfaces (public, auth, store, client area) stay flat.
 * Admin chrome keeps its own utilities. Theme CSS loads before Nuxt,
 * so raised :root:root specificity is required.
 */
:root:root:not(:has(.site-chrome-admin)) {
  --tw-gradient-from: #0a0a0a;
  --tw-gradient-via: #0a0a0a;
  --tw-gradient-to: #0a0a0a;
  --tw-gradient-stops: #0a0a0a, #0a0a0a;
}

:root:root:not(:has(.site-chrome-admin)) [class*="bg-gradient"],
:root:root:not(:has(.site-chrome-admin)) [class*="bg-[radial-gradient"],
:root:root:not(:has(.site-chrome-admin)) [class*="bg-[linear-gradient"],
:root:root:not(:has(.site-chrome-admin)) [class*="bg-[conic-gradient"] {
  background-image: none !important;
  background-color: #0a0a0a;
}

/* Soft blur orbs still read as a wash after gradient utilities are flattened. */
:root:root:not(:has(.site-chrome-admin)) [class*="blur-3xl"] {
  display: none !important;
  background: none !important;
  filter: none !important;
}

:root:root:not(:has(.site-chrome-admin)) [class*="from-primary to-primary"] {
  background-color: #3CE68D;
  color: #050505;
}

:root:root:not(:has(.site-chrome-admin)) .nuxt-loading-indicator {
  background: #3CE68D !important;
}

:root:root:not(:has(.site-chrome-admin)) [class*="bg-clip-text"] {
  background-image: none !important;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fafafa !important;
  -webkit-text-fill-color: #fafafa;
}

:root:root:not(:has(.site-chrome-admin)) .bg-grid-pattern,
:root:root:not(:has(.site-chrome-admin)) .domain-skeleton,
:root:root:not(:has(.site-chrome-admin)) .gradient-border {
  background-image: none !important;
  background: #0a0a0a !important;
}

:root:root:not(:has(.site-chrome-admin)) .vps-header {
  background: #3CE68D !important;
}

:root:root:not(:has(.site-chrome-admin)) .vps-header::before,
:root:root:not(:has(.site-chrome-admin)) .vps-action-button::before,
:root:root:not(:has(.site-chrome-admin)) .vps-template-item::before {
  background: none !important;
}

:root:root:not(:has(.site-chrome-admin)) .vps-stat-card::before,
:root:root:not(:has(.site-chrome-admin)) .stat-icon,
:root:root:not(:has(.site-chrome-admin)) .vps-action-button .action-icon {
  background-image: none !important;
  background-color: #3CE68D !important;
  color: #050505 !important;
}

:root:root:not(:has(.site-chrome-admin)) .vps-error::before,
:root:root:not(:has(.site-chrome-admin)) .vps-action-button.power-off .action-icon,
:root:root:not(:has(.site-chrome-admin)) .vps-btn-danger,
:root:root:not(:has(.site-chrome-admin)) .vps-btn-danger:hover:not(:disabled) {
  background-image: none !important;
  background-color: #ef4444 !important;
}
