:root {
  --bg: #080808;
  --surface: #111111;
  --surface2: #161616;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.05);
  --muted: rgba(255,255,255,0.45);
  --muted2: rgba(255,255,255,0.28);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-2xl: 48px;
  --green: #4ade80;
  --green-dim: rgba(74,222,128,0.55);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-white {
  background: #fff;
  color: #000;
}
.btn-white:hover { background: rgba(255,255,255,0.88); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.btn-border {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
}
.btn-border:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }
.btn-black {
  background: #000;
  color: #fff;
  border: 1px solid rgba(0,0,0,0.15);
}
.btn-black:hover { background: #111; }
.btn-outline-dark {
  background: transparent;
  color: #000;
  border: 1px solid rgba(0,0,0,0.2);
}
.btn-outline-dark:hover { background: rgba(0,0,0,0.05); }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1240px;
  z-index: 100;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.header.scrolled {
  background: rgba(8,8,8,.94);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 58px;
  gap: 32px;
}
.hdr-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.hdr-logo-mark {
  width: 22px;
  height: 22px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hdr-logo:hover .hdr-logo-mark {
  transform: rotate(-12deg) scale(1.08);
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hdr-nav a {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.hdr-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: center;
}
.hdr-nav a:hover { color: #fff; }
.hdr-nav a:hover::after { transform: scaleX(1); }

/* Live dot on deploy button */
.hdr-live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px rgba(74,222,128,0.6);
  flex-shrink: 0;
  animation: tagPulse 2.2s ease-in-out infinite;
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.mob-nav {
  display: none;
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1240px;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}
.mob-nav.open { display: flex; }
.mob-nav .mob-nav-inner { max-width: 500px; width: 100%; margin: 0 auto; }
.mob-nav a { font-size: 16px; color: var(--muted); font-weight: 500; padding: 6px 0; }
.mob-nav a:hover { color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 116px 0 80px;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-top {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.065) 0%, transparent 60%);
}
.bg-glow-br {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 560px;
  height: 420px;
  background: radial-gradient(ellipse at 80% 80%, rgba(74,222,128,0.04) 0%, transparent 65%);
}
.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 25%, rgba(0,0,0,1) 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 25%, rgba(0,0,0,1) 20%, transparent 80%);
}
.bg-lines-h {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero copy */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border-radius: 100px;
  padding: 0;
  margin-bottom: 22px;
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-h1 {
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 24px;
}
.hero-h1-sub {
  color: rgba(255,255,255,0.22);
  display: block;
}
.hero-p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 500;
}
.trust-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* Hero visual (server card) */
.hero-vis {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-mark-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 300px;
  height: 300px;
  max-width: 90%;
  opacity: 0.018;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.6px);
}
.hero-vis > .srv-card,
.hero-vis > .term-card { position: relative; z-index: 1; }
.hero-vis > .ftag { z-index: 2; }

/* ===== SSH TERMINAL CARD ===== */
.term-card {
  background: #090909;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 28px 72px rgba(0,0,0,0.55);
}
.term-card-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.term-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 11px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}
.term-dots { display: flex; gap: 5px; flex-shrink: 0; }
.td { width: 10px; height: 10px; border-radius: 50%; }
.td-r { background: rgba(255,95,87,0.7); }
.td-y { background: rgba(255,189,46,0.7); }
.td-g { background: rgba(40,201,64,0.7); }
.term-title {
  font-size: 11px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: rgba(255,255,255,0.28);
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.term-badge-on {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 4px;
  padding: 2px 6px;
  background: rgba(74,222,128,0.06);
  flex-shrink: 0;
}
.term-body {
  padding: 16px 20px 20px;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  min-height: 272px;
  max-height: 272px;
  overflow-y: auto;
  scrollbar-width: none;
}
.term-body::-webkit-scrollbar { display: none; }
.term-body p { margin: 0; white-space: pre; }
/* Terminal color classes */
.tp  { color: rgba(74,222,128,0.55); }   /* $ prompt */
.tr  { color: var(--green); font-weight: 600; } /* root@host */
.tc  { color: #fff; }                    /* command text */
.to  { color: rgba(255,255,255,0.58); }  /* output */
.tm  { color: rgba(255,255,255,0.28); }  /* muted / system lines */
.tg  { color: var(--green); }            /* green accent */
/* Blinking block cursor */
.term-blink {
  display: inline-block;
  color: rgba(74,222,128,0.85);
  animation: termBlink 1.1s step-end infinite;
}
@keyframes termBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Hero floating stat card */
.hero-stat-float {
  position: absolute;
  bottom: -4%;
  left: -6%;
  background: rgba(18,18,18,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-stat-val {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 4px;
  font-weight: 500;
}

.srv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}
.srv-card-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.srv-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.srv-dots { display: flex; gap: 5px; }
.sd { width: 10px; height: 10px; border-radius: 50%; }
.sd-r { background: rgba(255,95,87,0.7); }
.sd-y { background: rgba(255,189,46,0.7); }
.sd-g { background: rgba(40,201,64,0.7); }
.srv-hostname {
  font-size: 11px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--muted);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.srv-badge-on {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 4px;
  padding: 2px 6px;
  background: rgba(74,222,128,0.06);
}
.srv-rack {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
  background: rgba(0,0,0,0.25);
  border-radius: var(--r-md);
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.05);
}
.srv-unit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.srv-on { opacity: 1; }
.srv-unit-label {
  font-size: 10px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--muted2);
}
.srv-unit-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
  animation: blinkLed 2.5s ease-in-out infinite;
}
.srv-led-off {
  background: rgba(255,255,255,0.12);
  box-shadow: none;
  animation: none;
}
@keyframes blinkLed {
  0%,95%,100% { opacity: 1; }
  97% { opacity: 0.3; }
}

