:root {
  --bg: #060b18;
  --surface: #0c1526;
  --surface2: #101e35;
  --border: rgba(77, 210, 200, 0.13);
  --teal: #4dd2c8;
  --teal-dim: rgba(77, 210, 200, 0.1);
  --blue: #5b8ef0;
  --blue-dim: rgba(91, 142, 240, 0.1);
  --sky: #38bdf8;
  --gold: #f5c842;
  --text: #dde6f5;
  --muted: #637090;
  --radius: 14px;
  --glow: 0 0 60px rgba(77, 210, 200, 0.13);
  --nav-h: 64px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(77, 210, 200, 0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(77, 210, 200, 0.028) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

/* ─── SKYHOST TOP BANNER ─── */
.skyhost-banner {
  background: linear-gradient(90deg, #0f2040, #0c1a30, #0f2040);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #94b3cc;
  text-align: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 101;
}
.skyhost-banner img {
  height: 18px;
  filter: brightness(1.2);
  vertical-align: middle;
}
.skyhost-banner a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 600;
}
.skyhost-banner a:hover {
  text-decoration: underline;
}
.skyhost-banner .sep {
  opacity: 0.35;
}
@media (max-width: 600px) {
  .skyhost-banner .dsk {
    display: none;
  }
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-h);
  background: rgba(6, 11, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-logo .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--teal);
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-ghost {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    border-color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--teal);
  background: var(--teal-dim);
  color: var(--teal);
}
.btn-prim {
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--teal);
  color: #060b18;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    box-shadow 0.2s,
    opacity 0.2s;
  white-space: nowrap;
}
.btn-prim:hover {
  opacity: 0.88;
  box-shadow: 0 0 22px rgba(77, 210, 200, 0.45);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 30px);
  left: 0;
  right: 0;
  background: rgba(6, 11, 24, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open {
  display: flex;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu a:last-of-type {
  border-bottom: none;
}
.mobile-menu a i {
  color: var(--muted);
  font-size: 0.75rem;
}
.mob-cta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.mob-cta .btn-ghost,
.mob-cta .btn-prim {
  flex: 1;
  text-align: center;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5% 60px;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}
.orb-1 {
  width: 480px;
  height: 480px;
  background: rgba(77, 210, 200, 0.1);
  top: -100px;
  left: -150px;
}
.orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(91, 142, 240, 0.08);
  bottom: -40px;
  right: -80px;
  animation-delay: -5s;
}
.orb-3 {
  width: 260px;
  height: 260px;
  background: rgba(56, 189, 248, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
}
@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(28px, -28px);
  }
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dim);
  border: 1px solid rgba(77, 210, 200, 0.28);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: fadeUp 0.6s ease both;
}
.blink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: blinkAnim 1.4s step-start infinite;
}
@keyframes blinkAnim {
  50% {
    opacity: 0;
  }
}
h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 560px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  margin-bottom: 38px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: all 0.25s;
}
.btn-cta.teal {
  background: var(--teal);
  color: #060b18;
  box-shadow: 0 4px 28px rgba(77, 210, 200, 0.28);
}
.btn-cta.teal:hover {
  box-shadow: 0 4px 40px rgba(77, 210, 200, 0.55);
  transform: translateY(-2px);
}
.btn-cta.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-cta.outline:hover {
  border-color: var(--blue);
  background: var(--blue-dim);
  color: var(--blue);
}
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 7px 18px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 100px;
  font-size: 0.8rem;
  color: #94b3cc;
  text-decoration: none;
  animation: fadeUp 0.6s 0.45s ease both;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.powered-by:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.1);
}
.powered-by img {
  height: 16px;
  filter: brightness(1.3) saturate(0.8);
}
.powered-by strong {
  color: var(--sky);
}

