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

:root {
  --bg: #08080f;
  --accent: #a855f7;
  --accent-hover: #c084fc;
  --accent-dim: rgba(168, 85, 247, 0.15);
  --accent-glow: rgba(168, 85, 247, 0.35);
  --indigo: #6366f1;
  --text: #f4f4f5;
  --text-muted: #9494a8;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.08);
  --nav-height: 64px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, .logo span {
  font-family: 'Poppins', sans-serif;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(168, 85, 247, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, #0c0a14 0%, #08080f 50%, #06060b 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 75%);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: rgba(168, 85, 247, 0.12);
}

.bg-glow-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -80px;
  background: rgba(99, 102, 241, 0.1);
}

/* Navigation — pill on scroll */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 40px;
  pointer-events: none;
  transition: padding 0.55s var(--ease-out);
}

.nav-shell.scrolled {
  padding: 14px 32px;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-height);
  padding: 0 8px 0 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition:
    max-width 0.55s var(--ease-out),
    height 0.55s var(--ease-out),
    padding 0.55s var(--ease-out),
    border-radius 0.55s var(--ease-out),
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.55s var(--ease-out);
}

.nav-shell.scrolled .nav {
  max-width: 780px;
  height: 52px;
  padding: 0 8px 0 18px;
  border-radius: 999px;
  background: rgba(10, 8, 18, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(168, 85, 247, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(168, 85, 247, 0.06),
    0 0 48px rgba(168, 85, 247, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  transition: transform 0.55s var(--ease-out);
}

.nav-shell.scrolled .logo {
  transform: scale(0.95);
}

.logo-icon {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-shell.scrolled .nav-links a {
  font-size: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-nav {
  background: var(--accent);
  color: var(--text);
  padding: 10px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.85rem;
  transition: all 0.55s var(--ease-out);
}

.btn-nav:hover {
  background: var(--accent-hover);
}

.nav-shell.scrolled .btn-nav {
  padding: 8px 18px;
  font-size: 0.8rem;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--surface-border);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: rgba(168, 85, 247, 0.3);
}
/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--nav-height) + 100px) 40px 40px;
}

.hero-inner {
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 85, 247, 0.25);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-hover);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.hero-line {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.65;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.hero-actions .btn-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.9rem;
  padding: 14px 28px;
}

.hero-actions .btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.9rem;
  padding: 14px 28px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--surface-border);
}

.hero-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chip {
  position: absolute;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(12, 10, 20, 0.9);
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  animation: chip-float 5s ease-in-out infinite;
}

.chip-accent {
  background: var(--accent-dim);
  border-color: rgba(168, 85, 247, 0.3);
  color: var(--accent-hover);
}

.chip:nth-child(1) { top: 15%; right: 10%; animation-delay: 0s; }
.chip:nth-child(2) { bottom: 30%; left: 5%; animation-delay: 1.2s; }
.chip:nth-child(3) { top: 50%; right: 5%; animation-delay: 2.4s; }

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

/* Product showcase */
.showcase {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  perspective: 1200px;
}

.showcase-tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
}

.showcase-tab {
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.showcase-tab.active {
  background: var(--accent);
  color: white;
}

.showcase-tab:hover:not(.active) {
  color: var(--text);
}

.showcase-windows {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}

.window {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(168, 85, 247, 0.1);
}

.window-label {
  position: absolute;
  top: -28px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.window-classic {
  width: min(680px, 90vw);
  z-index: 2;
  transform: rotateX(4deg);
  animation: slideUp 0.8s ease-out;
}

.window-lite {
  width: min(320px, 45vw);
  margin-left: -80px;
  margin-bottom: 40px;
  z-index: 3;
  transform: rotateX(4deg) rotateY(-4deg);
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(8deg);
  }
  to {
    opacity: 1;
  }
}

/* Classic app UI */
.app {
  display: flex;
  background: #141414;
  min-height: 340px;
}

.app-sidebar {
  width: 52px;
  background: #0d0d0d;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 4px;
}

.sidebar-logo {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.sidebar-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
}

.sidebar-item svg {
  width: 18px;
  height: 18px;
}

.sidebar-item.active {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent);
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 16px;
}

.tab {
  padding: 10px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.code-editor {
  flex: 1;
  padding: 16px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.8rem;
  line-height: 1.7;
}

.code-line {
  display: flex;
  gap: 16px;
}

.ln {
  color: #555;
  user-select: none;
  min-width: 20px;
  text-align: right;
}

.kw { color: #c678dd; }
.var { color: #e5c07b; }
.fn { color: #61afef; }
.str { color: #98c379; }
.num { color: #d19a66; }
.cm { color: #5c6370; font-style: italic; }

.app-footer {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.app-btn {
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  cursor: pointer;
}

.app-btn-run {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Lite app UI */
.lite-app {
  background: #161616;
  padding: 16px;
  min-height: 280px;
}

.lite-header {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lite-section {
  margin-bottom: 16px;
}

.lite-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.toggle {
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}

.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #666;
  border-radius: 50%;
  transition: all 0.2s;
}

.toggle.on {
  background: rgba(168, 85, 247, 0.3);
}

.toggle.on::after {
  left: 19px;
  background: var(--accent);
}

.lite-slider {
  padding: 8px 0;
}

.lite-slider span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.slider-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.slider-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

/* Script hub (Roblox side panel) */
.hub-search {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 12px;
}

.hub-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hub-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hub-run {
  padding: 4px 10px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* CS2 panel */
.cs2-panel {
  flex: 1;
  padding: 16px;
}

.cs2-val {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.color-dot.enemy { background: #ef4444; }
.color-dot.team { background: #3b82f6; }

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 48px;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.08);
}

.product-card.featured {
  border-color: var(--accent);
  background: rgba(168, 85, 247, 0.05);
}

.product-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent);
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-features li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

.product-features li.more-features {
  color: var(--accent);
  font-style: italic;
  opacity: 0.8;
}

.product-features li.more-features::before {
  content: '';
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-price strong {
  color: var(--text);
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.7rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Pricing */
.pricing-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.pricing-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.pricing-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.pricing-tab:hover:not(.active) {
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--text);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.bundle-grid {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  background: rgba(168, 85, 247, 0.06);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.price-card h3 {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.price-card li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-card li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--surface-border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo-sm {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-shell {
    padding: 16px 20px;
  }

  .nav-shell.scrolled {
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }
}
