:root {
  color-scheme: dark;
  --bg: #06010c;
  --bg-soft: #0b0214;
  --panel: rgba(18, 6, 30, 0.8);
  --panel-strong: rgba(34, 8, 55, 0.94);
  --line: rgba(198, 72, 255, 0.26);
  --line-strong: rgba(225, 91, 255, 0.56);
  --text: #f7f3ff;
  --muted: #b9abc9;
  --muted-2: #7f728e;
  --purple: #9d30ff;
  --purple-strong: #6420d4;
  --pink: #e12dff;
  --cyan: #b65cff;
  --green: #d45aff;
  --amber: #c044ff;
  --danger: #d84fff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  --sheen: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0.26) 100%);
  --radius: 50px;
  --radius-soft: 34px;
  --radius-tight: 22px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(157, 48, 255, 0.32), transparent 29rem),
    radial-gradient(circle at 88% 30%, rgba(225, 45, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 52% 70%, rgba(100, 32, 212, 0.12), transparent 28rem),
    linear-gradient(180deg, #040107 0%, #0b0214 42%, #050109 100%);
  color: var(--text);
  font-family:
    "Poppins", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(198, 72, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 72, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(235, 178, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 178, 255, 0.04) 1px, transparent 1px);
  background-position:
    -1px -1px,
    -1px -1px,
    23px 23px,
    23px 23px;
  background-size:
    48px 48px,
    48px 48px,
    96px 96px,
    96px 96px;
  opacity: 0.82;
  mask-image: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.52;
  background-image:
    linear-gradient(118deg, rgba(255, 255, 255, 0.055), transparent 18%, rgba(0, 0, 0, 0.36) 42%, transparent 68%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.055), transparent 14rem),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  display: grid;
  width: min(1220px, calc(100vw - 20px));
  height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 10px;
  padding: 0 12px 0 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(202, 157, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018) 45%, rgba(0, 0, 0, 0.24)),
    rgba(8, 3, 15, 0.76);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(202, 157, 255, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018) 45%, rgba(0, 0, 0, 0.26)),
    rgba(6, 2, 12, 0.92);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #050208 url("blazehost-logo.svg") center / cover no-repeat;
  box-shadow: 0 0 32px rgba(157, 48, 255, 0.58);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  display: none;
}

.brand-mark::after {
  right: -3px;
  bottom: -3px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e12dff;
  box-shadow: 0 0 18px #e12dff;
}

.brand-name {
  overflow: hidden;
  font-size: 1.05rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.primary-link,
.btn,
.plan-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.ghost-link {
  padding: 0 14px;
  border: 1px solid rgba(185, 132, 255, 0.18);
  color: var(--muted);
}

.primary-link,
.btn-primary,
.plan-action {
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(225, 45, 255, 0.96), rgba(157, 48, 255, 0.96) 46%, rgba(100, 32, 212, 0.9)),
    var(--purple);
  color: #fff;
  box-shadow: 0 16px 38px rgba(116, 49, 246, 0.34);
}

.ghost-link:hover,
.primary-link:hover,
.btn:hover,
.plan-action:hover {
  transform: translateZ(0);
}

.ghost-link:hover {
  border-color: rgba(185, 132, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.promo-strip {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 35;
  display: flex;
  flex-wrap: wrap;
  width: min(860px, calc(100vw - 32px));
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(225, 45, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(225, 45, 255, 0.12), transparent 44%, rgba(0, 0, 0, 0.24)),
    rgba(8, 3, 15, 0.74);
  color: #f5d8ff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  backdrop-filter: blur(16px);
}

.promo-text {
  min-width: 0;
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #e12dff;
  box-shadow: 0 0 14px #e12dff;
  animation: pulse 1.8s ease-in-out infinite;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(185, 132, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 92svh);
  overflow: hidden;
  padding: 168px 0 70px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: -3;
  background-image:
    linear-gradient(rgba(202, 157, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 157, 255, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 18%, rgba(0, 0, 0, 0.22) 55%, transparent 78%);
  background-size:
    56px 56px,
    56px 56px,
    100% 100%;
  opacity: 0.42;
  mask-image: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0.68) 52%, rgba(0, 0, 0, 0.28) 100%);
}

.hero::after {
  z-index: -2;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.06), transparent 19%, rgba(0, 0, 0, 0.3) 48%, transparent 78%),
    radial-gradient(circle at 16% 36%, rgba(155, 77, 255, 0.18), transparent 18rem);
  mix-blend-mode: screen;
  opacity: 0.54;
}

.hero-bg,
.hero-vignette,
.hero-canvas {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}

.hero-vignette {
  z-index: -2;
  background:
    radial-gradient(circle at 74% 38%, transparent 0 22rem, rgba(5, 2, 8, 0.18) 34rem),
    linear-gradient(90deg, rgba(5, 2, 8, 0.94) 0%, rgba(5, 2, 8, 0.72) 38%, rgba(5, 2, 8, 0.18) 72%),
    linear-gradient(180deg, rgba(5, 2, 8, 0.28), rgba(5, 2, 8, 0.98));
}

.hero-canvas {
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.76;
}