.srv-meters { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.srv-row { display: flex; align-items: center; gap: 10px; }
.srv-lbl { font-size: 11px; font-weight: 600; color: var(--muted); width: 28px; flex-shrink: 0; }
.srv-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.srv-fill {
  height: 100%;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
  transition: width 0.8s ease;
}
.srv-fill-net { background: var(--green-dim); }
.srv-pct { font-size: 10px; color: var(--muted2); width: 36px; text-align: right; flex-shrink: 0; }

.srv-sparkline {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
  margin-bottom: 12px;
}
.srv-sparkline svg { width: 100%; height: 32px; }
.srv-sparkline span {
  font-size: 9px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}
.srv-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
}
.srv-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px rgba(74,222,128,0.5);
  flex-shrink: 0;
}

/* Floating tags */
.ftag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(14,14,14,.82);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 18px 9px 14px;
  white-space: nowrap;
  pointer-events: none;
  animation: floatTag 4s ease-in-out infinite;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.ftag svg { width: 13px; height: 13px; opacity: .75; flex-shrink: 0; }
.ftag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; box-shadow: 0 0 6px rgba(74,222,128,.6); }
.ftag-1 { top: 10%; right: -12%; animation-delay: 0s; }
.ftag-2 { top: 55%; right: -15%; animation-delay: -1.4s; }
.ftag-3 { bottom: 12%; left: -8%; animation-delay: -2.8s; }
@keyframes floatTag {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--muted2);
  width: 20px;
  height: 20px;
  animation: bounceDown 1.8s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 100%; height: 100%; }
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}

