:root {

  
  --bg-primary: #050505;
  --bg-secondary: #0b0b0b;
  --bg-tertiary: #0f0d10;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --text-primary: #fefefe;
  --text-secondary: #969696;
  --text-tertiary: #828282;
  --text-inverse: #050505;
  
  
  --accent-1: #5d476f;
  --accent-2: #8a6da0;
  --accent-3: #b5a2c1;
  --purple-deep: #150b1b;
  --purple-line: #493654;
  --accent-glow: rgba(93, 71, 111, 0.25);
  
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  --border-color: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);
  
  --radius-sm: 2px;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-xl: 2px;
  --radius-full: 2px;
  --line: rgba(255, 255, 255, 0.09);
  
  --font-sans: 'Geist Mono', 'JetBrains Mono', 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;
  --font-mono: 'Geist Mono', 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  
  --nav-height: 72px;
  --ticker-height: 34px;
  --max-width: 1280px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  overflow-y: auto;
  min-height: 100%;
  width: 100%;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow: visible;
  min-height: 100%;
  height: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  transition: background var(--transition-normal), color var(--transition-normal);
}

input[type="text"], input[type="search"], input[type="email"],
input[type="number"], input[type="tel"], input[type="password"],
textarea, select {
  font-size: 16px;
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
html::-webkit-scrollbar-thumb {
  background: var(--text-tertiary);
  border-radius: 3px;
}
html::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

::selection {
  background: var(--accent-1);
  color: white;
}

img, video, canvas {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: var(--accent-3);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--accent-2);
}

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

.btn, .nav-links a, .mobile-toggle, .currency-option, .faq-question {
  touch-action: manipulation;
}

@media (hover: none) and (pointer: coarse) {
  .feature-card:hover, .plan-card:hover, .blog-card:hover {
    transform: none;
  }
  .feature-card:hover {
    transform: translate3d(0, -2px, 0);
  }
  .btn-primary:hover {
    transform: none;
  }
  .btn-secondary:hover {
    background: var(--bg-card);
  }
  .btn-ghost:hover {
    background: transparent;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition-normal);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled::before {
  border-bottom-color: var(--purple-line);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1001;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
  will-change: transform;
}

.ticker {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 999;
  overflow: hidden;
  height: var(--ticker-height);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--purple-line);
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: tickerScroll 20s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.ticker-group span {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 24px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.ticker-group span:nth-child(odd) {
  color: var(--accent-3);
}
.ticker-group span::after {
  content: '';
  position: absolute;
  right: -1px;
  width: 4px;
  height: 4px;
  background: var(--purple-line);
  transform: rotate3d(0, 0, 1, 45deg);
}

@keyframes tickerScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.navbar-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 calc(24px + env(safe-area-inset-right)) 0 calc(24px + env(safe-area-inset-left));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover {
  color: var(--text-primary);
  opacity: 0.85;
}
.nav-logo img {
  border: 1px solid var(--purple-line);
  padding: 2px;
}
.nav-logo .logo-text {
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translate3d(-50%, 0, 0) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent-2);
  border-radius: 1px;
  transition: transform var(--transition-fast);
}
.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}
.nav-links a:hover::after {
  transform: translate3d(-50%, 0, 0) scaleX(1);
}
.nav-links a.active {
  color: var(--accent-3);
}
.nav-links a.active::after {
  transform: translate3d(-50%, 0, 0) scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale3d(0.97, 0.97, 1);
}

.btn-primary {
  background: var(--accent-1);
  border: 1px solid var(--purple-line);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--text-inverse);
  transform: translate3d(0, -1px, 0);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px;
  border-radius: var(--radius-sm);
}
.btn-ghost:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
}
.mobile-toggle:hover {
  background: var(--bg-card);
}

.hero {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--ticker-height) + 48px) 24px 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0H60M0 0V60' stroke='%23ffffff' stroke-opacity='0.09'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.3;
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: end;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}
.hero-badge.chip-purple {
  border-color: var(--purple-line);
  color: var(--accent-3);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  min-height: 2.1em;
}

.hero-title .highlight {
  color: var(--accent-3);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
  min-height: 3.4em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-actions .btn {
  padding: 13px 28px;
  font-size: 0.9rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-tertiary);
  font-size: 0.75rem;
}
.hero-stats b {
  color: var(--accent-3);
  margin-right: 5px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  background: var(--bg-secondary);
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  min-height: 42px;
  border-bottom: 1px solid var(--line);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
}
.hero-panel-top .live {
  color: var(--accent-3);
  animation: livePulse 2.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hero-panel-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}
.hero-panel-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.hero-panel-row.is-featured {
  border-left: 2px solid var(--accent-2);
  background: var(--purple-deep);
}
.hero-panel-row.is-featured:hover {
  background: var(--purple-deep);
}
.hero-panel-row .row-code {
  display: block;
  margin-bottom: 30px;
  font-size: 0.65rem;
  color: var(--text-tertiary);
}
.hero-panel-row.is-featured .row-code,
.hero-panel-row.is-featured p {
  color: var(--text-primary);
}
.hero-panel-row h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.hero-panel-row p {
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.hero-panel-row .row-arrow {
  font-size: 1.2rem;
  color: var(--text-tertiary);
  display: inline-block;
  transition: transform 0.25s ease;
}
.hero-panel-row:hover .row-arrow {
  transform: translate3d(2px, -2px, 0);
}

.hero-panel-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  min-height: 44px;
  font-size: 0.65rem;
  color: var(--text-tertiary);
}
.hero-panel-status strong {
  color: var(--text-primary);
  text-align: center;
  font-size: 0.7rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 88px 24px 80px;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 1px;
  background: var(--purple-line);
}

.section-header {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  padding-top: 28px;
}

.section-tag {
  display: block;
  color: var(--accent-3);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-title .word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.4em, 0);
  filter: blur(2px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease-out;
}
.section-title.words-in .word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 640px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  counter-reset: feature-index;
}

.feature-card {
  padding: 22px 26px 30px;
  min-height: 220px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  counter-increment: feature-index;
}

.feature-card::before {
  content: counter(feature-index, decimal-leading-zero);
  display: block;
  margin-bottom: 26px;
  color: var(--text-tertiary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.feature-card-tag {
  position: absolute;
  top: 22px;
  right: 26px;
  color: var(--text-tertiary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.feature-card:hover {
  background: var(--bg-card);
}

.feature-card:hover h3 {
  color: var(--accent-3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 71, 111, 0.16);
  border: 1px solid var(--purple-line);
  margin-bottom: 32px;
}

.feature-icon img {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.feature-card-radar .radar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.radar-face {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--purple-deep);
  border: 1px solid var(--purple-line);
  overflow: hidden;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(181, 162, 193, 0.22);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.radar-ring:nth-child(1) { width: 24px; height: 24px; }
.radar-ring:nth-child(2) { width: 46px; height: 46px; }
.radar-ring:nth-child(3) { width: 68px; height: 68px; }

.radar-cross {
  position: absolute;
  inset: 0;
}
.radar-cross::before,
.radar-cross::after {
  content: '';
  position: absolute;
  background: rgba(181, 162, 193, 0.16);
}
.radar-cross::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translate3d(0, -50%, 0);
}
.radar-cross::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translate3d(-50%, 0, 0);
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-3);
  opacity: 0.3;
  clip-path: polygon(50% 50%, 50% 0%, 78% 0%);
  animation: radarSpin 3.2s linear infinite;
  will-change: transform;
}

@keyframes radarSpin {
  from { transform: rotate3d(0, 0, 1, 0deg); }
  to { transform: rotate3d(0, 0, 1, 360deg); }
}

.radar-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-3);
  opacity: 0;
  animation: radarBlip 3.2s ease-out infinite;
}
.radar-dot-1 { top: 20%; left: 65%; animation-delay: 0s; }
.radar-dot-2 { top: 62%; left: 28%; animation-delay: 0.7s; }
.radar-dot-3 { top: 35%; left: 22%; animation-delay: 1.5s; }
.radar-dot-4 { top: 70%; left: 68%; animation-delay: 2.1s; }
.radar-dot-5 { top: 48%; left: 50%; animation-delay: 2.7s; }

