/* WITTS — Neon Bokeh Corporate */
:root {
  --brand: oklch(0.75 0.18 195);
  --brand-foreground: oklch(0.12 0.02 240);
  --brand-glow: oklch(0.82 0.20 190);
  --background: oklch(0.095 0.005 250);
  --foreground: oklch(0.97 0.005 240);
  --surface: oklch(0.13 0.015 250);
  --muted-foreground: oklch(0.70 0.02 240);
  --border: oklch(0.22 0.02 250);
  --gradient-hero: linear-gradient(135deg, oklch(0.08 0.01 250 / 0.85) 0%, oklch(0.12 0.05 220 / 0.65) 45%, oklch(0.22 0.12 190 / 0.40) 100%);
  --shadow-glow: 0 0 60px -12px color-mix(in oklab, var(--brand) 50%, transparent);
  --shadow-card: 0 10px 40px -20px oklch(0 0 0 / 0.6);
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 2px 2px, color-mix(in oklab, var(--brand) 12%, transparent) 1px, transparent 0);
  background-size: 32px 32px;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.brand { color: var(--brand); font-weight: 600; }
.muted { color: var(--muted-foreground); }
.glow-brand { box-shadow: 0 0 40px -8px color-mix(in oklab, var(--brand) 50%, transparent); }
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }

/* Bokeh background */
.bokeh { position: fixed; inset: 0; z-index: -20; overflow: hidden; pointer-events: none; }
.bokeh .b { position: absolute; border-radius: 9999px; filter: blur(120px); background: color-mix(in oklab, var(--brand) 20%, transparent); }
.bokeh .b1 { top: -10%; left: -5%; width: 24rem; height: 24rem; animation: float 6s ease-in-out infinite; }
.bokeh .b2 { top: 25%; right: 0; width: 20rem; height: 20rem; filter: blur(100px); background: color-mix(in oklab, var(--brand) 15%, transparent); animation: float 8s ease-in-out 1s infinite; }
.bokeh .b3 { bottom: 10%; left: 10%; width: 28rem; height: 28rem; filter: blur(140px); background: color-mix(in oklab, var(--brand) 10%, transparent); animation: float 6s ease-in-out infinite; }
.bokeh .b4 { top: 50%; left: 25%; width: 8rem; height: 8rem; filter: blur(60px); opacity: 0.6; animation: float 8s ease-in-out 1s infinite; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes spin { to { transform: rotate(360deg); } }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; border-bottom: 1px solid color-mix(in oklab, var(--border) 50%, transparent); background: color-mix(in oklab, var(--background) 60%, transparent); backdrop-filter: blur(16px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; max-width: 72rem; margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { width: 2.25rem; height: 2.25rem; border-radius: 9999px; overflow: hidden; border: 1px solid color-mix(in oklab, var(--brand) 30%, transparent); }
.nav-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.nav-links { display: none; gap: 2rem; font-size: 0.875rem; color: var(--muted-foreground); }
.nav-links a:hover { color: var(--brand); }
@media(min-width: 768px) { .nav-links { display: flex; } }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; transition: opacity .2s, background .2s, border-color .2s; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--brand); color: var(--brand-foreground); }
.btn-primary:hover { opacity: .9; }
.btn-primary.lg { padding: 0.75rem 1.5rem; box-shadow: var(--shadow-glow); }
.btn-outline { background: color-mix(in oklab, var(--surface) 60%, transparent); border-color: var(--border); color: var(--foreground); backdrop-filter: blur(8px); padding: 0.75rem 1.5rem; }
.btn-outline:hover { background: var(--surface); }
.nav-cta { display: none; }
@media(min-width: 640px) { .nav-cta { display: inline-flex; } }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem 4rem; isolation: isolate; text-align: center; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center; opacity: 0.3; }
.hero-grad { position: absolute; inset: 0; z-index: -1; background: var(--gradient-hero); }
.hero-veil { position: absolute; inset: 0; z-index: -1; background: color-mix(in oklab, var(--background) 70%, transparent); }
.hero-inner { max-width: 64rem; margin: 0 auto; }
.orb { position: relative; width: 9rem; height: 9rem; margin: 0 auto; }
.orb::before { content: ""; position: absolute; inset: 0; border-radius: 9999px; background: color-mix(in oklab, var(--brand) 30%, transparent); filter: blur(32px); }
.orb-inner { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border-radius: 9999px; border: 4px solid rgba(255,255,255,0.2); background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent); backdrop-filter: blur(4px); overflow: hidden; box-shadow: var(--shadow-glow); }
.orb-inner::after { content: ""; position: absolute; inset: 0.5rem; border-radius: 9999px; border: 1px solid color-mix(in oklab, var(--brand) 40%, transparent); animation: spin 12s linear infinite; }
.orb img { position: relative; z-index: 1; width: 5rem; height: 5rem; border-radius: 9999px; filter: drop-shadow(0 0 15px rgba(255,255,255,0.5)); }
.hero h1 { margin-top: 2.5rem; font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 300; line-height: 1.05; }
.hero-sub { margin: 1rem auto 0; max-width: 42rem; font-size: 1.25rem; font-weight: 300; color: var(--muted-foreground); }
@media(min-width: 768px) { .hero-sub { font-size: 1.5rem; } }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; padding: 0.25rem 0.75rem; border-radius: 9999px; border: 1px solid color-mix(in oklab, var(--brand) 40%, transparent); background: color-mix(in oklab, var(--surface) 40%, transparent); font-size: 0.75rem; font-weight: 500; color: var(--brand); backdrop-filter: blur(8px); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; }

