/*
Theme Name: Brat Theme
Theme URI: https://bratgenerator.com
Author: Brat Generator
Author URI: https://bratgenerator.com
Description: A Brat style generator theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: brat, generator, dark-theme
Text Domain: brat-theme
*/
/* ==========================================================================
   BRAT GENERATOR SUITE - Master Design System
   Modern, Creative, Dark Glassmorphic Theme (Mobile, Tablet & Desktop)
   ========================================================================== */

:root {
  /* Brand & Aesthetic Colors */
  --brat-green:       #8ACE00;
  --brat-green-dark:  #6ca300;
  --brat-green-light: #b4f51e;
  --brat-green-glow:  rgba(138, 206, 0, 0.35);
  --brat-green-bg:    rgba(138, 206, 0, 0.12);

  --accent-pink:      #ff5e97;
  --accent-blue:      #3b82f6;
  --accent-purple:    #8b5cf6;

  /* Surfaces & Backgrounds */
  --bg-primary:       #0d0f12;
  --bg-secondary:     #14171d;
  --bg-card:          #141820;
  --bg-card-hover:    #1b202c;
  --bg-glass:         rgba(20, 24, 32, 0.85);
  --bg-input:         #090b0e;

  /* Text & Labels */
  --text-main:        #f9fafb;
  --text-muted:       #9ca3af;
  --text-subtle:      #6b7280;
  --text-inverse:     #0d0f12;

  /* Borders & Dividers */
  --border-color:     rgba(255, 255, 255, 0.08);
  --border-hover:     rgba(138, 206, 0, 0.4);
  --border-active:    #8ACE00;

  /* Shadows & Glows */
  --shadow-sm:        0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-md:        0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg:        0 16px 48px rgba(0, 0, 0, 0.6);
  --glow-green:       0 0 35px rgba(138, 206, 0, 0.25);
  --glow-button:      0 0 25px rgba(138, 206, 0, 0.45);

  /* Typography */
  --font-display:     'Google Sans Display', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:        'Google Sans', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Geometry */
  --radius-sm:        8px;
  --radius-md:        14px;
  --radius-lg:        20px;
  --radius-xl:        28px;
  --radius-pill:      9999px;

  /* Transitions */
  --transition-fast:  0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal:0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce:0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & GLOBAL BASICS + WORDPRESS EMBED BACKGROUND FIXES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
}

/* Force dark base background across HTML, Body, and all WordPress Theme Containers */
html,
body,
#page,
#content,
#primary,
.site,
.site-main,
.site-content,
.entry-content,
.post-content,
.wp-block-post-content,
.entry-content-wrap,
.ast-container,
.elementor,
.elementor-page,
.elementor-section,
.elementor-container,
.elementor-widget-container,
.type-page,
.type-post,
.brat-app-wrapper,
.brat-embed-container {
  background-color: var(--bg-primary, #0d0f12) !important;
  color: var(--text-main, #f9fafb) !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  background-color: var(--bg-primary, #0d0f12) !important;
}

body,
.brat-app-wrapper,
.brat-embed-container {
  font-family: var(--font-body);
  background-color: var(--bg-primary, #0d0f12) !important;
  color: var(--text-main, #f9fafb) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2a303c;
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brat-green);
}

/* Links & Media */
a {
  color: var(--text-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--brat-green);
}

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

svg {
  max-width: 100%;
}

/* Lucide Icons Styling */
.lucide,
[data-lucide],
svg.lucide {
  display: inline-block !important;
  vertical-align: -0.15em;
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2px;
  flex-shrink: 0;
}

.hero-pill-badge .lucide,
.section-tag .lucide,
.hero-pill-badge [data-lucide],
.section-tag [data-lucide] {
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125em;
}

/* Keep website header-free while allowing footer navigation */
header, .site-header {
  display: none !important;
}


/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 15, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 24px;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-badge {
  width: 10px;
  height: 10px;
  background: var(--brat-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brat-green);
}

.logo-text span {
  color: var(--brat-green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--brat-green);
  background: var(--brat-green-bg);
}

/* ==========================================================================
   HERO SECTION (Full Long H1 Recovery, No Title Truncation)
   ========================================================================== */
.hero {
  position: relative;
  padding: 60px 24px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-glow-bg {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 92vw);
  height: 480px;
  background: radial-gradient(circle, rgba(138, 206, 0, 0.18) 0%, rgba(139, 92, 246, 0.06) 45%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(138, 206, 0, 0.1);
  border: 1px solid rgba(138, 206, 0, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brat-green);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.hero-title, .hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--text-main);
  word-break: break-word;
}

.hero-title .highlight-text, .hero h1 .highlight-text {
  background: linear-gradient(135deg, #ffffff 20%, var(--brat-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle, .hero p {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Homepage Hero Widget */
.hero-widget-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 28px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

.widget-preview-box {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--brat-green);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.15);
  transition: background-color var(--transition-fast);
}

.widget-canvas-text {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #000000;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.04em;
  word-break: break-word;
  filter: blur(0.4px);
  user-select: none;
}

.widget-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stats-bar {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
  width: 100%;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STUDIO WORKSPACE & GENERATOR LAYOUT (Unified 2-Column Grid)
   ========================================================================== */
.studio-container, .tool-section, .workspace-section {
  max-width: 1280px;
  margin: 20px auto 60px;
  padding: 0 24px;
  width: 100%;
}

.studio-grid, .tool-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 32px;
  align-items: start;
}

/* Controls Panel */
.panel, .studio-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-header, .studio-panel-title {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-main);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.panel-reset-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}
.panel-reset-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-color: var(--border-hover);
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.control-subtag {
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

/* Form Controls */
.input-field, .text-input, input[type="text"], input[type="number"], textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.96rem;
  outline: none;
  transition: all var(--transition-fast);
}
textarea.input-field, textarea.text-input {
  min-height: 80px;
  resize: vertical;
}
.input-field:focus, .text-input:focus, input[type="text"]:focus, input[type="number"]:focus, textarea:focus {
  border-color: var(--brat-green);
  box-shadow: 0 0 0 3px var(--brat-green-glow);
}

/* Button & Pill Groups */
.case-toggle-row, .preset-pills, .aspect-ratios, .size-toggle, .color-presets, .swatch-grid, .btn-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.case-btn, .preset-pill, .ratio-btn, .size-btn, .preset-btn, .btn-chip, .size-preset-btn {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.case-btn:hover, .preset-pill:hover, .ratio-btn:hover, .size-btn:hover, .btn-chip:hover, .size-preset-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-main);
}
.case-btn.active, .preset-pill.active, .ratio-btn.active, .size-btn.active, .preset-btn.active, .btn-chip.active, .size-preset-btn.active {
  background: var(--brat-green-bg);
  border-color: var(--brat-green);
  color: var(--brat-green);
}

/* Color Swatches */
.color-presets .preset-btn, .swatch-btn, .swatch {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}
.color-presets .preset-btn:hover, .swatch-btn:hover, .swatch:hover {
  transform: scale(1.12);
}
.color-presets .preset-btn.active, .swatch-btn.active, .swatch.active {
  border-color: var(--text-main);
  box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px var(--brat-green);
}

.color-custom-row, .custom-color-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.color-custom-row label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.color-picker-input, input[type="color"] {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: transparent;
  overflow: hidden;
}

/* Sliders */
.slider-row, .slider-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.range-slider, input[type="range"], .slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: var(--radius-pill);
  background: #2a303c;
  outline: none;
  margin: 6px 0;
}
.range-slider::-webkit-slider-thumb, input[type="range"]::-webkit-slider-thumb, .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brat-green);
  cursor: pointer;
  box-shadow: 0 0 10px var(--brat-green-glow);
  transition: transform var(--transition-fast);
}
.range-slider::-webkit-slider-thumb:hover, input[type="range"]::-webkit-slider-thumb:hover, .slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brat-green);
  min-width: 54px;
  text-align: right;
}

