/* ============================================================
   SilverioTech — Ethereal Glass / Asymmetrical Bento
   ============================================================ */

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

:root {
  --bg: #111319;
  --bg-soft: #171a22;
  --surface: rgba(255,255,255,0.055);
  --surface-2: rgba(255,255,255,0.09);
  --line: rgba(255,255,255,0.11);
  --line-2: rgba(255,255,255,0.18);
  --text: #f8f8fa;
  --text-2: #b9bac4;
  --text-3: #83848f;
  --violet: #7c5cff;
  --violet-soft: #a78bfa;
  --emerald: #34d8a8;
  --amber: #ffb454;
  --red: #ff5c72;
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
  --radius-sm: 0.65rem;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Space Grotesk', 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --nav-bg: rgba(26,29,38,0.72);
  --overlay-bg: rgba(17,19,25,0.94);
}

/* ===== WCAG 2.1 AA — Light theme ===== */
:root[data-theme="light"] {
  --bg: #f7f7f9;
  --bg-soft: #ffffff;
  --surface: rgba(17,19,25,0.045);
  --surface-2: rgba(17,19,25,0.08);
  --line: rgba(17,19,25,0.1);
  --line-2: rgba(17,19,25,0.16);
  --text: #14151a;
  --text-2: #45464f;
  --text-3: #6b6c76;
  --violet: #6d3fff;
  --violet-soft: #6633e6;
  --emerald: #0f9a76;
  --amber: #b8650a;
  --red: #d13a52;
  --nav-bg: rgba(255,255,255,0.78);
  --overlay-bg: rgba(255,255,255,0.96);
}

/* Dashboard mockup + floating chips always render as a dark device screen,
   regardless of site theme — mirrors a real terminal/monitor look. */
.hero-visual {
  --bg: #14171f;
  --bg-soft: #1c202b;
  --text: #f8f8fa;
  --text-2: #b9bac4;
  --text-3: #83848f;
  --line: rgba(255,255,255,0.11);
  --line-2: rgba(255,255,255,0.18);
  --surface: rgba(255,255,255,0.05);
  --surface-2: rgba(255,255,255,0.09);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 140px 0; position: relative; }

/* ===== Accessibility base ===== */
.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 999;
  background: var(--text);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--violet-soft);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { outline-offset: 2px; }

/* ===== Fixed atmosphere layers ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(124,92,255,0.10) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .4s ease;
  will-change: transform;
}

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 8px var(--violet-soft);
  flex-shrink: 0;
}

.text-gradient {
  background: linear-gradient(120deg, var(--violet-soft) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(6px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft), filter 1s var(--ease-soft);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== NAV — Fluid Island ===== */
.nav-island {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 8px 20px;
  border-radius: 99px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: top .5s var(--ease), padding .4s var(--ease), background .4s var(--ease);
  max-width: calc(100% - 32px);
}
.nav-island.scrolled { top: 14px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-mark {
  width: 24px; height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }

.nav-cta {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 99px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 8px;
  white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(124,92,255,0.25); }

/* ===== Floating corner tools: theme slider + language ===== */
.corner-tools {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-slider {
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-2);
  border-radius: 99px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.3);
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.theme-slider-track {
  display: flex;
  align-items: center;
  width: 68px; height: 36px;
  border-radius: 99px;
  background: var(--surface-2);
  padding: 4px;
  transition: background .4s var(--ease);
}
.theme-slider-thumb {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform .45s var(--ease);
}
:root[data-theme="light"] .theme-slider-thumb { transform: translateX(32px); }

.theme-icon {
  position: absolute;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--bg);
  transition: opacity .3s var(--ease);
}
.icon-sun { opacity: 1; }
.icon-moon { opacity: 0; }
:root[data-theme="light"] .icon-sun { opacity: 0; }
:root[data-theme="light"] .icon-moon { opacity: 1; }

/* ===== Floating language switcher ===== */
.lang-float { position: relative; }
.lang-float-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-2);
  box-shadow: 0 8px 26px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.lang-float-btn:hover { transform: scale(1.08); border-color: var(--line-2); }

.lang-float-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 170px;
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.lang-float-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-float-menu li { border-radius: 8px; overflow: hidden; }
.lang-float-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.lang-float-menu button span { font-size: 1.1rem; }
.lang-float-menu button:hover { background: var(--surface-2); color: var(--text); }
.lang-float-menu li.active button { color: var(--violet-soft); font-weight: 600; }

