/* =====================================================================
   OAVORA — Marketing site design system
   Based on the official OAVORA brand pack (magenta-violet → blue gradient).
   ===================================================================== */

/* ---------- Tokens ------------------------------------------------ */
:root {
  /* Official OAVORA brand colors */
  --oavora-magenta-violet: #A735FF;
  --oavora-violet: #6A35FF;
  --oavora-royal-blue: #255BFF;
  --oavora-electric-blue: #147DFF;
  --oavora-ink: #111827;
  --oavora-slate: #475569;
  --oavora-cloud: #F8FAFC;
  --oavora-white: #FFFFFF;

  --oavora-gradient-primary: linear-gradient(135deg, #A735FF 0%, #6A35FF 45%, #147DFF 100%);
  --oavora-gradient-screen: linear-gradient(135deg, #A735FF 0%, #255BFF 55%, #147DFF 100%);
  --oavora-gradient-soft: linear-gradient(135deg, rgba(167,53,255,.08) 0%, rgba(20,125,255,.08) 100%);

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-cloud: #F8FAFC;
  --bg-dark: #0B1024;       /* deep navy/ink for dark sections */
  --bg-dark-2: #0F1530;
  --bg-dark-3: #141B3D;
  --surface: #FFFFFF;
  --surface-2: #F4F6FB;

  /* Text */
  --text: #111827;
  --text-muted: #475569;
  --text-soft: #6B7280;
  --text-on-dark: #E6EAF5;
  --text-on-dark-muted: #9AA4C7;

  /* Borders */
  --border: #E5E9F2;
  --border-strong: #D5DBEA;
  --border-dark: rgba(255,255,255,.08);

  /* Status */
  --status-online: #10B981;
  --status-warn: #F59E0B;
  --status-offline: #EF4444;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, .06), 0 1px 1px rgba(17, 24, 39, .04);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, .08), 0 2px 6px rgba(17, 24, 39, .04);
  --shadow-lg: 0 24px 60px -12px rgba(20, 30, 80, .25), 0 12px 24px -12px rgba(20, 30, 80, .15);
  --shadow-glow: 0 30px 80px -20px rgba(106, 53, 255, .55), 0 12px 32px -12px rgba(20, 125, 255, .35);

  /* Spacing scale (8pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px; --s-8: 40px;
  --s-9: 56px; --s-10: 72px; --s-11: 96px; --s-12: 128px;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --header-h: 84px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t-fast: 160ms;
  --t-med: 280ms;
  --t-slow: 480ms;
}

/* ---------- Reset / base ----------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

h1, h2, h3, h4, h5 {
  margin: 0 0 var(--s-4);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 1.4rem + 1.8vw, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.35rem, 1.15rem + 0.6vw, 1.65rem); }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 var(--s-4); color: var(--text-muted); }
small { color: var(--text-soft); }

::selection { background: rgba(106, 53, 255, .25); color: var(--oavora-ink); }

/* ---------- Layout helpers --------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--s-6); }

.section {
  padding: clamp(56px, 8vw, 112px) 0;
  position: relative;
}
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: var(--text-on-dark-muted); }

.section-cloud { background: var(--bg-cloud); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oavora-violet);
  margin-bottom: var(--s-4);
}
.section-dark .eyebrow { color: #B49BFF; }

.section-head { max-width: 760px; margin: 0 auto var(--s-9); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { font-size: 1.0625rem; }

.lead { font-size: 1.125rem; color: var(--text-muted); }
.section-dark .lead { color: var(--text-on-dark-muted); }

.text-gradient {
  background: var(--oavora-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.btn:focus-visible { outline: 3px solid rgba(106, 53, 255, .35); outline-offset: 2px; }

.btn-primary {
  background: var(--oavora-gradient-primary);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(106, 53, 255, .55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 36px -14px rgba(106, 53, 255, .6); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--oavora-violet); color: var(--oavora-violet); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--oavora-royal-blue);
  font-weight: 600;
}
.btn-link:hover { color: var(--oavora-violet); }
.btn-link::after {
  content: "→";
  transition: transform var(--t-fast) var(--ease);
}
.btn-link:hover::after { transform: translateX(3px); }

.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- Header / nav ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, .94);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-h);

}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  gap: var(--s-2);
  font-weight: 800;
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: -.02em;
}
.brand img {
  height: 48px;
  width: auto;
  max-width: 230px;
}

.nav > nav {
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.8vw, var(--s-7));
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  position: relative;
  padding: 6px 2px;
}
.nav-links a:hover { color: var(--oavora-violet); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px 0;
  height: 2px;
  border-radius: 2px;
  background: var(--oavora-gradient-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex: 0 0 auto;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .brand img { height: 42px; max-width: 205px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: var(--s-5) var(--s-6) var(--s-7);
    gap: var(--s-4);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 8px 0; font-size: 1rem; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- Footer ----------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--s-11) 0 var(--s-7);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: -200px -200px auto auto;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(106,53,255,.18), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--s-8);
  position: relative;
}
.footer-brand p { color: var(--text-on-dark-muted); margin-top: var(--s-4); max-width: 320px; }
.footer-brand img { height: 34px; }
.footer-col h5 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--s-3); }
.footer-col a { color: var(--text-on-dark-muted); font-size: .94rem; transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: #fff; }

.newsletter { display: flex; gap: var(--s-2); margin-top: var(--s-3); }
.newsletter input {
  flex: 1; min-width: 0;
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter input:focus { outline: 2px solid rgba(167,53,255,.5); outline-offset: 0; }
.newsletter button {
  padding: 11px 18px;
  border-radius: var(--r-md);
  background: var(--oavora-gradient-primary);
  color: #fff; font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-9);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-dark);
  color: var(--text-on-dark-muted);
  font-size: .9rem;
}
.footer-bottom .legal-links { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

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

/* ---------- Cards ------------------------------------------------ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-fast) var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(106, 53, 255, .35);
}
.card h3 { margin-bottom: var(--s-2); }
.card p:last-child { margin-bottom: 0; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--oavora-gradient-soft);
  color: var(--oavora-violet);
  margin-bottom: var(--s-5);
}
.card-icon svg { width: 22px; height: 22px; }

.card-dark {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-on-dark);
}
.card-dark:hover { border-color: rgba(167,53,255,.45); }
.card-dark .card-icon {
  background: linear-gradient(135deg, rgba(167,53,255,.18), rgba(20,125,255,.18));
  color: #B49BFF;
}

/* ---------- Pills, badges, chips ---------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  background: rgba(106,53,255,.08);
  color: var(--oavora-violet);
  border: 1px solid rgba(106,53,255,.15);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--oavora-violet);
}
.pill-dark { background: rgba(255,255,255,.06); color: #C7B7FF; border-color: rgba(255,255,255,.1); }
.pill-dark .dot { background: #C7B7FF; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--r-pill);
  text-transform: uppercase;
}
.badge-online { background: rgba(16,185,129,.12); color: #047857; }
.badge-warn   { background: rgba(245,158,11,.14); color: #B45309; }
.badge-offline{ background: rgba(239,68,68,.12); color: #B91C1C; }

/* ---------- Hero ------------------------------------------------- */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  padding: clamp(72px, 10vw, 128px) 0 clamp(72px, 10vw, 132px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% 30% -10%;
  background:
    radial-gradient(60% 50% at 22% 18%, rgba(167, 53, 255, .35), transparent 65%),
    radial-gradient(55% 45% at 78% 35%, rgba(20, 125, 255, .28), transparent 65%);
  filter: blur(2px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--s-10);
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-9); }
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--s-5);
}
.hero p.lead { color: rgba(255,255,255,.78); font-size: 1.18rem; margin-bottom: var(--s-7); max-width: 560px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-8); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-meta .stat .num {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
}
.hero-meta .stat .lbl { color: rgba(255,255,255,.6); font-size: .85rem; }