/* ===== MARQUEE ===== */
.mq-bar {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.mq-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
  padding: 14px 0;
}
.mq-track span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted2);
  padding: 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.mq-track .mdot { color: var(--border); padding: 0 2px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== STATS SECTION ===== */
.stats-sec {
  padding: 0;
  background: var(--bg);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.stat-unit-sm {
  font-size: 0.45em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
  opacity: 0.6;
}
.stat-lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}
.stat-sep {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SECTIONS BASE ===== */
.sec {
  padding: 120px 0;
}
.sec-hd {
  text-align: center;
  margin-bottom: 64px;
}
.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  position: relative;
  padding: 0 24px;
}
.sec-label::before, .sec-label::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: var(--border);
}
.sec-label::before { left: 0; }
.sec-label::after { right: 0; }
.sec-h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 18px;
}
.sec-p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== FEATURE CARDS ===== */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.fcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.fcard:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.fcard-spot {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 260px;
  height: 200px;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.fcard-wide {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.fcard-spot-wide {
  width: 400px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  height: 260px;
}
.fcpill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.fcard-h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.fcard-p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.fcard-art {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  opacity: 0.6;
}
.fcard-art svg { width: 100%; height: 100%; }

.coins-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.coin {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  transition: border-color 0.2s, transform 0.2s;
}
.coin:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.2); }
.coin-btc { color: #f7931a; border-color: rgba(247,147,26,0.2); background: rgba(247,147,26,0.06); }
.coin-xmr { color: #ff6600; border-color: rgba(255,102,0,0.2); background: rgba(255,102,0,0.06); }
.coin-usdt { color: #26a17b; border-color: rgba(38,161,123,0.2); background: rgba(38,161,123,0.06); }
.coin-eth { color: #627eea; border-color: rgba(98,126,234,0.2); background: rgba(98,126,234,0.06); }
.coin-ltc { color: #bfbbbb; border-color: rgba(191,187,187,0.2); background: rgba(191,187,187,0.06); }
.coin svg { width: 72%; height: 72%; }

/* ===== HOW IT WORKS STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.step-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.step-num-bg {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.035);
  position: absolute;
  top: 8px;
  right: 16px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.step-ico {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}
.step-ico svg { width: 20px; height: 20px; }
.step-h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-top: 72px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.step-arrow svg { width: 40px; height: 20px; }

/* ===== INFRASTRUCTURE SECTION ===== */
.infra-sec {
  padding: 120px 0;
  background: #0c0c0c;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
}
.infra-sec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.infra-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.infra-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.infra-copy .sec-h2 {
  text-align: left;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
}
.infra-copy .sec-label { text-align: left; display: block; padding: 0; }
.infra-copy .sec-label::before, .infra-copy .sec-label::after { display: none; }
.infra-copy .sec-p {
  text-align: left;
  margin: 0 0 40px;
  max-width: 440px;
}
.infra-specs {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100%;
}
.infra-s {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  transition: background 0.2s;
}
.infra-s:last-child { border-right: none; }
.infra-s:hover { background: rgba(255,255,255,0.03); }
.infra-s-val {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.infra-s-lbl {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.infra-vis {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.net-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 48px rgba(74,222,128,0.1));
}
/* Ping latency card */
.infra-ping-card {
  position: absolute;
  top: 8%;
  right: -2%;
  background: rgba(10,10,10,0.88);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 14px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  min-width: 146px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.ping-card-hd {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border2);
}
.ping-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 3px 0;
}
.ping-node {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  color: var(--muted);
}
.ping-val {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  font-weight: 700;
}
.ping-good { color: var(--green); }
.ping-med { color: #f59e0b; }

/* ===== PRICING ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.plan-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.plan-card-spot {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.plan-feat {
  background: #fff;
  border-color: #fff;
  color: #000;
  transform: scale(1.03);
}
.plan-feat:hover { transform: scale(1.03) translateY(-2px); border-color: #fff; }
.plan-pop-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.plan-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.plan-feat .plan-tier { color: rgba(0,0,0,0.5); }
.plan-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 28px;
}
.plan-mo {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.5;
}
.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--muted);
}
.plan-feat .plan-feats { color: rgba(0,0,0,0.65); }
.plan-feats li { display: flex; align-items: center; gap: 8px; }
.chk {
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}
.chk-inv {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.5);
}

/* ===== ADVANTAGES ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.adv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.adv-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.adv-card-spot {
  position: absolute;
  top: -40px;
  left: -20px;
  width: 200px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.adv-ico {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.55);
}
.adv-ico svg { width: 18px; height: 18px; }
.adv-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.adv-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {}
.faq-q {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 16px;
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
}
.faq-q:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.faq-q[aria-expanded="true"] {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}
.faq-arr {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"] .faq-arr { transform: rotate(180deg); }
.faq-a {
  display: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: none;
  border-bottom-left-radius: var(--r-lg);
  border-bottom-right-radius: var(--r-lg);
  padding: 20px 24px;
}
.faq-a.open { display: block; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ===== CTA ===== */
.cta-wrap { padding: 120px 0; }
.cta-block {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 80px 60px;
  text-align: center;
  color: #000;
  position: relative;
  overflow: hidden;
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.cta-h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: #000;
}
.cta-p {
  font-size: 16px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 32px;
  position: relative;
}
.footer .container {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 48px 52px 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
}
.footer-logo img {
  height: 76px;
  width: auto;
  display: block;
  opacity: 0.96;
  transition: opacity 0.25s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-logo:hover img { opacity: 1; transform: translateY(-2px); }
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  margin-top: -10px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.fsoc-link {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.fsoc-link:hover {
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.fsoc-link svg { width: 15px; height: 15px; fill: currentColor; }
.footer-brand p {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted2);
}
.fstatus-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px rgba(74,222,128,0.5);
  flex-shrink: 0;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-hd {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 500;
}
.footer-col a:hover { color: #fff; }

/* Footer bottom bar */
.footer-bottom {
  margin-top: 48px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-copy {
  font-size: 12px;
  color: var(--muted2);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--muted2);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--muted); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .ftag { display: none; }
  .infra-inner { grid-template-columns: 1fr; gap: 48px; }
  .infra-copy .sec-h2 { text-align: center; }
  .infra-copy .sec-label { text-align: center; display: inline-block; }
  .infra-copy .sec-p { text-align: center; margin: 0 auto 40px; }
  .infra-specs { justify-content: center; }
  .infra-copy .btn { align-self: center; display: inline-flex; }
  .infra-vis { justify-content: center; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-feat { transform: none; }
  .plan-feat:hover { transform: translateY(-2px); }
}

@media (max-width: 768px) {
  .hdr-nav, .hdr-actions { display: none; }
  .burger { display: flex; }
  .header { top: 10px; width: calc(100% - 24px); border-radius: 12px; }
  .hdr-inner { height: 52px; padding: 0 16px; }
  .hero { padding: 110px 0 60px; }
  .hero-h1 { font-size: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-btns { justify-content: center; }
  .hero-copy .hero-trust { justify-content: center; }
  .hero-copy .hero-p { margin: 0 auto 36px; }
  .hero-copy .hero-tag { margin: 0 auto 28px; }
  .stats-row { flex-direction: column; gap: 40px; padding: 48px 0; }
  .stat-sep { width: 60px; height: 1px; }
  .feat-grid { grid-template-columns: 1fr; }
  .fcard-wide { grid-column: span 1; flex-direction: column; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .adv-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 48px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer .container { padding: 32px 24px 28px; border-radius: 14px; }
  .sec { padding: 80px 0; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-sec { padding-top: 60px; }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.quote-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.quote-card-spot {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 240px;
  height: 200px;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.quote-mark {
  width: 26px;
  height: 26px;
  color: rgba(255,255,255,0.18);
  margin-bottom: 18px;
}
.quote-card blockquote p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.quote-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border2);
}
.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.quote-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.quote-role {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

/* ===== CTA MARK DECORATIONS ===== */
.cta-mark {
  position: absolute;
  width: 110px;
  height: 110px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  animation: ctaMarkFloat 9s ease-in-out infinite;
}
.cta-mark-l {
  top: 28px;
  left: 36px;
  transform: rotate(-18deg);
}
.cta-mark-r {
  bottom: 28px;
  right: 36px;
  transform: rotate(162deg);
  animation-delay: -4.5s;
}
@keyframes ctaMarkFloat {
  0%, 100% { transform: rotate(-18deg) translateY(0); }
  50% { transform: rotate(-18deg) translateY(-8px); }
}
.cta-mark-r { animation-name: ctaMarkFloatR; }
@keyframes ctaMarkFloatR {
  0%, 100% { transform: rotate(162deg) translateY(0); }
  50% { transform: rotate(162deg) translateY(-8px); }
}

/* ===== BRAND DIVIDER ===== */
.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 0 4px;
  opacity: 0.7;
}
.brand-divider-line {
  flex: 0 1 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
}
.brand-divider-mark {
  width: 20px;
  height: 20px;
  opacity: 0.55;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.08));
}

/* ===== RESPONSIVE EXTENSIONS ===== */
@media (max-width: 1024px) {
  .quotes-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .hero-mark-watermark { width: 360px; height: 360px; opacity: 0.02; }
  .cta-mark { width: 80px; height: 80px; }
  .footer-logo img { height: 60px; }
  .hero-stat-float { display: none; }
  .infra-ping-card { display: none; }
}
@media (max-width: 768px) {
  .cta-mark { width: 60px; height: 60px; }
  .cta-mark-l { top: 14px; left: 14px; }
  .cta-mark-r { bottom: 14px; right: 14px; }
  .footer-logo img { height: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .infra-specs { flex-wrap: wrap; }
  .infra-s { flex: 1 1 45%; border-bottom: 1px solid var(--border); }
  .infra-s:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================================
   LIQUID GLASS — iOS 26 Design System
   Specular highlights, frosted surfaces, refractive depth
   ============================================================ */

/* Subpage text variable aliases */
:root {
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.65);
  --text-dimmer: rgba(255,255,255,0.32);
  --text-muted: rgba(255,255,255,0.52);

  /* Glass tokens */
  --gl-bg-dark:  rgba(255,255,255,0.055);
  --gl-bg-mid:   rgba(255,255,255,0.075);
  --gl-border:   rgba(255,255,255,0.14);
  --gl-blur:     blur(36px) saturate(160%);
  --gl-blur-sm:  blur(20px) saturate(150%);
  /* Specular highlight (bright top edge) */
  --gl-spec:     inset 0 1px 0 rgba(255,255,255,0.24);
  /* Bottom counter-shadow */
  --gl-floor:    inset 0 -1px 0 rgba(0,0,0,0.18);
  /* Side edge catches */
  --gl-sides:    inset 1px 0 0 rgba(255,255,255,0.06), inset -1px 0 0 rgba(255,255,255,0.04);
  /* Outer depth shadow */
  --gl-shadow:   0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.15);
  --gl-shadow-lg: 0 16px 56px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2);
}

/* Subtle ambient background blobs — give blur something to diffuse */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 15% 20%, rgba(74,222,128,0.025) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(120,80,255,0.018) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,255,255,0.01) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- HEADER — island override ---- */
.header {
  background: rgba(8,8,8,.85);
  border-color: rgba(255,255,255,0.11);
}
.header.scrolled {
  background: rgba(6,6,6,.95);
  border-color: rgba(255,255,255,0.15);
}

/* Mobile nav — glass sheet */
.mob-nav {
  background: rgba(7,7,7,0.68);
  backdrop-filter: var(--gl-blur);
  -webkit-backdrop-filter: var(--gl-blur);
  border-color: var(--gl-border);
  box-shadow: var(--gl-spec), var(--gl-floor), 0 20px 60px rgba(0,0,0,0.55);
}

/* ---- BUTTONS — glass morphism ---- */
.btn-ghost {
  background: rgba(255,255,255,0.07);
  backdrop-filter: var(--gl-blur-sm);
  -webkit-backdrop-filter: var(--gl-blur-sm);
  border-color: rgba(255,255,255,0.16);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.2), inset 0 -0.5px 0 rgba(0,0,0,0.12);
  color: rgba(255,255,255,0.8);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.24);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.28), inset 0 -0.5px 0 rgba(0,0,0,0.12);
  color: #fff;
}
.btn-border {
  background: rgba(255,255,255,0.055);
  backdrop-filter: var(--gl-blur-sm);
  -webkit-backdrop-filter: var(--gl-blur-sm);
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.18), inset 0 -0.5px 0 rgba(0,0,0,0.1);
}
.btn-border:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.26), inset 0 -0.5px 0 rgba(0,0,0,0.1);
}
/* White button gets glass shine too */
.btn-white {
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(0,0,0,0.1),
    0 4px 16px rgba(255,255,255,0.14),
    0 1px 4px rgba(0,0,0,0.15);
}
.btn-white:hover {
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 6px 20px rgba(255,255,255,0.2),
    0 2px 6px rgba(0,0,0,0.2);
}

/* ---- HERO TAG PILL ---- */
.hero-tag {
  background: rgba(255,255,255,0.07);
  backdrop-filter: var(--gl-blur-sm);
  -webkit-backdrop-filter: var(--gl-blur-sm);
  border-color: rgba(255,255,255,0.16);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.22), inset 0 -0.5px 0 rgba(0,0,0,0.1);
}

/* ---- FLOATING TAGS ---- */
.ftag {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -0.5px 0 rgba(0,0,0,0.12),
    0 4px 20px rgba(0,0,0,0.32);
}

/* ---- HERO STAT FLOAT ---- */
.hero-stat-float {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-color: rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -0.5px 0 rgba(0,0,0,0.15),
    0 12px 40px rgba(0,0,0,0.48);
}

/* ---- TERMINAL CARD ---- */
.term-card {
  background: rgba(4,4,4,0.72);
  backdrop-filter: var(--gl-blur);
  -webkit-backdrop-filter: var(--gl-blur);
  border-color: rgba(255,255,255,0.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -0.5px 0 rgba(0,0,0,0.2),
    inset 1px 0 0 rgba(255,255,255,0.05),
    inset -1px 0 0 rgba(255,255,255,0.03),
    0 28px 80px rgba(0,0,0,0.6),
    0 0 0 0.5px rgba(255,255,255,0.04);
}
.term-top {
  background: rgba(255,255,255,0.028);
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
}

/* ---- FEATURE CARDS ---- */
.fcard {
  background: linear-gradient(158deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.035) 50%, rgba(0,0,0,0.05) 100%);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  border-color: rgba(255,255,255,0.11);
  box-shadow: var(--gl-spec), var(--gl-floor), var(--gl-sides), var(--gl-shadow);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.fcard:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    var(--gl-floor), var(--gl-sides),
    0 12px 40px rgba(0,0,0,0.38);
  transform: translateY(-2px);
}

/* ---- STEP CARDS ---- */
.step-card {
  background: linear-gradient(158deg, rgba(255,255,255,0.065) 0%, rgba(255,255,255,0.03) 50%, rgba(0,0,0,0.04) 100%);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-color: rgba(255,255,255,0.1);
  box-shadow: var(--gl-spec), var(--gl-floor), var(--gl-sides), var(--gl-shadow);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  border-color: rgba(255,255,255,0.19);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    var(--gl-floor), var(--gl-sides),
    0 12px 40px rgba(0,0,0,0.38);
  transform: translateY(-2px);
}
.step-ico {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.22);
}

