/*
Theme Name: Webified Dark
Theme URI: https://webifiedservices.com
Author: Webified Services
Author URI: https://webifiedservices.com
Description: Premium dark theme for Webified Services — AI tools for Unreal Engine developers.
Version: 1.0.0
License: Proprietary
Text Domain: webified-dark
*/

/* ========================================================================
   DESIGN TOKENS
   ======================================================================== */
:root {
  --bg-base:        #08090C;
  --bg-surface:     #0E1218;
  --bg-card:        #131B26;
  --bg-card-hover:  #172030;
  --bg-nav:         rgba(8, 9, 12, 0.92);
  --border:         #1C2A3A;
  --border-subtle:  #152030;

  --primary:        #00C8FF;
  --primary-dim:    #0099CC;
  --primary-glow:   rgba(0, 200, 255, 0.15);
  --primary-glow-lg:rgba(0, 200, 255, 0.06);
  --accent:         #FF6B2B;
  --accent-dim:     #CC5522;
  --accent-glow:    rgba(255, 107, 43, 0.15);
  --green:          #22D35A;
  --green-glow:     rgba(34, 211, 90, 0.15);
  --warning:        #FFB400;

  --text-primary:   #EEF2F8;
  --text-secondary: #7A90AA;
  --text-muted:     #4A5C70;
  --text-on-primary:#000000;

  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-card:  0 2px 16px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  --shadow-glow:  0 0 40px var(--primary-glow);
  --shadow-float: 0 8px 40px rgba(0,0,0,0.6);

  --transition: 200ms ease;
  --max-w: 1200px;
  --max-w-narrow: 760px;
}

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

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

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-secondary); }

code, pre {
  font-family: var(--font-mono);
  font-size: 0.88em;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* ========================================================================
   LAYOUT UTILITIES
   ======================================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section--lg {
  padding: 8rem 0;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-on-primary);
}
.btn-primary:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
}
.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: #FF8C55;
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* ========================================================================
   BADGES / LABELS
   ======================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(0, 200, 255, 0.25);
}

.badge-accent {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.25);
}

.badge-green {
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(34, 211, 90, 0.25);
}

.badge-new {
  background: linear-gradient(135deg, var(--accent-glow), var(--primary-glow));
  color: var(--primary);
  border: 1px solid var(--border);
}

/* ========================================================================
   CARDS
   ======================================================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 200, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,200,255,0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  border: 1px solid rgba(0, 200, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card-icon.accent {
  background: var(--accent-glow);
  border-color: rgba(255, 107, 43, 0.2);
}

.card-icon.green {
  background: var(--green-glow);
  border-color: rgba(34, 211, 90, 0.2);
}

/* ========================================================================
   CODE BLOCK / TERMINAL
   ======================================================================== */
.code-block {
  background: #05070A;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
}

.code-block__toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #0A0D12;
  border-bottom: 1px solid var(--border);
}