@keyframes radarBlip {
  0%   { opacity: 0; transform: scale3d(0.4, 0.4, 1); }
  8%   { opacity: 1; transform: scale3d(1.3, 1.3, 1); }
  20%  { opacity: 0.4; transform: scale3d(1, 1, 1); }
  40%  { opacity: 0; transform: scale3d(0.8, 0.8, 1); }
  100% { opacity: 0; }
}

.radar-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  counter-reset: plan-index;
}

.plans-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.plan-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
  position: relative;
  counter-increment: plan-index;
}
.plan-card:hover {
  background: var(--bg-card);
}
.plan-card::after {
  content: counter(plan-index, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}
.plan-card.featured::after {
  display: none;
}

.plan-card.featured {
  border-left: 2px solid var(--accent-2);
  background: var(--purple-deep);
}
.plan-card.featured:hover {
  background: var(--purple-deep);
}
.plan-card.featured::before {
  content: 'Best Seller';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-2);
  color: var(--text-inverse);
  padding: 5px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-card .plan-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--purple-line);
}
.plan-card .plan-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.plan-card .plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.plan-card .plan-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 34px;
}

.plan-card .plan-price {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.plan-card .plan-price .currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.plan-card .plan-price .period {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.plan-card .plan-features {
  list-style: none;
  margin: 0 0 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.plan-card .plan-features li .feat-icon {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  font-size: 0.75rem;
}

.plan-card .plan-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-3);
  margin-top: 4px;
}

.plan-card .btn {
  width: 100%;
  padding: 12px;
  margin-top: auto;
}

.custom-plan-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}
.custom-plan-card:hover {
  background: var(--bg-card);
}

.custom-plan-card .custom-icon {
  font-size: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-plan-card .custom-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.custom-plan-card .custom-content {
  flex: 1;
}
.custom-plan-card .custom-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.custom-plan-card .custom-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.custom-plan-card .btn {
  flex-shrink: 0;
  padding: 12px 28px;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-item.active {
  border-color: var(--accent-2);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-question:hover {
  color: var(--accent-3);
}
.faq-question .faq-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.faq-question .faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--text-tertiary);
}
.faq-item.active .faq-arrow {
  transform: rotate3d(0, 0, 1, 180deg);
  color: var(--accent-3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 18px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-toolbar {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-search {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.blog-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 18px;
  height: 18px;
  color: var(--text-tertiary);
  pointer-events: none;
}

.blog-search input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  transition: all var(--transition-fast);
  outline: none;
}

.blog-search input:focus {
  border-color: var(--accent-2);
  background: var(--bg-card-hover);
}

.blog-search input::placeholder {
  color: var(--text-tertiary);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.category-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  touch-action: manipulation;
}

.category-btn:hover {
  border-color: var(--accent-2);
  color: var(--accent-3);
  background: var(--accent-glow);
}

.category-btn.active {
  background: var(--accent-2);
  color: var(--text-inverse);
  border-color: transparent;
}

.blog-grid .blog-card.hidden {
  display: none;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.page-btn:hover {
  border-color: var(--accent-2);
  color: var(--accent-3);
}

.page-btn.active {
  background: var(--accent-2);
  color: var(--text-inverse);
  border-color: transparent;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-count {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin: 0 8px;
}

.no-results {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-tertiary);
  display: none;
}

.no-results.show {
  display: block;
}

.no-results h3 {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.blog-card {
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: background var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}
.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translate3d(0, -4px, 0);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-bottom: 1px solid var(--border-color);
}

.blog-card-content {
  padding: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.blog-card-category {
  padding: 2px 10px;
  border-radius: var(--radius-full);
  background: var(--accent-glow);
  color: var(--accent-3);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-3);
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap var(--transition-fast);
}
.blog-card .blog-read-more:hover {
  gap: 10px;
  color: var(--accent-2);
}

.cta-section {
  border: none;
}
.cta-section::before {
  display: none;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 44px;
  border: 1px solid var(--purple-line);
  background: var(--purple-deep);
  text-align: left;
}

.cta-content .cta-copy {
  max-width: 520px;
}

.cta-content .cta-copy span {
  display: block;
  color: var(--accent-3);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta-content .btn {
  flex-shrink: 0;
  padding: 15px 32px;
  font-size: 0.9rem;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}
.footer ul a:hover {
  color: var(--accent-3);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--accent-1);
  color: white;
  transform: translate3d(0, -2px, 0);
}

.page-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--ticker-height) + 40px) 24px 40px;
  text-align: left;
  position: relative;
}

.page-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 12px;
  min-height: 1.2em;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  min-height: 1.6em;
}

.currency-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.currency-option {
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--text-tertiary);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.currency-option.active {
  background: var(--accent-1);
  color: white;
}
.currency-option:hover:not(.active) {
  color: var(--text-primary);
}

.protection-notice {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: calc(24px + env(safe-area-inset-right));
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}
.protection-notice.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .custom-plan-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid,
  .plans-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: calc(var(--nav-height) + var(--ticker-height));
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 8px;
    gap: 2px;
    transform: translate3d(0, -10px, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
  }
  .nav-links.open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  
  .nav-actions .btn-text {
    display: none;
  }
  
  .hero {
    padding: calc(var(--nav-height) + var(--ticker-height) + 32px) 20px 60px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-grid .feature-card {
    max-width: 100%;
  }
  
  .plans-grid,
  .plans-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .currency-toggle {
    transform: scale3d(0.85, 0.85, 1);
    transform-origin: right center;
  }

  .hero-stats {
    gap: 14px;
  }
}

.mc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.mc-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/bg-dirt.svg');
  background-size: 128px 128px;
  background-repeat: repeat;
  opacity: 0.06;
  animation: mcParallax 60s linear infinite;
}

@keyframes mcParallax {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(30px, -20px, 0); }
  50% { transform: translate3d(-10px, 40px, 0); }
  75% { transform: translate3d(-40px, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.console-section {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  overflow: hidden;
}
.console-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 1px;
  background: var(--purple-line);
}

.console-section .section-header {
  position: relative;
  z-index: 2;
}

.console-terminal {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--purple-deep);
  border: 1px solid var(--purple-line);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.console-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--purple-line);
}