/* Toggle Switches */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.toggle-label, .switch-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-toggle, .switch-slider, .slider-round {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #2a303c;
  transition: .3s;
  border-radius: 34px;
}
.slider-toggle:before, .switch-slider:before, .slider-round:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}
input:checked + .slider-toggle, input:checked + .switch-slider, input:checked + .slider-round {
  background-color: var(--brat-green);
}
input:checked + .slider-toggle:before, input:checked + .switch-slider:before, input:checked + .slider-round:before {
  transform: translateX(22px);
}

/* Canvas Stage (Right Column on Desktop, Top on Mobile) */
.stage-panel, .stage-outer, .canvas-wrap, .stage-wrap, .preview-card, .preview-column {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  min-height: 440px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.stage-badge-bar, .preview-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stage-badge-tag, .preview-badge {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.canvas-container, .canvas-outer, .canvas-wrapper, .stage-inner, .preview-canvas-wrapper {
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.canvas-container canvas, .canvas-outer canvas, .canvas-wrapper canvas, canvas {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.canvas-hint {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin-top: 18px;
  text-align: center;
}

/* Download Button */
.download-btn, .btn-primary, .dl-btn-primary {
  background: var(--brat-green);
  color: var(--text-inverse);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px var(--brat-green-glow);
  width: 100%;
  margin-top: 8px;
}
.download-btn:hover, .btn-primary:hover, .dl-btn-primary:hover {
  background: var(--brat-green-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-button);
  color: var(--text-inverse);
}

/* Preset Chips */
.preset-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.chip-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.chip-btn:hover {
  border-color: var(--brat-green);
  color: var(--brat-green);
}

/* Section Divider */
.section-divider {
  border: 0;
  height: 1px;
  background: var(--border-color);
  max-width: 1280px;
  margin: 40px auto;
}

/* ==========================================================================
   HOMEPAGE TOOLS GRID & CONTENT CARDS
   ========================================================================== */
.section {
  padding: 60px 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.section-badge {
  color: var(--brat-green);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), 0 0 30px var(--brat-green-glow);
  background: var(--bg-card-hover);
}

.tool-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tool-icon-box {
  width: 52px;
  height: 52px;
  background: var(--brat-green-bg);
  border: 1px solid rgba(138, 206, 0, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brat-green);
}

.tool-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.tool-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.tool-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.tool-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.tool-launch-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brat-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   SEO ARTICLES & FAQ ACCORDION
   ========================================================================== */
.content-section, .seo-article, .seo-card, .article-wrap, .faq-section {
  max-width: 980px;
  margin: 40px auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.content-section h2, .seo-article h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 32px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.content-section h2:first-child, .seo-article h2:first-child {
  margin-top: 0;
}

.content-section p, .seo-article p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.content-section ul, .content-section ol, .seo-article ul, .seo-article ol {
  padding-left: 24px;
  margin-bottom: 22px;
  color: var(--text-muted);
}
.content-section li, .seo-article li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ==========================================================================
   HERO-STYLED CONTENT SHOWCASE (Centered One Section Per Row Layout)
   ========================================================================== */
.hero-content-wrapper {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
  width: 100%;
}

.hero-section-block {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-block-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: 350px;
  background: radial-gradient(circle, rgba(138, 206, 0, 0.12) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-block-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: center;
}

.hero-block-text {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 860px;
  text-align: center;
}
.hero-block-text:last-child {
  margin-bottom: 0;
}

/* Small Boxes Grid for How To Use & Who Uses Sections */
.small-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 28px;
  width: 100%;
}

.small-box-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.small-box-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 15px rgba(138, 206, 0, 0.1);
}

.small-box-num {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brat-green);
  background: var(--brat-green-bg);
  border: 1px solid var(--brat-green);
  border-radius: var(--radius-pill);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.small-box-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--brat-green-bg);
  border: 1px solid var(--brat-green);
  color: var(--brat-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.small-box-text {
  font-size: 0.94rem;
  color: var(--text-main);
  line-height: 1.5;
  font-weight: 500;
}

.small-box-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.small-box-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Fluid Step Flow (Centered Hero Style) */
.hero-step-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  width: 100%;
  max-width: 820px;
}


.hero-step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px dashed var(--border-color);
  text-align: left;
}

.hero-step-badge {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brat-green);
  background: var(--brat-green-bg);
  border: 1px solid var(--brat-green);
  border-radius: var(--radius-pill);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-step-desc {
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.5;
  flex-grow: 1;
}

/* Hero Use Cases List (Centered) */
.hero-use-cases-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
  max-width: 820px;
}

.hero-use-case-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.hero-use-case-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--brat-green-bg);
  border: 1px solid var(--brat-green);
  color: var(--brat-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-use-case-content strong {
  font-size: 1.05rem;
  color: var(--text-main);
  display: inline-block;
  margin-right: 6px;
}

.hero-use-case-content span {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Hero Divider */
.hero-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
  margin: 10px 0;
}



/* Step List */
.steps-list {
  list-style: none;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.step-num {
  width: 28px;
  height: 28px;
  background: var(--brat-green-bg);
  border: 1px solid var(--brat-green);
  color: var(--brat-green);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Accordion */
.faq-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-q, .faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q-arrow {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}
.faq-item.open .faq-q-arrow, .faq-item.active .faq-q-arrow {
  transform: rotate(180deg);
  stroke: var(--brat-green);
}

.faq-a, .faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-a, .faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 30px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--brat-green);
}

.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile, Tablet & Desktop)
   ========================================================================== */