/* ---- PRICING CARDS — dark glass ---- */
.plan-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.04) 45%, rgba(0,0,0,0.06) 100%);
  backdrop-filter: blur(32px) saturate(150%);
  -webkit-backdrop-filter: blur(32px) saturate(150%);
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    inset 1px 0 0 rgba(255,255,255,0.07),
    inset -1px 0 0 rgba(255,255,255,0.05),
    0 8px 32px rgba(0,0,0,0.32);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.plan-card:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    inset 1px 0 0 rgba(255,255,255,0.1),
    inset -1px 0 0 rgba(255,255,255,0.07),
    0 16px 48px rgba(0,0,0,0.45);
}

/* Featured plan — bright liquid glass (iOS 26 "pill" style) */
.plan-feat {
  background: linear-gradient(160deg, rgba(255,255,255,0.98) 0%, rgba(242,242,242,0.96) 100%);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-color: rgba(255,255,255,0.85);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,0.1),
    inset 1px 0 0 rgba(255,255,255,0.8),
    inset -1px 0 0 rgba(255,255,255,0.6),
    0 0 0 1px rgba(255,255,255,0.1),
    0 16px 56px rgba(255,255,255,0.2),
    0 4px 16px rgba(0,0,0,0.28);
}
.plan-feat:hover {
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,0.1),
    inset 1px 0 0 rgba(255,255,255,0.8),
    inset -1px 0 0 rgba(255,255,255,0.6),
    0 0 0 1px rgba(255,255,255,0.12),
    0 22px 64px rgba(255,255,255,0.26),
    0 6px 20px rgba(0,0,0,0.32);
}

