/* ════════════════════════════════════
   index.html — Hlavní stránka
════════════════════════════════════ */

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 60px 80px;
}

/* Spawn screenshot background */
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.30) saturate(1.02) contrast(1.03);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    /* radial vignette to keep edges dark */
    radial-gradient(circle at 30% 50%,
      transparent 0%,
      rgba(6,9,14,0.58) 48%,
      rgba(6,9,14,0.93) 100%),
    /* horizontal gradient — darker on the left for text readability */
    linear-gradient(90deg,
      rgba(6,9,14,0.97) 0%,
      rgba(6,9,14,0.86) 35%,
      rgba(6,9,14,0.62) 65%,
      rgba(6,9,14,0.72) 100%),
    /* bottom fade into next section */
    linear-gradient(180deg,
      rgba(6,9,14,0.10) 0%,
      rgba(6,9,14,0.34) 60%,
      rgba(6,9,14,0.94) 100%);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridDrift 25s linear infinite;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* gold accent shimmer over the right side */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: linear-gradient(135deg,
    transparent, rgba(245,166,35,0.07) 50%, transparent);
  transform: skewX(-8deg);
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════
   HERO LOGO (right side)
════════════════════════════════════ */
.hero-logo-wrap {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 32vw, 480px);
  aspect-ratio: 1 / 1;
  z-index: 500;
  pointer-events: none;
  animation: logoFup 1.2s 0.4s ease both, logoFloat 6s 1.6s ease-in-out infinite;
}

@keyframes logoFup {
  from { opacity: 0; transform: translateY(-50%) scale(0.85); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 12px)); }
}

/* Inner main glow — closest to the logo, brightest */
.hero-logo-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(245,166,35,0.45) 0%,
    rgba(245,166,35,0.22) 25%,
    rgba(245,166,35,0.08) 50%,
    transparent 70%);
  filter: blur(40px);
  animation: logoGlowPulse 3s ease-in-out infinite;
}
@keyframes logoGlowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}

/* Outer halo — wider, softer, slower */
.hero-logo-glow-2 {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(255,209,102,0.18) 0%,
    rgba(245,166,35,0.10) 20%,
    rgba(245,166,35,0.04) 45%,
    transparent 65%);
  filter: blur(50px);
  animation: logoGlowPulse2 5s ease-in-out infinite;
}
@keyframes logoGlowPulse2 {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.12); }
}

/* Orbital rings */
.hero-logo-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.18);
}
.hl-ring-1 {
  inset: -8%;
  border-color: rgba(245,166,35,0.20);
  border-style: dashed;
  animation: ringSpin 32s linear infinite;
}
.hl-ring-2 {
  inset: -22%;
  border-color: rgba(245,166,35,0.10);
  animation: ringSpin 50s linear infinite reverse;
}
.hl-ring-3 {
  inset: -38%;
  border: 1px dashed rgba(245,166,35,0.06);
  animation: ringSpin 70s linear infinite;
}
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* The logo itself */
.hero-logo-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  z-index: 1;
}

/* Diagonal shine sweep across the logo 
.hero-logo-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255,255,255,0.12) 48%,
    rgba(255,209,102,0.18) 50%,
    rgba(255,255,255,0.12) 52%,
    transparent 70%);
  mix-blend-mode: overlay;
  opacity: 0;
  animation: logoShimmer 6s 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes logoShimmer {
  0%, 88%, 100% { opacity: 0; transform: translateX(-30%); }
  92%           { opacity: 1; transform: translateX(0%); }
  96%           { opacity: 0; transform: translateX(30%); }
}*/

.hero-inner {
  position: relative; z-index: 3;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(29,233,182,0.12);
  border: 1px solid rgba(29,233,182,0.3);
  padding: 7px 16px; border-radius: 999px;
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 28px;
  animation: fup 0.8s ease both;
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: livePulse 1.8s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.92; letter-spacing: 2px;
  margin-bottom: 8px;
  animation: fup 0.9s 0.1s ease both;
  text-shadow: 0 4px 32px rgba(0,0,0,0.7);
}
.hero h1 .line2 {
  display: block;
  -webkit-text-stroke: 0;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(245,166,35,0.4),
               0 4px 20px rgba(0,0,0,0.6);
}
.hero h1 .line1 { display: block; color: var(--text); }