/* ---------- Premium LED wall home hero --------------------------- */
.oavora-led-hero {
  --mx: 50%;
  --my: 42%;
  position: relative;
  min-height: 100svh;
  padding: 22px;
  overflow: hidden;
  color: #fff;
  background-color: #050816;
  border: 10px solid #02040b;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 0 2px rgba(15,23,42,.9),
    0 30px 100px rgba(0,0,0,.55) inset;
  isolation: isolate;
}

.oavora-led-hero::before,
.oavora-led-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.oavora-led-hero::before {
  z-index: 0;
  background-image:
    radial-gradient(circle at center, rgba(255,255,255,.16) 0 1px, transparent 1.6px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    repeating-linear-gradient(90deg, transparent 0 24.85%, rgba(0,0,0,.52) 24.85% 25%, transparent 25% 49.85%),
    repeating-linear-gradient(0deg, transparent 0 24.75%, rgba(0,0,0,.5) 24.75% 25%, transparent 25% 49.75%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 5px),
    radial-gradient(65% 55% at 22% 18%, rgba(85,55,255,.3), transparent 62%),
    radial-gradient(58% 50% at 78% 35%, rgba(20,125,255,.24), transparent 66%);
  background-size:
    7px 7px,
    100% 108px,
    178px 100%,
    100% 100%,
    100% 100%,
    100% 5px,
    100% 100%,
    100% 100%;
  opacity: .95;
}

.oavora-led-hero::after {
  z-index: 1;
  background-image:
    radial-gradient(circle at var(--mx) var(--my), rgba(139,92,246,.45), rgba(37,99,235,.28) 38%, rgba(6,182,212,.16) 58%, transparent 76%),
    radial-gradient(circle at center, rgba(103,232,249,.72) 0 1.1px, rgba(139,92,246,.42) 1.15px 1.7px, transparent 2.2px);
  background-size: 100% 100%, 8px 8px;
  mix-blend-mode: screen;
  opacity: .82;
  mask-image: radial-gradient(circle at var(--mx) var(--my), #000 0 255px, transparent 405px);
  -webkit-mask-image: radial-gradient(circle at var(--mx) var(--my), #000 0 255px, transparent 405px);
  transition: opacity var(--t-med) var(--ease);
}

.oavora-led-hero a:focus-visible {
  outline: 3px solid rgba(103,232,249,.5);
  outline-offset: 4px;
}

.led-screw {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 5px, rgba(255,255,255,.28) 5px 8px, transparent 8px),
    radial-gradient(circle at 35% 30%, #4b5568, #050713 66%);
  box-shadow: 0 0 0 1px #000, 0 0 16px rgba(20,125,255,.22);
  opacity: .82;
}
.led-screw-a { top: 18px; left: 18px; }
.led-screw-b { top: 18px; right: 18px; }
.led-screw-c { bottom: 18px; left: 18px; }
.led-screw-d { bottom: 18px; right: 18px; }

.led-hero-shell {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 64px);
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 30px 24px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(3,7,18,.68), rgba(10,13,35,.38));
  background-size: 160px 100%, 100% 92px, 100% 100%;
  border: 1px solid rgba(148,163,184,.18);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.9) inset,
    0 0 48px rgba(37,99,235,.12) inset;
}

