/*
 * supportkg — compiled Tailwind-equivalent stylesheet.
 *
 * This file is hand-tuned to emulate the Tailwind utility set used across
 * the Figma design. A `tailwind.config.js` and `src/input.css` live in the
 * theme root for teams that want to regenerate this file with the official
 * Tailwind CLI (run `npx tailwindcss -i ./src/input.css -o ./assets/css/app.css --minify`).
 *
 * Design tokens come from the Figma `theme.css` source file.
 */

/* ------- Design tokens ------- */
:root {
  --font-headline: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --background: #0A2540;
  --foreground: #E8F4FA;
  --card: #0F3356;
  --card-foreground: #E8F4FA;
  --popover: #0F3356;
  --popover-foreground: #E8F4FA;
  --primary: #00C2FF;
  --primary-foreground: #0A2540;
  --secondary: #1A4668;
  --secondary-foreground: #E8F4FA;
  --muted: #0F3356;
  --muted-foreground: #94B3CB;
  --accent: #00C2FF;
  --accent-foreground: #0A2540;
  --destructive: #FF4757;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 194, 255, 0.15);
  --input: rgba(0, 194, 255, 0.1);
  --input-background: rgba(15, 51, 86, 0.5);
  --ring: #00C2FF;
  --radius: 0.75rem;

  --container-max: 80rem;
}

/* ------- Reset / base ------- */
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-headline); font-weight: 600; line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

/* Scrollbar */
* { scrollbar-width: thin; scrollbar-color: rgba(0,194,255,.3) transparent; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,194,255,.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,194,255,.5); }

/* ------- Layout primitives ------- */
.container-7xl, .max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; } .left-0 { left: 0; } .right-0 { right: 0; } .bottom-0 { bottom: 0; }
.z-10 { z-index: 10; } .z-30 { z-index: 30; } .z-40 { z-index: 40; } .z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.whitespace-nowrap { white-space: nowrap; }
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.transition-all { transition: all .3s ease; }
.transition-colors { transition: color .25s ease, background-color .25s ease, border-color .25s ease; }
.transition-opacity { transition: opacity .3s ease; }
.transition-transform { transition: transform .3s ease; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); }

/* Spacing scale */
.p-0 { padding: 0; }
.p-1 { padding: .25rem; } .p-1\.5 { padding: .375rem; }
.p-2 { padding: .5rem; } .p-3 { padding: .75rem; }
.p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; } .p-12 { padding: 3rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-3 { padding-top: .75rem; } .pt-8 { padding-top: 2rem; } .pt-32 { padding-top: 8rem; }
.pb-8 { padding-bottom: 2rem; } .pb-20 { padding-bottom: 5rem; }
.pl-4 { padding-left: 1rem; }

.m-0 { margin: 0; } .mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: .25rem; } .mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; } .mt-12 { margin-top: 3rem; }

.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-12 { gap: 3rem; }

.w-full { width: 100%; } .w-auto { width: auto; }
.w-3 { width: .75rem; } .w-4 { width: 1rem; } .w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; }
.w-8 { width: 2rem; } .w-12 { width: 3rem; } .w-32 { width: 8rem; } .w-64 { width: 16rem; }
.h-3 { height: .75rem; } .h-4 { height: 1rem; } .h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; }
.h-8 { height: 2rem; } .h-12 { height: 3rem; } .h-16 { height: 4rem; } .h-20 { height: 5rem; }
.h-32 { height: 8rem; } .min-h-screen { min-height: 100vh; }
.h-px { height: 1px; }

/* Grid */
.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)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Typography */
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-headline { font-family: var(--font-headline); }
.font-body { font-family: var(--font-body); }