@media (max-width: 1024px) {
  .studio-grid, .tool-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stage-panel, .stage-outer, .canvas-wrap, .stage-wrap, .preview-card, .preview-column {
    position: static;
    order: -1; /* Render Canvas preview above controls on mobile/tablet */
    min-height: 360px;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero {
    padding: 40px 16px 20px;
  }

  .hero-title, .hero h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.6rem);
  }

  .studio-container, .tool-section, .workspace-section {
    padding: 0 16px;
    margin: 10px auto 40px;
  }

  .panel, .studio-panel, .stage-panel, .stage-outer, .content-section {
    padding: 22px 16px;
    border-radius: var(--radius-lg);
  }

  .hero-stats-bar {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}


/* ==========================================================================
   EXTRA HOMEPAGE, DEMO & REVIEWS STYLES FOR WORDPRESS EMBEDS
   ========================================================================== */


    .home-bg-grid { position: fixed; inset: 0; background-image: linear-gradient(rgba(138,206,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(138,206,0,0.03) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; z-index: 0; }
    .home-hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px 40px; overflow: hidden; }
    .home-hero-orb-1 { position: absolute; top: -80px; left: -120px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(138,206,0,0.22) 0%, transparent 65%); filter: blur(80px); pointer-events: none; animation: orbFloat 8s ease-in-out infinite; }
    .home-hero-orb-2 { position: absolute; bottom: -100px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 65%); filter: blur(90px); pointer-events: none; animation: orbFloat 10s ease-in-out infinite reverse; }
    .home-hero-orb-3 { position: absolute; top: 45%; left: 55%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,94,151,0.1) 0%, transparent 65%); filter: blur(80px); pointer-events: none; animation: orbFloat 12s ease-in-out infinite 2s; }
    @keyframes orbFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
    .home-hero-inner { position: relative; z-index: 2; max-width: 1160px; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .home-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 20px; background: rgba(138,206,0,0.08); border: 1px solid rgba(138,206,0,0.3); border-radius: 9999px; font-size: 0.82rem; font-weight: 700; color: var(--brat-green); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 28px; animation: badgePulse 3s ease-in-out infinite; }
    .home-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brat-green); box-shadow: 0 0 8px var(--brat-green); animation: dotBlink 1.5s ease-in-out infinite; }
    @keyframes dotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
    @keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(138,206,0,0); } 50% { box-shadow: 0 0 0 6px rgba(138,206,0,0.08); } }
    .home-h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; color: var(--text-main); margin-bottom: 24px; max-width: 920px; }
    .home-h1 .h1-green { background: linear-gradient(135deg, #c8f542 0%, #8ACE00 40%, #6ca300 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .home-h1 .h1-brat { font-family: Arial, Helvetica, sans-serif; font-weight: 700; filter: blur(0.6px); letter-spacing: -0.02em; }
    .home-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 680px; line-height: 1.7; margin: 0 auto 36px; }
    .home-cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
    .cta-primary { background: var(--brat-green); color: #000; font-size: 1.05rem; font-weight: 800; padding: 16px 36px; border-radius: 9999px; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 0 35px rgba(138,206,0,0.45), 0 4px 16px rgba(0,0,0,0.4); text-decoration: none; letter-spacing: -0.01em; }
    .cta-primary:hover { background: #b4f51e; transform: translateY(-3px); box-shadow: 0 0 50px rgba(138,206,0,0.65), 0 8px 24px rgba(0,0,0,0.5); color: #000; }
    .cta-secondary { background: rgba(255,255,255,0.05); color: var(--text-main); font-size: 1rem; font-weight: 700; padding: 15px 32px; border-radius: 9999px; border: 1px solid var(--border-color); cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s cubic-bezier(0.4,0,0.2,1); text-decoration: none; backdrop-filter: blur(8px); }
    .cta-secondary:hover { border-color: rgba(138,206,0,0.4); background: rgba(138,206,0,0.08); color: var(--brat-green); transform: translateY(-2px); }
    .home-trust-row { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
    .trust-badge { display: flex; align-items: center; gap: 7px; font-size: 0.84rem; font-weight: 600; color: var(--text-muted); }
    .trust-badge-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(138,206,0,0.12); border: 1px solid rgba(138,206,0,0.25); display: flex; align-items: center; justify-content: center; color: var(--brat-green); flex-shrink: 0; }
    .home-widget-section { position: relative; z-index: 2; width: 100%; max-width: 1000px; margin: 60px auto 0; padding: 0 24px; }
    .home-widget-wrap { background: linear-gradient(135deg, rgba(20,24,32,0.95) 0%, rgba(14,17,22,0.98) 100%); border: 1px solid rgba(138,206,0,0.15); border-radius: 28px; padding: 36px; box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(138,206,0,0.12), inset 0 1px 0 rgba(255,255,255,0.05); display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
    .widget-preview-box-hp { aspect-ratio: 1; background: #8ACE00; border-radius: 18px; display: flex; align-items: center; justify-content: center; padding: 32px; box-shadow: 0 8px 40px rgba(138,206,0,0.3), inset 0 0 30px rgba(0,0,0,0.1); transition: background-color 0.3s; overflow: hidden; }
    .widget-canvas-text-hp { font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); color: #000; text-align: center; line-height: 1.0; letter-spacing: -0.04em; word-break: break-word; filter: blur(0.5px); user-select: none; transition: all 0.15s; }
    .widget-controls-side { display: flex; flex-direction: column; gap: 22px; }
    .widget-ctrl-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; display: block; }
    .widget-ctrl-input { width: 100%; background: var(--bg-input); border: 1px solid var(--border-color); border-radius: 12px; padding: 13px 16px; color: var(--text-main); font-family: var(--font-body); font-size: 1.05rem; outline: none; transition: all 0.15s; }
    .widget-ctrl-input:focus { border-color: var(--brat-green); box-shadow: 0 0 0 3px rgba(138,206,0,0.25); }
    .widget-color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
    .widget-swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: transform 0.15s, border-color 0.15s; position: relative; }
    .widget-swatch:hover { transform: scale(1.15); }
    .widget-swatch.active { border-color: #fff; box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px var(--brat-green); }
    .widget-blur-row { display: flex; align-items: center; justify-content: space-between; }
    .widget-toggle-label { font-size: 0.9rem; color: var(--text-muted); }
    .widget-dl-btn { width: 100%; background: var(--brat-green); color: #000; font-size: 1rem; font-weight: 800; padding: 14px 24px; border-radius: 9999px; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.2s; box-shadow: 0 4px 20px rgba(138,206,0,0.4); text-decoration: none; }
    .widget-dl-btn:hover { background: #b4f51e; transform: translateY(-2px); box-shadow: 0 0 35px rgba(138,206,0,0.65); color: #000; }
    .widget-hint { font-size: 0.78rem; color: var(--text-subtle); text-align: center; margin-top: 4px; }
    .home-stats-section { max-width: 1000px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
    .home-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border-color); border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); margin-top: 48px; }
    .home-stat-block { background: var(--bg-card); padding: 28px 20px; text-align: center; transition: background 0.2s; }
    .home-stat-block:hover { background: var(--bg-card-hover); }
    .home-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--brat-green); line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em; }
    .home-stat-lbl { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
    .hp-section { position: relative; padding: 100px 24px; z-index: 1; }
    .hp-section-inner { max-width: 1160px; margin: 0 auto; }
    .hp-section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .hp-section-tag { display: inline-flex; align-items: center; gap: 7px; padding: 5px 16px; background: rgba(138,206,0,0.08); border: 1px solid rgba(138,206,0,0.2); border-radius: 9999px; font-size: 0.78rem; font-weight: 700; color: var(--brat-green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
    .hp-section-h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text-main); line-height: 1.15; margin-bottom: 16px; }
    .hp-section-p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
    .hp-tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .hp-tool-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; text-decoration: none; }
    .hp-tool-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(138,206,0,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.25s; }
    .hp-tool-card:hover::before { opacity: 1; }
    .hp-tool-card:hover { transform: translateY(-6px); border-color: rgba(138,206,0,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(138,206,0,0.15); background: var(--bg-card-hover); }
    .hp-tool-top { display: flex; align-items: flex-start; justify-content: space-between; }
    .hp-tool-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--brat-green-bg); border: 1px solid rgba(138,206,0,0.25); display: flex; align-items: center; justify-content: center; color: var(--brat-green); flex-shrink: 0; }
    .hp-tool-tag { font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 9999px; background: rgba(255,255,255,0.05); color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
    .hp-tool-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-main); }
    .hp-tool-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; flex-grow: 1; }
    .hp-tool-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 700; color: var(--brat-green); padding-top: 14px; border-top: 1px solid var(--border-color); transition: gap 0.2s; }
    .hp-tool-card:hover .hp-tool-link { gap: 10px; }
    .hp-tool-card.featured { grid-column: span 2; background: linear-gradient(135deg, rgba(138,206,0,0.08) 0%, rgba(20,24,32,1) 50%); border-color: rgba(138,206,0,0.25); }
    .hp-tool-card.featured .hp-tool-icon { width: 64px; height: 64px; border-radius: 18px; }
    .hp-tool-card.featured .hp-tool-name { font-size: 1.55rem; }
    .hp-tool-card.featured .hp-tool-tag { background: rgba(138,206,0,0.1); color: var(--brat-green); border: 1px solid rgba(138,206,0,0.2); font-size: 0.78rem; }
    /* Interactive How-To Section Styles */
    .hp-how-interactive-container { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; margin-top: 16px; }
    .hp-how-steps-col { display: flex; flex-direction: column; gap: 14px; }
    .hp-how-step-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 18px 22px; cursor: pointer; position: relative; overflow: hidden; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); user-select: none; }
    .hp-how-step-card:hover { border-color: rgba(138, 206, 0, 0.3); background: var(--bg-card-hover); transform: translateX(4px); }
    .hp-how-step-card.active { background: linear-gradient(135deg, rgba(138, 206, 0, 0.08) 0%, rgba(20, 24, 32, 0.95) 100%); border-color: var(--brat-green); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(138, 206, 0, 0.15); transform: translateX(6px); }
    .step-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
    .step-card-num { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--text-subtle); transition: color 0.2s; }
    .hp-how-step-card.active .step-card-num { color: var(--brat-green); }
    .step-card-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 9999px; background: rgba(255, 255, 255, 0.05); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.2s; }
    .hp-how-step-card.active .step-card-tag { background: rgba(138, 206, 0, 0.15); color: var(--brat-green); border: 1px solid rgba(138, 206, 0, 0.3); }
    .step-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
    .step-card-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
    .step-card-tip { font-size: 0.78rem; color: var(--brat-green); display: flex; align-items: center; gap: 6px; opacity: 0.85; }
    .step-card-tip span { background: rgba(138,206,0,0.12); padding: 2px 6px; border-radius: 4px; font-weight: 600; }
    .step-card-progress { position: absolute; bottom: 0; left: 0; height: 3px; width: 0%; background: var(--brat-green); box-shadow: 0 0 10px var(--brat-green); transition: width 0.1s linear; }
    .hp-how-step-card.active .step-card-progress { width: 100%; }
    .hp-how-demo-col { position: sticky; top: 100px; }
    .hp-how-demo-card { background: linear-gradient(135deg, rgba(20, 24, 32, 0.98) 0%, rgba(13, 15, 18, 0.99) 100%); border: 1px solid rgba(138, 206, 0, 0.25); border-radius: 24px; padding: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(138, 206, 0, 0.12); display: flex; flex-direction: column; gap: 20px; height: 100%; justify-content: space-between; }
    .demo-card-topbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
    .demo-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 700; color: var(--brat-green); text-transform: uppercase; letter-spacing: 0.05em; }
    .demo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brat-green); box-shadow: 0 0 8px var(--brat-green); animation: dotBlink 1.5s infinite; }
    .demo-title-tag { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text-main); }
    .demo-autoplay-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); color: var(--text-muted); border-radius: 9999px; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all 0.2s; }
    .demo-autoplay-btn:hover, .demo-autoplay-btn.playing { background: rgba(138, 206, 0, 0.12); border-color: rgba(138, 206, 0, 0.3); color: var(--brat-green); }
    .demo-canvas-wrap { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .demo-canvas-box { width: 100%; aspect-ratio: 1; max-height: 260px; background: #8ACE00; border-radius: 16px; display: flex; align-items: center; justify-content: center; padding: 24px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; }
    .demo-canvas-text { font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 2.5rem; color: #000000; text-align: center; line-height: 1.0; letter-spacing: -0.04em; word-break: break-word; filter: blur(0.6px); user-select: none; transition: all 0.25s ease; }
    .demo-callout-pill { background: rgba(20, 24, 32, 0.9); border: 1px solid rgba(138, 206, 0, 0.3); border-radius: 9999px; padding: 8px 16px; font-size: 0.8rem; font-weight: 600; color: var(--text-main); display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); backdrop-filter: blur(8px); text-align: center; transition: all 0.2s; }
    .demo-callout-pill i { color: var(--brat-green); flex-shrink: 0; }
    .demo-controls-panel { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 14px; padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
    .demo-control-group { display: flex; align-items: center; gap: 10px; }
    .demo-control-group label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; gap: 4px; }
    .demo-control-group input { flex-grow: 1; background: var(--bg-input); border: 1px solid var(--border-color); border-radius: 8px; padding: 6px 12px; font-size: 0.88rem; color: var(--text-main); outline: none; font-family: var(--font-body); }
    .demo-control-group input:focus { border-color: var(--brat-green); }
    .demo-control-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .demo-swatches { display: flex; gap: 6px; }
    .demo-swatch { width: 24px; height: 24px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: all 0.15s; }
    .demo-swatch:hover { transform: scale(1.2); }
    .demo-swatch.active { border-color: #fff; box-shadow: 0 0 0 2px var(--brat-green); }
    .demo-toggle-btn { background: rgba(138, 206, 0, 0.1); border: 1px solid rgba(138, 206, 0, 0.25); color: var(--brat-green); border-radius: 6px; padding: 4px 10px; font-size: 0.75rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all 0.2s; }
    .demo-toggle-btn:hover { background: rgba(138, 206, 0, 0.2); }
    .demo-footer-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--border-color); }
    .demo-nav-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); color: var(--text-main); border-radius: 9999px; padding: 6px 16px; font-size: 0.8rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
    .demo-nav-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); }
    .demo-nav-btn.highlight { background: var(--brat-green); color: #000; border: none; box-shadow: 0 2px 12px rgba(138, 206, 0, 0.35); }
    .demo-nav-btn.highlight:hover { background: #b4f51e; box-shadow: 0 4px 18px rgba(138, 206, 0, 0.5); }
    .demo-dots-indicators { display: flex; gap: 6px; }
    .demo-dot-item { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); cursor: pointer; transition: all 0.2s; }
    .demo-dot-item.active { background: var(--brat-green); width: 20px; border-radius: 9999px; box-shadow: 0 0 8px var(--brat-green); }
    @media (max-width: 900px) { .hp-how-interactive-container { grid-template-columns: 1fr; } .hp-how-demo-col { position: relative; top: 0; order: -1; } }
    .hp-aesthetic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .hp-aesthetic-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text-main); margin-bottom: 18px; margin-top: 16px; line-height: 1.2; }
    .hp-aesthetic-text p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
    .hp-aesthetic-text a { color: var(--brat-green); text-decoration: underline; text-underline-offset: 3px; }
    .hp-aesthetic-visual { display: flex; flex-direction: column; gap: 16px; }
    .hp-color-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 18px; padding: 24px; display: flex; align-items: center; gap: 20px; transition: all 0.2s; }
    .hp-color-card:hover { border-color: rgba(138,206,0,0.3); transform: translateX(6px); }
    .hp-color-swatch-lg { width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; }
    .hp-color-name { font-weight: 700; color: var(--text-main); font-size: 1rem; margin-bottom: 4px; }
    .hp-color-hex { font-size: 0.83rem; color: var(--text-muted); font-family: monospace; }
    .hp-use-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
    .hp-use-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 18px; padding: 24px 20px; display: flex; flex-direction: column; gap: 10px; transition: all 0.2s; }
    .hp-use-card:hover { border-color: rgba(138,206,0,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(138,206,0,0.08); }
    .hp-use-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--brat-green-bg); border: 1px solid rgba(138,206,0,0.2); color: var(--brat-green); display: flex; align-items: center; justify-content: center; }
    .hp-use-title { font-weight: 700; color: var(--text-main); font-size: 1rem; }
    .hp-use-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.5; }
    .hp-vs-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 40px 48px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 36px; align-items: start; max-width: 900px; margin: 0 auto; }
    .hp-vs-col h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; color: var(--text-main); }
    .hp-vs-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
    .hp-vs-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }
    .hp-vs-check { color: var(--brat-green); flex-shrink: 0; }
    .hp-vs-x { color: var(--text-subtle); flex-shrink: 0; }
    .hp-vs-divider { width: 1px; background: var(--border-color); align-self: stretch; }
    .hp-vs-badge { display: inline-block; padding: 3px 10px; border-radius: 9999px; font-size: 0.72rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
    .hp-faq-wrap { max-width: 820px; margin: 0 auto; }
    .hp-disclaimer { background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px 24px; font-size: 0.85rem; color: var(--text-subtle); line-height: 1.6; text-align: center; max-width: 820px; margin: 28px auto 0; }
    .hp-cta-strip { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(138,206,0,0.12) 0%, rgba(139,92,246,0.06) 50%, rgba(20,24,32,0) 100%); border-top: 1px solid rgba(138,206,0,0.12); border-bottom: 1px solid rgba(138,206,0,0.08); padding: 80px 24px; text-align: center; }
    .hp-cta-strip h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.04em; color: var(--text-main); margin-bottom: 16px; }
    .hp-cta-strip p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
    @media (max-width: 900px) { .home-widget-wrap { grid-template-columns: 1fr; } .widget-preview-box-hp { aspect-ratio: 16/9; } .hp-aesthetic-grid { grid-template-columns: 1fr; } .hp-vs-card { grid-template-columns: 1fr; padding: 28px 24px; } .hp-vs-divider { display: none; } .hp-tool-card.featured { grid-column: span 1; } .home-stats-inner { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .home-h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); } .home-cta-row { flex-direction: column; } .cta-primary, .cta-secondary { width: 100%; justify-content: center; } .home-widget-wrap { padding: 22px; gap: 22px; } .home-stats-inner { grid-template-columns: repeat(2, 1fr); } .hp-how-grid { border-radius: 16px; } }
  