.led-hero-shell::before,
.led-hero-shell::after,
.led-ad::before,
.led-dashboard::before,
.led-player-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(255,255,255,.15) 0 1px, transparent 1.7px);
  background-size: 7px 7px;
  opacity: .38;
  mix-blend-mode: screen;
}

.led-hero-shell::after {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.52) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,0,0,.5) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  opacity: .5;
  mix-blend-mode: normal;
}

.led-hero-top,
.led-hero-grid,
.led-player-strip {
  position: relative;
  z-index: 2;
}

.led-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.led-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.led-logo img {
  width: 168px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(37,99,235,.35));
}

.led-wall-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(226,232,240,.68);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.led-wall-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34,197,94,.8);
}

.led-hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: 44px;
  align-items: center;
}

.led-copy {
  max-width: 660px;
}

.led-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(103,232,249,.24);
  color: #c4b5fd;
  background: rgba(15,23,42,.52);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 0 22px rgba(59,130,246,.12) inset;
}

.led-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 14px #38bdf8;
}

.led-copy h1 {
  margin: 24px 0 20px;
  color: #fff;
  font-size: 4.2rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(37,99,235,.22);
}

.led-copy h1 span {
  background: linear-gradient(100deg, #c084fc 0%, #8b5cf6 38%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.led-copy p {
  max-width: 600px;
  color: rgba(226,232,240,.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.led-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 28px;
}

.led-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.16);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.led-btn-primary {
  gap: 9px;
  color: #fff;
  background: linear-gradient(135deg, #a735ff, #255bff 58%, #14b8ff);
  box-shadow: 0 0 28px rgba(80,84,255,.32), 0 0 18px rgba(255,255,255,.1) inset;
}

.led-btn-secondary {
  color: #e0f2fe;
  background: rgba(5,8,22,.58);
  box-shadow: 0 0 18px rgba(14,165,233,.12) inset;
}

.led-btn:hover {
  border-color: rgba(125,211,252,.55);
  box-shadow: 0 0 30px rgba(37,99,235,.28), 0 0 18px rgba(255,255,255,.08) inset;
}

.led-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  border: 1px solid rgba(103,232,249,.18);
  background: rgba(96,165,250,.14);
  box-shadow: 0 0 26px rgba(37,99,235,.1) inset;
}

.led-metrics div {
  min-width: 0;
  padding: 17px 16px;
  background: rgba(2,6,23,.54);
}

.led-metrics strong {
  display: block;
  color: #fff;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
}

.led-metrics span {
  display: block;
  margin-top: 5px;
  color: rgba(226,232,240,.62);
  font-size: .78rem;
}

.led-ad {
  position: relative;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(96,165,250,.24);
  background:
    linear-gradient(90deg, rgba(0,0,0,.32) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,0,0,.32) 1px, transparent 1px),
    radial-gradient(70% 90% at 80% 15%, rgba(167,53,255,.18), transparent 62%),
    rgba(3,7,18,.34);
  background-size: 112px 100%, 100% 86px, 100% 100%, 100% 100%;
  box-shadow: 0 0 42px rgba(37,99,235,.14) inset;
}

.led-ad > * {
  position: relative;
  z-index: 1;
}

.led-ad-copy span,
.dash-head span,
.activity-list strong {
  display: block;
  color: #67e8f9;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.led-ad-copy h2 {
  margin: 10px 0 10px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.led-ad-copy p {
  max-width: 540px;
  color: rgba(226,232,240,.7);
  font-size: .98rem;
  line-height: 1.65;
}

.led-dashboard {
  position: relative;
  margin-top: 22px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.18);
  background:
    linear-gradient(135deg, rgba(15,23,42,.64), rgba(6,11,31,.5)),
    radial-gradient(65% 80% at 30% 20%, rgba(37,99,235,.18), transparent 70%);
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.dash-head strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1rem;
}

.dash-head em {
  padding: 5px 10px;
  color: #bbf7d0;
  font-style: normal;
  font-weight: 800;
  font-size: .72rem;
  border: 1px solid rgba(34,197,94,.28);
  background: rgba(22,163,74,.12);
  border-radius: var(--r-pill);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(96,165,250,.16);
  background: rgba(96,165,250,.16);
}

.dash-stats div {
  min-width: 0;
  padding: 13px 12px;
  background: rgba(2,6,23,.48);
}

.dash-stats span,
.activity-list span,
.health-ring small {
  display: block;
  color: rgba(226,232,240,.62);
  font-size: .72rem;
}

.dash-stats strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.1;
}