.hero-sub {
  font-size: var(--fs-h5); color: #C4D2DD; line-height: 1.72;
  max-width: 480px; margin: 28px 0 40px;
  animation: fup 0.9s 0.25s ease both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-ctas {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  animation: fup 0.9s 0.38s ease both;
}
.hero-ctas .btn-gold,
.hero-ctas .btn-outline {
  padding: 18px 34px;
  font-size: var(--fs-body-lg);
  border-radius: 12px;
}

.ip-pill {
  display: inline-flex; align-items: center; gap: 20px;
  margin-top: 42px;
  background: rgba(6,9,14,0.6);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border2);
  padding: 18px 28px; border-radius: 14px;
  animation: fup 0.9s 0.5s ease both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.ip-pill-label {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 1.7px;
  text-transform: uppercase; color: var(--muted);
}
.ip-pill-addr {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-paragraph); color: var(--gold); font-weight: 600;
}
.copy-btn {
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold); padding: 10px 18px;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-meta-lg); font-weight: 700;
  cursor: none; transition: all .2s;
}
.copy-btn:hover { background: rgba(245,166,35,0.28); }
.copy-btn[data-copied="1"] {
  background: rgba(29,233,182,0.18);
  color: var(--teal);
  border-color: rgba(29,233,182,0.35);
}

.scroll-hint {
  position: absolute; bottom: 36px; left: 60px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  color: #B0BEC5; font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  animation: fup 1s 0.9s ease both;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.scroll-line {
  width: 40px; height: 1px;
  background: rgba(245,166,35,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* Disable pointer cursor on button-like controls */
button,
.btn-gold,
.btn-outline,
.srv-cta,
.discord-btn,
.instagram-btn,
.copy-btn {
  font-weight: 800; font-size: var(--fs-body-lg);
}

/* STATS BAR */
.stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 21, 32, 0.8);
  backdrop-filter: blur(10px);
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  text-align: center; position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .4s;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-display-xxl); color: var(--gold); line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 0 30px rgba(245,166,35,0.4);
}
.stat-lbl {
  font-size: var(--fs-caption); color: var(--muted);
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-top: 4px;
}

/* SECTIONS */
.section {
  padding: 100px 60px;
  position: relative; z-index: 2;
}
.section-eyebrow {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: 2px; line-height: 1;
  margin-bottom: 60px;
  color: var(--text);
}
.section-heading span { color: var(--gold); }

/* SERVER CARDS */
.servers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.srv-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--sky2);
  transition: all .35s; position: relative;
}
.srv-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 50% 0%,
    rgba(245,166,35,0.12), transparent 60%);
  transition: opacity .35s;
  pointer-events: none;
}
.srv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 40px rgba(245,166,35,0.1);
}
.srv-card:hover::before { opacity: 1; }
.srv-card.hc {
  border-color: rgba(229,57,53,0.2);
}
.srv-card.hc::before {
  background: radial-gradient(circle at 50% 0%,
    rgba(229,57,53,0.1), transparent 60%);
}
.srv-card.hc:hover {
  border-color: rgba(229,57,53,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 40px rgba(229,57,53,0.1);
}

/* Original server card with background image */
.srv-card.original {
  background: linear-gradient(135deg, rgba(6,9,14,0.85) 0%, rgba(6,9,14,0.75) 100%),
              url('/assets/Original.webp') center/cover no-repeat;
}

.srv-card.original .srv-cta {
  background: #7A4A0B;
  color: #FFE8BF;
  border: 1px solid #F5A623;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 18px rgba(245,166,35,0.35);
  font-weight: 800;
}

.srv-card.original .srv-cta:hover {
  background: #9A5F0F;
  border-color: #FFD166;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5), 0 0 24px rgba(245,166,35,0.45);
}

/* Hardcore server card with background image */
.srv-card.hardcore {
  background: linear-gradient(135deg, rgba(6,9,14,0.85) 0%, rgba(6,9,14,0.75) 100%),
              url('/assets/Hardcore.webp') center/cover no-repeat;
}

.srv-card.hardcore .srv-cta {
  background: rgba(105,24,22,0.97);
  color: #FFD1D0;
  border-color: rgba(229,57,53,1);
}

.srv-card.hardcore .srv-cta:hover {
  background: rgba(130,30,27,0.99);
  border-color: #EF5350;
}

.srv-top {
  padding: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 18px;
}
.srv-icon {
  width: 78px; height: 78px;
  border-radius: 0; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-h3);
  background: none;
  border: none;
}
.srv-card.hc .srv-icon {
  background: none;
  border: none;
}
.srv-icon-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
}
.srv-card.hc .srv-icon-img {
  width: 60px;
  height: 60px;
}
.srv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h2-sm); letter-spacing: 1px;
  line-height: 1; margin-bottom: 6px;
}
.srv-sub { font-size: var(--fs-body-lg); color: var(--muted); }
.srv-badge {
  margin-left: auto;
  padding: 5px 12px; border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.5px;
  background: rgba(29,233,182,0.1); color: var(--teal);
  border: 1px solid rgba(29,233,182,0.25);
  white-space: nowrap;
}
.srv-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: livePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.srv-badge-text {
  display: inline-block;
}
.srv-card.hc .srv-badge {
  background: rgba(229,57,53,0.1);
  color: #EF5350;
  border-color: rgba(229,57,53,0.25);
}

