/* ==========================================================================
   FABIMODY.PL — STYLES
   Modern Cyber/Obsidian Gaming Theme
   ========================================================================== */

:root {
  --bg-main: #080b12;
  --bg-card: #0e1424;
  --bg-card-hover: #131a30;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: #7c3aed;
  
  --primary: #7c3aed;
  --primary-light: #9061f9;
  --cyan: #00f0ff;
  --cyan-muted: #06b6d4;
  --emerald: #10b981;
  --amber: #f59e0b;
  --fire: #ef4444;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1200px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Glows */
.glow-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -150px;
  left: 10%;
}

.glow-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  top: 40%;
  right: -100px;
}

.glow-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
  bottom: 5%;
  left: -100px;
}

.container {
  width: min(calc(100% - 48px), var(--container-max));
  margin-inline: auto;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #150f28 0%, #0d1e2e 100%);
  border-bottom: 1px solid rgba(124, 58, 237, 0.25);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-new {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.announcement-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.announcement-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 18, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  height: 74px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.brand-title {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 20px;
}

.brand-highlight {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 20px;
  color: var(--cyan);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.desktop-nav a:hover {
  color: var(--cyan);
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.4);
  transition: all 0.25s var(--ease);
}

.social-btn:hover {
  background: rgba(88, 101, 242, 0.35);
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.4);
  transform: translateY(-1px);
}

.button-header {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  color: #fff !important;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.button-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.55);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.25s;
}

.mobile-nav {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-nav:not([hidden]) {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(8, 11, 18, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 24px;
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
  }
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 600;
}

.mobile-nav-socials {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-socials a {
  font-size: 14px;
  color: var(--cyan);
}

/* ==========================================================================
   BUTTONS & TYPOGRAPHY HELPERS
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 50%, var(--cyan) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.55);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.button-discord {
  background: #5865f2;
  color: #fff;
}

.button-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.gradient-text {
  background: linear-gradient(120deg, #fff 0%, var(--cyan) 60%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-heading {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-lead {
  max-width: 680px;
  margin-inline: auto;
  font-size: 17px;
  color: var(--text-muted);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 80px 0 70px;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cyan);
  margin-bottom: 24px;
}

.hero-copy h1 {
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--cyan);
}

.metric-label {
  font-size: 12px;
  color: var(--text-dim);
}

.metric-sep {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}

/* Hero 3D Card */
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.art-card-glow {
  position: absolute;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  filter: blur(50px);
  opacity: 0.35;
  z-index: 1;
}

.client-badge-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  background: rgba(14, 20, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.card-glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.card-status-chip {
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.card-icon-wrap {
  margin-bottom: 16px;
}

.floating-icon {
  animation: float 4s ease-in-out infinite;
}

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

.client-badge-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.card-desc {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
}

.card-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  background: rgba(8, 11, 18, 0.6);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 13px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.spec-name {
  color: var(--text-muted);
}

.spec-val {
  font-weight: 600;
  color: var(--text-main);
}

.highlight-green { color: var(--emerald); }
.highlight-cyan { color: var(--cyan); }

.card-cta-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: opacity 0.2s;
}

.card-cta-btn:hover {
  opacity: 0.9;
}

/* ==========================================================================
   FPS BOOST & FEATURES SECTION
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.fps-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.fps-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.fps-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: var(--bg-card-hover);
}

.fps-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--fire));
}

.fps-card:first-child::before {
  background: linear-gradient(90deg, var(--amber), var(--cyan));
}

.fps-card:last-child::before {
  background: linear-gradient(90deg, var(--cyan), var(--emerald));
}

.fps-icon-wrap {
  margin-bottom: 20px;
  height: 52px;
  display: flex;
  align-items: center;
}

.fps-icon-wrap img {
  border-radius: var(--radius-sm);
}

.feature-emoji {
  font-size: 38px;
}

.fps-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.fps-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.fps-pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

/* ==========================================================================
   VERSIONS SECTION (1.21.1 - 1.21.11)
   ========================================================================== */
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.fabric-callout {
  background: linear-gradient(110deg, #111b2e 0%, #151633 100%);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.fabric-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.fabric-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.fabric-content p {
  color: var(--text-muted);
  font-size: 14px;
}

.fabric-content code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--cyan);
}

.button-fabric {
  background: #fff;
  color: #080b12;
  white-space: nowrap;
}

.button-fabric:hover {
  background: var(--cyan);
}

/* 11-Version Grid */
.version-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.version-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.version-tile:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(0, 240, 255, 0.18);
  background: var(--bg-card-hover);
}

.version-tile.is-popular {
  border-color: rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(14, 20, 36, 0.9) 100%);
}

.v-pill {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
}

.tag-popular {
  color: var(--primary-light);
}

.tag-new {
  color: var(--cyan);
}

.v-number {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 8px 0;
}

.v-download-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  transition: transform 0.2s;
}

.version-tile:hover .v-download-text {
  text-decoration: underline;
  transform: translateX(2px);
}

.versions-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ==========================================================================
   CURRENCY SECTION (DOLARKI ANARCHIA)
   ========================================================================== */
.currency-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.rates-container {
  display: flex;
  gap: 20px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.rate-card {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.rate-card.is-best-rate {
  border-color: rgba(0, 240, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, var(--bg-card) 100%);
}

.rate-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.tag-vip {
  color: var(--cyan);
}

.rate-ratio {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 4px;
}

.rate-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.visual-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.currency-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   INSTALLATION STEPS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.step-number {
  font-size: 40px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-card code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--cyan);
  font-size: 13px;
}

/* ==========================================================================
   MEDIA / SHOWCASE
   ========================================================================== */
.media-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.video-container {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #000;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */
.security-card {
  background: linear-gradient(110deg, #0d1527 0%, #15102a 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.security-text-col h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.security-text-col p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.security-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sec-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

/* ==========================================================================
   CLOSING SECTION & FOOTER
   ========================================================================== */
.closing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.08) 100%);
  border-top: 1px solid var(--border-subtle);
}

.closing-section h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 12px;
}

.closing-section p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 30px;
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  background: #06080e;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

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

/* ==========================================================================
   REVEAL ON SCROLL ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-art {
    margin-top: 20px;
  }
  .dual-feature-grid {
    grid-template-columns: 1fr;
  }
  .currency-layout {
    grid-template-columns: 1fr;
  }
  .media-showcase-grid {
    grid-template-columns: 1fr;
  }
  .security-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px;
  }
  .security-icon-col {
    display: flex;
    justify-content: center;
  }
  .security-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .fabric-callout {
    flex-direction: column;
    align-items: flex-start;
  }
  .button-fabric {
    width: 100%;
  }
  .version-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .button {
    width: 100%;
  }
  .version-grid {
    grid-template-columns: 1fr;
  }
  .hero-metrics {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .metric-sep {
    display: none;
  }
}