.hero-content {
  display: grid;
  width: var(--container);
  grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.54fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  margin: auto;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.79rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(4rem, 7.4vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
  text-shadow:
    0 0 34px rgba(155, 77, 255, 0.5),
    0 16px 42px rgba(0, 0, 0, 0.58);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #ded6ea;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  min-height: 52px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(185, 132, 255, 0.14);
}

.btn-secondary:hover {
  border-color: rgba(185, 132, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.btn.full {
  width: 100%;
}

.btn-icon,
.status-icon {
  position: relative;
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
}

.icon-bolt::before,
.icon-panel::before,
.icon-client::before,
.icon-server::before,
.icon-discord::before {
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background: currentColor;
}

.icon-bolt::before {
  clip-path: polygon(58% 0, 88% 0, 63% 38%, 100% 38%, 31% 100%, 45% 54%, 8% 54%);
}

.icon-panel::before {
  border-radius: 4px;
  box-shadow:
    inset 0 -6px 0 rgba(0, 0, 0, 0.34),
    inset 0 0 0 2px currentColor;
  background: transparent;
}

.icon-client::before {
  border-radius: 50% 50% 45% 45%;
  clip-path: polygon(50% 0, 78% 14%, 80% 48%, 100% 100%, 0 100%, 20% 48%, 22% 14%);
}

.icon-server::before {
  border-radius: 3px;
  box-shadow:
    0 6px 0 currentColor,
    0 12px 0 currentColor;
}

.icon-discord::before {
  border-radius: 46% 46% 42% 42%;
  clip-path: polygon(12% 22%, 35% 10%, 44% 22%, 56% 22%, 65% 10%, 88% 22%, 82% 78%, 64% 70%, 58% 80%, 42% 80%, 36% 70%, 18% 78%);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span,
.config-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(185, 132, 255, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #e9e0f4;
  font-size: 0.87rem;
  font-weight: 760;
}

.hero-orbit {
  position: relative;
  min-height: 430px;
}

.orbit-ring {
  position: absolute;
  inset: 42px 0 0;
  margin: auto;
  width: min(360px, 88vw);
  height: min(360px, 88vw);
  border: 1px solid rgba(185, 132, 255, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(155, 77, 255, 0.12), transparent 58%),
    conic-gradient(from 0deg, transparent, rgba(225, 45, 255, 0.76), transparent, rgba(100, 32, 212, 0.72), transparent);
  box-shadow:
    inset 0 0 50px rgba(155, 77, 255, 0.22),
    0 0 80px rgba(155, 77, 255, 0.18);
  animation: rotateSlow 18s linear infinite;
  mask-image: radial-gradient(circle, transparent 55%, black 56%);
}

.status-mini {
  position: absolute;
  top: 86px;
  left: 2%;
  width: 164px;
  border: 1px solid rgba(185, 132, 255, 0.26);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(12, 6, 20, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: floatY 4.6s ease-in-out infinite;
}

.status-mini strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.mini-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-alt {
  top: 192px;
  right: 4%;
  left: auto;
  animation-delay: -1.4s;
}

.mini-third {
  top: 310px;
  left: 14%;
  animation-delay: -2.2s;
}

.quick-metrics {
  display: grid;
  width: var(--container);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
}

.metric-card,
.status-card,
.plan-card,
.config-panel,
.visual-card,
.panel-preview,
.faq-list,
.feature-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    var(--sheen),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  padding: 24px;
}

.metric-card::before,
.status-card::before,
.plan-card::before,
.feature-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0.72;
}

.metric-card::after,
.plan-card::after,
.status-card::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-90%);
  transition:
    opacity 160ms ease,
    transform 650ms ease;
}

.metric-card:hover::after,
.plan-card:hover::after,
.status-card:hover::after {
  opacity: 1;
  transform: translateX(90%);
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-card strong,
.status-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1;
}

.metric-hint,
.status-card p {
  display: block;
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.section {
  position: relative;
  isolation: isolate;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(76px, 11vw, 132px) 0 0;
}

.section::before {
  position: absolute;
  top: clamp(34px, 7vw, 78px);
  left: 50%;
  z-index: -1;
  width: min(100vw - 24px, 1240px);
  height: min(48vw, 520px);
  content: "";
  transform: translateX(-50%);
  border: 1px solid rgba(202, 157, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(202, 157, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 157, 255, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(155, 77, 255, 0.12), transparent 28rem);
  background-size:
    44px 44px,
    44px 44px,
    100% 100%;
  opacity: 0.62;
  mask-image: linear-gradient(to bottom, transparent, black 20%, transparent 100%);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading .eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(225, 45, 255, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(157, 48, 255, 0.095);
  box-shadow: 0 0 24px rgba(225, 45, 255, 0.1);
}

.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.config-copy p,
.performance-copy p,
.panel-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.plan-card:hover {
  border-color: var(--line-strong);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.64),
    0 0 44px rgba(155, 77, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.plan-card.featured {
  border-color: rgba(255, 66, 221, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%, rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 50% 0%, rgba(255, 66, 221, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel-strong);
}

.plan-card.featured::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.plan-top {
  min-height: 150px;
}

.plan-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(225, 45, 255, 0.26);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(157, 48, 255, 0.11);
  color: #f05dff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  font-size: 1.65rem;
}

.plan-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.price {
  margin: 26px 0 18px;
}

.price span {
  display: block;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 8px;
  color: var(--muted-2);
}

.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  color: #dfd6eb;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 25px;
}

.plan-card li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  content: "";
  background: var(--green);
  box-shadow: 0 0 14px rgba(225, 45, 255, 0.5);
}

.plan-action {
  position: relative;
  z-index: 1;
  min-height: 48px;
  margin-top: auto;
}

.price-note {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted-2);
  font-size: 0.94rem;
  text-align: center;
}

.configurator,
.performance,
.panel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(26px, 6vw, 70px);
}

.config-copy,
.performance-copy,
.panel-copy {
  max-width: 620px;
}

.config-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.config-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
}

.config-panel::before,
.panel-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 66, 221, 0.18), transparent 16rem),
    radial-gradient(circle at 86% 18%, rgba(157, 48, 255, 0.14), transparent 15rem);
}

.range-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.range-head span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
}

.range-head strong {
  font-size: 2.5rem;
  line-height: 1;
}

input[type="range"] {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(90deg, var(--pink), var(--purple), var(--cyan)) 0 / var(--range-fill, 14%) 100% no-repeat,
    rgba(255, 255, 255, 0.12);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 999px;
  appearance: none;
  background: var(--purple);
  box-shadow: 0 0 24px rgba(155, 77, 255, 0.74);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 19px;
  height: 19px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 24px rgba(155, 77, 255, 0.74);
  cursor: pointer;
}