.srv-features {
  padding: 28px 32px;
  display: flex; flex-direction: column;
}
.feat {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: var(--fs-meta-lg); color: var(--muted);
  transition: color .2s;
}
.feat:last-child { border: none; }
.feat:hover { color: var(--text); }
.feat-bullet {
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold-glow);
}
.srv-card.hc .feat-bullet {
  background: #EF5350;
  box-shadow: 0 0 8px rgba(229,57,53,0.4);
}

/* ════════════════════════════════════
   ENHANCED FEATURE CARDS (Original server)
════════════════════════════════════ */
.srv-card .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  padding: 20px 20px !important;
}

.feature-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  transition: all 0.2s;
}

.feature-card:hover {
  transform: translateX(4px);
}

.feature-icon {
  font-size: var(--fs-h5);
  line-height: 1.4;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.feature-text {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.srv-card.hc .feature-icon {
  color: #EF5350;
}
.srv-cta-wrap { padding: 8px 32px 32px; }
.srv-cta {
  display: block; text-align: center; text-decoration: none;
  padding: 13px; border-radius: 10px;
  font-weight: 700; font-size: var(--fs-meta-lg); letter-spacing: 0.3px;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(245,166,35,0.25);
  transition: all .25s;
}
.srv-cta:hover {
  background: rgba(245,166,35,0.25);
  border-color: var(--gold);
}
.srv-card.hc:not(.hardcore) .srv-cta {
  background: rgba(229,57,53,0.08);
  color: #EF5350;
  border-color: rgba(229,57,53,0.2);
}
.srv-card.hc:not(.hardcore) .srv-cta:hover {
  background: rgba(229,57,53,0.18);
  border-color: #EF5350;
}

.srv-card.hc.hardcore .srv-cta {
  background: #5A1210;
  color: #FFE8E8;
  border: 1px solid #EF5350;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 18px rgba(239,83,80,0.35);
  font-weight: 800;
}

.srv-card.hc.hardcore .srv-cta:hover {
  background: #7A1A17;
  border-color: #FF6B6B;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5), 0 0 24px rgba(239,83,80,0.45);
}

/* HOW TO JOIN STEPPER */
.join-steps-section {
  padding-top: 30px;
}

.join-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.join-stepper::before {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(245,166,35,0.12),
    rgba(245,166,35,0.45),
    rgba(245,166,35,0.12));
  z-index: 0;
}

.join-step {
  position: relative;
  z-index: 1;
  padding: 26px 24px;
  border-radius: 14px;
  border: 1px solid rgba(245,166,35,0.14);
  background: var(--sky2);
  transition: all .25s;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.join-step:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,0.35);
  box-shadow: 0 10px 34px rgba(0,0,0,0.35),
              0 0 22px rgba(245,166,35,0.08);
}

@media (max-width: 1400px) {
  .join-stepper {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .join-stepper::before {
    display: none;
  }
}

.join-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid rgba(245,166,35,0.5);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h3-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.join-step-body {
  flex: 1;
  min-width: 0;
}

.join-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.join-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.22);
  color: var(--gold);
  font-size: var(--fs-h5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.join-step-title {
  font-size: var(--fs-subheading-lg);
  font-weight: 700;
}

.join-step p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: var(--fs-paragraph-sm);
  line-height: 1.65;
}