.console-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.console-dot.red { background: #ff5f57; }
.console-dot.yellow { background: #febc2e; }
.console-dot.green { background: #28c840; }

.console-title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-right: 36px;
}

.console-body {
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
  min-height: 240px;
}

.console-line {
  opacity: 0;
  transform: translate3d(0, 4px, 0);
  animation: consoleType 0.3s ease-out forwards;
}

.console-line .prefix {
  color: var(--accent-3);
}
.console-line .success {
  color: var(--success);
}
.console-line .info {
  color: var(--accent-2);
}
.console-line .warning {
  color: var(--warning);
}
.console-line .highlight-console {
  color: var(--text-primary);
}
.console-line .dim {
  color: var(--text-tertiary);
}

@keyframes consoleType {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.console-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent-3);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% { opacity: 0; }
}

.console-status {
  max-width: 700px;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  opacity: 0;
  transition: all 0.5s ease-out;
}
.console-status.show {
  opacity: 1;
}
.console-status .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.console-status .status-text {
  color: var(--success);
  font-weight: 600;
}

.cpanel-section {
  position: relative;
  overflow: hidden;
}

.cpanel-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.payment-section {
  padding: 60px 24px 80px;
  position: relative;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.payment-header {
  text-align: center;
  margin-bottom: 40px;
}

.payment-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-header p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: transform var(--transition-fast);
}
.payment-item:hover {
  transform: translate3d(0, -3px, 0);
}

.payment-item img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  object-fit: contain;
}

.payment-item img.payment-logo {
  width: auto;
  height: 26px;
  max-width: 120px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 11px 14px;
  box-sizing: content-box;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.payment-item:hover img.payment-logo {
  border-color: var(--purple-line);
  transform: translate3d(0, -2px, 0);
}

.payment-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .payment-grid {
    gap: 16px;
  }
  .payment-item img {
    width: 40px;
    height: 40px;
  }
  .payment-divider {
    display: none;
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.text-gradient {
  color: var(--accent-3);
}

.page-wrapper {
  min-height: 100%;
}

body.is-loaded .page-wrapper {
  animation: pageEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pageEnter {
  from { 
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to { 
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.blog-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.blog-article .article-meta {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-article .article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-article .article-content h2 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 12px;
}

.blog-article .article-content h3 {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 8px;
}

.blog-article .article-content p {
  margin-bottom: 16px;
}

.blog-article .article-content ul, 
.blog-article .article-content ol {
  margin: 12px 0 20px;
  padding-left: 24px;
}

.blog-article .article-content li {
  margin-bottom: 8px;
}

.blog-article .article-content strong {
  color: var(--text-primary);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

html.is-loading {
  overflow: hidden;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 280px;
}

.loading-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.loading-brand img {
  border: 1px solid var(--purple-line);
  padding: 2px;
}

.loading-progress {
  width: 100%;
  height: 3px;
  background: var(--border-color);
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-2);
  transition: width 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-percent {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.loading-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-logo svg,
.loading-logo img {
  width: 56px;
  height: 56px;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { transform: scale3d(1, 1, 1); opacity: 1; }
  50% { transform: scale3d(1.08, 1.08, 1); opacity: 0.8; }
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--accent-3);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate3d(0, 0, 1, 360deg); }
}

.loading-text {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-tertiary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
}

.loading-text .dots {
  display: inline-flex;
  gap: 2px;
}

.loading-text .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-tertiary);
  animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-text .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-text .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%, 80%, 100% { transform: translate3d(0, 0, 0); opacity: 0.3; }
  40% { transform: translate3d(0, -6px, 0); opacity: 1; }
}

.back-to-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: calc(24px + env(safe-area-inset-right));
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--text-inverse);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--purple-line);
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  pointer-events: none;
  transition: all var(--transition-normal);
  touch-action: manipulation;
}
.back-to-top.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translate3d(0, -3px, 0);
  background: var(--accent-3);
}
.back-to-top:active {
  transform: scale3d(0.95, 0.95, 1);
}

.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--ticker-height) + 20px) 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}
.breadcrumb + .page-header {
  padding-top: 24px;
}
.page-header .breadcrumb {
  padding: 0 0 16px;
}
.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb a:hover {
  color: var(--accent-3);
}
.breadcrumb .sep {
  color: var(--text-tertiary);
  font-size: 0.7rem;
}
.breadcrumb .current {
  color: var(--accent-3);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.testimonial-card {
  padding: 26px 24px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
}
.testimonial-card:hover {
  background: var(--bg-card);
}

.testimonial-card .quote {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent-3);
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border: 1px solid var(--purple-line);
  background: var(--purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-3);
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info .name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.testimonial-info .role {
  font-size: 0.7rem;
  color: var(--text-tertiary);
}

.testimonial-stars {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--accent-3);
}

.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: var(--max-width);
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  min-width: 700px;
}

.pricing-table thead th {
  background: var(--bg-tertiary);
  padding: 16px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table thead th:first-child {
  text-align: left;
  padding-left: 20px;
}

.pricing-table thead th.featured-header {
  background: var(--accent-2);
  color: var(--text-inverse);
}

.pricing-table tbody td {
  padding: 12px 14px;
  text-align: center;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody td:first-child {
  text-align: left;
  padding-left: 20px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover td {
  background: var(--bg-card-hover);
}

.pricing-table tbody td .check {
  color: var(--success);
  font-weight: 700;
}

.pricing-table tbody td .cross {
  color: var(--text-tertiary);
}

.pricing-table tbody td .price-cell {
  font-weight: 700;
  color: var(--accent-3);
  font-size: 0.9rem;
}

.pricing-table tbody td .btn-small {
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--accent-2);
  color: var(--text-inverse);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
  touch-action: manipulation;
}
.pricing-table tbody td .btn-small:hover {
  transform: translate3d(0, -1px, 0);
}

@media (max-width: 768px) {
  .pricing-table-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
  }
  .pricing-table {
    font-size: 0.75rem;
    min-width: 600px;
  }
  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 10px 8px;
  }
}

.ram-calculator {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.ram-calc-group {
  margin-bottom: 20px;
}

.ram-calc-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ram-calc-group label .value {
  color: var(--accent-3);
  font-weight: 700;
}

.ram-calc-group input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg-secondary);
  border-radius: 3px;
  outline: none;
  border: none;
}

.ram-calc-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-2);
  cursor: pointer;
  border: none;
}

.ram-calc-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-2);
  cursor: pointer;
  border: none;
}

.ram-calc-result {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  text-align: center;
}

.ram-calc-result .result-ram {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-3);
}

.ram-calc-result .result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.ram-calc-result .result-package {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.ram-calc-result .result-package.recommended {
  background: var(--accent-glow);
  color: var(--accent-3);
  border: 1px solid rgba(93, 71, 111, 0.3);
}

.ram-calc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.ram-calc-tags .tag {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-tertiary);
}

.ram-calc-tags .tag.active {
  background: var(--accent-glow);
  border-color: var(--accent-2);
  color: var(--accent-3);
}

@media (max-width: 768px) {
  .ram-calculator {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .mc-bg::before {
    animation-duration: 90s;
  }

  .hero-bg::after {
    background-size: 44px 44px;
    opacity: 0.28;
  }
}

@media (max-width: 380px) {
  .section,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }
}