/* ==========================================================================
   REVIEWS, FOOTER BRAND & UTILITY STYLES
   ========================================================================== */
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.bg-mode-btn, .chat-bg-btn {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.bg-mode-btn:hover, .chat-bg-btn:hover, .bg-mode-btn.active, .chat-bg-btn.active {
  border-color: var(--brat-green);
  color: var(--brat-green);
  background: var(--brat-green-bg);
}

.demo-toggles {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px auto 48px;
  max-width: 960px;
  padding: 0 16px;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--brat-green-bg);
  border-color: var(--brat-green);
  color: var(--brat-green);
  box-shadow: 0 0 15px var(--brat-green-glow);
}

.reviews-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md), 0 0 25px var(--brat-green-glow);
  background: var(--bg-card-hover);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffb800;
}

.review-tool-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--brat-green-bg);
  color: var(--brat-green);
  border: 1px solid rgba(138, 206, 0, 0.3);
  white-space: nowrap;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.65;
  font-weight: 400;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brat-green);
  background: rgba(138, 206, 0, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.review-submit-banner {
  max-width: 900px;
  margin: 0 auto 80px;
  background: linear-gradient(135deg, rgba(20, 24, 32, 0.95), rgba(13, 15, 18, 0.98));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

/* ==========================================================================
   BLOG GRID & CARDS
   ========================================================================== */
.blog-breadcrumb { max-width: 1200px; margin: 0 auto; padding: 24px 20px; font-size: 0.9rem; color: var(--text-muted); }
.blog-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--transition-fast); }
.blog-breadcrumb a:hover { color: var(--brat-green); }
.blog-breadcrumb-sep { margin: 0 8px; }
.blog-breadcrumb-current { color: var(--text-main); }