.step-ip-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.step-ip-addr {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-family: 'Courier New', monospace;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(245,166,35,0.18), rgba(245,166,35,0.10));
  border: 1px solid rgba(245,166,35,0.44);
  border-radius: 9px;
  padding: 9px 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 18px rgba(245,166,35,0.16), inset 0 0 0 1px rgba(255,209,102,0.15);
}

.step-ip-row .copy-btn {
  min-height: 40px;
  padding: 9px 14px;
  font-size: var(--fs-body);
  line-height: 1;
}

.join-step p strong {
  color: var(--gold);
  font-weight: 700;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--sky2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 24px;
  transition: all .3s; position: relative; overflow: hidden;
}
.why-card::after {
  content: attr(data-num);
  position: absolute; right: 16px; top: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-deco-64);
  color: rgba(245,166,35,0.05);
  line-height: 1; pointer-events: none;
}
.why-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-3px);
  background: var(--sky3);
}
.why-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px; margin-bottom: 18px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-h4);
  color: var(--gold);
}
.why-title { font-size: var(--fs-body-lg); font-weight: 700; margin-bottom: 10px; }
.why-desc { font-size: var(--fs-body-lg); color: var(--muted); line-height: 1.65; }

/* SOCIAL CTA SECTION */
.social-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 0 60px 100px;
}

/* DISCORD CTA */
.discord-wrap {
  border-radius: 24px; overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0e1535 0%, #111a38 50%, #0a1020 100%);
  border: 1px solid rgba(88,101,242,0.3);
  padding: 60px 60px 60px clamp(140px, 20vw, 280px);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 32px;
  min-height: 200px;
  flex-wrap: wrap;
}
.discord-wrap::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle,
    rgba(88,101,242,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.discord-ghost {
  position: absolute; right: 40px; top: -20px;
  font-size: var(--fs-deco-160); font-weight: 900;
  opacity: 0.04; color: #5865F2;
  pointer-events: none; user-select: none;
  letter-spacing: -5px;
  font-family: 'Bebas Neue', sans-serif;
}
.discord-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-display-xxl); letter-spacing: 1px;
  margin-bottom: 10px;
}
.discord-left {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}
.discord-left p {
  color: var(--muted); font-size: var(--fs-body-lg);
  max-width: 420px; line-height: 1.7;
}
.discord-sticker-wrap {
  position: absolute;
  left: clamp(8px, 2vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  height: clamp(120px, 25vw, 200px);
}
.discord-sticker {
  width: auto;
  height: 100%;
  display: block;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.45));
  transform-origin: 50% 100%;
}
.discord-btn {
  background: #5865F2; color: white;
  padding: 14px 28px; border-radius: 12px;
  font-weight: 800; font-size: var(--fs-body-lg);
  text-decoration: none;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 0 30px rgba(88,101,242,0.3);
  display: inline-flex; align-items: center; gap: 10px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.discord-btn:hover {
  background: #4752C4;
  transform: translateY(-2px);
}
.discord-left {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}
.discord-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-display-xxl); letter-spacing: 1px;
  margin-bottom: 10px;
}
.discord-left p {
  color: var(--muted); font-size: var(--fs-body-lg);
  max-width: 420px; line-height: 1.7;
}