.config-results {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.config-results div {
  min-height: 104px;
  border: 1px solid rgba(185, 132, 255, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.config-results span {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.config-results strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.performance {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.9fr);
}

.visual-card {
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%, rgba(0, 0, 0, 0.28)),
    rgba(10, 5, 17, 0.86);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.feature-item {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 18px;
}

.feature-item strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
}

.feature-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.status-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 24px;
}

.status-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(155, 77, 255, 0.16);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(185, 132, 255, 0.18);
}

.status-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.status-footer span {
  border: 1px solid rgba(185, 132, 255, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.panel-section {
  grid-template-columns: minmax(0, 0.76fr) minmax(340px, 0.84fr);
}

.panel-preview {
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.panel-window-bar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 7px;
  padding: 0 0 14px;
}

.panel-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--danger);
}

.panel-window-bar span:nth-child(2) {
  background: var(--amber);
}

.panel-window-bar span:nth-child(3) {
  background: var(--green);
}

.panel-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(185, 132, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.052);
}

.panel-toolbar strong {
  font-size: 1.15rem;
}

.panel-toolbar span {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.terminal {
  position: relative;
  z-index: 1;
  min-height: 180px;
  margin-top: 12px;
  border: 1px solid rgba(225, 45, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.34);
  color: #d7cfe1;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.92rem;
}

.terminal p {
  margin: 0 0 9px;
}

.terminal-good {
  color: var(--green);
}

.resource-bars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.resource-bars div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 10px;
}

.resource-bars span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.resource-bars i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.resource-bars i::before {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 18px rgba(155, 77, 255, 0.5);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}

.faq-list details {
  border-bottom: 1px solid rgba(185, 132, 255, 0.14);
  padding: 0 20px;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  width: var(--container);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 86px 0 34px;
  color: var(--muted);
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 750;
}

.footer-links a:hover {
  color: #fff;
}

.legal-page {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 80px;
}

.legal-brand {
  margin-bottom: 54px;
}

.legal-hero {
  max-width: 840px;
  margin: 70px 0 34px;
}

.legal-hero h1,
.legal-document h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.legal-hero p,
.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legal-card,
.legal-warning,
.legal-template,
.legal-document article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    var(--sheen),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.legal-card:hover {
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow),
    0 0 36px rgba(157, 48, 255, 0.14);
}

.legal-card strong {
  color: #fff;
  font-size: 1.22rem;
}

.legal-card span,
.legal-note,
.legal-updated {
  color: var(--muted-2);
}

.legal-note {
  margin-top: 20px;
  font-size: 0.95rem;
}

.legal-document {
  max-width: 980px;
}

.legal-document article {
  padding: clamp(24px, 5vw, 54px);
}

.legal-document h2 {
  margin: 36px 0 12px;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-document ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}

.legal-document a:not(.brand) {
  color: #f0a6ff;
  text-decoration: underline;
  text-decoration-color: rgba(240, 166, 255, 0.38);
  text-underline-offset: 3px;
}

.legal-warning,
.legal-template {
  margin: 24px 0;
  padding: 18px;
}

.legal-warning {
  color: #f5d8ff;
  border-color: rgba(225, 45, 255, 0.36);
}

.legal-template p {
  margin: 8px 0;
}

.legal-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.legal-bottom-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.74;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    position: fixed;
    top: 25px;
    right: 18px;
    z-index: 60;
    transform: none;
  }

  .site-nav,
  .header-actions {
    position: absolute;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    border: 1px solid rgba(185, 132, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(8, 3, 15, 0.95);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 12px;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-actions {
    position: absolute;
    top: 50%;
    right: 58px;
    display: flex;
    transform: translateY(-50%);
  }

  .header-actions .primary-link {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.78rem;
  }

  .promo-strip {
    top: 91px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 62px;
  }

  .hero-content,
  .configurator,
  .performance,
  .panel-section {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    display: none;
  }

  .quick-metrics,
  .plan-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-top {
    min-height: 0;
  }

  .performance .visual-card {
    order: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 44px);
  }

  .site-header {
    width: calc(100vw - 16px);
    height: 64px;
    margin-top: 8px;
  }

  .nav-toggle {
    top: 19px;
    right: 42px;
  }

  button.nav-toggle {
    display: flex !important;
    left: min(calc(100vw - 90px), 326px) !important;
    right: auto !important;
    border-color: rgba(185, 132, 255, 0.52);
    background: rgba(18, 8, 32, 0.92);
    box-shadow: 0 0 24px rgba(155, 77, 255, 0.28);
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .promo-strip {
    width: min(calc(100vw - 24px), 342px);
    min-height: 46px;
    padding: 8px 11px;
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 158px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.5vw, 3.8rem);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 0.95rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .trust-row span {
    max-width: 100%;
    width: 100%;
  }

  .hero-content,
  .quick-metrics,
  .section,
  .site-footer {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }

  .hero-copy,
  .hero-actions,
  .trust-row {
    width: min(calc(100vw - 64px), 326px);
    max-width: min(calc(100vw - 64px), 326px);
  }

  .quick-metrics {
    margin-top: -18px;
  }

  .section {
    padding-top: 72px;
  }

  .section h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .metric-card,
  .status-card,
  .plan-card,
  .config-panel,
  .feature-item {
    padding: 20px;
  }

  .config-results,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .legal-page {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }
}

/* Polished 777code-inspired sections */
body {
  font-weight: 600;
}

.site-shell {
  position: relative;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 17%, rgba(0, 0, 0, 0.48) 30%, transparent 46%),
    linear-gradient(302deg, transparent 0 62%, rgba(255, 255, 255, 0.045) 74%, transparent 88%);
  opacity: 0.78;
}

.site-header,
.metric-card,
.status-card,
.plan-card,
.config-panel,
.visual-card,
.panel-preview,
.faq-list,
.feature-item,
.legal-card,
.legal-warning,
.legal-template,
.legal-document article {
  border-radius: var(--radius);
}

.brand-mark {
  border-radius: 18px;
}