/* ---- ADVANTAGE CARDS ---- */
.adv-card {
  background: linear-gradient(158deg, rgba(255,255,255,0.065) 0%, rgba(255,255,255,0.03) 50%, rgba(0,0,0,0.04) 100%);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  border-color: rgba(255,255,255,0.1);
  box-shadow: var(--gl-spec), var(--gl-floor), var(--gl-sides), var(--gl-shadow);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.adv-card:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    var(--gl-floor), var(--gl-sides),
    0 12px 40px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.adv-ico {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.22);
}

/* ---- FAQ ITEMS ---- */
.faq-q {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  border-color: rgba(255,255,255,0.1);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.14);
}
.faq-q:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.17);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.22);
}
.faq-q[aria-expanded="true"] {
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.17);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.22);
}
.faq-a {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.13);
}

/* ---- INFRA PING CARD ---- */
.infra-ping-card {
  background: rgba(6,6,6,0.62);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -0.5px 0 rgba(0,0,0,0.15),
    0 12px 36px rgba(0,0,0,0.5);
}

/* ---- INFRA SPECS BAR ---- */
.infra-specs {
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.1);
}
.infra-s { background: transparent; }
.infra-s:hover { background: rgba(255,255,255,0.04); }

/* ---- FOOTER SOCIAL LINKS ---- */
.fsoc-link {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.16);
}
.fsoc-link:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}

/* ---- FOOTER STATUS INDICATOR ---- */
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 12px;
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.14);
  margin-top: 4px;
}

/* ---- GLASS SHIMMER on hover ---- */
@keyframes glassShimmer {
  from { background-position: -200% center; }
  to   { background-position:  200% center; }
}
.plan-card::after,
.adv-card::after,
.fcard::after,
.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(255,255,255,0.05) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  animation: glassShimmer 3s linear infinite;
}
.plan-card:hover::after,
.adv-card:hover::after,
.fcard:hover::after,
.step-card:hover::after { opacity: 1; }

/* ---- MARQUEE BAR — subtle glass tint ---- */
.mq-bar {
  background: rgba(255,255,255,0.018);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,0.07);
}

/* Bump cache version for next load */


/* ===================================================== */
/* === v10: Shared UI for new pages (vds, network,    === */
/* ===       status, support, referral)                === */
/* ===================================================== */