/* INSTAGRAM CTA */
.instagram-wrap {
  border-radius: 24px; overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #3d1033 0%, #6a1b5e 50%, #8b2c7c 100%);
  border: 1px solid rgba(233,30,99,0.4);
  padding: 60px 60px 60px clamp(140px, 20vw, 280px);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 32px;
  min-height: 200px;
  flex-wrap: wrap;
}
.instagram-wrap::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle,
    rgba(233,30,99,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.instagram-ghost {
  position: absolute; right: 40px; top: -20px;
  font-size: var(--fs-deco-160); font-weight: 900;
  opacity: 0.04; color: #512332;
  pointer-events: none; user-select: none;
  letter-spacing: -5px;
  font-family: 'Bebas Neue', sans-serif;
}
.instagram-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-display-xxl); letter-spacing: 1px;
  margin-bottom: 10px;
}
.instagram-left {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}
.instagram-left p {
  color: var(--muted); font-size: var(--fs-body-lg);
  max-width: 420px; line-height: 1.7;
}
.instagram-sticker-wrap {
  position: absolute;
  left: clamp(8px, 2vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  height: clamp(120px, 25vw, 200px);
}
.instagram-sticker {
  width: auto;
  height: 100%;
  display: block;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.45));
  transform-origin: 50% 100%;
}
.instagram-btn {
  background: linear-gradient(135deg, #E91E63, #F50057);
  color: white;
  padding: 14px 28px; border-radius: 12px;
  font-weight: 800; font-size: var(--fs-body-lg);
  text-decoration: none;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 0 30px rgba(233,30,99,0.3);
  display: inline-flex; align-items: center; gap: 10px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.instagram-wrap::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle,
    rgba(233,30,99,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.instagram-ghost {
  position: absolute; right: 40px; top: -20px;
  font-size: var(--fs-deco-160); font-weight: 900;
  opacity: 0.04; color: #fa88ae;
  pointer-events: none; user-select: none;
  letter-spacing: -5px;
  font-family: 'Bebas Neue', sans-serif;
}
.instagram-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-display-xxl); letter-spacing: 1px;
  margin-bottom: 10px;
}
.instagram-left {
  position: relative;
  z-index: 2;
}
.instagram-left p {
  color: var(--muted); font-size: var(--fs-body-lg);
  max-width: 420px; line-height: 1.7;
}
.instagram-btn {
  background: linear-gradient(135deg, #E91E63, #F50057);
  color: white;
  padding: 14px 28px; border-radius: 12px;
  font-weight: 800; font-size: var(--fs-body-lg);
  text-decoration: none;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 0 30px rgba(233,30,99,0.3);
  display: inline-flex; align-items: center; gap: 10px;
  position: relative;
  z-index: 2;
}

.instagram-btn:hover {
  background: #C2185B;
  transform: translateY(-2px);
}


@keyframes discord-sticker-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 16px 30px rgba(0,0,0,0.42));
  }
  30% {
    transform: translate3d(3px, -8px, 0) scale(1.02);
    filter: drop-shadow(0 22px 34px rgba(0,0,0,0.5));
  }
  65% {
    transform: translate3d(-2px, -4px, 0) scale(1.01);
    filter: drop-shadow(0 19px 32px rgba(0,0,0,0.46));
  }
}

@keyframes instagram-sticker-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 16px 30px rgba(0,0,0,0.42));
  }
  30% {
    transform: translate3d(3px, -8px, 0) scale(1.02);
    filter: drop-shadow(0 22px 34px rgba(0,0,0,0.5));
  }
  65% {
    transform: translate3d(-2px, -4px, 0) scale(1.01);
    filter: drop-shadow(0 19px 32px rgba(0,0,0,0.46));
  }
}