.ghost-link,
.primary-link,
.btn,
.plan-action,
.period-tabs,
.period-tabs button,
.mode-option,
.stepper,
.stepper button,
.legal-bottom-nav a {
  border-radius: 999px;
}

.ghost-link,
.primary-link,
.btn,
.plan-action {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.primary-link,
.btn-primary,
.plan-action {
  background:
    linear-gradient(135deg, rgba(232, 67, 255, 0.88), rgba(151, 48, 255, 0.78) 48%, rgba(98, 27, 207, 0.72)),
    rgba(156, 48, 255, 0.28);
  border-color: rgba(255, 174, 255, 0.34);
  box-shadow:
    0 18px 44px rgba(123, 42, 225, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-secondary,
.plan-action.soft,
.ghost-link {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.btn-light {
  min-height: 54px;
  padding: 0 22px;
  color: #1c1026;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn-light:hover {
  background: #fff;
}

.offers-showcase {
  padding-top: clamp(86px, 10vw, 132px);
}

.offers-showcase .section-heading {
  position: relative;
  max-width: 900px;
  margin-bottom: 34px;
}

.offers-showcase .section-heading h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
}

.offers-showcase .section-heading p {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  font-size: 0.98rem;
}

.period-tabs {
  display: inline-flex;
  gap: 6px;
  margin-top: 26px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.period-tabs button {
  min-width: 92px;
  min-height: 42px;
  border: 0;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.56);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.period-tabs button span {
  color: #e879f9;
}

.period-tabs button.is-active,
.period-tabs button:hover {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 79, 255, 0.88), rgba(143, 53, 255, 0.82)),
    rgba(157, 48, 255, 0.28);
  box-shadow: 0 12px 28px rgba(157, 48, 255, 0.3);
}

.offer-all-link {
  position: absolute;
  right: 0;
  bottom: 0;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 79, 255, 0.78), rgba(120, 43, 230, 0.72)),
    rgba(157, 48, 255, 0.22);
  border-color: rgba(218, 173, 255, 0.34);
}

.offers-showcase .plan-grid {
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
  gap: 28px;
}

.offers-showcase .plan-card {
  min-height: 300px;
  padding: 22px;
  overflow: visible;
  border-color: rgba(187, 92, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015) 34%, rgba(0, 0, 0, 0.18)),
    rgba(22, 9, 15, 0.74);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offers-showcase .plan-card.featured {
  border-color: rgba(216, 79, 255, 0.66);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(216, 79, 255, 0.24),
    0 0 42px rgba(157, 48, 255, 0.2);
}