.blog-hero { text-align: center; padding: 60px 20px; max-width: 800px; margin: 0 auto; }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; font-weight: 800; color: var(--text-main); }
.blog-hero h1 .hl { color: var(--brat-green); }
.blog-hero-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }

.blog-search-section { max-width: 600px; margin: 0 auto 32px auto; padding: 0 20px; }
.blog-search-wrap { position: relative; display: flex; align-items: center; }
.blog-search-icon { position: absolute; left: 16px; width: 20px; height: 20px; color: var(--text-muted); }
.blog-search-input { width: 100%; padding: 16px 48px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); color: var(--text-main); font-size: 1rem; transition: all var(--transition-fast); }
.blog-search-input:focus { outline: none; border-color: var(--brat-green); box-shadow: 0 0 0 2px rgba(138, 206, 0, 0.2); }
.blog-search-clear { position: absolute; right: 16px; background: none; border: none; color: var(--text-muted); cursor: pointer; display: none; padding: 4px; }
.blog-search-clear.visible { display: block; }
.blog-search-clear:hover { color: var(--text-main); }

.blog-filters-section { display: flex; justify-content: center; margin-bottom: 40px; padding: 0 20px; }
.blog-filters-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }
.blog-filter-label { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-right: 8px; }
.blog-filter-pill { background: var(--bg-card); border: 1px solid var(--border-color); padding: 8px 18px; border-radius: var(--radius-pill); color: var(--text-main); cursor: pointer; transition: all var(--transition-fast); font-size: 0.9rem; font-weight: 500; }
.blog-filter-pill:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.blog-filter-pill.active { background: var(--brat-green); color: #000; border-color: var(--brat-green); font-weight: 700; }

.blog-results-meta { text-align: center; margin-bottom: 24px; color: var(--text-muted); font-size: 0.95rem; }

.blog-grid-section { max-width: 1200px; margin: 0 auto; padding: 0 20px 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }

.blog-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition-fast); text-decoration: none; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: var(--shadow-md), 0 0 20px rgba(138,206,0,0.1); background: var(--bg-card-hover); }