.mobile-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.mobile-langs { display: flex; gap: 8px; }
.mobile-langs button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 99px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.mobile-langs button.active { background: var(--violet); color: #fff; border-color: var(--violet); }
.mobile-tools .theme-slider-track { background: var(--surface); }

.burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.burger-line {
  position: absolute;
  left: 11px;
  width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.burger-line.l1 { top: 16px; }
.burger-line.l2 { top: 22px; }
.burger.open .l1 { top: 19px; transform: rotate(45deg); }
.burger.open .l2 { top: 19px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--overlay-bg);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-links { text-align: center; }
.mobile-links li {
  overflow: hidden;
  margin-bottom: 6px;
}
.mob-link {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  padding: 10px 0;
  color: var(--text-2);
  transform: translateY(60px);
  opacity: 0;
  transition: transform .7s var(--ease) var(--stagger, 0s), opacity .7s var(--ease) var(--stagger, 0s), color .3s;
}
.mob-link:hover { color: var(--text); }
.mobile-overlay.open .mob-link { transform: translateY(0); opacity: 1; }
.mobile-links li:nth-child(1) .mob-link { transition-delay: .05s; }
.mobile-links li:nth-child(2) .mob-link { transition-delay: .1s; }
.mobile-links li:nth-child(3) .mob-link { transition-delay: .15s; }
.mobile-links li:nth-child(4) .mob-link { transition-delay: .2s; }
.mobile-links li:nth-child(5) .mob-link { transition-delay: .25s; }

/* ===== HERO ===== */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 160px 28px 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg);
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.orb-1 { width: 560px; height: 560px; background: radial-gradient(circle, #5b3bf0, transparent 70%); top: -160px; right: -80px; animation: drift1 22s ease-in-out infinite; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, #1fae86, transparent 70%); bottom: -140px; left: -100px; opacity: 0.35; animation: drift2 26s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #7c5cff, transparent 70%); top: 40%; left: 55%; opacity: 0.25; animation: drift3 18s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 30px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -40px); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px, 20px) scale(1.15); } }

.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.6vw, 4.3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

/* Magnetic buttons */
.btn-magnetic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 26px;
  border-radius: 99px;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.btn-magnetic:active { transform: scale(0.97); }

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { box-shadow: 0 10px 34px rgba(124,92,255,0.25); }
.btn-icon-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform .5s var(--ease);
}
.btn-primary:hover .btn-icon-circle { transform: translate(2px,-2px) scale(1.06); }

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 14px 26px;
}
.btn-ghost:hover { background: var(--surface-2); }

.btn-submit { width: 100%; justify-content: center; padding: 15px 26px; margin-top: 6px; }

/* Hero stats */
.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num, .hero-stat-suffix {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  display: inline;
}
.hero-stat-label { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }
.hero-stat-sep { width: 1px; height: 34px; background: var(--line); }

/* ===== Double-bezel dashboard card ===== */
.hero-visual { display: flex; justify-content: center; }
.shell-outer {
  position: relative;
  padding: 6px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--text);
  width: 100%;
  max-width: 440px;
}

.dash-card {
  border-radius: calc(var(--radius-xl) - 6px);
  background: linear-gradient(160deg, #1c202b 0%, #14171f 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06), 0 30px 70px rgba(0,0,0,0.5);
  overflow: hidden;
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.dash-title { font-size: 0.72rem; color: var(--text-3); font-family: monospace; margin-right: auto; }
.dash-live { display: flex; align-items: center; gap: 6px; font-size: 0.68rem; color: var(--emerald); font-weight: 600; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,216,168,0.5); } 50% { opacity: .6; box-shadow: 0 0 0 5px rgba(52,216,168,0); } }

.dash-body { padding: 20px; }
.dash-row { display: flex; gap: 14px; margin-bottom: 18px; }
.dash-metric { flex: 1; }
.dash-metric-label { display: block; font-size: 0.68rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.dash-metric-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--text); }
.dash-bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,0.06); margin-top: 8px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 4px; transition: width 1.2s var(--ease-soft); }
.dash-bar-fill.cpu { background: linear-gradient(90deg, var(--violet), var(--violet-soft)); width: 32%; }
.dash-bar-fill.ram { background: linear-gradient(90deg, var(--emerald), #6ee7c4); width: 58%; }

.dash-chart-wrap { margin-bottom: 18px; }
.dash-chart { width: 100%; height: 90px; }
.chart-line { stroke: var(--violet-soft); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: points 1s var(--ease-soft); }

.dash-servers { display: flex; flex-direction: column; gap: 10px; }
.dash-server {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--text-2);
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}
.dash-server .srv-ping { margin-left: auto; font-size: 0.7rem; color: var(--text-3); font-family: monospace; }
.srv-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.srv-dot.ok { background: var(--emerald); box-shadow: 0 0 6px var(--emerald); }
.srv-dot.warn { background: var(--amber); box-shadow: 0 0 6px var(--amber); }

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: 16px;
  background: rgba(28,32,42,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); }