.plan-head {
  display: flex;
  min-height: 70px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.offers-showcase .plan-card h3 {
  margin-top: 4px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.offers-showcase .plan-card p {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.plan-cube {
  display: inline-grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border: 1px solid rgba(216, 79, 255, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(216, 79, 255, 0.24), rgba(93, 36, 142, 0.2));
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.plan-cube.big {
  width: 70px;
  height: 70px;
  margin: 20px auto 20px;
  border-radius: 22px;
}

.offers-showcase .price {
  margin: 10px 0 16px;
}

.offers-showcase .price span {
  display: inline;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
}

.offers-showcase .price small {
  display: inline;
  margin-left: 5px;
}

.offers-showcase .plan-action {
  width: 100%;
  min-height: 44px;
  margin: 0 0 18px;
  font-size: 0.82rem;
}

.offers-showcase .plan-card ul {
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.offers-showcase .plan-card li {
  padding-left: 22px;
}

.offers-showcase .plan-card li::before {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #c084fc;
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.34);
}

.best-badge {
  position: absolute;
  top: 0;
  left: 50%;
  min-height: 28px;
  padding: 6px 16px;
  transform: translate(-50%, -1px);
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(135deg, #d84fff, #8f35ff),
    #9d30ff;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.custom-plan-cta {
  display: flex;
  max-width: 980px;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 38px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(187, 92, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(19, 8, 14, 0.72);
}

.custom-plan-cta strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
}

.custom-plan-cta p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
}

.custom-plan-side {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  white-space: nowrap;
}

.custom-plan-side .btn {
  min-height: 46px;
}

.ram-calculator {
  width: min(1180px, calc(100vw - 32px));
}

.ram-calculator.configurator {
  display: block;
}

.config-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(187, 92, 255, 0.25);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 74% 62%, rgba(157, 48, 255, 0.17), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(22, 9, 15, 0.78);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.config-workspace {
  min-width: 0;
  padding: 6px 0 0;
}

.config-workspace h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.config-workspace p {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.54);
}

.mode-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.mode-option {
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 18px;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.mode-option strong,
.mode-option span {
  display: block;
}

.mode-option strong {
  font-size: 0.92rem;
}

.mode-option span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.mode-option.is-active,
.mode-option:hover {
  border-color: rgba(216, 79, 255, 0.72);
  background: rgba(157, 48, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(216, 79, 255, 0.18);
}

.calc-control {
  margin-top: 28px;
}

.calc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.calc-label strong,
.plugin-row label {
  color: #fff;
  font-size: 0.88rem;
}

.calc-label span {
  color: #d84fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.range-scale {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.75rem;
  text-align: center;
}

.plugin-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(250px, 0.46fr);
  align-items: end;
  gap: 18px;
  margin-top: 26px;
}

.plugin-row label {
  grid-column: 1;
}

.stepper {
  display: grid;
  grid-column: 1;
  grid-template-columns: 48px 1fr 48px;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.stepper button,
.stepper input {
  border: 0;
  color: #fff;
  background: transparent;
}

.stepper button {
  cursor: pointer;
  font-size: 1.45rem;
}

.stepper input {
  min-width: 0;
  text-align: center;
  appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.ram-result {
  display: flex;
  grid-column: 2;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(216, 79, 255, 0.32);
  border-radius: var(--radius-soft);
  padding: 0 20px;
  background: rgba(157, 48, 255, 0.1);
}

.ram-result span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.ram-result strong {
  color: #e879f9;
  font-size: 1.06rem;
  white-space: nowrap;
}

.recommended-plan {
  align-self: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(5, 4, 6, 0.72);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.34);
}

.recommended-ribbon {
  display: grid;
  min-height: 48px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(216, 79, 255, 0.94), rgba(120, 43, 230, 0.94));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recommended-plan h3 {
  margin: 0;
  color: #d84fff;
  font-size: 1.1rem;
}

.recommended-ram {
  margin-top: 6px;
  color: #fff;
}

.recommended-ram strong {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.95rem;
  line-height: 1;
}

.recommended-ram span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  font-weight: 800;
}

.recommended-plan p {
  max-width: 180px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.recommended-note {
  max-width: 190px;
  margin: 18px auto 0;
  border: 1px solid rgba(216, 79, 255, 0.32);
  border-radius: var(--radius-tight);
  padding: 10px 12px;
  color: #e879f9;
  background: rgba(157, 48, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 850;
}

.recommended-price-label {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.recommended-price {
  display: block;
  margin-top: 4px;
  color: #e879f9;
  font-size: 1.85rem;
}

.recommended-plan .btn {
  width: calc(100% - 36px);
  min-height: 52px;
  margin: 18px auto 0;
}

.recommended-plan small {
  display: block;
  margin: 14px auto 22px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}

.discord-banner {
  position: relative;
  display: grid;
  width: min(1120px, calc(100vw - 32px));
  min-height: 340px;
  grid-template-columns: minmax(0, 0.62fr) minmax(240px, 0.38fr);
  align-items: center;
  overflow: hidden;
  margin: clamp(50px, 7vw, 78px) auto 0;
  border: 1px solid rgba(186, 61, 255, 0.28);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(80, 22, 132, 0.82), rgba(122, 34, 194, 0.44) 54%, rgba(16, 5, 28, 0.6)),
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    #13081f;
  background-size:
    100% 100%,
    44px 44px,
    44px 44px,
    100% 100%;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(157, 48, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.discord-banner::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.08), transparent 22%, rgba(0, 0, 0, 0.38) 52%, transparent 74%),
    radial-gradient(circle at 82% 38%, rgba(232, 67, 255, 0.24), transparent 14rem);
}

.discord-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.discord-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.06;
}

.discord-banner p {
  max-width: 610px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.discord-banner img {
  position: relative;
  z-index: 1;
  width: min(330px, 100%);
  justify-self: end;
  filter:
    drop-shadow(0 0 34px rgba(202, 69, 255, 0.34))
    drop-shadow(0 28px 48px rgba(0, 0, 0, 0.44));
  transform: rotate(5deg) scale(1.05);
}

.faq-showcase {
  width: min(1120px, calc(100vw - 32px));
}

.faq-showcase .section-heading {
  margin-bottom: 34px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(280px, 0.46fr);
  align-items: center;
  gap: clamp(32px, 6vw, 74px);
}

.faq-showcase .faq-list {
  display: grid;
  max-width: none;
  gap: 16px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.faq-showcase .faq-list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-tight);
  padding: 0;
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.faq-showcase .faq-list details[open] {
  border-color: rgba(216, 79, 255, 0.58);
  background: rgba(157, 48, 255, 0.075);
  box-shadow: 0 0 0 1px rgba(216, 79, 255, 0.1);
}

.faq-showcase .faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 0 26px;
  font-size: 0.96rem;
  list-style: none;
}

.faq-showcase .faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-showcase .faq-list summary::after {
  content: "+";
  color: rgba(255, 255, 255, 0.48);
  font-size: 1.1rem;
}

.faq-showcase .faq-list details[open] summary::after {
  content: "-";
}

.faq-showcase .faq-list p {
  padding: 0 26px 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
  line-height: 1.72;
}

.faq-art {
  position: relative;
  min-height: 410px;
}

.faq-art::before {
  position: absolute;
  inset: 16% 0 8%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 48, 255, 0.2), transparent 62%);
  filter: blur(10px);
}

.faq-art img {
  position: relative;
  width: 100%;
  height: 430px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 36px rgba(157, 48, 255, 0.22))
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.5));
}

.offers-page {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 150px 0 70px;
}

.offers-page-hero {
  max-width: 860px;
  margin-bottom: 34px;
}

.offers-page-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.98;
}

.offers-page-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.api-status {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin: 0 0 24px;
  border: 1px solid rgba(187, 92, 255, 0.28);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
}