.code-block__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.code-block__dot:nth-child(1) { background: #FF5F57; }
.code-block__dot:nth-child(2) { background: #FEBC2E; }
.code-block__dot:nth-child(3) { background: #28C840; }

.code-block__label {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.code-block__body {
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
}

.code-block__body .line { display: block; }
.code-block__body .prompt { color: var(--primary); }
.code-block__body .cmd    { color: var(--text-primary); }
.code-block__body .output { color: var(--text-secondary); }
.code-block__body .green  { color: var(--green); }
.code-block__body .cyan   { color: var(--primary); }
.code-block__body .orange { color: var(--accent); }
.code-block__body .dim    { color: var(--text-muted); }
.code-block__body .str    { color: #A8D8A8; }
.code-block__body .num    { color: #F0A060; }

/* ========================================================================
   NAV
   ======================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.site-nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8, 9, 12, 0.98);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo__mark {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #000;
  font-family: var(--font-mono);
}

.nav-logo__text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo__text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.nav-social a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  z-index: 999;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text-primary); }

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

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero__glow-1 {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__glow-2 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__content {}

.hero__eyebrow {
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #7DF9FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__note {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50% { opacity: 0.6; box-shadow: 0 0 4px var(--green); }
}

.hero__visual {
  position: relative;
}

/* Terminal animation in hero */
.hero-terminal {
  position: relative;
}

.hero-terminal__window {
  background: #05070A;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float), 0 0 60px rgba(0, 200, 255, 0.08);
}

.hero-terminal__lines {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.9;
}

.hero-terminal__cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: var(--primary);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

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

.hero-terminal__float {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.hero-terminal__float .ok {
  color: var(--green);
  font-weight: 700;
}

.hero-terminal__float-2 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

/* ========================================================================
   STATS BAR
   ======================================================================== */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

.stat-item__value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
}

.stat-item__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ========================================================================
   SECTION HEADERS
   ======================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header__eyebrow {
  margin-bottom: 1rem;
}

.section-header__title {
  margin-bottom: 1rem;
}

.section-header__sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========================================================================
   PRODUCT SPOTLIGHT
   ======================================================================== */
.product-spotlight {
  background: var(--bg-surface);
}

.product-spotlight__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.product-spotlight__screenshot {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-float), 0 0 80px rgba(0, 200, 255, 0.06);
}

.product-spotlight__screenshot img {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}

.product-spotlight__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.product-spotlight__content {}

.product-spotlight__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-spotlight__desc {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.feature-list__icon {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.product-spotlight__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================================================================
   HOW IT WORKS
   ======================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--primary-dim), var(--border), transparent);
}

.step {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.step:nth-child(2) .step__number {
  background: var(--primary-glow);
  border-color: rgba(0, 200, 255, 0.3);
  box-shadow: 0 0 20px var(--primary-glow);
}

.step__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================================================
   FEATURES GRID
   ======================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ========================================================================
   PRODUCTS GRID / TOOL CATALOG
   ======================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.product-card:hover {
  border-color: rgba(0,200,255,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,200,255,0.1);
  transform: translateY(-3px);
  color: inherit;
}

.product-card--coming-soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.product-card--coming-soon:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.product-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-glow);
  border: 1px solid rgba(0,200,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.product-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.product-card__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.product-card__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.product-card__price .from {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-sans);
  display: block;
}

/* ========================================================================
   COMMUNITY / SOCIAL
   ======================================================================== */
.community-section {
  background: var(--bg-surface);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.community-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.community-card:hover .community-card__icon {
  transform: scale(1.1);
}

.community-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform var(--transition);
}

.community-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

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

/* Discord */
.community-card--discord:hover {
  border-color: #5865F2;
  box-shadow: 0 8px 40px rgba(88, 101, 242, 0.2);
}
.community-card--discord .community-card__icon { filter: drop-shadow(0 0 8px #5865F2); }

/* Twitter / X */
.community-card--twitter:hover {
  border-color: #1D9BF0;
  box-shadow: 0 8px 40px rgba(29, 155, 240, 0.2);
}

/* YouTube */
.community-card--youtube:hover {
  border-color: #FF0000;
  box-shadow: 0 8px 40px rgba(255, 0, 0, 0.2);
}
.community-card--youtube .community-card__icon { filter: drop-shadow(0 0 8px rgba(255,0,0,0.6)); }

/* ========================================================================
   CTA BANNER
   ======================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0A1525 0%, #07101E 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,200,255,0.05) 0%, transparent 100%);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-banner__sub {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-banner__note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.footer-brand {}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand__mark {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #000;
  font-family: var(--font-mono);
}

.footer-brand__name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.footer-brand__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom__links a:hover { color: var(--text-secondary); }

/* ========================================================================
   PAGE CONTENT (inner pages)
   ======================================================================== */
.page-hero {
  padding: 8rem 0 5rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0,200,255,0.04) 0%, transparent 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.page-content {
  padding: 5rem 0;
}

/* ========================================================================
   PRODUCT PAGE
   ======================================================================== */
.product-page-hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.product-page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(0,200,255,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 50% 80% at 30% 50%, rgba(255,107,43,0.03) 0%, transparent 100%);
}

.product-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.product-page-hero__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-page-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pricing-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-block__header {
  padding: 1.25rem 1.5rem;
  background: rgba(0,200,255,0.04);
  border-bottom: 1px solid var(--border);
}

.pricing-block__tiers {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.pricing-tier:hover {
  border-color: var(--border);
  background: rgba(255,255,255,0.02);
}

.pricing-tier__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-tier__seats {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pricing-tier__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
}

.pricing-block__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Tabs for product page */
.content-tabs {
  margin-top: 1rem;
}

.content-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.content-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}

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

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

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Tool list */
.tool-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tool-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.tool-category__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.tool-category__prefix {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: var(--primary-glow);
  border-radius: 4px;
}

.tool-category__count {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: auto;
}

.tool-category__items {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  line-height: 1.8;
}

/* ========================================================================
   SCROLL ANIMATIONS
   ======================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================================================
   ADMIN BAR OFFSET
   ======================================================================== */
.admin-bar .site-nav {
  top: 32px;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .product-page-hero__inner,
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-spotlight__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__visual { order: -1; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item:nth-child(3)::before { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tool-categories { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__inner { padding: 4rem 1.25rem 5rem; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; }
}
