/* ============================================
   WayStar IT Solutions — Global Styles
   Dark-tech theme · navy #0D1A35 · electric cyan
   ============================================ */

:root {
  color-scheme: dark;

  /* Base layers */
  --bg: #0B1428;
  --bg-alt: rgba(163, 181, 209, 0.06);
  --navy: #0D1A35;

  /* Surfaces */
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --surface-header: rgba(11, 20, 40, 0.72);
  --surface-solid: #0A1226;

  /* Text */
  --text: #E8EEF9;
  --text-bright: #FFFFFF;
  --muted: #B0BDD2;
  --faint: #8493AD;

  /* Lines */
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.28);
  --line-accent: rgba(34, 211, 238, 0.35);

  /* Accents */
  --accent1: #22D3EE;
  --accent2: #38BDF8;
  --accent-bright: #67E8F9;
  --accent-ink: #06101F;

  /* Effects */
  --glow: rgba(34, 211, 238, 0.25);
  --glow-soft: rgba(34, 211, 238, 0.12);
  --shadow: rgba(2, 6, 17, 0.5);
  --ring: rgba(34, 211, 238, 0.18);

  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  color: var(--text);
  font: 16px/1.7 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica, Arial, sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

a { color: var(--accent1); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-bright); }
img { max-width: 100%; height: auto; }

::selection { background: var(--accent1); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent1); outline-offset: 2px; }

h1, h2, h3 { font-family: 'Montserrat', 'Inter', system-ui, sans-serif; }

.wrap {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sticky-header anchor offset */
section[id] { scroll-margin-top: 96px; }

/* ---- Background FX ---- */
.bgFX {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(55% 45% at 20% -5%, rgba(34, 211, 238, 0.09), transparent 60%),
    radial-gradient(45% 40% at 85% 15%, rgba(56, 189, 248, 0.07), transparent 60%),
    linear-gradient(180deg, #0D1730 0%, var(--bg) 40%),
    var(--bg);
}
.bgFX::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(100% 70% at 50% 0%, #000 20%, transparent 80%);
  mask-image: radial-gradient(100% 70% at 50% 0%, #000 20%, transparent 80%);
}
.bgFX::after {
  content: "";
  position: absolute;
  top: -25vh;
  left: 50%;
  width: 70vw;
  height: 70vw;
  max-width: 1100px;
  max-height: 1100px;
  margin-left: -35vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.13) 0%, transparent 65%);
  filter: blur(60px);
  animation: drift1 48s ease-in-out infinite alternate;
  will-change: transform;
}
.streaks {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.streaks::before {
  content: "";
  position: absolute;
  bottom: -30vh;
  right: -15vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.10) 0%, transparent 65%);
  filter: blur(70px);
  animation: drift2 60s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes drift1 {
  from { transform: translate3d(-8vw, 0, 0) scale(1); }
  to   { transform: translate3d(8vw, 6vh, 0) scale(1.12); }
}
@keyframes drift2 {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-10vw, -8vh, 0) scale(1.1); }
}

/* ---- Header ---- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-header);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
}

.logo {
  height: 48px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}
.logo:hover { filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.35)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-bright);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 1px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--accent1);
  color: var(--accent-ink) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover {
  background: #53DEF2;
  color: var(--accent-ink) !important;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.5), 0 4px 16px var(--glow);
}
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- Hero Section ---- */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
}
.hero-video-section {
  position: relative;
  padding: 140px 24px 120px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.58;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 15%, rgba(34, 211, 238, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(11, 20, 40, 0.62) 0%, rgba(11, 20, 40, 0.45) 45%, rgba(11, 20, 40, 0.86) 100%);
  z-index: 1;
}
.hero-video-section .hero-inner {
  position: relative;
  z-index: 2;
}
.hero-video-section h1 { color: var(--text-bright); }
.hero-video-section .lead { color: rgba(232, 238, 249, 0.85); }

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-bright);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  margin-bottom: 24px;
}
h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--text-bright);
}