/* ---- Cookie consent banner ---- */
.cookie-banner{
  position:fixed; left:24px; right:24px; bottom:24px; z-index:200;
  display:none; gap:18px; align-items:center; flex-wrap:wrap;
  max-width:880px; margin:0 auto;
  padding:14px 18px; border-radius:18px;
  background:rgba(14,14,14,.86);
  border:1px solid rgba(255,255,255,.09);
  backdrop-filter:blur(28px); -webkit-backdrop-filter:blur(28px);
  box-shadow:0 12px 48px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  transform:translateY(140%); transition:transform .5s cubic-bezier(.2,.9,.2,1);
}
.cookie-banner.show{display:flex; transform:translateY(0);}
.cookie-banner p{font-size:13px; color:rgba(255,255,255,.7); line-height:1.6; margin:0; flex:1; min-width:240px;}
.cookie-banner p a{color:#fff; text-decoration:underline; text-underline-offset:3px;}
.cookie-banner .cb-actions{display:flex; gap:8px;}
.cookie-banner .btn{padding:9px 18px; font-size:13px;}

/* ---- Scroll-to-top button ---- */
.scroll-top{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:44px; height:44px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(14,14,14,.78); color:#fff;
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  cursor:pointer;
  opacity:0; pointer-events:none;
  transform:translateY(20px) scale(.85);
  transition:opacity .3s ease, transform .3s cubic-bezier(.2,.9,.2,1), background .2s;
  box-shadow:0 6px 24px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.07);
}
.scroll-top.show{opacity:1; pointer-events:auto; transform:translateY(0) scale(1);}
.scroll-top:hover{background:rgba(28,28,28,.92); border-color:rgba(255,255,255,.18);}
.scroll-top svg{width:18px; height:18px;}

/* ---- Region tabs (used on VDS / Dedicated) ---- */
.region-tabs{
  display:inline-flex; gap:4px; padding:4px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:100px;
  margin-bottom:32px;
}
.region-tab{
  padding:8px 18px; border-radius:100px;
  font-size:13px; font-weight:600;
  color:rgba(255,255,255,.55);
  cursor:pointer; background:transparent; border:none;
  display:inline-flex; align-items:center; gap:8px;
  transition:color .2s, background .2s;
}
.region-tab .flag{font-size:14px; line-height:1;}
.region-tab:hover{color:#fff;}
.region-tab.active{background:rgba(255,255,255,.08); color:#fff;}
.region-pane{display:none;}
.region-pane.active{display:block; animation:fadeUp .35s ease;}
@keyframes fadeUp{from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);}}