.blog-card-image { display: block; height: 200px; overflow: hidden; background: #000; position: relative; border-bottom: 1px solid var(--border-color); }
.blog-card-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--brat-green); color: #000; font-family: Arial, sans-serif; position: relative; }
.bci-font-text, .bci-crossed-text, .bci-meaning-word, .bci-playlist-text, .bci-tiktok-screen-text { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.06em; }
.bci-font-label { position: absolute; bottom: 12px; right: 12px; font-size: 0.8rem; background: rgba(0,0,0,0.8); color: #fff; padding: 4px 8px; border-radius: 4px; }
.bci-crossed-text { filter: blur(3px); }
.bci-meaning { flex-direction: column; }
.bci-meaning-def { font-size: 0.9rem; font-weight: normal; margin-top: 8px; opacity: 0.8; }
.bci-colors { display: flex; width: 100%; height: 100%; }
.bci-swatches { display: flex; width: 100%; height: 100%; }
.bci-swatch { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; }
.bci-swatch-label { font-size: 0.75rem; font-weight: 700; font-family: monospace; }
.bci-tiktok { background: #000; }
.bci-tiktok-phone { border: 4px solid #333; border-radius: 20px; width: 90px; height: 160px; display: flex; align-items: center; justify-content: center; background: var(--brat-green); }
.bci-pfp { background: #000; }
.bci-pfp-circle { width: 120px; height: 120px; border-radius: 50%; background: var(--brat-green); display: flex; align-items: center; justify-content: center; }
.bci-pfp-letter { font-size: 4rem; font-weight: 700; letter-spacing: -0.06em; margin-top: -10px; }
.bci-official { background: #1a1a1a; color: var(--brat-green); flex-direction: column; gap: 12px; }
.bci-memes { background: var(--brat-green); padding: 20px; flex-direction: column; gap: 8px; }
.bci-memes-row { display: flex; gap: 8px; width: 100%; }
.bci-meme-block { flex: 1; background: rgba(0,0,0,0.2); height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; letter-spacing: -0.04em; color: rgba(0,0,0,0.6); }
.bci-world { background: #0d0f12; color: var(--brat-green); }
.bci-world-dots { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 20px; }
.bci-world-dot { background: rgba(138,206,0,0.1); border: 1px solid rgba(138,206,0,0.3); padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }

.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 0.85rem; color: var(--text-muted); }
.blog-card-category { color: var(--brat-green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem; }
.blog-card-reading-time { display: flex; align-items: center; gap: 6px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin: 0 0 12px 0; line-height: 1.4; transition: color var(--transition-fast); }
.blog-card:hover .blog-card-title { color: var(--brat-green); }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.blog-card-excerpt { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 16px; margin-top: auto; }
.blog-card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-card-tag { background: rgba(255,255,255,0.05); padding: 4px 8px; border-radius: var(--radius-sm); font-size: 0.75rem; color: var(--text-subtle); }
.blog-card-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--text-main); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: color var(--transition-fast); position: relative; z-index: 2; }
.blog-card-btn:hover { color: var(--brat-green); }

.blog-no-results { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.blog-no-results.visible { display: flex; }
.blog-no-results-icon { color: var(--text-muted); margin-bottom: 16px; }
.blog-no-results h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 700; color: var(--text-main); }
.blog-no-results p { color: var(--text-muted); margin-bottom: 24px; max-width: 400px; }
.blog-no-results-clear { background: var(--brat-green); color: #000; border: none; padding: 12px 24px; border-radius: var(--radius-pill); font-weight: 700; cursor: pointer; transition: all var(--transition-fast); }
.blog-no-results-clear:hover { opacity: 0.9; transform: translateY(-2px); }

/* ==========================================================================
   FOOTER & TWEAKS
   ========================================================================== */
.site-logo { font-weight: 800 !important; }
.footer-desc { font-weight: 300 !important; }

@media (max-width: 768px) {
  .blog-hero { padding: 40px 16px; }
  .blog-hero h1 { font-size: 2.2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-filters-row { justify-content: flex-start; overflow-x: auto; padding-bottom: 12px; scrollbar-width: none; }
  .blog-filters-row::-webkit-scrollbar { display: none; }
  .blog-filter-label { display: none; }
  .blog-filter-pill { white-space: nowrap; }
}


/* ========== NAVIGATION ========== */
.brat-blog-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 15, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 24px;
}
.brat-blog-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brat-blog-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-decoration: none;
}
.brat-blog-logo-dot {
  width: 10px;
  height: 10px;
  background: var(--brat-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brat-green);
  flex-shrink: 0;
}
.brat-blog-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.brat-blog-nav-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}
.brat-blog-nav-link:hover {
  color: var(--brat-green);
}

/* ========== BOTTOM SECTIONS ========== */
.post-closing {
  max-width: 800px;
  margin: 60px auto 40px;
  padding: 0 24px;
}
.post-closing-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.post-closing-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brat-green);
  margin-bottom: 16px;
}
.post-closing-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-main);
}