.api-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.api-offer-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(187, 92, 255, 0.28);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(20, 8, 16, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.api-offer-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.api-offer-card p {
  color: rgba(255, 255, 255, 0.52);
}

.api-offer-specs {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.api-offer-specs span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.api-offer-specs strong {
  color: #fff;
}

.api-offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.api-offer-empty {
  grid-column: 1 / -1;
  border: 1px solid rgba(187, 92, 255, 0.28);
  border-radius: var(--radius);
  padding: 28px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
  .offer-all-link {
    position: static;
    margin-top: 18px;
  }

  .config-shell,
  .discord-banner,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .recommended-plan {
    max-width: 420px;
    margin: 0 auto;
  }

  .discord-banner img {
    width: min(270px, 70vw);
    justify-self: center;
  }

  .faq-art {
    min-height: 260px;
    order: -1;
  }

  .faq-art img {
    height: 300px;
  }

  .api-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .offers-showcase .plan-grid,
  .api-offers-grid {
    grid-template-columns: 1fr;
  }

  .mode-picker,
  .plugin-row {
    grid-template-columns: 1fr;
  }

  .plugin-row label,
  .stepper,
  .ram-result {
    grid-column: 1;
  }

  .range-scale {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 8px;
  }

  .custom-plan-cta,
  .custom-plan-side,
  .api-offer-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .custom-plan-side {
    white-space: normal;
  }

  .discord-banner {
    min-height: 0;
    padding: 28px;
  }

  .discord-banner h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .discord-banner img {
    margin-top: 10px;
  }
}

.hero-canvas,
.hero-bg,
.orbit-ring,
.status-mini,
.metric-card,
.plan-card,
.config-shell,
.discord-banner,
.faq-showcase .faq-list details,
.api-offer-card {
  backface-visibility: hidden;
  contain: paint;
}

.orbit-ring,
.status-mini,
.hero-canvas {
  will-change: transform;
}

.offers-showcase .plan-card {
  overflow: hidden;
}

.metric-card:hover::after,
.plan-card:hover::after,
.status-card:hover::after {
  transform: translate3d(90%, 0, 0);
}

/* Hero grid and handmade 3D character */
.hero {
  background:
    radial-gradient(circle at 70% 36%, rgba(157, 48, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 16% 30%, rgba(216, 79, 255, 0.14), transparent 20rem),
    linear-gradient(180deg, rgba(4, 1, 8, 0.68), rgba(4, 1, 8, 0.96));
}

.hero::before {
  z-index: -3;
  background-image:
    linear-gradient(rgba(198, 72, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 72, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(235, 178, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 178, 255, 0.055) 1px, transparent 1px);
  background-position:
    -1px -1px,
    -1px -1px,
    23px 23px,
    23px 23px;
  background-size:
    48px 48px,
    48px 48px,
    96px 96px,
    96px 96px;
  opacity: 0.72;
  mask-image: none;
}

.hero::after {
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.05), transparent 22%, rgba(0, 0, 0, 0.34) 50%, transparent 74%),
    radial-gradient(circle at 74% 40%, rgba(216, 79, 255, 0.16), transparent 17rem);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero-bg {
  display: none;
}

.hero-vignette {
  z-index: -2;
  background:
    radial-gradient(circle at 75% 42%, rgba(157, 48, 255, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(5, 2, 8, 0.9) 0%, rgba(5, 2, 8, 0.62) 42%, rgba(5, 2, 8, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 2, 8, 0.22), rgba(5, 2, 8, 0.98));
}

.orbit-ring {
  display: none;
}

.hero-orbit {
  min-height: 560px;
}

.hero-character-wrap {
  position: absolute;
  inset: 2% 0 auto;
  display: grid;
  min-height: 520px;
  place-items: center;
  isolation: isolate;
}

.hero-character-wrap::before,
.hero-character-wrap::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.hero-character-wrap::before {
  width: min(420px, 88%);
  height: min(420px, 88%);
  background:
    radial-gradient(circle, rgba(216, 79, 255, 0.24), transparent 62%),
    conic-gradient(from 180deg, transparent, rgba(216, 79, 255, 0.22), transparent 42%, rgba(100, 32, 212, 0.16), transparent);
  filter: blur(6px);
}

.hero-character-wrap::after {
  bottom: 20px;
  width: min(300px, 62%);
  height: 52px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.48), transparent 68%);
  filter: blur(8px);
}

.hero-character {
  width: min(460px, 92%);
  max-height: 560px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 32px rgba(216, 79, 255, 0.4))
    drop-shadow(0 34px 70px rgba(0, 0, 0, 0.58));
  transform: translate3d(0, 0, 0) rotate(-2deg);
  animation: characterFloat 7s ease-in-out infinite;
}

.hero-orbit .status-mini {
  z-index: 2;
  backdrop-filter: blur(16px);
}

.hero-orbit .status-mini {
  top: 92px;
  left: -4%;
}

.hero-orbit .mini-alt {
  top: 250px;
  right: -3%;
  left: auto;
}

.hero-orbit .mini-third {
  top: 410px;
  left: 10%;
}

@keyframes characterFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(1deg);
  }
}

/* Gemhost-style landing composition adapted to BlazeHost */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  margin-top: 0;
  padding: 0 clamp(24px, 4vw, 64px);
  transform: none;
  border: 0;
  border-bottom: 1px solid rgba(198, 72, 255, 0.12);
  border-radius: 0;
  background: rgba(3, 3, 7, 0.92);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 7, 0.96);
  border-color: rgba(198, 72, 255, 0.18);
}