.dash-lower {
  display: grid;
  grid-template-columns: 128px minmax(160px, 1fr) minmax(150px, .82fr);
  gap: 14px;
  margin-top: 14px;
  align-items: stretch;
}

.health-ring {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 128px;
  border: 1px solid rgba(148,163,184,.16);
  background:
    radial-gradient(circle at center, #071125 0 45%, transparent 46%),
    conic-gradient(from 210deg, #22d3ee 0 98%, rgba(30,41,59,.88) 98% 100%);
}

.health-ring span {
  color: #fff;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.health-ring small {
  margin-top: 7px;
  text-align: center;
}

.network-map {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.16);
  background:
    radial-gradient(42px 22px at 24% 45%, rgba(37,99,235,.26), transparent 72%),
    radial-gradient(56px 26px at 56% 38%, rgba(139,92,246,.24), transparent 74%),
    radial-gradient(48px 24px at 72% 63%, rgba(6,182,212,.2), transparent 76%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    rgba(2,6,23,.38);
  background-size: 100% 100%, 100% 100%, 100% 100%, 36px 36px, 36px 36px, 100% 100%;
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 18px #22d3ee;
}
.dot-a { left: 18%; top: 42%; }
.dot-b { left: 34%; top: 58%; }
.dot-c { left: 48%; top: 33%; }
.dot-d { left: 62%; top: 49%; }
.dot-e { left: 76%; top: 66%; }
.dot-f { left: 83%; top: 34%; }

.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,232,249,.6), transparent);
  transform-origin: left center;
}
.map-line-a { left: 20%; top: 48%; width: 58%; transform: rotate(-9deg); }
.map-line-b { left: 36%; top: 62%; width: 48%; transform: rotate(14deg); }

.activity-list {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 13px;
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(2,6,23,.38);
}

.activity-list span {
  position: relative;
  padding-left: 14px;
  line-height: 1.35;
}

.activity-list span::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 12px #8b5cf6;
}

.led-feature-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  border: 1px solid rgba(96,165,250,.16);
  background: rgba(96,165,250,.16);
}

.led-feature-row div {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 14px 8px;
  text-align: center;
  color: rgba(226,232,240,.76);
  background: rgba(2,6,23,.48);
  font-size: .73rem;
  font-weight: 700;
  line-height: 1.25;
}

.feature-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(103,232,249,.35);
  box-shadow: 0 0 14px rgba(103,232,249,.18) inset, 0 0 12px rgba(139,92,246,.16);
}
.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  background: #67e8f9;
}
.icon-content::before { inset: 6px 5px auto; height: 2px; box-shadow: 0 5px 0 #67e8f9, 0 10px 0 #67e8f9; }
.icon-calendar::before { inset: 7px 4px auto; height: 2px; }
.icon-calendar::after { width: 3px; height: 3px; left: 7px; top: 13px; box-shadow: 6px 0 0 #67e8f9, 12px 0 0 #67e8f9; }
.icon-pulse::before { left: 4px; right: 4px; top: 11px; height: 2px; }
.icon-pulse::after { width: 8px; height: 8px; left: 8px; top: 8px; border-radius: 50%; background: transparent; border: 2px solid #67e8f9; }
.icon-scale::before { left: 5px; top: 5px; width: 5px; height: 5px; box-shadow: 9px 0 0 #67e8f9, 9px 9px 0 #67e8f9, 0 9px 0 #67e8f9; }
.icon-shield::before { left: 7px; top: 4px; width: 10px; height: 14px; clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%); }

.led-player-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(103,232,249,.28);
  background:
    linear-gradient(90deg, rgba(37,99,235,.28), rgba(139,92,246,.28)),
    rgba(2,6,23,.58);
  box-shadow: 0 0 30px rgba(37,99,235,.12) inset;
}

.player-module {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 18px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    rgba(2,6,23,.68);
  background-size: 100% 34px, 44px 100%, 100% 100%;
}

.player-module + .player-module {
  border-left: 1px solid rgba(103,232,249,.24);
}

.player-module img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(96,165,250,.38));
}

.player-module strong,
.player-module span {
  display: block;
}

.player-module strong {
  color: #fff;
  font-size: .98rem;
  line-height: 1.2;
}

.player-module span {
  margin-top: 3px;
  color: rgba(226,232,240,.58);
  font-size: .78rem;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .led-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .led-copy {
    max-width: 820px;
  }

  .led-copy h1 {
    font-size: 3.45rem;
  }
}

@media (max-width: 820px) {
  .oavora-led-hero {
    padding: 14px;
    border-width: 7px;
  }

  .led-hero-shell {
    min-height: calc(100svh - 42px);
    padding: 22px 18px 18px;
    gap: 24px;
  }

  .led-hero-top,
  .dash-head {
    align-items: flex-start;
  }

  .led-logo img {
    width: 142px;
  }

  .led-wall-status {
    display: none;
  }

  .led-copy h1 {
    font-size: 2.65rem;
  }

  .led-copy p {
    font-size: 1rem;
  }

  .led-metrics,
  .dash-stats,
  .dash-lower,
  .led-feature-row,
  .led-player-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .led-ad {
    padding: 20px;
  }

  .led-ad-copy h2 {
    font-size: 1.55rem;
  }

  .player-module:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(103,232,249,.24);
  }

  .player-module:nth-child(4) {
    border-top: 1px solid rgba(103,232,249,.24);
  }
}