.float-chip span { display: block; font-size: 0.68rem; color: var(--text-3); }
.chip-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.chip-alert { top: -18px; right: -24px; animation-delay: 0s; }
.chip-alert .chip-icon { background: rgba(255,180,84,0.15); color: var(--amber); }
.chip-check { bottom: 30px; left: -30px; animation-delay: 1.5s; }
.chip-check .chip-icon { background: rgba(52,216,168,0.15); color: var(--emerald); }

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

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(var(--violet-soft), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ===== Trust strip ===== */
.trust-strip { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-label { font-size: 0.72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.14em; white-space: nowrap; }
.trust-items { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { font-family: var(--font-display); font-size: 0.98rem; color: var(--text-2); font-weight: 500; }

/* ===== Section head ===== */
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub { font-size: 1.02rem; color: var(--text-2); margin-top: 20px; max-width: 560px; line-height: 1.75; }

/* ===== BENTO GRID (SMonitor) ===== */
.smonitor-section { background: linear-gradient(180deg, transparent, rgba(124,92,255,0.03), transparent); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.bento-xl { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 4; }

.bento-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 5px;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.bento-card:hover { border-color: var(--line-2); transform: translateY(-4px); }

.bento-inner {
  height: 100%;
  padding: 30px;
  border-radius: calc(var(--radius-lg) - 5px);
  background: rgba(255,255,255,0.015);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
}
.bento-inner-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.bento-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,92,255,0.18), rgba(124,92,255,0.04));
  border: 1px solid rgba(124,92,255,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.bento-icon { font-size: 1.2rem; color: var(--violet-soft); }

.bento-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.bento-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }
.bento-xl p { max-width: 340px; }

.mini-chart { margin-top: auto; padding-top: 24px; }
.mini-chart svg { width: 100%; height: 70px; }
.mini-chart-line { stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.line-a { stroke: var(--violet-soft); }
.line-b { stroke: var(--emerald); opacity: 0.6; }

.alert-demo { margin-top: auto; padding-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.alert-demo-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-2);
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
}
.alert-tag { margin-left: auto; font-size: 0.66rem; padding: 2px 8px; border-radius: 99px; background: rgba(255,180,84,0.15); color: var(--amber); font-weight: 600; }
.alert-tag.ok { background: rgba(52,216,168,0.15); color: var(--emerald); }

.os-pills { display: flex; gap: 8px; flex-shrink: 0; }
.os-pill { padding: 8px 16px; border-radius: 99px; background: rgba(255,255,255,0.04); border: 1px solid var(--line-2); font-size: 0.8rem; font-weight: 600; color: var(--text-2); }

.smonitor-cta { margin-top: 48px; display: flex; justify-content: center; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }

.service-glyph {
  width: 40px; height: 40px;
  border-radius: 11px;
  margin-bottom: 22px;
  position: relative;
}
.android-glyph { background: linear-gradient(135deg, rgba(61,220,132,0.22), rgba(61,220,132,0.05)); border: 1px solid rgba(61,220,132,0.3); }
.windows-glyph { background: linear-gradient(135deg, rgba(79,142,247,0.22), rgba(79,142,247,0.05)); border: 1px solid rgba(79,142,247,0.3); }
.linux-glyph   { background: linear-gradient(135deg, rgba(255,180,84,0.22), rgba(255,180,84,0.05)); border: 1px solid rgba(255,180,84,0.3); }
.web-glyph     { background: linear-gradient(135deg, rgba(124,92,255,0.22), rgba(124,92,255,0.05)); border: 1px solid rgba(124,92,255,0.3); }
.qa-glyph      { background: linear-gradient(135deg, rgba(167,139,250,0.22), rgba(167,139,250,0.05)); border: 1px solid rgba(167,139,250,0.3); }
.support-glyph { background: linear-gradient(135deg, rgba(255,92,114,0.22), rgba(255,92,114,0.05)); border: 1px solid rgba(255,92,114,0.3); }

.service-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* ===== ACCESSIBILITY / WCAG ===== */
.a11y-section { padding: 0 0 60px; }
.a11y-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(52,216,168,0.07), rgba(124,92,255,0.05));
  border: 1px solid var(--line);
}
.a11y-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(52,216,168,0.14);
  border: 1px solid rgba(52,216,168,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.a11y-text h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin: 6px 0 10px; letter-spacing: -0.01em; }
.a11y-text p { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; max-width: 620px; }
.a11y-badges { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.a11y-badge {
  padding: 7px 16px;
  border-radius: 99px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-2);
  white-space: nowrap;
  text-align: center;
}

.footer-a11y-note {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--emerald);
  font-weight: 600;
}

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; }
.product-card {
  padding: 6px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
}
.product-card-featured { background: linear-gradient(160deg, rgba(124,92,255,0.08), rgba(52,216,168,0.03)); border-color: rgba(124,92,255,0.25); }