/* Sections */
section { position: relative; }
.section { padding: 6rem 0; }
.section-head { max-width: 42rem; margin: 0 auto; text-align: center; }
.eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand); }
.section-title { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 700; }
@media(min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-lead { margin-top: 1rem; color: var(--muted-foreground); }

/* Services grid */
.services { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
@media(min-width: 768px) { .services { grid-template-columns: repeat(3, 1fr); } }
.card { position: relative; overflow: hidden; border-radius: 1.5rem; border: 1px solid color-mix(in oklab, var(--border) 60%, transparent); background: color-mix(in oklab, var(--surface) 40%, transparent); padding: 2rem; backdrop-filter: blur(12px); box-shadow: var(--shadow-card); transition: transform .3s, border-color .3s; }
.card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--brand) 50%, transparent); }
.card::before { content: ""; position: absolute; top: -4rem; right: -4rem; width: 10rem; height: 10rem; border-radius: 9999px; background: color-mix(in oklab, var(--brand) 10%, transparent); filter: blur(48px); }
.card-title-box { position: relative; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; height: 10rem; padding: 1rem; text-align: center; border-radius: 1rem; border: 1px solid color-mix(in oklab, var(--brand) 30%, transparent); background: linear-gradient(135deg, color-mix(in oklab, var(--brand) 10%, transparent), color-mix(in oklab, var(--brand) 5%, transparent)); box-shadow: 0 0 40px -8px color-mix(in oklab, var(--brand) 50%, transparent); }
.card-title-box h3 { font-size: 1.5rem; font-weight: 600; color: var(--brand); filter: drop-shadow(0 0 10px rgba(34,211,238,0.4)); }
.icon-badge { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 0.75rem; background: color-mix(in oklab, var(--brand) 15%, transparent); color: var(--brand); box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--brand) 30%, transparent); }
.card p.lead { position: relative; margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.card ul { position: relative; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.card li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: color-mix(in oklab, var(--foreground) 90%, transparent); }
.card li svg { flex: none; width: 1rem; height: 1rem; margin-top: 0.125rem; color: var(--brand); }

/* About */
.about { border-top: 1px solid color-mix(in oklab, var(--border) 50%, transparent); border-bottom: 1px solid color-mix(in oklab, var(--border) 50%, transparent); background: color-mix(in oklab, var(--surface) 30%, transparent); }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media(min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.stat-grid { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { border-radius: 0.75rem; border: 1px solid color-mix(in oklab, var(--border) 60%, transparent); background: color-mix(in oklab, var(--background) 60%, transparent); padding: 1.25rem; backdrop-filter: blur(4px); }
.stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--brand); }
.stat-lbl { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }
.about-img-wrap { position: relative; }
.about-img-wrap::before { content: ""; position: absolute; inset: -1rem; border-radius: 1.5rem; background: color-mix(in oklab, var(--brand) 20%, transparent); filter: blur(32px); }
.about-img-wrap img { position: relative; border-radius: 1.5rem; border: 1px solid color-mix(in oklab, var(--border) 50%, transparent); box-shadow: var(--shadow-card); }

/* Contact */
.contact-card { border-radius: 3rem; border: 1px solid color-mix(in oklab, var(--border) 60%, transparent); background: color-mix(in oklab, var(--surface) 40%, transparent); padding: 2rem; backdrop-filter: blur(12px); }
@media(min-width: 768px) { .contact-card { padding: 4rem; } }
.contact-grid { display: grid; gap: 2.5rem; align-items: stretch; }
@media(min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-row { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border: 1px solid color-mix(in oklab, var(--border) 60%, transparent); border-radius: 0.75rem; background: color-mix(in oklab, var(--background) 60%, transparent); backdrop-filter: blur(4px); transition: border-color .2s; margin-top: 1rem; }
.contact-row:hover { border-color: color-mix(in oklab, var(--brand) 50%, transparent); }
.contact-icon { flex: none; display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: var(--brand); color: var(--brand-foreground); }
.contact-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); }
.contact-val { font-weight: 600; }
.contact-list-title { margin-top: 2rem; }
.contact-panel { display: flex; flex-direction: column; overflow: hidden; border-radius: 1.5rem; border: 1px solid color-mix(in oklab, var(--border) 60%, transparent); background: color-mix(in oklab, var(--surface) 40%, transparent); backdrop-filter: blur(12px); }
.contact-panel .card-title-box { margin: 1.5rem; height: 10rem; }
.contact-panel .card-title-box h3 { font-size: 1.875rem; }
.contact-panel-foot { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.contact-panel-foot .big { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--brand); filter: drop-shadow(0 0 10px rgba(34,211,238,0.4)); }
.contact-panel-foot .sm { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* Footer */
footer { border-top: 1px solid color-mix(in oklab, var(--border) 50%, transparent); background: color-mix(in oklab, var(--surface) 30%, transparent); }
.footer-inner { display: flex; flex-direction: column; gap: 1rem; padding: 2.5rem 1.5rem; max-width: 72rem; margin: 0 auto; }
@media(min-width: 768px) { .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand .fb-logo { width: 2rem; height: 2rem; border-radius: 9999px; overflow: hidden; border: 1px solid color-mix(in oklab, var(--brand) 30%, transparent); }
.footer-title { font-family: var(--font-display); font-weight: 600; }
.footer-copy { font-size: 0.75rem; color: var(--muted-foreground); }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-links a:hover { color: var(--brand); }

/* Legal pages */
.legal { min-height: 100vh; padding: 4rem 1.5rem; }
.legal-inner { max-width: 48rem; margin: 0 auto; }
.legal .back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--brand); }
.legal .back:hover { opacity: 0.8; }
.legal h1 { margin-top: 1.5rem; font-size: 2.25rem; font-weight: 700; }
.legal .content { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; line-height: 1.7; }
.legal h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--brand); }
.legal h3 { margin-top: 1rem; font-weight: 600; }
.legal p { margin-top: 0.5rem; }
.legal p.muted { color: var(--muted-foreground); }

.icon { width: 1rem; height: 1rem; display: inline-block; vertical-align: middle; }
.icon.h5 { width: 1.25rem; height: 1.25rem; }
.icon.h35 { width: 0.875rem; height: 0.875rem; }

/* Partner cards */
.partners { grid-template-columns: repeat(1, 1fr); }
@media(min-width: 768px) { .partners { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .partners { grid-template-columns: repeat(3, 1fr); } }
.partner-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.partner-icon-box svg { color: var(--brand); filter: drop-shadow(0 0 10px rgba(34,211,238,0.4)); }
.partner-name { position: relative; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--brand); }
.partner-desc { flex: 1; margin-top: 0.5rem; }
.partner-cta { position: relative; margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--brand); }