@media (max-width: 560px) {
  .oavora-led-hero {
    padding: 10px;
  }

  .led-hero-shell {
    padding: 18px 14px 14px;
  }

  .led-copy h1 {
    font-size: 2.18rem;
  }

  .led-actions,
  .led-btn {
    width: 100%;
  }

  .led-metrics,
  .dash-stats,
  .dash-lower,
  .led-feature-row {
    grid-template-columns: 1fr;
  }

  .led-player-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .player-module {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
}

/* ---------- Logo strip ------------------------------------------- */
.logo-strip {
  background: var(--bg-cloud);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip-title {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--s-6);
}
.logo-strip-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s-9); align-items: center;
  opacity: .85;
}
.logo-strip-row span {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ---------- Feature lists ---------------------------------------- */
.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.feat-list li {
  display: flex; gap: var(--s-3); align-items: flex-start;
  color: var(--text-muted);
}
.feat-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    var(--oavora-gradient-primary)
    no-repeat center / 10px 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6.5l2.5 2.5L10 3.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"), var(--oavora-gradient-primary);
}
.section-dark .feat-list li { color: var(--text-on-dark-muted); }

/* ---------- Two-col split ---------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: var(--s-7); }
  .split.reverse > :first-child { order: 0; }
}

/* ---------- Screen-content illustrations ------------------------ */
/* Stylized depictions of what plays ON signage screens — never an admin UI. */

.screen-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: var(--s-7) var(--s-5);
}
.screen-stage::before {
  content: "";
  position: absolute;
  inset: 8% -8% 12% -8%;
  background: radial-gradient(60% 55% at 50% 50%, rgba(167,53,255,.3), transparent 70%);
  filter: blur(2px);
  z-index: 0;
}

/* The TV/display frame */
.tv {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(160deg, #1A1F3F 0%, #0E1230 100%);
  box-shadow:
    0 30px 80px -20px rgba(15, 21, 48, .55),
    0 0 0 1px rgba(255,255,255,.05) inset;
}
.tv::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -22px;
  transform: translateX(-50%);
  width: 28%; height: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  border-radius: 0 0 14px 14px;
  filter: blur(.4px);
}
.tv-screen {
  width: 100%; height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #0B1024;
}

/* "Live" indicator badge that floats on a tv */
.live-pill {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.18);
  z-index: 3;
}
.live-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.6);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* Sample content "scenes" inside a TV screen.
   These represent end-customer signage layouts. */

/* Scene 1 — café/menu board */
.scene-menu {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1B0F35 0%, #0B0E2C 100%);
  color: #fff;
  padding: 20px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.scene-menu .brand-tag {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: #C7B7FF;
}
.scene-menu .menu-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff 0%, #C7B7FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.scene-menu ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.scene-menu li {
  display: flex; justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  border-bottom: 1px dashed rgba(255,255,255,.12);
  padding-bottom: 6px;
}
.scene-menu li b { color: #fff; font-weight: 600; }
.scene-menu li span { color: #B49BFF; font-weight: 700; }
.scene-menu .footer-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.55);
}

/* Scene 2 — retail promo */
.scene-promo {
  position: absolute; inset: 0;
  background: var(--oavora-gradient-screen);
  color: #fff;
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.scene-promo::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.35), transparent 70%);
  pointer-events: none;
}
.scene-promo .promo-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.scene-promo .promo-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1; letter-spacing: -.02em;
}
.scene-promo .promo-cta {
  display: inline-flex; align-self: flex-start;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  font-size: .8rem; font-weight: 600;
  backdrop-filter: blur(6px);
}

/* Scene 3 — corporate / lobby welcome */
.scene-lobby {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0E1230 0%, #1A1F3F 100%);
  color: #fff;
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}
.scene-lobby .lobby-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .06em;
}
.scene-lobby .welcome {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.05;
  letter-spacing: -.02em;
}
.scene-lobby .welcome .accent { color: #C7B7FF; }
.scene-lobby .meeting-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 12px; align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .82rem;
}
.scene-lobby .meeting-row .tm {
  font-family: 'Manrope', 'Inter', sans-serif; font-weight: 700; color: #C7B7FF;
}
.scene-lobby .meeting-row .nm { color: #fff; }
.scene-lobby .meeting-row .rm {
  font-size: .72rem; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  padding: 3px 9px;
}

/* Floating side cards near a TV (small marketing widgets, NOT an admin panel) */
.float-card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  font-size: .82rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,.4);
  animation: floaty 6.5s ease-in-out infinite;
}
.float-card .b {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  line-height: 1;
}
.float-card .l {
  font-size: .68rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.55);
}
.float-card .ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(167,53,255,.4), rgba(20,125,255,.4));
  display: grid; place-items: center;
  color: #fff;
}
.float-card.fc-tl { top: 0;  left: -10px; }
.float-card.fc-tr { top: 30px; right: -22px; animation-delay: -1.5s; }
.float-card.fc-bl { bottom: 6px; left: -10px; animation-delay: -3s; }
.float-card.fc-br { bottom: -10px; right: -10px; animation-delay: -2s; }