/* Gradient text: full gradient only on h1 + stat numbers; h2/h3 spans demote to solid accent */
.gradient {
  background: linear-gradient(90deg, #67E8F9, var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h2 .gradient, h3 .gradient {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #7DD3FC;
}

.hero .lead {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ---- Partner Logo Marquee ---- */
.partner-strip {
  padding: 40px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.partner-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--faint);
  margin-bottom: 28px;
}
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 45s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-set {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}
.logo-set img {
  height: 26px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.logo-set img:hover { opacity: 0.95; }
.logo-md { height: 32px !important; }
.logo-lg { height: 38px !important; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (max-width: 860px) {
  .logo-set { gap: 44px; padding-right: 44px; }
  .logo-set img { height: 20px; }
  .logo-md { height: 25px !important; }
  .logo-lg { height: 30px !important; }
}

/* ---- Buttons ---- */
.actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
              box-shadow 0.25s ease, transform 0.25s ease;
}

.btn-primary {
  background: var(--accent1);
  color: var(--accent-ink);
}
.btn-primary:hover {
  background: #53DEF2;
  color: var(--accent-ink);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.5), 0 8px 24px rgba(34, 211, 238, 0.28);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-outline:hover {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.08);
  color: var(--text-bright);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: default; transform: none; }

/* ---- Section Layouts ---- */
.section {
  padding: 80px 24px;
}
.section-alt {
  background: linear-gradient(180deg, rgba(163, 181, 209, 0.075), rgba(163, 181, 209, 0.030));
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text-bright);
}
.section-header p {
  color: var(--muted);
  font-size: 18px;
}

/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.40);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09),
              0 12px 32px var(--shadow), 0 0 24px var(--glow-soft);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-bright);
  transition: box-shadow 0.3s ease;
}
.card:hover .card-icon { box-shadow: 0 0 16px var(--glow); }

.card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text-bright);
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Featured card — one language site-wide (tier Evolve, Premium comparisons) */
.card--featured,
.tier-card.featured {
  border-color: rgba(34, 211, 238, 0.50);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
              0 0 0 1px rgba(34, 211, 238, 0.35),
              0 8px 40px var(--shadow), 0 0 32px var(--glow-soft);
}

/* Card eyebrows (comparison cards) */
.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--faint);
  margin-bottom: 16px;
}
.card-eyebrow--accent { color: var(--accent1); }

/* Card footer links ("Compare Standard vs Premium →") */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent1);
}
.card-link:hover { color: var(--accent-bright); }
.card-link span { transition: transform 0.25s ease; }
.card-link:hover span { transform: translateX(3px); }

/* Narrow grid variants (replace inline max-widths) */
.grid-narrow { max-width: 900px; margin-left: auto; margin-right: auto; }
.grid-narrower { max-width: 800px; margin-left: auto; margin-right: auto; }

/* Highlight panel ("Your Team. Your People.") */
.panel {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 16px;
  padding: 40px;
  margin-top: 56px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 32px var(--glow-soft);
  text-align: center;
}
.panel h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.panel p { color: var(--muted); max-width: 640px; margin: 0 auto; }

[hidden] { display: none !important; }

/* Narrow prose block (AI page closing argument) */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-bright); font-weight: 600; }
.prose-close {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.5;
  color: var(--text-bright) !important;
  text-align: center;
  margin-top: 36px;
}

/* ---- Tier Cards (Services Page) ---- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.tier-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.tier-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.40);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09),
              0 12px 32px var(--shadow), 0 0 24px var(--glow-soft);
}
.tier-card.featured:hover {
  border-color: rgba(34, 211, 238, 0.60);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 999px;
}

.tier-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.tier-card .tier-desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.tier-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features .check {
  color: var(--accent1);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.tier-features .muted { color: var(--muted); }

/* ---- Flywheel Diagram (Services) ---- */
.flywheel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  row-gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.flywheel-node {
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid var(--line-accent);
  border-radius: 12px;
  padding: 20px 28px;
  min-width: 170px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 20px rgba(34, 211, 238, 0.08);
}
.flywheel-node b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--accent-bright);
  margin-bottom: 4px;
}
.flywheel-node span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.flywheel-arrow { color: var(--accent1); opacity: 0.8; display: inline-flex; }
.flywheel-loop {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--faint);
  margin-bottom: 48px;
}

/* ---- Image / Media Frame ---- */
.media-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  box-shadow: 0 24px 60px rgba(2, 6, 17, 0.55), 0 0 40px rgba(34, 211, 238, 0.07);
}
.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.88) contrast(1.05);
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 13, 30, 0.05), rgba(7, 13, 30, 0.38));
}

