/* ============================================================
   FLITSHOST — Premium Stylesheet
   Inspired by Linear.app, Vercel, Stripe
   ============================================================ */

/* === CSS Custom Properties === */
:root {
  --orange: #FF6B00;
  --orange-light: rgba(255, 107, 0, 0.12);
  --orange-glow: rgba(255, 107, 0, 0.25);
  --bg: #09090B;
  --bg-2: #111113;
  --bg-3: #18181B;
  --bg-4: #1C1C1F;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --text: #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --text-dark: #09090B;
  --white: #FFFFFF;
  --green: #22C55E;
  --green-light: rgba(34, 197, 94, 0.15);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.5);
  --shadow-orange: 0 0 0 1px var(--orange), 0 8px 40px rgba(255,107,0,.2);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.2s ease;
  --transition-slow: 0.4s cubic-bezier(.23,1,.32,1);
  --announce-height: 40px;
  --navbar-height: 64px;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* === Scroll Progress Bar (CSS scroll-driven animation) === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  animation: grow-progress linear;
  animation-timeline: scroll();
  z-index: 9999;
  pointer-events: none;
}
@keyframes grow-progress {
  from { width: 0; }
  to { width: 100%; }
}

/* === Announce Bar === */
.announce-bar {
  background: var(--orange);
  height: var(--announce-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 200;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
}
.announce-bar.dismissed {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.announce-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}
.announce-badge {
  background: rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}
.announce-cta {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1;
  transition: color var(--transition);
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.announce-close:hover { color: var(--white); }

/* === Navbar === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 150;
  height: var(--navbar-height);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.nav-active { color: var(--orange); background: rgba(255,107,0,0.07); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.btn-nav-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-nav-login:hover { color: var(--white); }
.btn-nav-order {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-nav-order:hover {
  background: #e05e00;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,0,.4);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: 80px 0;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  will-change: transform;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.10) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
  will-change: transform;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 70%);
  top: 30%;
  left: 40%;
  will-change: transform;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.hero-split {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-full);
  padding: 6px 14px 6px 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--orange);
  width: fit-content;
}
.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hero-heading span.text-orange { color: var(--orange); }
.typewriter-wrap { display: inline-block; }
.cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--orange);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition-slow), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary-lg:hover {
  background: #e05e00;
  box-shadow: 0 8px 32px rgba(255,107,0,.4);
}
.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-ghost-lg:hover {
  color: var(--white);
  border-color: var(--border-light);
  background: rgba(255,255,255,0.04);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-avatars {
  display: flex;
  align-items: center;
}
.proof-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  margin-left: -10px;
}
.proof-avatars img:first-child { margin-left: 0; }
.proof-copy { display: flex; flex-direction: column; gap: 2px; }
.proof-stars { color: var(--orange); font-size: 0.875rem; letter-spacing: 1px; }
.proof-copy span { font-size: 0.8125rem; color: var(--text-muted); }
.proof-copy strong { color: var(--text); font-weight: 600; }

/* === Floating Badges === */
.mockup-scene {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.float-badge {
  position: absolute;
  background: rgba(24,24,27,0.92);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  backdrop-filter: blur(16px);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.float-badge .fb-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.float-1 {
  top: 16px;
  left: -30px;
  animation: float-bob 3s ease-in-out infinite;
}
.float-2 {
  bottom: 80px;
  right: -20px;
  animation: float-bob 3.5s ease-in-out infinite 0.5s;
}
.float-3 {
  bottom: -10px;
  left: 30px;
  animation: float-bob 4s ease-in-out infinite 1s;
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* === Dashboard Mockup Card === */
.mockup-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  width: 100%;
}
.mc-topbar {
  background: var(--bg-4);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mc-dots { display: flex; gap: 6px; }
.mc-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mc-dots span:nth-child(1) { background: #FF5F57; }
.mc-dots span:nth-child(2) { background: #FEBC2E; }
.mc-dots span:nth-child(3) { background: #28C840; }
.mc-url {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
  text-align: center;
}
.mc-body { padding: 20px; }
.mc-servers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.mc-server {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
}
.srv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}
.srv-dot.active { background: var(--green); animation: pulse-dot 2s infinite; }
.mc-server span { color: var(--text-secondary); flex: 1; }
.mc-server small { color: var(--text-muted); font-size: 0.75rem; }
.mc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.mc-metric {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
}
.mc-metric small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mc-metric strong {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--white);
}
.mc-bar {
  background: var(--bg);
  border-radius: var(--radius-full);
  height: 4px;
  margin-top: 6px;
  overflow: hidden;
}
.mc-bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1s ease;
}
.mc-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  margin-bottom: 12px;
}
.mc-sparkline span {
  flex: 1;
  background: rgba(255,107,0,0.35);
  border-radius: 2px 2px 0 0;
  transition: background 0.2s;
}
.mc-sparkline span:hover { background: var(--orange); }
.mc-footer {
  background: var(--bg-4);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  gap: 20px;
}
.mc-fstat { display: flex; flex-direction: column; gap: 2px; }
.mc-fstat small { font-size: 0.6875rem; color: var(--text-muted); }
.mc-fstat strong { font-size: 0.8125rem; font-weight: 600; color: var(--text); }

/* === Trust Strip === */
.trust {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
}

/* === Section Utilities === */
.section { padding: 96px 0; }
.section-light { background: #f9f9f9; color: var(--text-dark); }
.section-dark { background: var(--bg-2); }
.section-orange {
  background: #150800;
  background-image:
    radial-gradient(ellipse 60% 60% at 0% 50%, rgba(255,107,0,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(255,107,0,0.13) 0%, transparent 70%);
  position: relative;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-intro { text-align: center; margin-bottom: 60px; }
.section-intro--light .section-title,
.section-intro--light .section-sub { color: var(--white); }
.section-intro--light .section-sub { color: rgba(255,255,255,0.6); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.chip--dark {
  background: rgba(255,255,255,0.07);
  color: var(--text-secondary);
  border-color: var(--border);
}

/* === Stats Section === */
.stats-section {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
}
.stat-block {
  background: var(--bg-2);
  padding: 44px 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.stat-lbl { font-size: 0.9375rem; color: var(--text-muted); font-weight: 500; }

/* === Pricing === */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.toggle-opt {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  user-select: none;
}
.toggle-opt.active { color: var(--white); }
.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 2px;
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
}
.toggle-switch.yearly {
  background: rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.3);
}
.toggle-knob {
  width: 20px;
  height: 20px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.toggle-switch.yearly .toggle-knob {
  transform: translateX(22px);
  background: var(--orange);
}
.toggle-save {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color var(--transition), box-shadow 0.3s ease, transform 0.15s ease;
  transform-style: preserve-3d;
  position: relative;
}
.pricing-card:hover { border-color: var(--border-light); box-shadow: var(--shadow); }
.pricing-card--hot {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  background: linear-gradient(145deg, #1A0D00 0%, var(--bg-3) 60%);
}
.pricing-card--hot:hover {
  box-shadow: 0 0 0 1px var(--orange), 0 16px 60px rgba(255,107,0,.3);
}
.hot-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-top { display: flex; flex-direction: column; gap: 6px; }
.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.pricing-tagline { font-size: 0.875rem; color: var(--text-muted); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
  line-height: 1;
}
.was-price {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 4px;
  align-self: center;
}
.price-eur {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 8px;
}
.price-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-card--hot .price-num { color: var(--orange); }
.price-dec {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  align-self: flex-start;
  margin-top: 10px;
}
.price-mo {
  font-size: 0.875rem;
  color: var(--text-muted);
  align-self: flex-end;
  padding-bottom: 4px;
}
.price-annual-note {
  font-size: 0.8125rem;
  color: var(--green);
  margin-top: 4px;
  display: none;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(255,107,0,0.15);
  color: var(--orange);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-list li.dim {
  color: var(--text-muted);
  opacity: 0.5;
}
.pricing-list li.dim::before {
  content: '✗';
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
}
.btn-pricing-outline {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-pricing-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}
.btn-pricing-hot {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-pricing-hot:hover {
  background: #e05e00;
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
  transform: translateY(-1px);
}
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  justify-content: center;
  padding-top: 4px;
}
.pricing-guarantee--white { color: var(--text-secondary); }

/* === Features Asymmetric === */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features-left { display: flex; flex-direction: column; gap: 8px; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: default;
}
.feat-item:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
}
.feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(255,107,0,0.15);
}
.feat-content { display: flex; flex-direction: column; gap: 4px; }
.feat-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.feat-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.feat-guarantee {
  background: var(--bg-3);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.feat-guarantee .feat-icon {
  background: var(--green-light);
  border-color: rgba(34,197,94,0.2);
}
.feat-guarantee .feat-title { color: var(--green); }
.features-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-visual {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.fv-header {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fv-speed { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.fv-bar-row { display: flex; flex-direction: column; gap: 6px; }
.fv-bar-label { display: flex; justify-content: space-between; font-size: 0.8125rem; }
.fv-bar-label span { color: var(--text-muted); }
.fv-bar-label strong { color: var(--white); }
.fv-track {
  height: 8px;
  background: var(--bg);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.fv-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--orange);
}
.fv-uptime {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.fv-uptime-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
}
.fv-uptime-lbl { font-size: 0.8125rem; color: var(--text-muted); }

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.testi-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.testi-card--featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.testi-stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; }
.testi-quote {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--white); }
.testi-author span { font-size: 0.8125rem; color: var(--text-muted); }

/* === VPS Dark Section === */
.vps-section {
  position: relative;
  overflow: hidden;
}
.vps-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  opacity: .08;
  filter: grayscale(1);
  pointer-events: none;
}
.vps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vps-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(12px);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.vps-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.vps-card--glow {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  background: rgba(255,107,0,0.05);
}
.vps-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  width: fit-content;
}
.vps-badge--hot {
  background: rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.3);
  color: var(--orange);
}
.vps-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}
.vps-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.vps-spec {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.vps-spec small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.vps-spec strong { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.vps-bottom { margin-top: auto; }
.vps-price-wrap { margin-bottom: 12px; }
.vps-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.vps-card--glow .vps-price { color: var(--orange); }
.vps-mo { font-size: 0.875rem; color: var(--text-muted); }
.btn-vps {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-vps:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.btn-vps--hot { background: var(--orange); border-color: var(--orange); color: var(--white); }
.btn-vps--hot:hover {
  background: #e05e00;
  border-color: #e05e00;
  box-shadow: 0 4px 16px rgba(255,107,0,.4);
}
.vps-footnote { margin-top: 32px; text-align: center; font-size: 0.875rem; color: var(--text-muted); }
.vps-os-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.vps-os-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === Domain Section === */
.domain-wrap { display: flex; align-items: center; gap: 80px; }
.domain-text { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.domain-tlds { display: flex; flex-wrap: wrap; gap: 8px; }
.domain-tld-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.domain-box { flex: 1; max-width: 460px; }
.domain-field {
  display: flex;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.domain-field:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.domain-field input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--white);
  min-width: 0;
}
.domain-field input::placeholder { color: rgba(255,255,255,0.4); }
.domain-field button {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.domain-field button:hover { background: #e05e00; }
.domain-tip { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-top: 10px; }
.domain-prices { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.domain-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: background var(--transition), border-color var(--transition);
}
.domain-price-row:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }
.domain-price-row span { color: rgba(255,255,255,0.75); font-weight: 600; }
.domain-price-row strong { color: var(--orange); }

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: var(--bg-3);
  transition: background var(--transition), color var(--transition);
  gap: 16px;
}
.faq-q:hover { background: var(--bg-4); }
.faq-item.open .faq-q { color: var(--orange); background: var(--bg-4); }
.faq-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, border-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--orange);
  color: var(--orange);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-3);
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CTA Portal === */
.section-cta {
  background: var(--bg-2);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-cta-white:hover {
  background: #e05e00;
  box-shadow: 0 8px 36px rgba(255,107,0,.4);
  transform: translateY(-2px);
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-cta-outline:hover {
  color: var(--white);
  border-color: var(--border-light);
  background: rgba(255,255,255,0.04);
}
.cta-assurance {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-assurance span { display: flex; align-items: center; gap: 6px; }

/* === Contact Cards === */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,107,0,.1);
}
.contact-icon { font-size: 2.25rem; line-height: 1; }
.contact-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.contact-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.contact-link {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.contact-link:hover { color: #ff8c33; }

/* === Footer === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.footer-badge {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bar { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bar-inner p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-bar-links { display: flex; gap: 20px; }
.footer-bar-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-bar-links a:hover { color: var(--white); }

/* === Page Hero (inner pages) === */
.page-hero {
  background: var(--bg);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}
.page-hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* === Feature Comparison Table === */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.compare-table th, .compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  color: var(--text-secondary);
}
.compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-4);
}
.compare-table thead th.col-hot { color: var(--orange); background: rgba(255,107,0,0.06); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr { background: var(--bg-3); }
.compare-table tbody tr:nth-child(even) { background: var(--bg-2); }
.compare-table tbody tr:hover { background: var(--bg-4); }
.compare-table tbody td { color: var(--text-secondary); }
.compare-check { color: var(--green); font-size: 1.1rem; }
.compare-x { color: var(--text-muted); opacity: 0.5; }
.compare-table tbody td.col-hot { background: rgba(255,107,0,0.04); }

/* === Step Cards === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,107,0,.08);
}
.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,107,0,0.12);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* === TLD Pricing Table === */
.tld-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.tld-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.tld-table th {
  text-align: left;
  padding: 14px 20px;
  background: var(--bg-4);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.tld-row { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.tld-row:last-child { border-bottom: none; }
.tld-row:nth-child(even) { background: rgba(255,255,255,0.01); }
.tld-row:hover { background: rgba(255,255,255,0.03); }
.tld-row td { padding: 14px 20px; vertical-align: middle; }
.tld-ext {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}
.tld-price { color: var(--orange); font-weight: 600; }
.tld-renew { color: var(--text-muted); font-size: 0.9rem; }
.tld-action {
  display: inline-flex;
  align-items: center;
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius);
  padding: 7px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.tld-action:hover { background: rgba(255,107,0,0.2); border-color: var(--orange); }

/* === Reveal Animations === */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.23,1,.32,1);
}
.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* === Magnetic Button === */
.magnetic { transition: transform 0.3s cubic-bezier(.23,1,.32,1); }

/* === Misc Utilities === */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.section-title--dark { color: var(--text-dark); }
.section-sub--dark { color: #52525B; }

/* === Use Case Cards === */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usecase-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.usecase-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,107,0,.08);
}
.usecase-icon { font-size: 2.25rem; margin-bottom: 16px; }
.usecase-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.usecase-sub { font-size: 0.875rem; font-weight: 600; color: var(--orange); margin-bottom: 10px; }
.usecase-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* === Infrastructure === */
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.infra-specs { display: flex; flex-direction: column; gap: 12px; }
.infra-spec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.infra-spec-item:hover { border-color: rgba(255,107,0,0.3); }
.infra-spec-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.infra-spec-text strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--white); }
.infra-spec-text span { font-size: 0.8125rem; color: var(--text-muted); }
.server-spec-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ssc-header {
  background: var(--orange);
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ssc-body { padding: 24px; }
.ssc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.ssc-row:last-child { border-bottom: none; }
.ssc-row span { color: var(--text-muted); }
.ssc-row strong { color: var(--white); font-weight: 600; }

/* === Speed Compare === */
.speed-compare {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.speed-compare-header {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.speed-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.speed-row:last-child { margin-bottom: 0; }
.speed-label { display: flex; justify-content: space-between; font-size: 0.875rem; }
.speed-label span { color: var(--text-muted); }
.speed-label strong { color: var(--white); }
.speed-bar {
  height: 10px;
  background: var(--bg);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.speed-fill { height: 100%; border-radius: var(--radius-full); }
.speed-fill--good { background: var(--green); }
.speed-fill--bad { background: #ef4444; }

/* === Transfer Steps === */
.transfer-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.transfer-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.transfer-step:hover { border-color: rgba(255,107,0,0.3); }
.transfer-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--orange-light);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
}
.transfer-step-text strong { display: block; font-weight: 600; color: var(--white); font-size: 0.9375rem; }
.transfer-step-text span { font-size: 0.8125rem; color: var(--text-muted); }

/* === Responsive === */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .vps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .infra-grid { grid-template-columns: 1fr; gap: 40px; }
  .domain-wrap { gap: 48px; }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 60px;
  }

  /* ── Announce bar: scrolling marquee on mobile ── */
  .announce-bar { overflow: hidden; }
  .announce-inner {
    animation: marquee-scroll 18s linear infinite;
    white-space: nowrap;
    padding-right: 60px; /* gap between loop */
  }
  .announce-bar:hover .announce-inner { animation-play-state: paused; }
  @keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── Navbar ── */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 140;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 1rem; }
  .nav-hamburger { display: flex; }
  .btn-nav-login { display: none; }

  /* ── Hero: text first, mockup below ── */
  .hero { padding: 36px 0 48px; min-height: auto; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 16px;
  }
  .hero-left { order: 1; }
  .hero-right { order: 2; }

  /* ── Mockup: smaller + contained ── */
  .mockup-scene { max-width: 100%; }
  .mockup-card { font-size: 0.8rem; }
  .mc-body { padding: 12px; }
  .mc-metrics { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .mc-metric { padding: 8px; }
  .mc-metric small { font-size: 0.6rem; }
  .mc-metric strong { font-size: 0.875rem; }
  .mc-sparkline { height: 24px; }
  .float-1, .float-2, .float-3 { display: none; }

  /* ── Sections ── */
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-intro { margin-bottom: 40px; }

  /* ── Various layouts ── */
  .features-layout { grid-template-columns: 1fr; gap: 40px; }
  .features-right { order: -1; }
  .features-visual { max-width: 100%; }
  .domain-wrap { flex-direction: column; gap: 40px; }
  .domain-box { max-width: 100%; width: 100%; }
  .contact-cards { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bar-inner { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.8125rem; }
  .tld-table th, .tld-row td { padding: 10px 12px; }
  .vps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary-lg, .btn-ghost-lg { justify-content: center; }
  .cta-btns { flex-direction: column; width: 100%; }
  .btn-cta-white, .btn-cta-outline { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .mc-metrics { grid-template-columns: repeat(2, 1fr); }
  .hero-heading { font-size: 2rem; }
  .hero-sub { font-size: 0.9375rem; }
}

/* Smooth theme transitions on key elements */
body, .navbar, .mockup-card, .pricing-card, .testi-card,
.feat-item, .features-visual, .faq-item, .vps-card,
.float-badge, footer {
  transition:
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    color 0.25s ease,
    box-shadow 0.35s ease;
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--border-light);
  background: rgba(255,255,255,0.05);
}
.theme-toggle svg { width: 17px; height: 17px; }
/* Show sun in dark mode, moon in light mode */
.icon-moon { display: none; }
.icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle:hover { background: rgba(0,0,0,0.05); }

/* ============================================================
   LIGHT THEME
   ============================================================ */
[data-theme="light"] {
  --bg:           #f8f9fc;
  --bg-2:         #f0f1f5;
  --bg-3:         #e8eaf0;
  --bg-4:         #e0e3eb;
  --border:       rgba(0, 0, 0, 0.09);
  --border-light: rgba(0, 0, 0, 0.15);
  --text:         #18181b;
  --text-secondary: #52525b;
  --text-muted:   #71717a;
  --text-dark:    #18181b;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.13);
}

/* ── Navbar ─────────────────────────────────────────────── */
[data-theme="light"] .navbar.scrolled {
  background: rgba(248,249,252,0.92) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
[data-theme="light"] .logo-text { color: var(--text); }
[data-theme="light"] .nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
[data-theme="light"] .nav-links a.nav-active { color: var(--orange); background: rgba(255,107,0,0.07); }
[data-theme="light"] .btn-nav-login { color: var(--text-secondary); }
[data-theme="light"] .btn-nav-login:hover { color: var(--text); }
[data-theme="light"] .nav-hamburger span { background: var(--text); }

/* Mobile nav */
@media (max-width: 768px) {
  [data-theme="light"] .nav-links {
    background: rgba(248,249,252,0.98);
    border-bottom-color: var(--border);
  }
}

/* ── Hero ───────────────────────────────────────────────── */
[data-theme="light"] .hero-heading { color: var(--text); }
[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
}
[data-theme="light"] .float-badge {
  background: rgba(255,255,255,0.96);
  border-color: var(--border-light);
  color: var(--text);
}
[data-theme="light"] .btn-ghost-lg {
  color: var(--text-secondary);
  border-color: var(--border);
}
[data-theme="light"] .btn-ghost-lg:hover {
  color: var(--text);
  background: rgba(0,0,0,0.04);
  border-color: var(--border-light);
}

/* ── Section titles & text on bg ────────────────────────── */
[data-theme="light"] .section-title { color: var(--text); }
[data-theme="light"] .feat-title { color: var(--text); }
[data-theme="light"] .fv-bar-label strong { color: var(--text); }
[data-theme="light"] .mc-metric strong { color: var(--text); }
[data-theme="light"] .mc-fstat strong { color: var(--text); }
[data-theme="light"] .testi-author strong { color: var(--text); }
[data-theme="light"] .toggle-opt.active { color: var(--text); }
[data-theme="light"] .pricing-name { color: var(--text); }
[data-theme="light"] .price-num { color: var(--text); }
[data-theme="light"] .price-dec { color: var(--text); }
[data-theme="light"] .step-title { color: var(--text); }

/* ── Mockup card (hero right) ───────────────────────────── */
[data-theme="light"] .mockup-card {
  box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .mc-url { background: var(--bg-2); color: var(--text-muted); }

/* ── Features visual ────────────────────────────────────── */
[data-theme="light"] .feat-item:hover { background: rgba(0,0,0,0.025); }
[data-theme="light"] .fv-track { background: var(--bg-4); }

/* ── Pricing ────────────────────────────────────────────── */
[data-theme="light"] .pricing-card--hot {
  background: linear-gradient(145deg, #fff5ef 0%, var(--bg-3) 60%);
}

/* ── CTA / section-orange: stays dark, no overrides needed ─ */

/* ── VPS cards ──────────────────────────────────────────── */
[data-theme="light"] .vps-card {
  background: rgba(255,255,255,0.6);
}
[data-theme="light"] .vps-card-name { color: var(--text); }
[data-theme="light"] .vps-card-price strong { color: var(--text); }

/* ── Footer ─────────────────────────────────────────────── */
[data-theme="light"] .footer-brand-text { color: var(--text); }
[data-theme="light"] .footer-col-title { color: var(--text); }

/* ── Compare table ──────────────────────────────────────── */
[data-theme="light"] .compare-table th { color: var(--text); }
[data-theme="light"] .compare-table .col-us { color: var(--text); }

/* ── FAQ ────────────────────────────────────────────────── */
[data-theme="light"] .faq-q { color: var(--text); }
[data-theme="light"] .faq-a { color: var(--text-secondary); }

/* ── Domain section ─────────────────────────────────────── */
[data-theme="light"] .domain-title { color: var(--text); }
[data-theme="light"] .tld-table th { color: var(--text-muted); }

/* ── Toggle switch (billing) ────────────────────────────── */
[data-theme="light"] .toggle-switch { background: var(--bg-4); border-color: var(--border-light); }
[data-theme="light"] .toggle-knob { background: var(--text-muted); }