@media (max-width: 640px) {
  .float-card.fc-tl, .float-card.fc-bl { left: 4px; }
  .float-card.fc-tr, .float-card.fc-br { right: 4px; }
}

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

/* Mosaic of multiple smaller screens (used in some sections) */
.screen-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.screen-mosaic .tv { max-width: 100%; }
.screen-mosaic .tv:nth-child(1) { transform: rotate(-2deg); }
.screen-mosaic .tv:nth-child(2) { transform: rotate(2deg) translateY(18px); }
.screen-mosaic .tv:nth-child(3) { transform: rotate(1.5deg) translateY(-12px); }
.screen-mosaic .tv:nth-child(4) { transform: rotate(-1.5deg); }

/* ---------- Players grid ---------------------------------------- */
.players-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
}
@media (max-width: 1024px) { .players-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .players-grid { grid-template-columns: repeat(2, 1fr); } }

.player-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  text-align: center;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-fast) var(--ease);
}
.player-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(106,53,255,.35); }
.player-card .ico {
  width: 52px; height: 52px; margin: 0 auto var(--s-4);
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--oavora-gradient-soft);
  color: var(--oavora-violet);
}
.player-card .ico svg { width: 26px; height: 26px; }
.player-card .name { font-weight: 700; color: var(--text); margin-bottom: 2px; }
.player-card .sub  { font-size: .82rem; color: var(--text-soft); }

.section-dark .player-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border-color: rgba(255,255,255,.08);
}
.section-dark .player-card .ico {
  background: linear-gradient(135deg, rgba(167,53,255,.2), rgba(20,125,255,.2));
  color: #C7B7FF;
}
.section-dark .player-card .name { color: #fff; }
.section-dark .player-card .sub { color: var(--text-on-dark-muted); }

/* ---------- Tabs / industries grid ------------------------------ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-6);
}
@media (max-width: 1024px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-weight: 600; font-size: .92rem;
  transition: all var(--t-fast) var(--ease);
}
.industry-pill:hover {
  border-color: rgba(106,53,255,.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.industry-pill .ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--oavora-gradient-soft);
  color: var(--oavora-violet);
  display: grid; place-items: center;
}
.industry-pill .ico svg { width: 16px; height: 16px; }

/* Industry detail cards on solutions page */
.industry-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: stretch;
  padding: var(--s-9) 0;
  border-top: 1px solid var(--border);
}
.industry-detail:first-child { border-top: 0; padding-top: var(--s-6); }
.industry-detail .visual {
  background: linear-gradient(160deg, #0F1530 0%, #181E45 100%);
  border-radius: var(--r-2xl);
  padding: var(--s-7);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.industry-detail .visual::before {
  content: "";
  position: absolute;
  inset: -20% -20% 40% 40%;
  background: radial-gradient(closest-side, rgba(167,53,255,.35), transparent 70%);
}
.industry-detail .visual .ico {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(167,53,255,.25), rgba(20,125,255,.25));
  display: grid; place-items: center;
  color: #C7B7FF; margin-bottom: var(--s-5);
}
.industry-detail .visual h3 { color: #fff; position: relative; }
.industry-detail .visual .sample {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: var(--s-4);
  margin-top: var(--s-5);
}
.industry-detail .visual .sample .lbl {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.5); margin-bottom: 6px;
}
.industry-detail .visual .sample .ex { color: #fff; font-size: .92rem; }

@media (max-width: 960px) {
  .industry-detail { grid-template-columns: 1fr; }
}

/* ---------- Pricing ---------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  align-items: stretch;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--s-7);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan h3 { margin-bottom: var(--s-2); }
.plan .desc { color: var(--text-muted); margin-bottom: var(--s-5); min-height: 44px; }
.plan .price {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800; font-size: 1.7rem;
  color: var(--text);
  margin-bottom: var(--s-6);
  display: flex; align-items: baseline; gap: 6px;
}
.plan .price small { font-size: .9rem; font-weight: 500; color: var(--text-soft); }
.plan ul { list-style: none; padding: 0; margin: 0 0 var(--s-7); display: grid; gap: var(--s-3); }
.plan ul li { display: flex; gap: 10px; font-size: .92rem; color: var(--text); }
.plan ul li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6.5l2.5 2.5L10 3.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"), var(--oavora-gradient-primary);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 9px, cover;
}
.plan .btn { margin-top: auto; }
.plan.featured {
  background: linear-gradient(180deg, #0F1530 0%, #1B1F49 100%);
  color: #fff;
  border: 1px solid rgba(167,53,255,.35);
  box-shadow: 0 30px 80px -20px rgba(106, 53, 255, .35);
}
.plan.featured h3, .plan.featured .price { color: #fff; }
.plan.featured .desc, .plan.featured ul li { color: rgba(255,255,255,.78); }
.plan.featured .price small { color: rgba(255,255,255,.55); }
.plan-tag {
  position: absolute;
  top: -12px; left: 24px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--oavora-gradient-primary);
  color: #fff;
  padding: 5px 11px;
  border-radius: var(--r-pill);
}

/* ---------- Forms ----------------------------------------------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.field label .req { color: #DC2626; margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--text);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--oavora-violet);
  box-shadow: 0 0 0 4px rgba(106, 53, 255, .14);
}
.field .error {
  font-size: .8rem;
  color: #DC2626;
  display: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .12);
}
.field.invalid .error { display: block; }

.form-success {
  display: none;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  color: #047857;
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  font-weight: 600;
}
.form-success.show { display: flex; align-items: center; gap: 10px; }

/* ---------- Two-col form layout (sidebar + form card) ---------- */
.grid-form {
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: var(--s-9);
}
@media (max-width: 1024px) { .grid-form { grid-template-columns: 1fr; gap: var(--s-7); } }

/* ---------- Comparison / value rows ----------------------------- */
.value-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--border);
}
.value-row:last-child { border-bottom: 0; }
.section-dark .value-row { border-bottom-color: rgba(255,255,255,.06); }
.value-row .ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--oavora-gradient-soft);
  color: var(--oavora-violet);
  display: grid; place-items: center;
}
.section-dark .value-row .ico {
  background: linear-gradient(135deg, rgba(167,53,255,.2), rgba(20,125,255,.2));
  color: #C7B7FF;
}
.value-row h4 { margin-bottom: 4px; }
.value-row p { margin: 0; }