.img-placeholder {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.12), rgba(148, 163, 184, 0.05));
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  aspect-ratio: 16/9;
}

/* ---- Stats Row ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat h3 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat p {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---- Two-Column Layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-bright);
}
.two-col p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---- Feature List ---- */
.feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.feature-list li strong { color: var(--text-bright); }
.feature-list .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  font-size: 14px;
  margin-top: 2px;
}
.card .feature-list { margin-top: 20px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(56, 189, 248, 0.04));
  border: 1px solid rgba(34, 211, 238, 0.30);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  color: var(--text-bright);
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 60px var(--glow-soft);
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-bright);
}
.cta-banner p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ---- Floating Support Button ---- */
.floating-support {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(13, 26, 53, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 211, 238, 0.40);
  color: var(--accent-bright);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(2, 6, 17, 0.6), 0 0 20px rgba(34, 211, 238, 0.15);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.floating-support:hover {
  background: rgba(34, 211, 238, 0.15);
  color: var(--text-bright);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .floating-support {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.form-note {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.label-hint { color: var(--faint); font-weight: 400; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: rgba(7, 13, 30, 0.60);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.form-group ::placeholder { color: rgba(169, 182, 204, 0.45); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px var(--ring);
  background: rgba(7, 13, 30, 0.85);
}
.form-group textarea { resize: vertical; min-height: 120px; }
select option { background: var(--surface-solid); color: var(--text); }

/* Honeypot — visually removed, present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid rgba(34, 211, 238, 0.30);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.08), rgba(255, 255, 255, 0.02));
}
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.form-success p { color: var(--muted); }
.form-error {
  border: 1px solid rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.08);
  color: #FCA5A5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-stack { display: grid; gap: 24px; align-content: start; }
.stack-sm { display: grid; gap: 12px; }
.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}
.hours-row strong { color: var(--text); font-weight: 600; }
.hours-row .accent { color: var(--accent1); }

.contact-info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item .ci-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
}
.contact-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.contact-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: var(--surface-solid);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand .logo { height: 40px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--faint);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--accent1); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
}

/* ---- Page Header (inner pages) ---- */
.page-hero {
  padding: 96px 24px 64px;
  text-align: center;
  background: radial-gradient(60% 90% at 50% 0%, rgba(34, 211, 238, 0.09), transparent 70%);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Animations ---- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes statIn {
  from { opacity: 0; filter: blur(6px); transform: translateY(10px); }
  to { opacity: 1; filter: none; transform: none; }
}

/* Reveal is gated on .js so no-JS visitors see everything */
.js .animate-on-scroll { opacity: 0; }
.animate { animation: fadeInUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.stat.animate { animation: none; opacity: 1; }
.stat.animate h3 { animation: statIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both; }

/* Stagger */
.card-grid > .animate:nth-child(3n+2) { animation-delay: 0.08s; }
.card-grid > .animate:nth-child(3n) { animation-delay: 0.16s; }
.tier-grid > .animate:nth-child(2) { animation-delay: 0.08s; }
.tier-grid > .animate:nth-child(3) { animation-delay: 0.16s; }
.stats .stat.animate:nth-child(2) h3 { animation-delay: 0.1s; }
.stats .stat.animate:nth-child(3) h3 { animation-delay: 0.2s; }

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bgFX::after, .streaks::before, .logo-track { animation: none; }
  .logo-track { width: auto; flex-wrap: wrap; justify-content: center; }
  .logo-set[aria-hidden] { display: none; }
  .logo-marquee { -webkit-mask-image: none; mask-image: none; }
  .animate, .animate-on-scroll, .stat.animate h3 { animation: none !important; opacity: 1 !important; }
  .card, .tier-card, .btn, .floating-support, .card-link span { transition: none; }
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .logo { height: 36px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-solid);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px var(--shadow);
    padding: 24px;
    gap: 16px;
  }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .media-frame { min-height: 320px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hero { padding: 60px 24px 50px; }
  .hero-video-section { padding: 110px 24px 90px; }
  .section { padding: 60px 24px; }
  .panel { padding: 32px 24px; }

  .cta-banner { padding: 48px 24px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .flywheel { flex-direction: column; }
  .flywheel-arrow { transform: rotate(90deg); }
}