@media (prefers-reduced-motion: reduce) {
  .discord-sticker,
  .instagram-sticker {
    animation: none;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — TABLET (max-width 1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  /* HERO */
  .hero { padding: 110px 40px 70px; }
  .hero-inner { max-width: 600px; }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(6,9,14,0.85) 0%,
        rgba(6,9,14,0.65) 40%,
        rgba(6,9,14,0.5) 70%,
        rgba(6,9,14,0.85) 100%);
  }

  /* Logo — smaller and pushed slightly down */
  .hero-logo-wrap {
    width: clamp(220px, 30vw, 340px);
    right: 5%;
    opacity: 0.85;
  }

  /* SECTIONS */
  .section { padding: 80px 40px; }
  .scroll-hint { left: 40px; }

  /* WHY — 2 cols */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-stepper {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .join-stepper::before {
    display: none;
  }

  /* DISCORD & INSTAGRAM */
  .social-section {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 40px 80px;
  }
  .discord-wrap {
    padding: 50px 40px 50px clamp(140px, 18vw, 220px);
    gap: 24px;
  }
  .instagram-wrap {
    padding: 50px 40px 50px clamp(140px, 18vw, 220px);
    gap: 24px;
  }
  .discord-sticker-wrap {
    height: clamp(100px, 22vw, 180px);
    left: clamp(8px, 1.5vw, 18px);
    display: none;
  }
  .instagram-sticker-wrap {
    height: clamp(100px, 22vw, 180px);
    left: clamp(8px, 1.5vw, 18px);
    display: none;
  }
  .discord-left h2 { font-size: var(--fs-h1); }
  .discord-left p { font-size: var(--fs-body-lg); }
  .instagram-left p { font-size: var(--fs-body-lg); }
  .discord-ghost { font-size: var(--fs-deco-120); }
  .discord-btn {
    flex-basis: 100%;
    margin-top: 20px;
  }
  .instagram-btn {
    flex-basis: 100%;
    margin-top: 20px;
  }
  .discord-ghost { font-size: var(--fs-deco-100); }
  .instagram-ghost { font-size: var(--fs-deco-100); }

  /* STATS — 2 cols on tablet */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stat-num { font-size: var(--fs-display-sm); }
}

/* ════════════════════════════════════
   RESPONSIVE — HERO MOBILE (max-width 1050px)
════════════════════════════════════ */
@media (max-width: 1050px) {
  .hero {
    padding: 80px 20px 60px;
    min-height: 100svh;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .hero-bg-img {
    filter: brightness(0.4) saturate(1.1) contrast(1.05);
  }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(6,9,14,0.92) 0%,
        rgba(6,9,14,0.7) 30%,
        rgba(6,9,14,0.6) 60%,
        rgba(6,9,14,0.95) 100%);
  }
  .hero::before { display: none; }

  .hero-logo-wrap {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: clamp(140px, 38vw, 200px);
    margin: 0 auto 48px;
    animation: none;
  }
  .hl-ring-3 { display: none; }
  .hero-logo-glow-2 { inset: -25%; }

  .hero-inner {
    width: 100%;
    text-align: center;
    margin-bottom: auto;
  }

  .hero-eyebrow {
    font-size: var(--fs-badge-sm);
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: 1px;
  }
  .hero h1 .line2 {
    -webkit-text-stroke: 0;
    color: var(--gold);
    text-shadow: none;
  }
  .hero-sub {
    font-size: var(--fs-body-lg);
    margin: 20px auto 28px;
  }
  .hero-sub br { display: none; }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    display: none;
  }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: var(--fs-meta-lg);
  }

  .ip-pill {
    margin-top: 26px;
    padding: 14px 16px;
    gap: 14px;
    width: 100%;
    justify-content: space-between;
  }
  .ip-pill-label { font-size: var(--fs-badge-sm); }
  .ip-pill-addr { font-size: var(--fs-meta-lg); }
  .copy-btn { padding: 8px 12px; font-size: var(--fs-caption); }

  .scroll-hint { display: none; }
}

