/* =================================================================
   ASL HOSTING PRO — custom styles
   Tailwind handles layout utilities; this file owns the brand look:
   gradients, glassmorphism, motion, and bespoke components.
   ================================================================= */

:root {
  --brand:      #0066FF;
  --brand-dark: #0047CC;
  --sky:        #38BDF8;
  --ink:        #0F172A;
  --midnight:   #0B1120;
  --radius:     18px;
  --ease:       cubic-bezier(.22, 1, .36, 1);
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* smooth section scroll offset so anchors clear the sticky navbar */
section[id], main[id] { scroll-margin-top: 90px; }

/* Fluid font weights (Tailwind arbitrary weights) */
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }
.font-800 { font-weight: 800; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 100;
  background: var(--brand); color: #fff; padding: 10px 16px;
  border-radius: 10px; font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =================================================================
   PAGE LOADER
   ================================================================= */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--midnight);
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__spinner {
  width: 52px; height: 52px; border-radius: 50%;
  border: 4px solid rgba(56, 189, 248, .18);
  border-top-color: var(--brand);
  border-right-color: var(--sky);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =================================================================
   NAVBAR
   ================================================================= */
#navbar .nav-wordmark { color: #fff; transition: color .3s var(--ease); }
.nav-link {
  color: rgba(255, 255, 255, .82);
  font-size: .95rem; font-weight: 500;
  transition: color .2s var(--ease);
  position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0; background: var(--sky);
  transition: width .25s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* scrolled state → glass white bar with dark text */
#navbar.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -12px rgba(15, 23, 42, .18);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}
#navbar.scrolled .nav-wordmark { color: var(--ink); }
#navbar.scrolled .nav-link { color: rgba(15, 23, 42, .72); }
#navbar.scrolled .nav-link:hover { color: var(--ink); }
#navbar.scrolled .menu-toggle { color: var(--ink); }

.menu-toggle {
  display: grid; place-items: center;
  width: 44px; height: 44px; color: #fff;
  border-radius: 12px; transition: background .2s var(--ease);
}
.menu-toggle:hover { background: rgba(255, 255, 255, .12); }

/* Mobile menu */
.mobile-menu {
  background: rgba(11, 17, 32, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  animation: slideDown .28s var(--ease);
}
#navbar.scrolled .mobile-menu {
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid rgba(15, 23, 42, .08);
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-link {
  display: block; padding: 12px 14px; border-radius: 12px;
  color: rgba(255, 255, 255, .88); font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.mobile-link:hover { background: rgba(56, 189, 248, .14); color: #fff; }
#navbar.scrolled .mobile-link { color: rgba(15, 23, 42, .82); }
#navbar.scrolled .mobile-link:hover { background: rgba(0, 102, 255, .08); color: var(--brand); }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem;
  padding: .8rem 1.5rem; border-radius: 12px; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 28px -10px rgba(0, 102, 255, .6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(0, 102, 255, .7); }

.btn--glass {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }

.btn--white { color: var(--brand-dark); background: #fff; box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .35); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .4); }

.btn--outline {
  color: var(--brand-dark); background: #fff;
  border: 1.5px solid rgba(0, 102, 255, .28);
}
.btn--outline:hover { border-color: var(--brand); background: rgba(0, 102, 255, .04); transform: translateY(-2px); }

.btn--ghost { color: var(--ink); background: rgba(15, 23, 42, .06); }
.btn--ghost:hover { background: rgba(15, 23, 42, .1); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(0, 102, 255, .35), transparent 60%),
    radial-gradient(700px 500px at 0% 20%, rgba(56, 189, 248, .18), transparent 55%),
    linear-gradient(180deg, var(--midnight) 0%, #0d1526 55%, var(--ink) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}
.hero-fade {
  position: absolute; inset-inline: 0; bottom: 0; height: 120px;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}

.text-gradient {
  background: linear-gradient(120deg, var(--sky), var(--brand) 60%, #7dd3fc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}

.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: rgba(56, 189, 248, .1);
  border: 1px solid rgba(56, 189, 248, .25);
  color: #bae6fd; font-size: .82rem; font-weight: 500;
}
.chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(56, 189, 248, .18); animation: blink 1.8s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* floating blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; z-index: 0; }
.blob--1 { width: 420px; height: 420px; top: -60px; right: -80px; background: radial-gradient(circle, #0066FF, transparent 70%); animation: drift 14s ease-in-out infinite; }
.blob--2 { width: 360px; height: 360px; bottom: -120px; left: -100px; background: radial-gradient(circle, #38BDF8, transparent 70%); animation: drift 18s ease-in-out infinite reverse; }
.blob--3 { width: 480px; height: 480px; top: 10%; right: -140px; background: radial-gradient(circle, rgba(0,102,255,.5), transparent 70%); filter: blur(90px); opacity: .4; animation: drift 20s ease-in-out infinite; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(24px, -30px) scale(1.08); }
}

/* ---------- Signature: live server console ---------- */
.server-console {
  position: relative; border-radius: 22px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
}
.console__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
}
.console__dot { width: 12px; height: 12px; border-radius: 50%; }
.console__title { margin-left: 8px; font-size: .8rem; color: rgba(255,255,255,.55); font-family: 'Inter'; }
.console__status { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: #86efac; font-weight: 600; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5);} 70% { box-shadow: 0 0 0 10px rgba(34,197,94,0);} 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0);} }

.console__body { padding: 22px; display: grid; gap: 20px; }
.rack { display: grid; gap: 10px; }
.rack__unit {
  display: flex; align-items: center; gap: 10px;
  height: 34px; padding: 0 14px; border-radius: 10px;
  background: linear-gradient(90deg, rgba(15,23,42,.85), rgba(15,23,42,.5));
  border: 1px solid rgba(255, 255, 255, .07);
}
.rack__unit i { flex: 1; height: 8px; border-radius: 4px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 6px, transparent 6px 12px); }
.led { width: 8px; height: 8px; border-radius: 50%; }
.led--g { background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: flick 2.4s infinite; }
.led--b { background: var(--sky); box-shadow: 0 0 8px var(--sky); animation: flick 3.1s infinite; }
@keyframes flick { 0%,100%{opacity:1;} 45%{opacity:.35;} }

.console__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; align-items: end;
}
.metric {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px; padding: 12px 14px;
}
.metric__label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); }
.metric__value { font-family: 'Poppins'; font-weight: 700; color: #fff; font-size: 1.25rem; }
.metric__value b { font-weight: 700; }
.spark { grid-column: 1 / -1; width: 100%; height: 60px; }
.spark__line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw 2.2s var(--ease) forwards .3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* floating badges */
.badge {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: .6rem .95rem; border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: #fff; font-size: .85rem; font-weight: 600;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, .6);
}
.badge i { width: 18px; height: 18px; color: var(--sky); }
.badge--tl { top: -18px;  left: -22px; }
.badge--tr { top: 22%;    right: -30px; }
.badge--bl { top: 52%;    left: -30px; }
.badge--br { bottom: -18px; right: -18px; }
.float-a { animation: floatY 5s ease-in-out infinite; }
.float-b { animation: floatY 6.5s ease-in-out infinite; animation-delay: -2s; }
@keyframes floatY { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* =================================================================
   SECTION SCAFFOLD
   ================================================================= */
.section { padding: 96px 0; }
.section--dark {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(0,102,255,.25), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--midnight));
  color: #fff;
}
.section-head { max-width: 640px; margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-block; font-family: 'Poppins'; font-weight: 600;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.eyebrow--light { color: var(--sky); }
.section-title {
  font-family: 'Poppins'; font-weight: 800; letter-spacing: -.01em;
  font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.15; color: var(--ink);
}
.section--dark .section-title { color: #fff; }
.section-sub { margin-top: 14px; color: #64748b; font-size: 1.05rem; }
.section--dark .section-sub { color: #cbd5e1; }

/* =================================================================
   TRUSTED BY
   ================================================================= */
.trust-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins'; font-weight: 700; font-size: 1.05rem;
  color: #94a3b8; filter: grayscale(1); opacity: .8;
  transition: color .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
}
.trust-logo i { width: 20px; height: 20px; }
.trust-logo:hover { color: var(--brand); opacity: 1; transform: translateY(-2px); }

/* =================================================================
   PLANS
   ================================================================= */
.plan {
  position: relative; background: #fff; border-radius: var(--radius);
  border: 1px solid #e6ebf3; padding: 34px 30px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  box-shadow: 0 6px 24px -18px rgba(15, 23, 42, .35);
}
.plan:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(15, 23, 42, .35); border-color: rgba(0,102,255,.25); }

.plan--featured {
  background: linear-gradient(180deg, #0b1a3a, var(--midnight));
  border: 1px solid rgba(56, 189, 248, .35);
  color: #fff; box-shadow: 0 30px 70px -25px rgba(0, 102, 255, .55);
  transform: translateY(-6px);
}
.plan--featured:hover { transform: translateY(-14px); }

.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--sky));
  color: #fff; font-family: 'Poppins'; font-weight: 600; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(0,102,255,.7);
}
.plan__head { padding-bottom: 22px; border-bottom: 1px solid #eef1f6; }
.plan--featured .plan__head { border-bottom-color: rgba(255,255,255,.12); }
.plan__name { font-family: 'Poppins'; font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.plan--featured .plan__name { color: #fff; }
.plan__desc { margin-top: 6px; font-size: .9rem; color: #64748b; }
.plan--featured .plan__desc { color: #94a3b8; }
.plan__price { margin-top: 18px; font-family: 'Poppins'; font-weight: 800; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.plan--featured .plan__price { color: #fff; }
.plan__cur { font-size: 1.3rem; vertical-align: top; margin-right: 2px; color: var(--brand); }
.plan--featured .plan__cur { color: var(--sky); }
.plan__per { font-size: 1rem; font-weight: 500; color: #94a3b8; }

.plan__features { list-style: none; margin: 24px 0 30px; padding: 0; display: grid; gap: 13px; flex: 1; }
.plan__features li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: #334155; }
.plan--featured .plan__features li { color: #cbd5e1; }
.plan__features i { width: 18px; height: 18px; color: #16a34a; flex-shrink: 0; }
.plan--featured .plan__features i { color: var(--sky); }

/* =================================================================
   FEATURES
   ================================================================= */
.feature {
  background: #fff; border: 1px solid #eef1f6; border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(15,23,42,.3); border-color: rgba(0,102,255,.2); }
.feature__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,102,255,.12), rgba(56,189,248,.14));
  color: var(--brand); margin-bottom: 18px;
  transition: transform .3s var(--ease);
}
.feature:hover .feature__icon { transform: scale(1.08) rotate(-4deg); }
.feature__icon i { width: 26px; height: 26px; }
.feature__title { font-family: 'Poppins'; font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.feature__desc { margin-top: 10px; color: #64748b; font-size: .95rem; line-height: 1.6; }

/* =================================================================
   PERFORMANCE — orbit visual + progress bars
   ================================================================= */
.perf-visual { display: grid; place-items: center; min-height: 360px; }
.perf-orbit { position: relative; width: 320px; height: 320px; }
.orbit-ring { position: absolute; inset: 0; margin: auto; border-radius: 50%; border: 1px solid rgba(56,189,248,.2); }
.ring1 { width: 320px; height: 320px; animation: rot 26s linear infinite; }
.ring2 { width: 220px; height: 220px; inset: 0; margin: auto; border-color: rgba(0,102,255,.28); animation: rot 18s linear infinite reverse; }
.ring3 { width: 130px; height: 130px; inset: 0; margin: auto; border-color: rgba(56,189,248,.35); }
@keyframes rot { to { transform: rotate(360deg); } }
.perf-core {
  position: absolute; inset: 0; margin: auto; width: 92px; height: 92px; border-radius: 24px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 0 60px -6px rgba(0,102,255,.7);
}
.perf-core i { width: 40px; height: 40px; color: #fff; }
.orbit-node {
  position: absolute; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(56, 189, 248, .3);
  backdrop-filter: blur(6px);
  color: var(--sky);
}
.orbit-node i { width: 22px; height: 22px; }
.node1 { top: -6px; left: 50%; transform: translateX(-50%); }
.node2 { top: 50%; right: -6px; transform: translateY(-50%); }
.node3 { bottom: -6px; left: 50%; transform: translateX(-50%); }
.node4 { top: 50%; left: -6px; transform: translateY(-50%); }

.bar__top { display: flex; justify-content: space-between; font-family: 'Poppins'; font-weight: 600; font-size: .95rem; color: #e2e8f0; margin-bottom: 10px; }
.bar__pct { color: var(--sky); }
.bar__track { height: 10px; border-radius: 999px; background: rgba(255, 255, 255, .1); overflow: hidden; }
.bar__fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--sky));
  transition: width 1.4s var(--ease);
}

/* =================================================================
   DOMAIN SEARCH
   ================================================================= */
.domain-box {
  margin-top: 40px; background: #fff; border: 1px solid #e6ebf3;
  border-radius: 22px; padding: 28px; box-shadow: 0 24px 60px -35px rgba(15,23,42,.4);
}
.domain-field { display: flex; gap: 10px; align-items: center; position: relative; }
.domain-field__icon { position: absolute; left: 18px; width: 20px; height: 20px; color: #94a3b8; pointer-events: none; }
.domain-field__input {
  flex: 1; height: 56px; padding: 0 18px 0 48px;
  border: 1.5px solid #e2e8f0; border-radius: 14px; font-size: 1rem; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  min-width: 0;
}
.domain-field__input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0,102,255,.12); }
.domain-field__btn { height: 56px; flex-shrink: 0; }
.domain-ext { margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.domain-ext span { font-size: .85rem; color: #64748b; background: #f1f5f9; padding: 6px 14px; border-radius: 999px; }
.domain-ext b { color: var(--brand); font-weight: 700; }
.domain-result { margin-top: 16px; font-weight: 600; min-height: 1.2em; }
.domain-result.ok  { color: #16a34a; }
.domain-result.err { color: #dc2626; }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testimonial {
  background: #fff; border: 1px solid #eef1f6; border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(15,23,42,.3); }
.testimonial__stars { display: flex; gap: 3px; color: #f59e0b; margin-bottom: 16px; }
.testimonial__stars i { width: 18px; height: 18px; fill: #f59e0b; }
.testimonial__quote { color: #334155; font-size: 1rem; line-height: 1.7; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.testimonial__author b { display: block; font-family: 'Poppins'; font-weight: 600; color: var(--ink); font-size: .95rem; }
.testimonial__author small { color: #94a3b8; font-size: .85rem; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  font-family: 'Poppins'; font-weight: 700; font-size: .9rem;
  background: linear-gradient(135deg, var(--a), var(--b));
}

/* =================================================================
   FAQ
   ================================================================= */
.faq { background: #fff; border: 1px solid #e6ebf3; border-radius: 14px; overflow: hidden; transition: box-shadow .25s var(--ease), border-color .25s var(--ease); }
.faq.open { border-color: rgba(0,102,255,.3); box-shadow: 0 18px 40px -28px rgba(0,102,255,.5); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left; cursor: pointer;
  font-family: 'Poppins'; font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq__icon { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: #64748b; line-height: 1.7; }

/* =================================================================
   CTA BANNER
   ================================================================= */
.cta-wrap { padding: 0 0 96px; background: #fff; }
.cta {
  position: relative; overflow: hidden; border-radius: 28px; text-align: center;
  padding: 72px 28px;
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(56,189,248,.35), transparent 70%),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 40px 80px -30px rgba(0,102,255,.6);
}
.cta__glow { position: absolute; inset: 0; background: radial-gradient(400px 200px at 20% 120%, rgba(255,255,255,.2), transparent 70%); pointer-events: none; }
.cta__title { position: relative; font-family: 'Poppins'; font-weight: 800; color: #fff; font-size: clamp(1.8rem, 4vw, 2.75rem); line-height: 1.15; }
.cta__sub { position: relative; margin: 16px auto 0; max-width: 520px; color: rgba(255,255,255,.9); font-size: 1.05rem; }
.cta__actions { position: relative; margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--midnight); color: #cbd5e1; }
.footer__head { font-family: 'Poppins'; font-weight: 600; color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer__links { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer__links a { color: #94a3b8; font-size: .92rem; transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--sky); }

.newsletter-field { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-input {
  flex: 1; min-width: 0; height: 44px; padding: 0 14px; border-radius: 11px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-size: .9rem;
}
.newsletter-input::placeholder { color: #64748b; }
.newsletter-input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(56,189,248,.18); }
#newsletterMsg.ok  { color: #4ade80; }
#newsletterMsg.err { color: #f87171; }

.footer__bottom {
  margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: #94a3b8; font-size: .85rem; transition: color .2s var(--ease); }
.footer__legal a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: #cbd5e1;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.footer__social i { width: 18px; height: 18px; }

/* =================================================================
   SCROLL TO TOP
   ================================================================= */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 34px -12px rgba(0,102,255,.7);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top i { width: 22px; height: 22px; }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .15s; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1023px) {
  .badge--tr { right: -8px; }
  .badge--bl { left: -10px; }
  .badge--tl { left: -6px; }
  .badge--br { right: -6px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .cta { padding: 56px 22px; }
  .console__metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(3) { grid-column: 1 / -1; }
  .badge { font-size: .78rem; padding: .5rem .8rem; }
  .badge--tr, .badge--bl { display: none; } /* declutter on tiny screens */
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   INNER PAGES  (added for multi-page build)
   ================================================================= */

/* Active nav item */
.nav-link--active { color: #fff; }
.nav-link--active::after { width: 100%; }
#navbar.scrolled .nav-link--active { color: var(--ink); }

/* Compact page hero (dark, sits under the fixed navbar) */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 150px 0 74px;
  background:
    radial-gradient(700px 380px at 80% -20%, rgba(0,102,255,.34), transparent 60%),
    radial-gradient(600px 380px at 0% 10%, rgba(56,189,248,.16), transparent 55%),
    linear-gradient(180deg, var(--midnight), #0d1526 70%, var(--ink));
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 20px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .85rem; color: #7dd3fc; margin-bottom: 16px; }
.breadcrumb a { color: #cbd5e1; transition: color .2s var(--ease); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #475569; }
.page-title { font-family: 'Poppins'; font-weight: 800; letter-spacing: -.01em; color: #fff; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.12; }
.page-sub { margin: 16px auto 0; max-width: 620px; color: #cbd5e1; font-size: 1.08rem; line-height: 1.6; }

/* Simple content card */
.simple-card { background: #fff; border: 1px solid #eef1f6; border-radius: var(--radius); padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.simple-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -30px rgba(15,23,42,.28); }
.simple-card h3 { font-family: 'Poppins'; font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.simple-card p { margin-top: 10px; color: #64748b; line-height: 1.65; font-size: .96rem; }
.simple-card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; color: var(--brand); background: linear-gradient(135deg, rgba(0,102,255,.12), rgba(56,189,248,.14)); }
.simple-card__icon i { width: 24px; height: 24px; }

/* Prose (about / legal) */
.prose { max-width: 760px; margin: 0 auto; }
.prose > p { color: #475569; line-height: 1.8; margin: 1em 0; }
.prose h2 { font-family: 'Poppins'; font-weight: 700; font-size: 1.4rem; color: var(--ink); margin: 1.8em 0 .5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: 'Poppins'; font-weight: 600; font-size: 1.1rem; color: var(--ink); margin: 1.4em 0 .4em; }
.prose ul { margin: 1em 0; padding-left: 1.3rem; color: #475569; }
.prose li { margin: .45em 0; line-height: 1.7; }
.prose a { color: var(--brand); text-decoration: underline; }
.prose__meta { color: #94a3b8; font-size: .9rem; margin-bottom: 2em; }

/* Numbered steps */
.steps { display: grid; gap: 22px; max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step__num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-family: 'Poppins'; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); box-shadow: 0 10px 22px -10px rgba(0,102,255,.7); }
.step__body h3 { font-family: 'Poppins'; font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.step__body p { margin-top: 6px; color: #64748b; line-height: 1.65; }

/* Spec / feature list */
.speclist { list-style: none; padding: 0; display: grid; gap: 12px; }
.speclist li { display: flex; align-items: center; gap: 10px; color: #334155; font-size: .96rem; }
.speclist i { width: 18px; height: 18px; color: #16a34a; flex-shrink: 0; }

/* Status rows */
.status-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #eef1f6; }
.status-row:last-child { border-bottom: 0; }
.status-row span:first-child { color: var(--ink); font-weight: 500; }
.status-ok { display: inline-flex; align-items: center; gap: 8px; color: #16a34a; font-weight: 600; font-size: .9rem; }
.status-ok .dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.16); }

/* Contact + forms */
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .9rem; font-weight: 500; color: var(--ink); }
.field input, .field textarea {
  width: 100%; border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 12px 14px;
  font-size: .96rem; color: var(--ink); font-family: 'Inter'; background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0,102,255,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-msg { min-height: 1.2em; font-weight: 600; font-size: .92rem; margin-top: 4px; }
.form-msg.ok { color: #16a34a; }
.form-msg.err { color: #dc2626; }

.contact-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; }
.contact-line__icon { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; color: var(--brand); background: linear-gradient(135deg, rgba(0,102,255,.12), rgba(56,189,248,.14)); }
.contact-line b { display: block; color: var(--ink); font-family: 'Poppins'; font-weight: 600; font-size: .95rem; }
.contact-line a, .contact-line span { color: #64748b; font-size: .95rem; }
.contact-line a:hover { color: var(--brand); }

/* Blog placeholder */
.post-tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--brand); background: rgba(0,102,255,.08); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