@keyframes cardRise {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

body.is-loaded .blog-grid .blog-card,
body.is-loaded .faq-container .faq-item {
  animation: cardRise 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-loaded .hero-panel-row,
body.is-loaded .hero-panel-status {
  animation: cardRise 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
body.is-loaded .hero-panel-row:nth-of-type(1) { animation-delay: 0.5s; }
body.is-loaded .hero-panel-row:nth-of-type(2) { animation-delay: 0.62s; }
body.is-loaded .hero-panel-status { animation-delay: 0.74s; }

body.is-loaded .blog-grid .blog-card:nth-child(1),
body.is-loaded .faq-container .faq-item:nth-child(1)   { animation-delay: 0.05s; }
body.is-loaded .blog-grid .blog-card:nth-child(2),
body.is-loaded .faq-container .faq-item:nth-child(2)   { animation-delay: 0.10s; }
body.is-loaded .blog-grid .blog-card:nth-child(3),
body.is-loaded .faq-container .faq-item:nth-child(3)   { animation-delay: 0.15s; }
body.is-loaded .blog-grid .blog-card:nth-child(4),
body.is-loaded .faq-container .faq-item:nth-child(4)   { animation-delay: 0.20s; }
body.is-loaded .blog-grid .blog-card:nth-child(5),
body.is-loaded .faq-container .faq-item:nth-child(5)   { animation-delay: 0.25s; }
body.is-loaded .blog-grid .blog-card:nth-child(6),
body.is-loaded .faq-container .faq-item:nth-child(6)   { animation-delay: 0.30s; }
body.is-loaded .blog-grid .blog-card:nth-child(7),
body.is-loaded .faq-container .faq-item:nth-child(7)   { animation-delay: 0.35s; }
body.is-loaded .blog-grid .blog-card:nth-child(8),
body.is-loaded .faq-container .faq-item:nth-child(8)   { animation-delay: 0.40s; }
body.is-loaded .blog-grid .blog-card:nth-child(9),
body.is-loaded .faq-container .faq-item:nth-child(9)   { animation-delay: 0.45s; }
body.is-loaded .blog-grid .blog-card:nth-child(n+10),
body.is-loaded .faq-container .faq-item:nth-child(n+10) { animation-delay: 0.50s; }

body.is-loaded .page-header > :not(h1):not(p) {
  animation: cardRise 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
body.is-loaded .page-header > :not(h1):not(p):nth-child(1) { animation-delay: 0.05s; }
body.is-loaded .page-header > :not(h1):not(p):nth-child(2) { animation-delay: 0.15s; }

body.is-loaded .blog-toolbar,
body.is-loaded .section > .blog-search {
  animation: cardRise 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.05s;
}

.footer {
  position: relative;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 64px 24px 28px;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--accent-2);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  max-width: 300px;
  margin-top: 12px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.footer-socials a:hover {
  background: var(--accent-2);
  border-color: transparent;
  color: var(--text-inverse);
  transform: translate3d(0, -3px, 0);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul li {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}
.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-col ul a:hover {
  color: var(--accent-3);
  padding-left: 4px;
}
.footer-contact .contact-ico {
  margin-right: 4px;
}

.footer-payment {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-payment-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
}
.footer-payment-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-payment-logos img {
  height: 18px;
  width: auto;
  max-width: 80px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 7px 9px;
  box-sizing: content-box;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  user-select: none;
  -webkit-user-drag: none;
}
.footer-payment-logos img:hover {
  transform: translate3d(0, -2px, 0);
  border-color: var(--purple-line);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-bottom-links a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover {
  color: var(--accent-3);
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    row-gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-payment {
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.cpanel-showcase {
  max-width: 920px;
  margin: 40px auto 0;
}

.cpanel-window {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--purple-deep);
  border: 1px solid var(--purple-line);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.cpanel-window:hover {
  transform: translate3d(0, -4px, 0);
  border-color: var(--border-hover);
}

.cpanel-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}
.cpanel-window-title {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-right: 48px;
}

.cpanel-window-screen {
  display: block;
  line-height: 0;
}
.cpanel-window-screen img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .cpanel-window-title {
    margin-right: 24px;
    font-size: 0.7rem;
  }
}

body { letter-spacing: -0.01em; }
.section-title, .hero-title, .cta-content h2, .page-header h1 {
  letter-spacing: -0.025em;
}

.plan-card:hover,
.blog-card:hover,
.testimonial-card:hover {
  border-color: rgba(138, 109, 160, 0.35);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 8px;
}

.btn-secondary:hover {
  transform: translate3d(0, -2px, 0);
}

.blog-card,
.testimonial-card {
  position: relative;
}
.blog-card::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-2);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.blog-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.faq-item {
  position: relative;
}
.faq-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-2);
  z-index: 2;
}

.nav-links a.active {
  background: rgba(93, 71, 111, 0.10);
}

.hero-desc strong {
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .testimonials-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-payment-logos img {
    height: 15px;
    padding: 6px 8px;
  }

  .cta-content {
    padding: 30px 22px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .blog-card::before,
  .testimonial-card::before {
    display: none;
  }
}

.typewriter-target {
  transform-origin: left center;
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.typewriter-target.typewriter-pending {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}
.typewriter-target.typewriter-active,
.typewriter-target.typewriter-complete {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.type-cursor {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0;
  vertical-align: baseline;
  pointer-events: none;
}
.type-cursor::before {
  content: '';
  position: absolute;
  left: 0.12em;
  bottom: -0.08em;
  width: 3px;
  height: 0.95em;
  background: var(--accent-2);
  border-radius: 2px;
  transform-origin: center bottom;
  animation: typeBlink 0.85s step-end infinite;
}
.type-cursor.done::before {
  animation: typeCursorExit 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes typeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes typeCursorExit {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -0.32em, 0) scale3d(1, 0.72, 1);
  }
}

.hero-title .highlight {
  display: inline-block;
  min-height: 1.1em;
}

@media (max-width: 768px) {
  .typewriter-target.typewriter-pending {
    transform: translate3d(0, 9px, 0);
  }
  .type-cursor::before {
    left: 0.09em;
    width: 2px;
  }
  .hero-title,
  .page-header h1,
  .error-title {
    overflow-wrap: anywhere;
  }
}

.page {
  --editorial-bg: #060607;
  --editorial-surface: #0c0b0e;
  --editorial-surface-2: #121015;
  --editorial-line: #1a181c;
  --editorial-muted: #918d94;
  --editorial-ease: cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--editorial-bg);
}

.page .navbar-inner,
.page .hero,
.page .section,
.page .console-section,
.page .page-header,
.page .footer-inner,
.page .footer-payment,
.page .footer-bottom {
  max-width: 1440px;
}

.page .navbar-inner,
.page .section,
.page .console-section,
.page .page-header,
.page .footer-inner,
.page .back-to-top-strip {
  border-left: none;
  border-right: none;
}

.page .nav-logo {
  min-height: 40px;
  padding-right: 22px;
  border-right: 1px solid var(--editorial-line);
}

.page .nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page .page-wrapper {
  counter-reset: editorial-section;
}

.page .section,
.page .console-section {
  counter-increment: editorial-section;
}

.page .section-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--editorial-line);
}

.page .section-tag {
  margin-bottom: 18px;
}

.page .section-tag::before {
  content: counter(editorial-section, decimal-leading-zero) " / ";
  color: var(--text-tertiary);
}

.page .section-title {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.page .section-desc {
  margin-top: 16px;
  max-width: 680px;
}

.page .section::before,
.page .console-section::before {
  display: none;
}

.page .page-header {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--editorial-line);
  padding: calc(var(--nav-height) + var(--ticker-height) + 72px) 48px 54px;
}

.page .page-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--accent-3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page .page-header h1 {
  max-width: 980px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.page .page-header p {
  max-width: 720px;
  margin-top: 8px;
  font-size: clamp(0.9rem, 1.4vw, 1.08rem);
}

.page--home .hero {
  min-height: calc(100svh - var(--nav-height) - var(--ticker-height));
  padding: calc(var(--nav-height) + var(--ticker-height) + 36px) 0 0;
}

.page--home .hero-meta {
  margin: 0;
  padding: 18px 48px;
  border-bottom: 1px solid var(--editorial-line);
}

.page--home .hero-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  min-height: 610px;
}

.page--home .hero-content {
  grid-column: 1 / span 8;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px 56px 48px;
  border-right: 1px solid var(--editorial-line);
}

.page--home .hero-title {
  max-width: 980px;
  font-size: clamp(3rem, 6.6vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.page--home .hero-desc {
  max-width: 680px;
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
}

.page--home .hero-actions .btn {
  min-height: 48px;
  padding-inline: 28px;
}

.page--home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: auto;
  border-top: 1px solid var(--editorial-line);
  border-bottom: 1px solid var(--editorial-line);
}

.page--home .hero-stats span {
  padding: 14px 16px;
  border-right: 1px solid var(--editorial-line);
}

.page--home .hero-stats span:last-child {
  border-right: 0;
}

.page--home .hero-panel {
  grid-column: 9 / -1;
  display: flex;
  flex-direction: column;
  border: 0;
  background: var(--editorial-surface);
}

.page--home .hero-panel-row {
  flex: 1;
  align-content: center;
  padding: 32px;
}

.page--home .hero-panel-row h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
}

.page--home .hero-panel-status {
  min-height: 58px;
}

.page--home .features-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.page--home .feature-card {
  grid-column: span 4;
  min-height: 290px;
  padding: 28px 30px 34px;
  background: var(--editorial-surface);
}

.page--home .feature-card:nth-child(1) {
  grid-column: span 5;
}

.page--home .feature-card:nth-child(2) {
  grid-column: span 3;
}

.page--home .feature-card-radar {
  grid-column: span 4;
  background: var(--purple-deep);
}

.page--home .feature-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.page--home .features-grid .feature-card:hover {
  background: var(--editorial-surface-2);
  border-color: var(--purple-line);
}

.page--home .plans-grid,
.page--home .testimonials-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.page--home .plan-card {
  grid-column: span 4;
  min-height: 520px;
  padding: 34px 30px;
}

.page--home .plan-card.featured {
  background: var(--purple-deep);
}

.page--home .testimonial-card {
  min-height: 300px;
  padding: 34px;
}

.page--home .testimonial-card:nth-child(1),
.page--home .testimonial-card:nth-child(4) {
  grid-column: span 7;
}

.page--home .testimonial-card:nth-child(2),
.page--home .testimonial-card:nth-child(3) {
  grid-column: span 5;
}

.page--home .console-terminal,
.page--home .console-status {
  max-width: 900px;
  margin-left: 25%;
  margin-right: 0;
}

.page--home .cpanel-showcase {
  max-width: 1120px;
}

.page--blog .blog-toolbar {
  max-width: 1440px;
  align-items: stretch;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--editorial-line);
}

.page--blog .blog-search {
  max-width: 760px;
  margin-left: 0;
}

.page--blog .blog-categories {
  justify-content: flex-start;
}

.page--blog .blog-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--editorial-line);
  border-left: 1px solid var(--editorial-line);
}