.post-tags-section {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.post-tags-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.post-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.post-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.post-tag:hover {
  background: var(--brat-green-bg);
  color: var(--brat-green);
  border-color: rgba(138, 206, 0, 0.3);
  transform: translateY(-2px);
}

.post-cta-strip {
  background: linear-gradient(135deg, rgba(138,206,0,0.1) 0%, rgba(10,13,26,0.5) 100%);
  border-top: 1px solid rgba(138,206,0,0.2);
  border-bottom: 1px solid rgba(138,206,0,0.2);
  padding: 60px 24px;
  margin: 60px 0;
  text-align: center;
}
.post-cta-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.post-cta-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}
.post-cta-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
}
.post-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brat-green);
  color: #000;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--glow-button);
  transition: all var(--transition-fast);
}
.post-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(138, 206, 0, 0.6);
}

.post-section-divider {
  border: none;
  height: 1px;
  background: var(--border-color);
  max-width: 800px;
  margin: 0 auto 60px;
}

.post-related {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.post-related-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 32px;
  text-align: center;
}
.post-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.post-related-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.post-related-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md), 0 0 20px rgba(138,206,0,0.1);
  background: var(--bg-card-hover);
}
.post-related-cat {
  color: var(--brat-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.post-related-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color var(--transition-fast);
}
.post-related-card:hover .post-related-card-title {
  color: var(--brat-green);
}
.post-related-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: auto;
}