/* Colors */
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-destructive { color: var(--destructive); }
.text-green-400 { color: #4ade80; }
.text-yellow-400 { color: #facc15; }
.text-red-400 { color: #f87171; }
.text-blue-400 { color: #60a5fa; }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-destructive { background-color: var(--destructive); }
.bg-input-background { background-color: var(--input-background); }
.bg-transparent { background-color: transparent; }

.bg-card\/30 { background-color: rgba(15,51,86,.3); }
.bg-card\/50 { background-color: rgba(15,51,86,.5); }
.bg-card\/90 { background-color: rgba(15,51,86,.9); }
.bg-card\/95 { background-color: rgba(15,51,86,.95); }
.bg-background\/50 { background-color: rgba(10,37,64,.5); }
.bg-background\/70 { background-color: rgba(10,37,64,.7); }
.bg-background\/95 { background-color: rgba(10,37,64,.95); }
.bg-muted\/30 { background-color: rgba(15,51,86,.3); }
.bg-muted\/50 { background-color: rgba(15,51,86,.5); }
.bg-primary\/5 { background-color: rgba(0,194,255,.05); }
.bg-primary\/10 { background-color: rgba(0,194,255,.1); }
.bg-primary\/20 { background-color: rgba(0,194,255,.2); }
.bg-primary\/30 { background-color: rgba(0,194,255,.3); }
.bg-green-500\/10 { background-color: rgba(34,197,94,.1); }
.bg-yellow-500\/10 { background-color: rgba(234,179,8,.1); }
.bg-blue-500\/10 { background-color: rgba(59,130,246,.1); }
.bg-red-500\/10 { background-color: rgba(239,68,68,.1); }

/* Border + radius */
.rounded { border-radius: .25rem; }
.rounded-md { border-radius: .375rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; border-style: solid; border-color: var(--border); }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: var(--border); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: var(--border); }
.border-2 { border-width: 2px; }
.border-border { border-color: var(--border); }
.border-border\/30 { border-color: rgba(0,194,255,.06); }
.border-border\/50 { border-color: rgba(0,194,255,.10); }
.border-primary\/10 { border-color: rgba(0,194,255,.1); }
.border-primary\/20 { border-color: rgba(0,194,255,.2); }
.border-primary\/30 { border-color: rgba(0,194,255,.3); }
.border-primary\/50 { border-color: rgba(0,194,255,.5); }
.border-green-500\/20 { border-color: rgba(34,197,94,.2); }
.border-yellow-500\/20 { border-color: rgba(234,179,8,.2); }
.border-blue-500\/20 { border-color: rgba(59,130,246,.2); }
.border-red-500\/20 { border-color: rgba(239,68,68,.2); }

/* Shadows */
.shadow-lg { box-shadow: 0 10px 25px rgba(0,0,0,.25); }
.shadow-xl { box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.shadow-2xl { box-shadow: 0 30px 60px rgba(0,0,0,.45); }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-grad-from, transparent), var(--tw-grad-to, transparent)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-grad-from, transparent), var(--tw-grad-to, transparent)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-grad-from, transparent), var(--tw-grad-to, transparent)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-grad-from, transparent), var(--tw-grad-to, transparent)); }
.from-primary { --tw-grad-from: var(--primary); }
.to-primary { --tw-grad-to: var(--primary); }
.from-primary\/60 { --tw-grad-from: rgba(0,194,255,.6); }
.to-primary\/60 { --tw-grad-to: rgba(0,194,255,.6); }
.from-primary\/10 { --tw-grad-from: rgba(0,194,255,.1); }
.from-primary\/20 { --tw-grad-from: rgba(0,194,255,.2); }
.via-primary\/10 { --tw-grad-via: rgba(0,194,255,.1); }
.to-transparent { --tw-grad-to: transparent; }
.from-foreground { --tw-grad-from: var(--foreground); }
.to-primary\/70 { --tw-grad-to: rgba(0,194,255,.7); }
.to-primary\/80 { --tw-grad-to: rgba(0,194,255,.8); }

/* Hover/focus utilities */
.hover\:bg-primary\/90:hover { background-color: rgba(0,194,255,.9); }
.hover\:bg-primary\/5:hover { background-color: rgba(0,194,255,.05); }
.hover\:bg-muted:hover { background-color: var(--muted); }
.hover\:bg-muted\/50:hover { background-color: rgba(15,51,86,.5); }
.hover\:bg-muted\/80:hover { background-color: rgba(15,51,86,.8); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:border-primary\/50:hover { border-color: rgba(0,194,255,.5); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:opacity-100:hover { opacity: 1; }

.opacity-0 { opacity: 0; } .opacity-30 { opacity: .3; } .opacity-40 { opacity: .4; }
.opacity-50 { opacity: .5; } .opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-20 { opacity: .2; }

/* Focus */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.focus\:border-primary:focus { border-color: var(--primary); }
.outline-none:focus { outline: none; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.animate-fade-in { animation: fadeIn .8s ease-out both; }
.animate-fade-in-left { animation: fadeInLeft .8s ease-out both; }
.animate-fade-in-right { animation: fadeInRight .8s ease-out both; }
.animate-pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-glow-pulse { animation: glowPulse 4s ease-in-out infinite; }
.animate-shimmer {
  animation: shimmer 3s linear infinite;
  background-image: linear-gradient(to right, transparent, rgba(0,194,255,.1), transparent);
  background-size: 1000px 100%;
}

/* IntersectionObserver-driven reveal animations (data-reveal) */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="left"].is-visible, [data-reveal="right"].is-visible { transform: translateX(0); }

/* Component patterns */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: .75rem;
  background-color: var(--primary); color: var(--primary-foreground);
  font-weight: 500; transition: all .25s ease;
}
.btn-primary:hover { background-color: rgba(0,194,255,.9); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,194,255,.25); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: .75rem;
  background: transparent; color: var(--foreground);
  border: 1px solid rgba(0,194,255,.2);
  font-weight: 500; backdrop-filter: blur(8px); transition: all .25s ease;
}
.btn-outline:hover { border-color: rgba(0,194,255,.5); background-color: rgba(0,194,255,.05); transform: translateY(-2px); }