/* ---- Generic plan grid (reused by /vds) ---- */
.plan-grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:14px;}
@media(max-width:1080px){.plan-grid-4{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.plan-grid-4{grid-template-columns:1fr;}}
.plan-mini{
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:24px 22px; position:relative; overflow:hidden;
  transition:border-color .2s, transform .2s;
}
.plan-mini:hover{border-color:rgba(255,255,255,.16); transform:translateY(-2px);}
.plan-mini.featured{border-color:rgba(74,222,128,.28); background:#131613;}
.plan-mini .pm-badge{position:absolute; top:14px; right:14px; font-size:10px; font-weight:700; color:var(--green); background:rgba(74,222,128,.1); border:1px solid rgba(74,222,128,.22); border-radius:100px; padding:3px 9px; letter-spacing:.06em; text-transform:uppercase;}
.pm-name{font-size:13px; font-weight:600; color:var(--text-dim, rgba(255,255,255,.55)); text-transform:uppercase; letter-spacing:.06em;}
.pm-price{display:flex; align-items:baseline; gap:4px; margin:6px 0 18px;}
.pm-price .num{font-size:34px; font-weight:800; letter-spacing:-.02em; color:#fff;}
.pm-price .per{font-size:13px; color:rgba(255,255,255,.45);}
.pm-specs{list-style:none; margin:0 0 20px; padding:0; display:flex; flex-direction:column; gap:9px;}
.pm-specs li{font-size:13px; color:rgba(255,255,255,.75); display:flex; align-items:center; gap:9px;}
.pm-specs li svg{width:14px; height:14px; flex-shrink:0; color:rgba(255,255,255,.4);}
.pm-cta{display:flex; gap:8px;}
.pm-cta .btn{flex:1; justify-content:center; padding:10px 14px; font-size:13px;}

/* ---- Status page dashboard ---- */
.status-hero-card{
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:36px 36px; margin-top:8px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.status-hero-card::before{content:''; position:absolute; inset:0; background:radial-gradient(ellipse at top right, rgba(74,222,128,.08), transparent 60%); pointer-events:none;}
.status-state{display:flex; align-items:center; gap:16px; position:relative;}
.status-pulse{width:14px; height:14px; border-radius:50%; background:var(--green); position:relative; box-shadow:0 0 18px rgba(74,222,128,.6);}
.status-pulse::after{content:''; position:absolute; inset:-6px; border-radius:50%; border:2px solid var(--green); animation:pulseRing 1.8s ease-out infinite;}
@keyframes pulseRing{0%{transform:scale(.7); opacity:.9;} 100%{transform:scale(1.6); opacity:0;}}
.status-state .st-h{font-size:24px; font-weight:800; color:#fff; letter-spacing:-.01em;}
.status-state .st-sub{font-size:13px; color:rgba(255,255,255,.5); margin-top:2px;}
.status-clock{font-family:'JetBrains Mono', ui-monospace, monospace; font-size:14px; color:rgba(255,255,255,.6); display:flex; flex-direction:column; align-items:flex-end; gap:2px; position:relative;}
.status-clock .clk-time{font-size:22px; font-weight:700; color:#fff;}

.status-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:24px;}
@media(max-width:780px){.status-grid{grid-template-columns:1fr;}}
.svc-card{background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:22px 24px;}
.svc-head{display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:14px;}
.svc-name{font-size:15px; font-weight:700; color:#fff;}
.svc-name .svc-sub{display:block; font-size:12px; font-weight:400; color:rgba(255,255,255,.45); margin-top:2px;}
.svc-pill{display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; padding:4px 10px; border-radius:100px; background:rgba(74,222,128,.1); color:var(--green); border:1px solid rgba(74,222,128,.2);}
.svc-pill.degraded{background:rgba(250,204,21,.1); color:#facc15; border-color:rgba(250,204,21,.2);}
.svc-pill .dot{width:6px; height:6px; border-radius:50%; background:currentColor; box-shadow:0 0 8px currentColor;}
.svc-bars{display:flex; gap:3px; align-items:flex-end; height:34px;}
.svc-bar{flex:1; min-width:2px; background:var(--green); border-radius:2px; opacity:.85; transition:opacity .2s, transform .2s;}
.svc-bar:hover{opacity:1; transform:scaleY(1.06);}
.svc-bar.warn{background:#facc15;}
.svc-bar.err{background:#ef4444;}
.svc-foot{display:flex; align-items:center; justify-content:space-between; font-size:11px; color:rgba(255,255,255,.4); margin-top:10px;}
.svc-foot .svc-up{color:rgba(255,255,255,.7); font-weight:600;}

.metric-row{display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:24px;}
@media(max-width:780px){.metric-row{grid-template-columns:repeat(2,1fr);}}
.metric-card{background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:20px;}
.metric-card .mc-l{font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.45); font-weight:600;}
.metric-card .mc-v{font-size:26px; font-weight:800; color:#fff; letter-spacing:-.02em; margin-top:4px;}
.metric-card .mc-v small{font-size:13px; font-weight:500; color:rgba(255,255,255,.45); margin-left:4px;}
.metric-card .mc-bar{height:4px; border-radius:100px; background:rgba(255,255,255,.06); margin-top:14px; overflow:hidden;}
.metric-card .mc-bar i{display:block; height:100%; background:linear-gradient(90deg, var(--green), rgba(74,222,128,.5));}

.incident-list{display:flex; flex-direction:column; gap:8px; margin-top:24px;}
.inc{background:var(--surface); border:1px solid var(--border); border-radius:var(--r-md); padding:18px 22px; display:flex; align-items:flex-start; gap:14px;}
.inc-dot{width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.25); margin-top:7px; flex-shrink:0;}
.inc-dot.ok{background:var(--green); box-shadow:0 0 8px var(--green);}
.inc-body{flex:1;}
.inc-title{font-size:14px; font-weight:600; color:#fff;}
.inc-meta{font-size:12px; color:rgba(255,255,255,.4); margin-top:3px;}
.inc-desc{font-size:13px; color:rgba(255,255,255,.6); margin-top:8px; line-height:1.6;}

/* ---- Network/Datacenter map ---- */
.dc-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:48px;}
@media(max-width:880px){.dc-grid{grid-template-columns:1fr;}}
.dc-card{background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); padding:28px 26px; position:relative; overflow:hidden;}
.dc-card .dc-flag{font-size:38px; line-height:1;}
.dc-card .dc-loc{font-size:11px; font-weight:700; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.1em; margin-top:14px;}
.dc-card .dc-city{font-size:22px; font-weight:800; color:#fff; letter-spacing:-.01em; margin-top:4px;}
.dc-card .dc-stats{display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:18px; padding-top:18px; border-top:1px solid var(--border);}
.dc-stats .ds-l{font-size:10px; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.08em;}
.dc-stats .ds-v{font-size:15px; color:#fff; font-weight:700; margin-top:2px;}
.dc-status{position:absolute; top:24px; right:24px; display:inline-flex; align-items:center; gap:6px; font-size:11px; color:var(--green); font-weight:600; text-transform:uppercase; letter-spacing:.06em;}
.dc-status .led{width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 8px var(--green);}

/* ---- World "map" (CSS only) ---- */
.world-map{
  position:relative; aspect-ratio:2/1; max-width:920px; margin:48px auto 0;
  border-radius:var(--r-xl); overflow:hidden; border:1px solid var(--border);
  background:
    radial-gradient(circle at 20% 40%, rgba(74,222,128,.05), transparent 30%),
    radial-gradient(circle at 70% 50%, rgba(98,126,234,.05), transparent 30%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 28px),
    radial-gradient(ellipse at center, #0f0f0f 0%, #080808 70%);
}
.wm-pin{position:absolute; transform:translate(-50%,-50%);}
.wm-pin .pin-core{width:12px; height:12px; border-radius:50%; background:var(--green); box-shadow:0 0 14px var(--green);}
.wm-pin .pin-ring{position:absolute; inset:-8px; border-radius:50%; border:2px solid var(--green); animation:pulseRing 2.4s ease-out infinite;}
.wm-pin .pin-lbl{position:absolute; top:24px; left:50%; transform:translateX(-50%); font-size:11px; font-weight:700; color:#fff; background:rgba(0,0,0,.7); border:1px solid var(--border); padding:4px 10px; border-radius:100px; white-space:nowrap;}

/* ---- Support / Contact cards ---- */
.contact-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:48px;}
@media(max-width:880px){.contact-grid{grid-template-columns:1fr;}}
.contact-card{background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); padding:32px 28px; transition:border-color .2s, transform .2s; position:relative; overflow:hidden;}
.contact-card:hover{border-color:rgba(255,255,255,.16); transform:translateY(-3px);}
.contact-ico{width:48px; height:48px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.05); color:#fff; margin-bottom:18px;}
.contact-ico svg{width:24px; height:24px;}
.contact-h{font-size:18px; font-weight:700; color:#fff; margin-bottom:6px;}
.contact-p{font-size:14px; color:rgba(255,255,255,.55); line-height:1.6; margin-bottom:18px;}
.contact-meta{display:inline-flex; align-items:center; gap:8px; font-size:12px; color:var(--green); font-weight:600;}
.contact-meta .dot{width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 8px var(--green);}

/* ---- Referral / pricing tier table ---- */
.ref-tier-table{margin-top:48px; border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden;}
.ref-tier-row{display:grid; grid-template-columns:1fr 1.5fr 1fr 1fr; padding:18px 24px; border-bottom:1px solid var(--border); align-items:center; gap:12px;}
.ref-tier-row:last-child{border-bottom:none;}
.ref-tier-row.head{background:rgba(255,255,255,.03); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.45); font-weight:700;}
.ref-tier-row .tier-name{display:flex; align-items:center; gap:10px; font-weight:700; color:#fff;}
.ref-tier-row .tier-medal{width:28px; height:28px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:13px; font-weight:800;}
.tier-medal.bronze{background:rgba(180,121,69,.15); color:#cd7f32; border:1px solid rgba(180,121,69,.3);}
.tier-medal.silver{background:rgba(192,192,192,.12); color:#c0c0c0; border:1px solid rgba(192,192,192,.25);}
.tier-medal.gold{background:rgba(255,215,0,.12); color:#ffd700; border:1px solid rgba(255,215,0,.25);}
.tier-medal.diamond{background:rgba(98,126,234,.12); color:#9eb2ff; border:1px solid rgba(98,126,234,.3);}
.ref-tier-row .pct{font-size:22px; font-weight:800; color:#fff; letter-spacing:-.01em;}
@media(max-width:780px){.ref-tier-row{grid-template-columns:1fr 1fr; font-size:13px;} .ref-tier-row .req{display:none;}}

/* ---- Steps numbered ---- */
.num-steps{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:48px;}
@media(max-width:880px){.num-steps{grid-template-columns:1fr;}}
.num-step{background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); padding:32px 28px; position:relative;}
.num-step .ns-num{font-size:56px; font-weight:900; letter-spacing:-.04em; line-height:1; color:transparent; -webkit-text-stroke:1.5px rgba(255,255,255,.12); margin-bottom:18px;}
.num-step .ns-h{font-size:18px; font-weight:700; color:#fff; margin-bottom:8px;}
.num-step .ns-p{font-size:14px; color:rgba(255,255,255,.55); line-height:1.65;}

/* ---- Small util ---- */
.kbd{font-family:'JetBrains Mono', ui-monospace, monospace; font-size:11px; padding:3px 7px; background:rgba(255,255,255,.06); border:1px solid var(--border); border-radius:6px; color:rgba(255,255,255,.7);}
.copy-row{display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.03); border:1px solid var(--border); border-radius:100px; padding:6px 8px 6px 16px; font-family:'JetBrains Mono', ui-monospace, monospace; font-size:13px; color:rgba(255,255,255,.8);}
.copy-row button{background:rgba(255,255,255,.08); color:#fff; border:none; border-radius:100px; padding:5px 12px; font-size:11px; font-weight:600; cursor:pointer; text-transform:uppercase; letter-spacing:.06em;}
.copy-row button:hover{background:rgba(255,255,255,.14);}
.copy-row button.copied{background:var(--green); color:#000;}

/* Ensure --text fallbacks for older pages */
:root{--text:#fff; --text-dim:rgba(255,255,255,.55); --text-muted:rgba(255,255,255,.7); --text-dimmer:rgba(255,255,255,.35);}

/* ===== HERO ENHANCEMENTS v11 ===== */
.hero-feat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: background .2s, border-color .2s, color .2s;
}
.hero-feat-pill:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
}
.hero-feat-pill svg { width: 11px; height: 11px; opacity: .65; flex-shrink: 0; }

/* Deployment notification floating card */
.hero-deploy-notif {
  position: absolute;
  top: -2%;
  left: -8%;
  background: rgba(12,12,12,.88);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 8px 36px rgba(0,0,0,.5);
  animation: floatTag 5s ease-in-out infinite;
  animation-delay: -2.2s;
}
.hdn-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.hdn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(74,222,128,.7);
  flex-shrink: 0;
  animation: tagPulse 2s ease-in-out infinite;
}
.hdn-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* Hero stat bar */
.hero-stat-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.hero-stat-bar i {
  display: block;
  height: 100%;
  width: 74%;
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  border-radius: 2px;
}

/* ===== HERO META STRIP ===== */
.hero-meta-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hms-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  background: rgba(255,255,255,.025);
}
.hms-item + .hms-item {
  border-left: 1px solid rgba(255,255,255,.07);
}
.hms-v {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}
.hms-l {
  font-size: 11px;
  color: rgba(255,255,255,.38);
  font-weight: 500;
  white-space: nowrap;
}

/* Hero hdr-line separator */
.hero-hdr-line {
  display: block;
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,.18);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Mobile header adjustments */
@media (max-width: 768px) {
  .mob-nav { top: 78px; width: calc(100% - 24px); }
  .hero { padding: 96px 0 60px; }
  .hero-meta-strip { display: none; }
  .hero-feat-strip { display: none; }
}