/* ---------- CTA banner ----------------------------------------- */
.cta-banner {
  background: var(--oavora-gradient-primary);
  border-radius: var(--r-2xl);
  padding: clamp(36px, 5vw, 72px);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-7);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.15), transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(255,255,255,.1), transparent 50%);
}
.cta-banner h2 { color: #fff; margin: 0 0 8px; }
.cta-banner p  { color: rgba(255,255,255,.85); margin: 0; max-width: 540px; }
.cta-banner .actions { display: flex; gap: var(--s-3); position: relative; }
.cta-banner .btn-primary { background: #fff; color: var(--oavora-violet); }
.cta-banner .btn-primary:hover { background: #F5F0FF; }
.cta-banner .btn-outline-light { border-color: rgba(255,255,255,.45); }

@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* ---------- Steps / numbered lists ------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  counter-reset: step;
}
@media (max-width: 1024px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px; left: 18px;
  background: var(--oavora-gradient-primary);
  color: #fff;
  font-weight: 800; font-size: .8rem;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.section-dark .step {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}

/* ---------- Article cards (resources) -------------------------- */
.article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease);
  display: flex; flex-direction: column;
}
.article:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article .thumb {
  aspect-ratio: 16 / 9;
  background: var(--oavora-gradient-screen);
  position: relative;
  overflow: hidden;
}
.article .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 60%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%);
}
.article .thumb .lbl {
  position: absolute;
  bottom: 14px; left: 14px;
  color: #fff;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700;
  background: rgba(0,0,0,.25);
  padding: 5px 10px; border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  z-index: 1;
}
.article .body { padding: var(--s-6); flex: 1; display: flex; flex-direction: column; gap: var(--s-3); }
.article h3 { font-size: 1.15rem; margin: 0; }
.article p  { margin: 0; font-size: .94rem; flex: 1; }
.article .meta { font-size: .82rem; color: var(--text-soft); display: flex; gap: var(--s-3); }

/* ---------- Support categories --------------------------------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 960px) { .support-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .support-grid { grid-template-columns: 1fr; } }

.search-bar {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.search-bar input {
  flex: 1;
  border: 0;
  font: inherit;
  padding: 12px 16px;
  background: transparent;
  outline: 0;
  color: var(--text);
}
.search-bar button {
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: var(--oavora-gradient-primary);
  color: #fff; font-weight: 600;
}

/* ---------- FAQ / accordion-like blocks ------------------------ */
.faq { display: grid; gap: var(--s-3); max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--oavora-violet);
  transition: transform var(--t-fast) var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: var(--s-4); margin-bottom: 0; }

/* ---------- Map / contact info ------------------------------- */
.contact-info { display: grid; gap: var(--s-5); }
.contact-info .item {
  display: flex; gap: var(--s-4);
  padding: var(--s-5);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-info .item .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--oavora-gradient-soft);
  color: var(--oavora-violet);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info h4 { margin: 0 0 4px; font-size: .98rem; }
.contact-info p { margin: 0; }

.map-placeholder {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
  background:
    linear-gradient(135deg, rgba(167,53,255,.06), rgba(20,125,255,.06)),
    repeating-linear-gradient(0deg, var(--bg-cloud) 0 22px, #ECEFF7 22px 23px),
    repeating-linear-gradient(90deg, var(--bg-cloud) 0 22px, #ECEFF7 22px 23px);
  position: relative;
  display: grid; place-items: center;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--oavora-gradient-primary);
  box-shadow: 0 0 0 6px rgba(106,53,255,.2);
  animation: ping 2s ease-out infinite;
}
.map-placeholder span {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.95);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 60px;
  border: 1px solid var(--border);
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(106,53,255,.4); }
  100% { box-shadow: 0 0 0 24px rgba(106,53,255,0); }
}