.card {
  background-color: rgba(15,51,86,.5);
  border: 1px solid rgba(0,194,255,.1);
  border-radius: 1rem; padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: all .35s ease;
}
.card:hover { border-color: rgba(0,194,255,.5); transform: translateY(-5px); }

/* ------- Case carousel ------- */
.case-carousel {
  position: relative;
  isolation: isolate;
}
.case-carousel__viewport {
  position: absolute; inset: 0;
}
.case-carousel__slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform 1.4s ease;
  will-change: opacity, transform;
}
.case-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.case-carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-carousel__dots {
  position: absolute;
  left: 50%; bottom: .5rem;
  transform: translateX(-50%);
  display: flex; gap: .375rem;
  padding: .25rem .5rem;
  border-radius: 999px;
  background: rgba(10, 37, 64, .55);
  backdrop-filter: blur(6px);
  z-index: 2;
}
.case-carousel__dot {
  width: .4rem; height: .4rem;
  border-radius: 999px;
  background: rgba(232, 244, 250, .45);
  transition: background-color .25s ease, transform .25s ease, width .25s ease;
  padding: 0;
}
.case-carousel__dot:hover { background: rgba(232, 244, 250, .75); }
.case-carousel__dot.is-active {
  background: var(--primary);
  width: 1.1rem;
}
@media (prefers-reduced-motion: reduce) {
  .case-carousel__slide { transition: none; transform: none; }
}

.bg-clip-text {
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:p-12 { padding: 3rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}
@media (min-width: 768px) {
  .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:w-64 { width: 16rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:pb-8 { padding-bottom: 2rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .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\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-left { text-align: left; }
  .lg\:justify-start { justify-content: flex-start; }
}

/* Mobile bottom nav */
.mobile-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background-color: rgba(15,51,86,.95);
  border-top: 1px solid rgba(0,194,255,.15);
  backdrop-filter: blur(24px);
  z-index: 50;
  padding: .5rem;
  padding-bottom: calc(.5rem + env(safe-area-inset-bottom));
}
.mobile-nav-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .25rem; }
.mobile-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: .5rem; border-radius: .5rem; font-size: .7rem; color: var(--muted-foreground); gap: .15rem;
}
.mobile-nav-item.active { color: var(--primary); background-color: rgba(0,194,255,.1); }
@media (min-width: 768px) { .mobile-nav { display: none; } }

/* Hero glow */
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,194,255,.08) 0%, transparent 70%);
  border-radius: 50%; filter: blur(60px);
  animation: glowPulse 8s ease-in-out infinite; pointer-events: none;
}

/* Animated background dots */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,194,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 70%);
}

/* Floating orbs */
.orb { position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.orb-1 { width: 500px; height: 500px; background: rgba(0,194,255,.08); top: 10%; left: -10%; animation: float 15s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(0,147,233,.06); bottom: 20%; right: -8%; animation: float 18s ease-in-out infinite reverse; }

/* Globe placeholder */
.globe-3d {
  width: 100%; aspect-ratio: 1 / 1; max-width: 500px; margin: 0 auto;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.globe-3d::before {
  content: ''; position: absolute; inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,194,255,.4), rgba(10,37,64,.9) 60%);
  border: 2px solid rgba(0,194,255,.3);
  box-shadow:
    0 0 60px rgba(0,194,255,.4),
    inset 0 0 40px rgba(0,194,255,.2);
  animation: float 8s ease-in-out infinite;
}
.globe-3d::after {
  content: ''; position: absolute; inset: 5%;
  border-radius: 50%; border: 1px dashed rgba(0,194,255,.3);
  animation: pulse 4s ease-in-out infinite;
}

/* Forms */
.form-input {
  width: 100%; padding: .625rem 1rem;
  border-radius: .5rem;
  background: var(--input-background);
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: border-color .2s ease;
}
.form-input:focus { outline: none; border-color: var(--primary); }
.form-label { display: block; font-size: .875rem; margin-bottom: .5rem; font-weight: 500; }

/* Notifications */
.notice { padding: .75rem 1rem; border-radius: .5rem; border: 1px solid; margin-bottom: 1rem; }
.notice-success { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.25); color: #4ade80; }
.notice-error { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.25); color: #f87171; }
.notice-info { background: rgba(0,194,255,.1); border-color: rgba(0,194,255,.25); color: var(--primary); }

/* Print */
@media print { .mobile-nav, nav, footer { display: none !important; } body { color: #000; background: #fff; } }