.product-card > * { padding-left: 28px; padding-right: 28px; }
.product-card-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; margin-bottom: 24px;
}
.product-badge-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--violet-soft);
}
.badge-row { display: flex; gap: 6px; }
.badge-pill {
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-2);
  color: var(--text-2);
}

.product-card h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin-bottom: 4px; }
.product-tagline { display: block; font-size: 0.8rem; color: var(--violet-soft); font-weight: 600; margin-bottom: 16px; }
.product-card > p { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }

.product-list { display: flex; flex-direction: column; gap: 10px; padding-bottom: 28px; }
.product-list li {
  font-size: 0.86rem;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
}
.product-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 1.5px;
  background: var(--emerald);
}

.product-link {
  display: inline-block;
  padding-bottom: 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--violet-soft);
  transition: gap .3s;
}
.product-link:hover { text-decoration: underline; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { padding: 8px 8px 0 0; border-top: 1px solid var(--line); padding-top: 24px; }
.process-num { font-family: var(--font-display); font-size: 0.85rem; color: var(--text-3); display: block; margin-bottom: 16px; }
.process-step h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; color: var(--text-2); line-height: 1.6; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.team-card-v2 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 28px 30px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.team-card-v2:hover { transform: translateY(-4px); border-color: var(--line-2); }

.team-avatar-wrap { position: relative; margin-bottom: 6px; }
.team-photo-placeholder {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--text-3);
  cursor: pointer;
  transition: border-color .3s;
}
.team-photo-placeholder:hover { border-color: var(--violet-soft); color: var(--violet-soft); }

.team-badge-icon {
  position: absolute; bottom: 0; right: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.56rem; font-weight: 800;
  border: 2px solid var(--bg);
}
.team-badge-icon.dev    { background: var(--violet); color: #fff; }
.team-badge-icon.dev-qa { background: var(--violet-soft); color: #0a0a0a; }
.team-badge-icon.qa     { background: var(--emerald); color: #0a0a0a; }

.team-card-v2 h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.team-role { font-size: 0.78rem; color: var(--violet-soft); font-weight: 600; }
.team-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.team-tags span { padding: 3px 10px; border-radius: 99px; font-size: 0.68rem; font-weight: 600; background: rgba(255,255,255,0.04); color: var(--text-2); border: 1px solid var(--line); }

/* ===== CONTACT ===== */
.contact-section { padding-bottom: 100px; }
.contact-shell {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 6px;
}
.contact-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,92,255,0.16), transparent 70%);
  top: -200px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  padding: 56px;
  border-radius: calc(var(--radius-xl) - 6px);
  background: rgba(255,255,255,0.015);
}
.contact-info h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 600; line-height: 1.14; letter-spacing: -0.02em; margin: 8px 0 18px; }
.contact-info > p { color: var(--text-2); font-size: 0.98rem; margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; flex-direction: column; gap: 3px; }
.contact-item-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); }
.contact-item-val { font-size: 0.98rem; color: var(--text); font-weight: 500; }
a.contact-item:hover .contact-item-val { color: var(--violet-soft); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-2); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .3s, background .3s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2363636e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-soft);
  color: var(--text);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--violet-soft); background: rgba(124,92,255,0.05); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer { padding: 70px 0 32px; border-top: 1px solid var(--line); }
.footer-top { margin-bottom: 48px; }
.footer-logo { display: inline-flex; margin-bottom: 10px; }
.footer-top p { font-size: 0.88rem; color: var(--text-3); }
.footer-mid { display: grid; grid-template-columns: repeat(4, auto); gap: 40px; margin-bottom: 44px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: var(--text-3); transition: color .3s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-3); }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  background: var(--overlay-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 20px;
  max-width: 720px; width: calc(100% - 48px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: opacity .4s, transform .4s;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(16px); }
.cookie-text p { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; }
.cookie-text a { color: var(--violet-soft); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-reject, .cookie-btn-accept {
  padding: 9px 16px; border-radius: 99px; font-size: 0.8rem; font-weight: 600; cursor: pointer; font-family: inherit; border: none;
}
.cookie-btn-reject { background: transparent; border: 1px solid var(--line-2); color: var(--text-2); }
.cookie-btn-accept { background: var(--text); color: var(--bg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .a11y-shell { grid-template-columns: 1fr; text-align: center; }
  .a11y-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .a11y-text p { max-width: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-xl, .bento-tall { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-mid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .corner-tools { display: none; }
  .burger { display: block; }
  .nav-island { padding: 8px; left: 16px; right: 16px; transform: none; width: auto; justify-content: space-between; }
  .section { padding: 90px 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-xl, .bento-tall, .bento-wide { grid-column: span 1; grid-row: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-mid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cookie-banner { flex-direction: column; bottom: 16px; }
  .cursor-glow { display: none; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