.page--blog .blog-card {
  grid-column: span 4;
  border: 0;
  border-right: 1px solid var(--editorial-line);
  border-bottom: 1px solid var(--editorial-line);
  border-radius: 0;
}

.page--blog .blog-card--lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 380px;
  background: var(--purple-deep);
}

.page--blog .blog-card--lead .blog-card-image {
  height: auto;
  min-height: 380px;
  border-right: 1px solid var(--purple-line);
  font-size: clamp(5rem, 10vw, 9rem);
}

.page--blog .blog-card--lead .blog-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.page--blog .blog-card--lead h3 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.page--blog .blog-card:not(.blog-card--lead) .blog-card-image {
  height: 150px;
  font-size: 2.5rem;
}

.page--blog .blog-card-content {
  padding: 26px;
}

.page--faq .faq-container {
  max-width: 980px;
  counter-reset: faq-index;
}

.page--faq .faq-item {
  counter-increment: faq-index;
  margin: 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.page--faq .faq-question {
  position: relative;
  min-height: 84px;
  padding: 22px 58px 22px 70px;
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
}

.page--faq .faq-question::before {
  content: counter(faq-index, decimal-leading-zero);
  position: absolute;
  left: 20px;
  color: var(--accent-3);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.page--faq .faq-answer {
  padding-left: 70px;
}

.page--faq .faq-item.active .faq-answer {
  padding: 0 58px 26px 70px;
}

.page--plans .plans-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page--plans .plan-card {
  min-height: 520px;
  padding: 32px 26px;
}

.page--plans .plan-card.featured {
  background: var(--purple-deep);
}

.page--plans .pricing-table-wrapper {
  margin: 0;
}

.page--article .page-header {
  min-height: 500px;
}

.page--article .breadcrumb {
  max-width: 1200px;
  padding-top: 22px;
}

.page--article .blog-article {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 64px;
  padding-top: 48px;
}

.page--article .article-meta {
  grid-column: 1;
  align-self: start;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  flex-direction: column;
  align-items: flex-start;
  padding-top: 18px;
  border-top: 1px solid var(--purple-line);
}

.page--article .article-content {
  grid-column: 2;
  max-width: 68ch;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.82;
}

.page--article .article-content h2,
.page--article .article-content h3 {
  font-family: var(--font-mono);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.page--article .article-content h2 {
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid var(--editorial-line);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.page--article .article-content li {
  padding-left: 8px;
  margin-bottom: 10px;
}

.page--article .blog-article > :not(.article-meta):not(.article-content) {
  grid-column: 2;
}

.page .btn {
  min-height: 44px;
  border-radius: 0;
}

.page .btn-primary {
  background: var(--accent-2);
  color: var(--text-inverse);
}

.page .btn-secondary,
.page .blog-search input,
.page .currency-toggle {
  background: var(--editorial-surface);
}

.page .cta-content {
  position: relative;
  padding: 54px;
  background: var(--purple-deep);
}

.page .cta-content::before {
  content: "READY / DEPLOY";
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--accent-3);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
}

.page .footer {
  background: var(--editorial-bg);
}

.page .footer-inner {
  padding: 0 28px;
}

.page--404 .error-content {
  max-width: 720px;
  padding: 48px;
  border: 1px solid var(--editorial-line);
  background: var(--editorial-surface);
}

.page--404 .error-code {
  font-size: clamp(6rem, 16vw, 11rem);
}

@media (max-width: 1100px) {
  .page--home .hero-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .page--home .hero-content {
    grid-column: 1 / span 5;
    padding-inline: 38px;
  }
  .page--home .hero-panel {
    grid-column: 6 / -1;
  }
  .page--home .feature-card:nth-child(1),
  .page--home .feature-card:nth-child(2),
  .page--home .feature-card-radar,
  .page--home .feature-card {
    grid-column: span 6;
  }
  .page--plans .plans-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page--blog .blog-card {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .page .page-header {
    min-height: 390px;
    padding-inline: 28px;
  }
  .page .section-tag {
    grid-column: 1 / span 2;
  }
  .page .section-title,
  .page .section-desc {
    grid-column: 3 / -1;
  }
  .page--home .hero {
    min-height: auto;
  }
  .page--home .hero-grid {
    display: block;
    min-height: 0;
  }
  .page--home .hero-content {
    padding: 56px 32px;
    border-right: 0;
    border-bottom: 1px solid var(--editorial-line);
  }
  .page--home .hero-panel {
    max-width: none;
  }
  .page--home .console-terminal,
  .page--home .console-status {
    margin-left: 0;
  }
  .page--article .blog-article {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 780px;
  }
  .page--article .article-meta,
  .page--article .article-content,
  .page--article .blog-article > :not(.article-meta):not(.article-content) {
    grid-column: 1;
  }
  .page--article .article-meta {
    position: static;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .page .navbar-inner {
    padding-inline: 16px;
  }
  .page .nav-logo {
    padding-right: 12px;
  }
  .page .page-header {
    min-height: 350px;
    padding: calc(var(--nav-height) + var(--ticker-height) + 48px) 20px 38px;
  }
  .page .page-header h1 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }
  .page .section,
  .page .console-section {
    padding: 60px 20px;
  }
  .page .section-tag {
    margin-bottom: 18px;
  }
  .page .section-title {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }
  .page--home .hero-meta {
    padding: 14px 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .page--home .hero-badge {
    flex: 0 0 auto;
  }
  .page--home .hero-content {
    padding: 44px 20px;
  }
  .page--home .hero-title {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }
  .page--home .hero-stats {
    grid-template-columns: 1fr;
  }
  .page--home .hero-stats span {
    border-right: 0;
    border-bottom: 1px solid var(--editorial-line);
  }
  .page--home .hero-stats span:last-child {
    border-bottom: 0;
  }
  .page--home .hero-panel-row {
    padding: 26px 20px;
  }
  .page--home .features-grid,
  .page--home .plans-grid,
  .page--home .testimonials-grid {
    display: block;
  }
  .page--home .feature-card,
  .page--home .plan-card,
  .page--home .testimonial-card {
    min-height: auto;
  }
  .page--home .feature-card,
  .page--home .testimonial-card {
    padding: 26px 22px;
  }
  .page--blog .blog-categories {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }
  .page--blog .category-btn {
    flex: 0 0 auto;
    min-height: 42px;
    scroll-snap-align: start;
  }
  .page--blog .blog-grid {
    display: block;
  }
  .page--blog .blog-card--lead {
    display: block;
    min-height: 0;
  }
  .page--blog .blog-card--lead .blog-card-image {
    min-height: 230px;
  }
  .page--blog .blog-card--lead .blog-card-content {
    padding: 28px 22px;
  }
  .page--faq .faq-question {
    padding: 20px 46px 20px 50px;
  }
  .page--faq .faq-question::before {
    left: 12px;
  }
  .page--faq .faq-answer,
  .page--faq .faq-item.active .faq-answer {
    padding-left: 50px;
    padding-right: 20px;
  }
  .page--plans .plans-grid-4 {
    grid-template-columns: 1fr;
  }
  .page--article .breadcrumb {
    padding: 18px 20px 0;
  }
  .page--article .blog-article {
    padding: 38px 20px 70px;
  }
  .page--article .article-content h2 {
    margin-top: 42px;
  }
  .page .cta-content {
    padding: 48px 22px 28px;
  }
  .page .cta-content .btn {
    width: 100%;
  }
  .page .footer-inner {
    padding-inline: 0;
    border: 0;
  }
  .page--404 .error-content {
    padding: 32px 20px;
  }
}


.section-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 1px;
  background: var(--purple-line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-divider.drawn {
  transform: scaleX(1);
}

.page .section-divider {
  max-width: 1440px;
}

.testimonials-grid.is-carousel,
.page--home .testimonials-grid.is-carousel {
  display: block;
  position: relative;
}

.testimonials-grid.is-carousel .testimonial-card,
.page--home .testimonials-grid.is-carousel .testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  grid-column: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-grid.is-carousel .testimonial-card.testimonial-active,
.page--home .testimonials-grid.is-carousel .testimonial-card.testimonial-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.plans-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.plans-more .btn {
  padding: 14px 28px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: scale3d(1.3, 1.3, 1);
}

.carousel-dot:hover:not(.active) {
  border-color: var(--accent-3);
}

.back-to-top-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.back-to-top-strip.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}

.back-to-top-btn:hover {
  color: var(--accent-3);
  background: var(--bg-card);
}

.back-to-top-btn .btt-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn:hover .btt-arrow {
  transform: translate3d(0, -4px, 0);
}

.page .back-to-top-strip {
  max-width: 1440px;
}

.creeper-game {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.creeper {
  width: 64px;
  height: 80px;
  background: #4a7a2e;
  border: 2px solid #3a6424;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  position: relative;
}

.creeper:hover {
  transform: scale3d(1.1, 1.1, 1);
}

.creeper:active {
  transform: scale3d(0.9, 0.9, 1);
}

.creeper-face {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  width: 28px;
  height: 28px;
}

.creeper-eye {
  width: 10px;
  height: 10px;
  background: #1a1a1a;
}

.creeper-mouth {
  grid-column: 1 / -1;
  width: 16px;
  height: 10px;
  background: #1a1a1a;
  justify-self: center;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.creeper-hint {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

.creeper-boom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
  font-size: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.creeper-boom.show {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale3d(1.4, 1.4, 1);
}

.creeper-exploding {
  animation: creeperExplode 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes creeperExplode {
  0% { transform: scale3d(1, 1, 1); opacity: 1; }
  30% { transform: scale3d(1.3, 1.3, 1); opacity: 1; }
  100% { transform: scale3d(0, 0, 1); opacity: 0; }
}

.code-block {
  position: relative;
  background: #0d1117;
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
  overflow-x: auto;
  tab-size: 4;
  color: var(--text-secondary);
}

.code-comment { color: #6a737d; }
.code-key { color: var(--accent-3); }
.code-bool { color: #79c0ff; }
.code-num { color: #f0883e; }

@media (max-width: 768px) {
  .back-to-top-strip {
    margin: 0;
  }
  .back-to-top-btn {
    padding: 18px 16px;
  }
  .creeper {
    width: 52px;
    height: 66px;
  }
  .creeper-face {
    width: 22px;
    height: 22px;
  }
  .creeper-eye {
    width: 8px;
    height: 8px;
  }
  .creeper-mouth {
    width: 12px;
    height: 8px;
  }
}

*::selection {
  background: var(--accent-1);
  color: var(--text-primary);
}

a, button, input, select, textarea, [tabindex] {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.btn:focus-visible,
.carousel-dot:focus-visible {
  outline: 2px solid var(--accent-3);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

section[id],
[id].section {
  scroll-margin-top: calc(var(--nav-height) + var(--ticker-height) + 20px);
}

@media print {
  .loading-screen,
  .navbar,
  .ticker,
  .back-to-top,
  .back-to-top-strip,
  .carousel-dots {
    display: none !important;
  }
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 4px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content h2 {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-content h3 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.legal-content ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.legal-content li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--accent-3);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-content a {
  color: var(--accent-3);
  text-decoration: none;
  border-bottom: 1px solid var(--purple-line);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.legal-content a:hover {
  color: var(--text-primary);
  border-color: var(--accent-3);
}

.legal-updated {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  border: 1px solid var(--line);
  padding: 6px 12px;
  margin-bottom: 28px;
}

.legal-highlight {
  border: 1px solid var(--purple-line);
  border-left: 3px solid var(--accent-2);
  background: var(--bg-secondary);
  padding: 24px 26px;
  margin: 28px 0;
}

.legal-highlight > *:last-child {
  margin-bottom: 0;
}

.legal-highlight.legal-danger {
  border-left-color: var(--warning);
}

.legal-nav-links {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-nav-links a {
  color: var(--accent-3);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.legal-nav-links a:hover {
  color: var(--text-primary);
}

.page .page-kicker {
  position: relative;
  padding-left: 30px;
}

.page .page-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--accent-2);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  animation: kickerLine 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes kickerLine {
  to { transform: translateY(-50%) scaleX(1); }
}

.btn {
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn:active {
  transform: translate3d(0, 1px, 0);
}

.footer-bottom-links a {
  position: relative;
  transition: color var(--transition-fast);
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--accent-3);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-fast);
}

.footer-bottom-links a:hover::after {
  transform: scaleX(1);
}


/* ============================================================
   LIQUID GLASS UPGRADE  (v24)
   Additive layer only. Keeps the existing hex palette
   (#5d476f / #8a6da0 / #b5a2c1 / #150b1b / #493654) and the
   Geist Mono type system. Adds frosted glass, specular sheen,
   and purple glow to the navbar, plan cards, icon tiles,
   price, primary/secondary buttons and CTA — tuned to make
   the pricing feel premium and drive conversions.
   ============================================================ */

:root {
  --glass-hi: rgba(255, 255, 255, 0.16);
  --glass-edge: rgba(181, 162, 193, 0.30);
  --glass-edge-strong: rgba(181, 162, 193, 0.58);
  --glass-glow: rgba(138, 109, 160, 0.55);
}

/* ---- Frosted glass navbar + ticker (site-wide) ---- */
.navbar::before {
  background: rgba(6, 6, 7, 0.62);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
}
.navbar.scrolled::before {
  background: rgba(6, 6, 7, 0.80);
}
.ticker {
  background: rgba(11, 11, 11, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}

/* ---- Liquid glass icon tiles ---- */
.plan-card .plan-icon,
.custom-plan-card .custom-icon {
  position: relative;
  overflow: hidden;
  border-color: var(--glass-edge);
  background:
    linear-gradient(135deg, rgba(181,162,193,0.16), rgba(93,71,111,0.05) 46%, rgba(255,255,255,0.02));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 var(--glass-hi),
    inset 0 -10px 18px rgba(21, 11, 27, 0.38),
    0 6px 18px rgba(0, 0, 0, 0.30);
  transition: box-shadow 0.4s var(--editorial-ease, cubic-bezier(0.16,1,0.3,1)),
              border-color 0.4s ease;
}
/* specular sweep across the tile on hover */
.plan-card .plan-icon::after,
.custom-plan-card .custom-icon::after {
  content: '';
  position: absolute;
  top: -70%;
  left: -30%;
  width: 60%;
  height: 220%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: rotate(20deg) translateX(-160%);
  opacity: 0;
  pointer-events: none;
}
.plan-card:hover .plan-icon,
.custom-plan-card:hover .custom-icon {
  border-color: var(--glass-edge-strong);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -10px 20px rgba(21, 11, 27, 0.42),
    0 10px 30px rgba(93, 71, 111, 0.55);
}
.plan-card:hover .plan-icon::after,
.custom-plan-card:hover .custom-icon::after {
  animation: glassIconSheen 0.9s ease-out;
}
@keyframes glassIconSheen {
  0%   { opacity: 0; transform: rotate(20deg) translateX(-160%); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(20deg) translateX(320%); }
}
/* keep the Minecraft pixel art crisp and lifted above the glass */
.plan-card .plan-icon img,
.custom-plan-card .custom-icon img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.6));
}

/* give the custom-plan icon a real glass tile (it has no border by default) */
.custom-plan-card .custom-icon {
  width: 88px;
  height: 88px;
  border: 1px solid var(--glass-edge);
}

/* ---- Plan card: glass hover glow (no transform, avoids JS magnetic conflict) ---- */
.plan-card {
  transition: background 0.25s ease, box-shadow 0.45s var(--editorial-ease, cubic-bezier(0.16,1,0.3,1));
}
.plan-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 22px 55px -18px rgba(93, 71, 111, 0.55);
}

/* ---- Featured (Best Seller) card: glass overlay + breathing glow ---- */
.page .plan-card.featured,
.page--home .plan-card.featured,
.page--plans .plan-card.featured,
.plan-card.featured {
  background-color: var(--purple-deep);
  background-image:
    linear-gradient(135deg, rgba(181,162,193,0.14), transparent 44%),
    radial-gradient(135% 95% at 50% -12%, rgba(138,109,160,0.24), transparent 62%);
}
.plan-card.featured {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 0 0 1px rgba(138,109,160,0.30),
    0 18px 48px -16px rgba(93,71,111,0.5);
  animation: featuredBreathe 4.2s ease-in-out infinite;
}
@keyframes featuredBreathe {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.10),
      0 0 0 1px rgba(138,109,160,0.28),
      0 16px 44px -18px rgba(93,71,111,0.42);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 0 0 1px rgba(181,162,193,0.55),
      0 20px 64px -14px rgba(138,109,160,0.65);
  }
}

/* ---- Price: subtle glow so the number catches the eye ---- */
.plan-card .plan-price {
  text-shadow: 0 0 20px rgba(181, 162, 193, 0.22);
}
.plan-card.featured .plan-price {
  color: var(--text-primary);
  text-shadow: 0 0 26px rgba(181, 162, 193, 0.4);
}
.plan-card .plan-price .period {
  text-shadow: none;
}

/* ---- Buttons: liquid shine sweep (shine sits above bg, below label) ---- */
.btn-primary,
.btn-secondary {
  isolation: isolate;
}
.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 34%, rgba(255,255,255,0.45) 50%, transparent 66%);
  transform: translateX(-135%);
  transition: transform 0.7s var(--editorial-ease, cubic-bezier(0.16,1,0.3,1));
  pointer-events: none;
}
.btn-secondary::before {
  background: linear-gradient(120deg, transparent 38%, rgba(181,162,193,0.28) 50%, transparent 62%);
}
.btn-primary:hover::before,
.btn-secondary:hover::before {
  transform: translateX(135%);
}

/* ---- CTA panel: soft glass sheen ---- */
.page .cta-content,
.cta-content {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(181,162,193,0.10), transparent 40%),
    radial-gradient(120% 120% at 100% 0%, rgba(138,109,160,0.18), transparent 55%);
}

/* ---- Respect reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  .plan-card.featured { animation: none; }
  .plan-card:hover .plan-icon::after,
  .custom-plan-card:hover .custom-icon::after { animation: none; }
  .btn-primary::before,
  .btn-secondary::before { transition: none; }
}


/* ============================================================
   DESIGN UPGRADE v25 — depth, glass & glow refinements
   Extends the v24 liquid-glass layer to the hero, feature
   cards, console, pricing table, testimonials, RAM calculator
   and adds ambient background depth. Same palette + Geist Mono,
   editorial grid preserved. Additive only.
   ============================================================ */

/* ---- Ambient depth: fixed purple glow field behind everything ----
   Painted as the page background (composited over the editorial bg
   color) so it is always behind content, never hidden by an opaque
   body background or a stacking-context edge case. */
.page {
  background-color: var(--editorial-bg);
  background-image:
    radial-gradient(58% 44% at 80% 6%, rgba(93, 71, 111, 0.18), transparent 60%),
    radial-gradient(48% 40% at 8% 52%, rgba(138, 109, 160, 0.10), transparent 55%),
    radial-gradient(55% 45% at 92% 96%, rgba(93, 71, 111, 0.13), transparent 62%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* ---- Gradient accent text (section titles + hero highlight) ----
   Fallback solid colour first; transparent fill only where the
   background-clip:text is actually supported so text never vanishes. */
.text-gradient,
.hero-title .highlight {
  color: var(--accent-3);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-gradient,
  .hero-title .highlight {
    background: linear-gradient(112deg, #b5a2c1 0%, #8a6da0 48%, #d9cbe4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* ---- Scroll progress: gradient bar with glow ---- */
.scroll-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
  box-shadow: 0 0 12px rgba(138, 109, 160, 0.85);
}

/* ---- Nav logo: purple glow on hover ---- */
.nav-logo img {
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.nav-logo:hover img {
  border-color: var(--accent-2);
  box-shadow: 0 0 16px rgba(138, 109, 160, 0.6);
}

/* ---- Hero: focal glow + glass badges ---- */
.hero-bg {
  background:
    radial-gradient(60% 50% at 76% 14%, rgba(93, 71, 111, 0.22), transparent 60%),
    radial-gradient(46% 42% at 14% 72%, rgba(138, 109, 160, 0.12), transparent 55%);
}
.hero-bg::after {
  -webkit-mask-image: radial-gradient(125% 105% at 50% 0%, #000 42%, transparent 86%);
  mask-image: radial-gradient(125% 105% at 50% 0%, #000 42%, transparent 86%);
}
.hero-badge {
  background: rgba(18, 16, 21, 0.55);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  backdrop-filter: blur(8px) saturate(140%);
}
.hero-badge .dot {
  box-shadow: 0 0 8px var(--success);
}

/* ---- Hero panel: frosted glass + depth (home) ---- */
.page--home .hero-panel {
  background:
    linear-gradient(165deg, rgba(20, 18, 24, 0.92), rgba(12, 11, 14, 0.78));
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    -30px 0 60px -40px rgba(93, 71, 111, 0.6);
}
.hero-panel-row.is-featured {
  background:
    linear-gradient(135deg, rgba(138, 109, 160, 0.18), transparent 55%),
    var(--purple-deep);
  box-shadow: inset 0 0 30px -8px rgba(138, 109, 160, 0.4);
}
.hero-panel-top .live {
  text-shadow: 0 0 10px rgba(181, 162, 193, 0.7);
}

/* ---- Feature icon tiles: liquid glass (mirrors plan icons) ---- */
.feature-icon {
  position: relative;
  overflow: hidden;
  border-color: var(--glass-edge);
  background:
    linear-gradient(135deg, rgba(181, 162, 193, 0.16), rgba(93, 71, 111, 0.05) 46%, rgba(255, 255, 255, 0.02));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 var(--glass-hi),
    inset 0 -10px 18px rgba(21, 11, 27, 0.38),
    0 6px 18px rgba(0, 0, 0, 0.30);
  transition: box-shadow 0.4s var(--editorial-ease), border-color 0.4s ease;
}
.feature-icon::after {
  content: '';
  position: absolute;
  top: -70%;
  left: -30%;
  width: 60%;
  height: 220%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(20deg) translateX(-160%);
  opacity: 0;
  pointer-events: none;
}
.feature-icon img {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.55));
}
.feature-card:hover .feature-icon {
  border-color: var(--glass-edge-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -10px 20px rgba(21, 11, 27, 0.42),
    0 10px 28px rgba(93, 71, 111, 0.5);
}
.feature-card:hover .feature-icon::after {
  animation: glassIconSheen 0.9s ease-out;
}
.feature-card:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 50px -24px rgba(93, 71, 111, 0.5);
}

/* ---- Console terminal: glow + glass header + traffic-light glow ---- */
.console-terminal {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 40px 90px -50px rgba(138, 109, 160, 0.7);
}
.console-header {
  background: rgba(15, 13, 16, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.console-dot.red { box-shadow: 0 0 9px rgba(255, 95, 87, 0.75); }
.console-dot.yellow { box-shadow: 0 0 9px rgba(254, 188, 46, 0.75); }
.console-dot.green { box-shadow: 0 0 9px rgba(40, 200, 64, 0.75); }

/* ---- Control panel window: glow ---- */
.cpanel-window {
  box-shadow: 0 40px 90px -50px rgba(138, 109, 160, 0.65);
}

/* ---- Pricing table: glow, glass featured column, glowing prices, button shine ---- */
.pricing-table {
  box-shadow: 0 30px 70px -44px rgba(93, 71, 111, 0.55);
}
.pricing-table thead th.featured-header {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 22px rgba(138, 109, 160, 0.55);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}
.pricing-table td.price-cell {
  color: var(--accent-3);
  font-weight: 700;
  font-size: 0.92rem;
  text-shadow: 0 0 16px rgba(181, 162, 193, 0.35);
}
.pricing-table tbody td .btn-small {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pricing-table tbody td .btn-small::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.5) 50%, transparent 66%);
  transform: translateX(-135%);
  transition: transform 0.6s var(--editorial-ease);
  pointer-events: none;
}
.pricing-table tbody td .btn-small:hover::before {
  transform: translateX(135%);
}

/* ---- Testimonials: glowing avatar, richer quote, active-card glow ---- */
.testimonial-avatar {
  border-color: var(--glass-edge);
  box-shadow: 0 0 16px rgba(93, 71, 111, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.testimonial-card .quote {
  font-size: 2.2rem;
  text-shadow: 0 0 24px rgba(181, 162, 193, 0.3);
}
.testimonials-grid.is-carousel .testimonial-card.testimonial-active {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px -28px rgba(93, 71, 111, 0.55);
}
.testimonial-stars {
  text-shadow: 0 0 12px rgba(181, 162, 193, 0.5);
}

/* ---- RAM calculator: glass panel, glowing slider + result ---- */
.ram-calculator {
  background: linear-gradient(165deg, rgba(20, 18, 24, 0.72), rgba(12, 11, 14, 0.62));
  border-color: var(--glass-edge);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 64px -38px rgba(93, 71, 111, 0.55);
}
.ram-calc-group input[type="range"] {
  background: linear-gradient(90deg, rgba(138, 109, 160, 0.5), rgba(73, 54, 84, 0.35));
}
.ram-calc-group input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0 0 14px rgba(138, 109, 160, 0.9), 0 0 0 4px rgba(138, 109, 160, 0.18);
}
.ram-calc-group input[type="range"]::-moz-range-thumb {
  box-shadow: 0 0 14px rgba(138, 109, 160, 0.9), 0 0 0 4px rgba(138, 109, 160, 0.18);
}
.ram-calc-result {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(93, 71, 111, 0.16), transparent 60%),
    var(--bg-tertiary);
  border-color: var(--glass-edge);
}
.ram-calc-result .result-ram {
  text-shadow: 0 0 28px rgba(181, 162, 193, 0.5);
}

/* ---- Blog cards: glow on hover ---- */
.blog-card:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 55px -22px rgba(93, 71, 111, 0.55);
}

/* ---- Payment logos: glass hover glow ---- */
.payment-item:hover img.payment-logo,
.footer-payment-logos img:hover {
  box-shadow: 0 6px 20px -8px rgba(138, 109, 160, 0.6);
}

/* ---- Section divider: glowing gradient line ---- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-line) 18%, var(--accent-2) 50%, var(--purple-line) 82%, transparent);
  box-shadow: 0 0 14px rgba(138, 109, 160, 0.35);
}

/* ---- Back-to-top button: glow ---- */
.back-to-top {
  box-shadow: 0 8px 24px -6px rgba(138, 109, 160, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover .feature-icon::after { animation: none; }
  .pricing-table tbody td .btn-small::before { transition: none; }
}