.site-nav {
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a:first-child {
  color: #fff;
}

.header-actions {
  gap: 14px;
}

.header-actions .ghost-link {
  display: none;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.lang-pill::before {
  width: 18px;
  height: 12px;
  content: "";
  border-radius: 2px;
  background: linear-gradient(#fff 0 50%, #e8294f 50% 100%);
}

.hero {
  min-height: min(940px, 100svh);
  padding: 150px 0 92px;
}

.hero-content {
  width: min(1240px, calc(100vw - 64px));
  grid-template-columns: minmax(0, 0.54fr) minmax(420px, 0.46fr);
  gap: clamp(42px, 6vw, 96px);
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 5vw, 5.35rem);
  line-height: 1.08;
  white-space: normal;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: #d84fff;
}

.hero-highlight::after {
  position: absolute;
  right: 0.06em;
  bottom: -0.08em;
  left: 0.06em;
  height: 0.09em;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #d84fff, #8f35ff);
  box-shadow: 0 0 24px rgba(216, 79, 255, 0.38);
}

.hero-lead {
  max-width: 640px;
  color: #aeb4c2;
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
  font-weight: 650;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 38px;
  gap: 14px;
}

.hero-actions .btn {
  min-height: 62px;
  padding: 0 30px;
}

.trust-row {
  gap: 22px;
  margin-top: 34px;
}

.trust-row span {
  min-height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #cfd2dd;
  font-size: 0.96rem;
  font-weight: 850;
}

.trust-row span::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  place-items: center;
  border-radius: 999px;
  content: "✓";
  background: linear-gradient(135deg, #d84fff, #8f35ff);
  color: #fff;
  font-size: 0.72rem;
}

.hero-orbit {
  min-height: 630px;
}

.hero-character-wrap {
  inset: -2% -2% auto;
  min-height: 620px;
}

.hero-character {
  width: min(570px, 104%);
  max-height: 640px;
}

.hero-orbit .status-mini {
  width: auto;
  min-width: 134px;
  min-height: 58px;
  padding: 12px 16px;
  border-color: rgba(216, 79, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(216, 79, 255, 0.18), rgba(143, 53, 255, 0.09)),
    rgba(7, 5, 12, 0.72);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(157, 48, 255, 0.18);
}

.hero-orbit .status-mini strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.hero-orbit .mini-label {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.hero-orbit .status-mini {
  top: 86px;
  left: 4%;
}

.hero-orbit .mini-alt {
  top: 230px;
  right: 0;
  left: auto;
}

.hero-orbit .mini-third {
  top: 365px;
  left: 0;
}

.hero-orbit .mini-fourth {
  top: 505px;
  right: 8%;
  left: auto;
}

.quick-metrics {
  margin-top: -64px;
}

.site-footer {
  display: block;
  width: min(1240px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 98px 0 44px;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(150px, 0.7fr) minmax(190px, 0.8fr) minmax(180px, 0.7fr);
  gap: clamp(34px, 6vw, 86px);
  border-bottom: 1px solid rgba(198, 72, 255, 0.22);
  padding-bottom: 42px;
}

.footer-about p {
  max-width: 360px;
  margin: 22px 0 0;
  color: #a8adba;
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.02rem;
}

.footer-column a {
  color: #a8adba;
  font-weight: 650;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 79, 255, 0.34);
  border-radius: 12px;
  background: rgba(157, 48, 255, 0.12);
  color: #f2d6ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  color: #9ba1af;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-content,
  .site-footer {
    width: min(760px, calc(100vw - 44px));
  }

  .hero h1 {
    font-size: clamp(2.65rem, 9vw, 4.6rem);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-content,
  .site-footer {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero-copy,
  .hero-actions,
  .trust-row {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.18rem, 10.4vw, 3.1rem);
  }

  .hero-actions .btn {
    min-height: 54px;
    padding: 0 18px;
  }

  .trust-row {
    gap: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (hover: none) {
  .metric-card::after,
  .plan-card::after,
  .status-card::after {
    display: none;
  }

  .ghost-link:hover,
  .primary-link:hover,
  .btn:hover,
  .plan-action:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 52px);
  }

  .site-shell,
  .site-shell * {
    min-width: 0;
  }

  .hero-content,
  .quick-metrics,
  .section,
  .site-footer,
  .ram-calculator,
  .discord-banner,
  .faq-showcase,
  .offers-page {
    width: calc(100vw - 52px);
    max-width: calc(100vw - 52px);
  }

  .hero-copy,
  .hero-actions,
  .trust-row,
  .section-heading,
  .offers-showcase .section-heading,
  .offers-page-hero,
  .plan-grid,
  .api-offers-grid,
  .config-shell,
  .custom-plan-cta,
  .faq-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .section h2,
  .offers-showcase .section-heading h2,
  .offers-page-hero h1,
  .discord-banner h2,
  .performance-copy h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .offers-showcase .section-heading h2 {
    font-size: clamp(1.9rem, 8.2vw, 2.35rem);
  }

  .offers-page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .offers-page-hero p,
  .discord-banner p,
  .config-workspace p,
  .performance-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .period-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .period-tabs button {
    min-width: 0;
    padding: 0 5px;
    font-size: 0.7rem;
  }

  .offer-all-link,
  .custom-plan-side .btn {
    width: 100%;
  }

  .offers-showcase .plan-card,
  .api-offer-card {
    width: 100%;
    min-width: 0;
    padding: 22px;
  }

  .plan-head,
  .plan-head > div,
  .api-offer-specs span,
  .api-offer-footer {
    min-width: 0;
  }

  .plan-head {
    align-items: flex-start;
  }

  .plan-cube {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 0.82rem;
  }

  .plan-cube.big {
    width: 64px;
    height: 64px;
  }

  .offers-showcase .price span {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .config-shell,
  .discord-banner {
    padding: 22px;
  }

  .config-shell {
    gap: 22px;
  }

  .mode-picker {
    gap: 10px;
  }

  .mode-option {
    min-height: 66px;
    padding: 0 16px;
  }

  .ram-result {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 76px;
    padding: 14px 18px;
  }

  .discord-banner img {
    max-width: 100%;
    transform: rotate(2deg) scale(1);
  }

  .api-status {
    width: 100%;
    height: auto;
    min-height: 42px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    line-height: 1.35;
    overflow-wrap: anywhere;
    padding: 10px 16px;
  }

  .api-offer-specs span {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    overflow-wrap: anywhere;
  }

  .api-offer-specs strong {
    width: 100%;
  }

  .api-offer-footer .btn {
    width: 100%;
  }

  .footer-links {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    overflow-wrap: anywhere;
  }
}

/* Final single-character renders */
.hero,
.hero::before {
  background-blend-mode: normal;
}

.hero {
  background:
    linear-gradient(180deg, rgba(4, 1, 8, 0.72), rgba(4, 1, 8, 0.98)),
    #050208;
}

.hero-bg {
  display: none !important;
  background-image: none !important;
}

.hero::before {
  background-image:
    linear-gradient(rgba(198, 72, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 72, 255, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(235, 178, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 178, 255, 0.06) 1px, transparent 1px);
  background-position: -1px -1px, -1px -1px, 23px 23px, 23px 23px;
  background-size: 48px 48px, 48px 48px, 96px 96px, 96px 96px;
  opacity: 0.8;
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(5, 2, 8, 0.9) 0%, rgba(5, 2, 8, 0.58) 44%, rgba(5, 2, 8, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 2, 8, 0.08), rgba(5, 2, 8, 0.96));
}

.discord-banner {
  overflow: visible;
  contain: layout style;
  isolation: isolate;
  padding-right: clamp(280px, 34vw, 430px);
}

.discord-banner::before {
  z-index: 0;
  border-radius: inherit;
}

.discord-banner-copy {
  z-index: 3;
}

.discord-banner img {
  content: url("blazehost-discord-character.png");
  position: absolute;
  z-index: 2;
  right: clamp(-62px, -4vw, -26px);
  bottom: -54px;
  width: min(390px, 35vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: rotate(4deg);
  transform-origin: 58% 82%;
  filter:
    drop-shadow(0 0 34px rgba(216, 79, 255, 0.45))
    drop-shadow(0 34px 60px rgba(0, 0, 0, 0.58));
}

.performance .visual-card {
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border-radius: 50px;
  background:
    radial-gradient(circle at 54% 32%, rgba(216, 79, 255, 0.22), transparent 18rem),
    linear-gradient(rgba(198, 72, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 72, 255, 0.08) 1px, transparent 1px),
    rgba(8, 4, 14, 0.72);
  background-size: 100% 100%, 42px 42px, 42px 42px, 100% 100%;
}

.performance .visual-card img {
  content: url("blazehost-laptop-character.png");
  width: min(350px, 88%);
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  filter:
    drop-shadow(0 0 34px rgba(216, 79, 255, 0.38))
    drop-shadow(0 34px 58px rgba(0, 0, 0, 0.58));
  transform: rotate(-2deg);
}

.faq-art img {
  content: url("blazehost-faq-character.png");
  width: min(360px, 100%);
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  .discord-banner {
    overflow: hidden;
    min-height: 0;
    padding-right: clamp(24px, 6vw, 48px);
  }

  .discord-banner img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(300px, 76vw);
    margin: 8px auto -34px;
    justify-self: center;
    transform: rotate(3deg);
  }

  .performance .visual-card {
    min-height: 360px;
  }

  .performance .visual-card img,
  .faq-art img {
    width: min(300px, 82vw);
  }
}

@media (max-width: 640px) {
  .discord-banner {
    border-radius: 32px;
  }

  .discord-banner img {
    width: min(250px, 74vw);
    margin-bottom: -28px;
  }

  .performance .visual-card {
    min-height: 320px;
    border-radius: 32px;
  }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 34px;
  }

  .hero-copy,
  .hero-lead {
    max-width: 100%;
  }

  .hero-lead {
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero h1 {
    max-width: 9.8ch;
    font-size: clamp(2.05rem, 9vw, 2.55rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .section h2,
  .offers-showcase .section-heading h2,
  .faq-showcase .section-heading h2 {
    max-width: 11ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.85rem, 7.9vw, 2.25rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .offers-showcase .section-heading p {
    max-width: 28ch;
    margin-right: auto;
    margin-left: auto;
  }

  .performance-copy h2 {
    max-width: 13ch;
    overflow-wrap: anywhere;
  }
}

/* Header, reviews marquee and lowered live stats */
.site-header {
  top: 16px;
  left: 50%;
  width: min(1040px, calc(100vw - 32px));
  height: 68px;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 2.2vw, 28px);
  margin-top: 0;
  border: 1px solid rgba(216, 79, 255, 0.28);
  border-radius: 999px;
  padding: 0 12px 0 18px;
  transform: translateX(-50%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.3)),
    rgba(6, 3, 12, 0.82);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.48),
    0 0 52px rgba(157, 48, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  border-color: rgba(216, 79, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025) 45%, rgba(0, 0, 0, 0.34)),
    rgba(5, 2, 10, 0.92);
  transform: translateX(-50%);
}

.site-nav {
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.66);
}

.site-nav a:first-child,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .nav-panel-link {
  display: none;
}

.header-actions {
  justify-content: flex-end;
}

.header-actions .ghost-link,
.header-actions .lang-pill {
  display: none !important;
}

.primary-link {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  text-transform: none;
  white-space: nowrap;
}

.reviews-marquee {
  width: min(1240px, calc(100vw - 32px));
  margin: clamp(58px, 8vw, 112px) auto 0;
  overflow: hidden;
}

.reviews-head {
  width: min(620px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.reviews-head h2 {
  margin: 6px 0 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.reviews-viewport {
  position: relative;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: reviewsScroll 58s linear infinite;
  will-change: transform;
}

.review-card {
  position: relative;
  width: clamp(270px, 29vw, 360px);
  min-height: 178px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(216, 79, 255, 0.2);
  border-radius: 32px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(216, 79, 255, 0.12), rgba(255, 255, 255, 0.035) 44%, rgba(0, 0, 0, 0.16)),
    rgba(11, 5, 18, 0.78);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.review-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(198, 72, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 72, 255, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-stars {
  display: inline-flex;
  margin-bottom: 12px;
  color: #d84fff;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(216, 79, 255, 0.58);
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.65;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 0.94rem;
}

.quick-metrics {
  margin: clamp(60px, 8vw, 108px) auto 0 !important;
}

@keyframes reviewsScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100vw - 24px);
    height: 64px;
    grid-template-columns: auto auto;
    padding: 0 14px 0 16px;
  }

  .site-nav,
  .site-nav.is-open {
    border-radius: 28px;
  }

  .site-nav.is-open {
    top: calc(100% + 12px);
  }

  .header-actions {
    display: none;
  }

  .site-nav .nav-panel-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 79, 255, 0.34);
    border-radius: 999px;
    margin-top: 6px;
    background: linear-gradient(135deg, #d84fff, #6c28ff);
    color: #fff;
    box-shadow: 0 12px 34px rgba(157, 48, 255, 0.26);
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    border-radius: 999px;
    transform: translateY(-50%);
  }

  .reviews-marquee {
    margin-top: 52px;
  }

  .quick-metrics {
    margin-top: 54px !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100vw - 20px);
  }

  .reviews-marquee,
  .quick-metrics {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .reviews-head h2 {
    max-width: 12ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.9rem, 8vw, 2.3rem);
  }

  .reviews-viewport {
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .reviews-track {
    gap: 12px;
    animation-duration: 64s;
  }

  .review-card {
    width: min(286px, 78vw);
    min-height: 188px;
    border-radius: 28px;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