/* ---------- Reveal-on-scroll ----------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Page hero (sub-pages) ----------------------------- */
.page-hero {
  --mx: 50%;
  --my: 38%;
  background:
    radial-gradient(70% 90% at 20% 10%, rgba(88,28,135,.28), transparent 58%),
    radial-gradient(64% 80% at 84% 22%, rgba(37,99,235,.24), transparent 62%),
    linear-gradient(145deg, #050816 0%, #081026 48%, #040611 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 118px) 0 clamp(58px, 7vw, 98px);
  border-top: 1px solid rgba(148,163,184,.16);
  border-bottom: 1px solid rgba(3,7,18,.92);
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 -34px 90px rgba(0,0,0,.42) inset,
    0 0 60px rgba(37,99,235,.09) inset;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at center, rgba(255,255,255,.16) 0 1px, transparent 1.7px),
    linear-gradient(rgba(255,255,255,.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.046) 1px, transparent 1px),
    repeating-linear-gradient(90deg, transparent 0 24.85%, rgba(0,0,0,.46) 24.85% 25%, transparent 25% 49.85%),
    repeating-linear-gradient(0deg, transparent 0 24.75%, rgba(0,0,0,.45) 24.75% 25%, transparent 25% 49.75%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 12.5% 25%, rgba(148,163,184,.18) 0 2px, transparent 2.8px),
    radial-gradient(circle at 87.5% 75%, rgba(148,163,184,.14) 0 2px, transparent 2.8px);
  background-size:
    7px 7px,
    100% 96px,
    168px 100%,
    100% 100%,
    100% 100%,
    100% 5px,
    25% 50%,
    25% 50%;
  opacity: .98;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at var(--mx) var(--my), rgba(139,92,246,.45), rgba(37,99,235,.28) 42%, rgba(6,182,212,.16) 60%, transparent 78%),
    radial-gradient(circle at center, rgba(103,232,249,.7) 0 1.05px, rgba(139,92,246,.44) 1.1px 1.65px, transparent 2.2px);
  background-size: 100% 100%, 8px 8px;
  mix-blend-mode: screen;
  opacity: .82;
  mask-image: radial-gradient(circle at var(--mx) var(--my), #000 0 245px, transparent 410px);
  -webkit-mask-image: radial-gradient(circle at var(--mx) var(--my), #000 0 245px, transparent 410px);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .container::before {
  content: "";
  position: absolute;
  inset: -28px var(--s-6);
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(2,6,23,.34), rgba(15,23,42,.16));
  background-size: 100% 72px, 148px 100%, 100% 100%;
  border: 1px solid rgba(96,165,250,.12);
  box-shadow: 0 0 40px rgba(37,99,235,.08) inset;
  pointer-events: none;
}

.page-hero h1 {
  color: #fff;
  max-width: 860px;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(37,99,235,.26);
}

.page-hero p {
  color: rgba(226,232,240,.8);
  font-size: 1.1rem;
  max-width: 740px;
}

.page-hero .hero-ctas,
.page-hero .search-bar {
  position: relative;
  z-index: 2;
}

.page-hero .btn-primary {
  box-shadow: 0 0 28px rgba(80,84,255,.28), 0 0 18px rgba(255,255,255,.1) inset;
}

.page-hero .btn-outline-light {
  background: rgba(5,8,22,.42);
  border-color: rgba(103,232,249,.24);
  box-shadow: 0 0 22px rgba(14,165,233,.1) inset;
}

.page-hero .search-bar,
.page-hero :is(.card, .form-card, .contact-info, .screen-stage, .tv, .plan, .article, .arch-block) {
  border: 1px solid rgba(96,165,250,.22);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.12) 0 1px, transparent 1.7px),
    linear-gradient(135deg, rgba(15,23,42,.62), rgba(2,6,23,.48));
  background-size: 7px 7px, 100% 100%;
  box-shadow:
    0 0 32px rgba(37,99,235,.12) inset,
    0 18px 50px rgba(0,0,0,.18);
}

.breadcrumb {
  font-size: .85rem;
  color: rgba(226,232,240,.58);
  margin-bottom: var(--s-4);
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: rgba(191,219,254,.86); }
.breadcrumb a:hover { color: #fff; }

@media (max-width: 760px) {
  .page-hero {
    padding: clamp(58px, 16vw, 82px) 0 clamp(48px, 12vw, 70px);
  }

  .page-hero .container::before {
    inset: -20px var(--s-4);
  }
}

/* ---------- Legal / long-form prose ---------------------------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  margin-top: var(--s-9);
  margin-bottom: var(--s-4);
  font-size: 1.5rem;
}
.prose h3 {
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  font-size: 1.15rem;
}
.prose p, .prose ul {
  color: var(--text-muted);
  margin-bottom: var(--s-4);
  line-height: 1.7;
}
.prose ul { padding-left: 22px; }
.prose ul li { margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose .updated {
  display: inline-block;
  font-size: .85rem;
  color: var(--text-soft);
  background: var(--bg-cloud);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  margin-bottom: var(--s-7);
}

/* ---------- Misc utilities ------------------------------------- */
.center { text-align: center; }
.muted { color: var(--text-muted); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mt-8 { margin-top: var(--s-8); }
.mb-6 { margin-bottom: var(--s-6); }
.mb-8 { margin-bottom: var(--s-8); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.justify-center { justify-content: center; }
.align-center { align-items: center; }

/* Skip to content (a11y) */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--oavora-ink);
  padding: 10px 14px;
  border-radius: 0 0 var(--r-md) 0;
  z-index: 200;
}
.skip:focus { left: 0; }