/* Mockup */
.mockup-wrapper {
  position: relative;
  margin: 56px auto 0;
  max-width: 860px;
  width: 100%;
  animation: fadeUp 0.8s 0.5s ease both;
}
.mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 60%, rgba(77, 210, 200, 0.1), transparent 70%);
  pointer-events: none;
}
.mockup-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.dot-r {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-r:nth-child(1) {
  background: #ff5f57;
}
.dot-r:nth-child(2) {
  background: #ffbd2e;
}
.dot-r:nth-child(3) {
  background: #28c840;
}
.mockup-url {
  flex: 1;
  margin-left: 10px;
  background: var(--bg);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 250px;
}
.mockup-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  height: 360px;
}
.mock-sidebar {
  background: #090f1e;
  border-right: 1px solid var(--border);
  padding: 16px 0;
}
.mock-sb-logo {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mock-sb-logo span {
  color: var(--teal);
}
.mock-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  font-size: 0.77rem;
  color: var(--muted);
  margin: 0 6px;
  border-radius: 6px;
}
.mock-nav.active {
  background: var(--teal-dim);
  color: var(--teal);
}
.mock-nav i {
  width: 14px;
  text-align: center;
}
.mock-content {
  padding: 18px;
  overflow: hidden;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.mock-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.mock-card-label {
  font-size: 0.64rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  margin-bottom: 5px;
}
.mock-card-val {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.cv-t {
  color: var(--teal);
}
.cv-g {
  color: var(--gold);
}
.cv-r {
  color: #f87171;
}
.cv-b {
  color: var(--blue);
}
.mock-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mock-chart {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}
.mock-chart-lbl {
  font-size: 0.67rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.fake-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 65px;
}
.fbar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--teal);
  opacity: 0.85;
  animation: growBar 1s ease both;
}
.fbar:nth-child(1) {
  height: 28%;
  animation-delay: 0.5s;
}
.fbar:nth-child(2) {
  height: 52%;
  animation-delay: 0.6s;
}
.fbar:nth-child(3) {
  height: 38%;
  animation-delay: 0.7s;
}
.fbar:nth-child(4) {
  height: 68%;
  animation-delay: 0.8s;
}
.fbar:nth-child(5) {
  height: 48%;
  animation-delay: 0.9s;
}
.fbar:nth-child(6) {
  height: 82%;
  animation-delay: 1s;
}
.fbar:nth-child(7) {
  height: 62%;
  animation-delay: 1.1s;
}
@keyframes growBar {
  from {
    height: 0 !important;
  }
}
.fake-donut-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fake-donut {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0% 45%, var(--blue) 45% 75%, #f87171 75% 90%, var(--gold) 90% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fake-donut::after {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface2);
}
.mock-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-leg {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--muted);
}
.mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── STATS RIBBON ─── */
.stats-ribbon {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 40%, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 5px;
}

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 1;
  padding: 90px 5%;
}
.section-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: "//";
  opacity: 0.45;
}
.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ─── FEATURES ─── */
.features-header {
  max-width: 540px;
  margin-bottom: 52px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(77, 210, 200, 0.32);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.feature-card:hover::before {
  opacity: 1;
}
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.fi-t {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(77, 210, 200, 0.22);
}
.fi-b {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid rgba(91, 142, 240, 0.22);
}
.fi-g {
  background: rgba(245, 200, 66, 0.08);
  color: var(--gold);
  border: 1px solid rgba(245, 200, 66, 0.22);
}
.feat-title {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.feat-desc {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* ─── TICKET ─── */
.ticket-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 52px;
}
.ticket-ui {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.ticket-head {
  background: var(--surface2);
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-id {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--teal);
}
.tbadge {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.badge-prog {
  background: rgba(245, 200, 66, 0.12);
  color: var(--gold);
  border: 1px solid rgba(245, 200, 66, 0.28);
}
.ticket-body {
  padding: 16px;
}
.ticket-subj {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 14px;
}
.chat-msg {
  display: flex;
  gap: 9px;
  margin-bottom: 10px;
}
.chat-msg.right {
  flex-direction: row-reverse;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.av-c {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid rgba(91, 142, 240, 0.3);
}
.av-a {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(77, 210, 200, 0.3);
}
.bubble {
  background: var(--surface2);
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 0.79rem;
  color: var(--text);
  border: 1px solid var(--border);
  max-width: 220px;
}
.bubble.ab {
  background: rgba(77, 210, 200, 0.06);
  border-color: rgba(77, 210, 200, 0.18);
}
.btime {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 3px;
}
.int-note {
  background: rgba(245, 200, 66, 0.05);
  border: 1px dashed rgba(245, 200, 66, 0.28);
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 0.76rem;
  color: #b45309;
  margin-top: 6px;
}
.ticket-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(77, 210, 200, 0.32);
  color: var(--teal);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ─── SECURITY ─── */
.security-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 52px;
}
.security-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.security-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.security-item:hover {
  border-color: rgba(77, 210, 200, 0.32);
}
.security-item i {
  color: var(--teal);
  font-size: 1rem;
  margin-top: 2px;
}
.security-item h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  color: #fff;
  margin-bottom: 3px;
}
.security-item p {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}
.twofa-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.twofa-icon {
  font-size: 2.8rem;
  color: var(--teal);
  margin-bottom: 14px;
}
.twofa-title {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.totp-code {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 18px 0;
}
.totp-d {
  width: 36px;
  height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
.totp-d:nth-child(1) {
  animation-delay: 0s;
}
.totp-d:nth-child(2) {
  animation-delay: 0.1s;
}
.totp-d:nth-child(3) {
  animation-delay: 0.2s;
}
.totp-d:nth-child(4) {
  animation-delay: 0.3s;
}
.totp-d:nth-child(5) {
  animation-delay: 0.4s;
}
.totp-d:nth-child(6) {
  animation-delay: 0.5s;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}
.totp-timer {
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}
.totp-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  width: 70%;
  border-radius: 2px;
  animation: countdown 30s linear infinite;
}
@keyframes countdown {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.totp-hint {
  color: var(--muted);
  font-size: 0.79rem;
  margin-top: 12px;
}

/* ─── CTA ─── */
.cta-section {
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(77, 210, 200, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-section .section-label {
  justify-content: center;
}
.cta-section .section-desc {
  margin: 0 auto 40px;
}
.access-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.access-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  width: 260px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.access-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s;
}
.ac-client::after {
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 142, 240, 0.08), transparent 70%);
}
.ac-admin::after {
  background: radial-gradient(ellipse at 50% 0%, rgba(77, 210, 200, 0.08), transparent 70%);
}
.access-card:hover {
  transform: translateY(-5px);
}
.ac-client:hover {
  border-color: rgba(91, 142, 240, 0.38);
  box-shadow: 0 18px 45px rgba(91, 142, 240, 0.12);
}
.ac-admin:hover {
  border-color: rgba(77, 210, 200, 0.38);
  box-shadow: 0 18px 45px rgba(77, 210, 200, 0.12);
}
.access-card:hover::after {
  opacity: 1;
}
.ac-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}
.ac-client .ac-icon {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid rgba(91, 142, 240, 0.28);
}
.ac-admin .ac-icon {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(77, 210, 200, 0.28);
}
.ac-title {
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ac-desc {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 22px;
}
.ac-btn {
  display: block;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 700;
  transition: all 0.2s;
}
.ac-client .ac-btn {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid rgba(91, 142, 240, 0.25);
}
.ac-client .ac-btn:hover {
  background: rgba(91, 142, 240, 0.18);
}
.ac-admin .ac-btn {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(77, 210, 200, 0.25);
}
.ac-admin .ac-btn:hover {
  background: rgba(77, 210, 200, 0.18);
}

/* ─── SKYHOST PROMO ─── */
.skyhost-section {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 5%;
}
.skyhost-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sky-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.skyhost-text h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.skyhost-text h2 span {
  color: var(--sky);
}
.skyhost-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 26px;
}
.sky-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.sky-service {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.84rem;
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.sky-service:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.05);
}
.sky-service i {
  color: var(--sky);
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}
.sky-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: 10px;
  background: var(--sky);
  color: #060b18;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    box-shadow 0.2s,
    opacity 0.2s;
}
.sky-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.4);
}
.skyhost-card {
  background: linear-gradient(135deg, #0c1e38, #0a1628);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.sky-logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}
.sky-logo-area img {
  height: 28px;
  filter: brightness(1.2);
}
.sky-logo-area .sky-tag {
  background: rgba(56, 189, 248, 0.1);
  color: var(--sky);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-family: "IBM Plex Mono", monospace;
}
.sky-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.sky-stat {
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.sky-stat-val {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sky);
}
.sky-stat-lbl {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 3px;
}
.sky-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sky-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text);
}
.sky-feat i {
  color: var(--sky);
  font-size: 0.78rem;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 44px 5% 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand h3 span {
  color: var(--teal);
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer-sky-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 7px 14px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 100px;
  font-size: 0.77rem;
  color: #94b3cc;
  text-decoration: none;
  transition: border-color 0.2s;
}
.footer-sky-credit:hover {
  border-color: rgba(56, 189, 248, 0.35);
}
.footer-sky-credit img {
  height: 14px;
  filter: brightness(1.3) saturate(0.7);
}
.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--text);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 0.79rem;
}
.footer-bottom a {
  color: var(--sky);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .skyhost-inner {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mockup-body {
    grid-template-columns: 1fr;
    height: auto;
  }
  .mock-sidebar {
    display: none;
  }
  .mock-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .ticket-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .security-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .skyhost-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  section {
    padding: 64px 4%;
  }
  .hero {
    padding: 56px 4% 48px;
  }
  .skyhost-banner {
    padding: 7px 4%;
    font-size: 0.73rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-ribbon {
    grid-template-columns: 1fr 1fr;
    padding: 32px 4%;
  }
  .mock-charts-row {
    grid-template-columns: 1fr;
  }
  .mockup-wrapper {
    display: none;
  }
  .access-cards {
    flex-direction: column;
    align-items: center;
  }
  .access-card {
    width: 100%;
    max-width: 320px;
  }
  .sky-services {
    grid-template-columns: 1fr;
  }
  .sky-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
  .totp-d {
    width: 30px;
    height: 38px;
    font-size: 1.1rem;
  }
}