/* ════════════════════════════════════
   RESPONSIVE — TLAČÍTKA POD TEXTEM (max-width 1889px)
════════════════════════════════════ */
@media (max-width: 1889px) {
  .discord-btn {
    flex-basis: 100%;
    margin-top: 20px;
  }
  .instagram-btn {
    flex-basis: 100%;
    margin-top: 20px;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — SERVERS STACK (max-width 1050px)
════════════════════════════════════ */
@media (max-width: 1050px) {
  .servers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — VELKÝ DESKTOP (min-width 1890px)
════════════════════════════════════ */
@media (min-width: 1890px) {
  .discord-btn {
    flex-basis: auto;
    margin-top: 0;
  }
  .instagram-btn {
    flex-basis: auto;
    margin-top: 0;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — UNDER 1315px (grid 1 col)
════════════════════════════════════ */
@media (max-width: 1315px) {
  .social-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 40px 80px;
  }
  .discord-wrap {
    padding: 50px 40px;
  }
  .instagram-wrap {
    padding: 50px 40px;
  }
  .discord-sticker-wrap {
    display: none !important;
  }
  .instagram-sticker-wrap {
    display: none !important;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — MEDIUM DESKTOP (1316px - 1889px)
════════════════════════════════════ */
@media (min-width: 1316px) and (max-width: 1889px) {
  /* Grid 2 sloupce */
  .social-section {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 0 40px 80px;
  }
  
  /* Obrázky viditelné, ale menší */
  .discord-sticker-wrap {
    display: flex !important;
    height: clamp(80px, 15vw, 120px);
  }
  .instagram-sticker-wrap {
    display: flex !important;
    height: clamp(80px, 15vw, 120px);
  }
  
  /* Menší padding */
  .discord-wrap {
    padding: 50px 40px 50px clamp(100px, 15vw, 180px);
    gap: 20px;
  }
  .instagram-wrap {
    padding: 50px 40px 50px clamp(100px, 15vw, 180px);
    gap: 20px;
  }
  
  /* Text menší */
  .discord-left h2 { font-size: var(--fs-display-sm); }
  .discord-left p { font-size: var(--fs-body-lg); }
  .instagram-left h2 { font-size: var(--fs-display-sm); }
  .instagram-left p { font-size: var(--fs-body-lg); }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE SMALL (max-width 770px)
════════════════════════════════════ */
@media (max-width: 770px) {
    .discord-left {
      flex: initial;
    }
    .instagram-left {
      flex: initial;
    }
  .discord-btn {
    width: 100%;
    display: inline-flex !important;
    padding: 14px 20px !important;
    font-size: var(--fs-meta-lg);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 10px;
    white-space: normal;
  }
  .instagram-btn {
    width: 100%;
    display: inline-flex !important;
    padding: 14px 20px !important;
    font-size: var(--fs-meta-lg);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 10px;
    white-space: normal;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (max-width 768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  /* HERO — logo moves above text on mobile */
  .hero {
    padding: 80px 20px 60px;
    min-height: 100svh;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .hero-bg-img {
    filter: brightness(0.4) saturate(1.1) contrast(1.05);
  }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(6,9,14,0.92) 0%,
        rgba(6,9,14,0.7) 30%,
        rgba(6,9,14,0.6) 60%,
        rgba(6,9,14,0.95) 100%);
  }
  .hero::before { display: none; }

  /* Logo: small, centered above text */
  .hero-logo-wrap {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: clamp(140px, 38vw, 200px);
    margin: 0 auto 48px;
    animation: logoFup 1.2s 0.4s ease both, logoFloatMobile 6s 1.6s ease-in-out infinite;
  }
  @keyframes logoFloatMobile {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  /* Override logoFup translateY for mobile */
  @keyframes logoFup {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
  }
  /* Reduce orbital ring intensity on mobile (visual noise) */
  .hl-ring-3 { display: none; }
  .hero-logo-glow-2 { inset: -25%; }

  .hero-inner {
    width: 100%;
    text-align: center;
    margin-bottom: auto;
  }

  .hero-eyebrow {
    font-size: var(--fs-badge-sm);
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: 1px;
  }
  .hero h1 .line2 {
    text-shadow: 0 0 30px rgba(245,166,35,0.2),
                 0 2px 10px rgba(0,0,0,0.4);
  }
  .hero-sub {
    font-size: var(--fs-paragraph-sm);
    margin: 20px auto 28px;
  }
  .hero-sub br { display: none; }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    display: none;
  }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: var(--fs-meta-lg);
  }

  .ip-pill {
    margin-top: 26px;
    padding: 14px 16px;
    gap: 14px;
    width: 100%;
    justify-content: space-between;
  }
  .ip-pill-label { font-size: var(--fs-badge-sm); }
  .ip-pill-addr { font-size: var(--fs-meta-lg); }
  .copy-btn { padding: 8px 12px; font-size: var(--fs-caption); }

  .scroll-hint { display: none; }

  /* STATS */
  .stat-item { padding: 18px 12px; }
  .stat-num { font-size: var(--fs-h2); }
  .stat-lbl { font-size: var(--fs-badge-sm); letter-spacing: 1px; }

  /* SECTIONS */
  .section { padding: 60px 20px; }
  .section-heading {
    font-size: clamp(34px, 9vw, 48px);
    margin-bottom: 36px;
    letter-spacing: 1px;
  }

  .join-step {
    padding: 20px 18px;
    gap: 16px;
  }
  .join-step-num {
    width: 42px;
    height: 42px;
    font-size: var(--fs-h5);
  }
  .join-step-head {
    gap: 10px;
    margin-bottom: 10px;
  }
  .join-step-icon {
    width: 38px;
    height: 38px;
    font-size: var(--fs-h5-sm);
    border-radius: 10px;
  }
  .join-step-title {
    font-size: var(--fs-paragraph);
  }
  .join-step p {
    font-size: var(--fs-body-lg);
  }
  .step-ip-addr {
    min-height: 36px;
    font-size: var(--fs-meta-lg);
    padding: 8px 12px;
  }
  .step-ip-row .copy-btn {
    min-height: 36px;
    padding: 8px 12px;
    font-size: var(--fs-meta-lg);
  }

  /* SERVERS — stack */
  .servers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .srv-top { padding: 22px; gap: 14px; }
  .srv-icon { width: 68px; height: 68px; font-size: var(--fs-h4); }
  .srv-title { font-size: var(--fs-h4); }
  .srv-sub { font-size: var(--fs-body); }
  .srv-features { padding: 22px; }
  .srv-card .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    padding: 16px !important;
  }
  .feature-card { gap: 10px; }
  .feature-icon { font-size: var(--fs-subheading); }
  .feature-text { font-size: var(--fs-meta-lg); }
  .srv-cta-wrap { padding: 4px 22px 22px; }

  /* WHY — 1 col */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-card { padding: 20px; }

  /* DISCORD & INSTAGRAM — stack */
  .social-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 20px 60px;
  }
  .discord-wrap {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }
  .discord-left {
    flex: initial;
  }
  .discord-sticker-wrap {
    display: none;
  }
  .discord-sticker {
    width: 100%;
    height: auto;
    max-height: 86px;
  }
  .discord-left h2 { font-size: var(--fs-h2-sm); }
  .discord-left p { font-size: var(--fs-body-lg); }
  .discord-btn {
    width: 100%;
    padding: 13px 20px !important;
    text-align: center;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 10px;
  }
  
  .instagram-wrap {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }
  .instagram-left {
    flex: initial;
  }
  .instagram-sticker-wrap {
    display: none;
  }
  .instagram-sticker {
    width: 100%;
    height: auto;
    max-height: 86px;
  }
  .instagram-left h2 { font-size: var(--fs-h2-sm); }
  .instagram-left p { font-size: var(--fs-body-lg); }
  .instagram-btn {
    width: 100%;
    padding: 13px 20px !important;
    text-align: center;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 10px;
  }
  
  .discord-sticker-wrap {
    display: none !important;
  }
  .instagram-sticker-wrap {
    display: none !important;
  }
  .discord-ghost {
    font-size: var(--fs-deco-80);
    right: 20px; top: 0;
  }
  .instagram-ghost {
    font-size: var(--fs-deco-80);
    right: 20px; top: 0;
  }

  /* FOOTER */
  footer {
    padding: 22px 20px;
    font-size: var(--fs-caption);
    line-height: 1.7;
  }

  /* DISABLE custom cursor on touch devices */
  body { cursor: auto; }
  #cur, #ring { display: none; }
}

/* ════════════════════════════════════
   MOBILE CTA HOTFIX (max-width 770px)
════════════════════════════════════ */
@media (max-width: 770px) {
  .social-section .discord-wrap,
  .social-section .instagram-wrap {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .social-section .discord-left,
  .social-section .instagram-left {
    flex: 0 0 auto !important;
    width: 100%;
  }

  .social-section .discord-wrap > .discord-btn,
  .social-section .instagram-wrap > .instagram-btn {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    float: none !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px;
    margin: 12px 0 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    white-space: normal !important;
    z-index: 3;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 380px)
════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-logo-wrap { width: 130px; }

  .hero h1 { font-size: var(--fs-display-lg); }
  .hero h1 .line2 {
    text-shadow: 0 0 20px rgba(245,166,35,0.15),
                 0 1px 6px rgba(0,0,0,0.3);
  }

  .srv-card .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px !important;
  }
  .feature-card { gap: 8px; }
  .feature-icon { font-size: var(--fs-paragraph); }
  .feature-text { font-size: var(--fs-meta-lg); }
  .hero-sub { font-size: var(--fs-meta-lg); }

  .stat-num { font-size: var(--fs-h3); }
  .section-heading { font-size: var(--fs-h2-sm); }
  .srv-title { font-size: var(--fs-subheading-lg); }
  .srv-sub { font-size: var(--fs-meta-lg); }
  .step-ip-addr {
    min-height: 34px;
    font-size: var(--fs-caption);
    padding: 7px 10px;
  }
  .step-ip-row .copy-btn {
    min-height: 34px;
    padding: 7px 10px;
    font-size: var(--fs-caption);
  }
}