@media (max-width: 768px) {
  .brat-blog-nav { padding: 12px 16px; }
  .brat-blog-nav-links { gap: 12px; }
  .brat-blog-nav-link { font-size: 0.85rem; }
  .post-closing-box { padding: 24px; }
  .post-cta-text h3 { font-size: 1.6rem; }
}


/* ========== INDIVIDUAL BLOG POST LAYOUT ========== */
.post-breadcrumb {
  max-width: 800px;
  margin: 40px auto 30px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.post-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.post-breadcrumb a:hover {
  color: var(--text-main);
}
.post-breadcrumb-sep {
  color: var(--text-subtle);
  font-size: 0.8rem;
}
.post-breadcrumb-current {
  color: var(--brat-green);
}

.post-hero {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 24px;
}
.post-hero-category {
  display: inline-block;
  background: var(--brat-green-bg);
  color: var(--brat-green);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  border: 1px solid rgba(138, 206, 0, 0.3);
  box-shadow: var(--glow-green);
}
.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 28px;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}
.post-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-hero-intro p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-main);
  font-weight: 400;
  opacity: 0.9;
}

.post-content {
  max-width: 800px;
  margin: 0 auto 100px;
  padding: 0 24px;
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 50px 0 24px;
  letter-spacing: -0.02em;
}
.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 40px 0 20px;
}
.post-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.post-content ul, .post-content ol {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-left: 24px;
}
.post-content li {
  margin-bottom: 12px;
}
.post-content li::marker {
  color: var(--brat-green);
}
.post-content a {
  color: var(--brat-green);
  text-decoration: underline;
  text-decoration-color: rgba(138, 206, 0, 0.3);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: all var(--transition-fast);
}
.post-content a:hover {
  text-decoration-color: var(--brat-green);
  color: var(--brat-green-light);
  background: rgba(138, 206, 0, 0.1);
}
.post-content blockquote {
  border-left: 4px solid var(--brat-green);
  padding: 24px 24px 24px 32px;
  margin: 40px 0;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-main);
  background: rgba(138, 206, 0, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.post-content img {
  border-radius: var(--radius-md);
  margin: 48px 0;
  box-shadow: var(--shadow-md);
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
}
