/*
Theme Name: Bearded Turtle
Theme URI: https://beardedturtledesigns.com
Author: Bearded Turtle
Author URI: https://beardedturtledesigns.com
Description: The official Bearded Turtle Designs theme. Dark gaming aesthetic, neon teal accents, community-first layout. Built for the shell.
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: dark, gaming, custom, blog, e-commerce
Text Domain: beardedturtle
*/

/* ─────────────────────────────────────────────────
   FONTS
───────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&family=Nunito:wght@300;400;600;700&display=swap');

/* ─────────────────────────────────────────────────
   VARIABLES
───────────────────────────────────────────────── */
:root {
  --bg:          #080c0d;
  --surface:     #0d1416;
  --surface2:    #111b1e;
  --teal:        #00e5c4;
  --teal-dim:    rgba(0,229,196,0.08);
  --teal-glow:   rgba(0,229,196,0.25);
  --purple:      #b06aff;
  --purple-dim:  rgba(176,106,255,0.08);
  --orange:      #ff7c3a;
  --text:        #ddeae8;
  --muted:       #4d6a66;
  --border:      rgba(0,229,196,0.07);
  --border2:     rgba(176,106,255,0.07);
  --font-display: 'Orbitron', monospace;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Nunito', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* scanline overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: #00ffda; }

ul, ol { padding-left: 1.4em; }

/* ─────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(32px, 6vw, 60px); margin-bottom: 20px; }
h2 { font-size: clamp(24px, 4vw, 40px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 3vw, 28px); margin-bottom: 14px; }
h4 { font-size: 20px; margin-bottom: 12px; }

p { color: var(--muted); margin-bottom: 16px; font-size: 15px; line-height: 1.85; }
p:last-child { margin-bottom: 0; }
p strong { color: var(--text); font-weight: 600; }
p em { color: var(--purple); font-style: normal; }

/* ─────────────────────────────────────────────────
   LAYOUT WRAPPERS
───────────────────────────────────────────────── */
.bt-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
}

.bt-container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

/* ─────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(8,12,13,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-branding .site-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
}

.site-branding .site-title a {
  color: var(--teal);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(0,229,196,0.35);
}

.site-branding .site-title a span { color: var(--text); }

.site-description { display: none; }

/* Nav menu */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin: 0;
}

.main-navigation ul li a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 13px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: block;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
  color: var(--teal);
  border-color: rgba(0,229,196,0.15);
}

/* CTA nav item */
.main-navigation ul li.menu-item-cta a {
  color: var(--teal);
  border-color: rgba(0,229,196,0.25);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  cursor: pointer;
}

/* ─────────────────────────────────────────────────
   PAGE CONTENT OFFSET (because fixed nav)
───────────────────────────────────────────────── */
.content-offset {
  padding-top: 64px;
}

/* ─────────────────────────────────────────────────
   SECTION SHARED STYLES
───────────────────────────────────────────────── */
.bt-section {
  padding: 90px 0;
}

.bt-section--surface {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bt-section--surface2 {
  background: var(--surface2);
}

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-label--purple { color: var(--purple); }
.section-label--orange { color: var(--orange); }

.section-header { margin-bottom: 48px; }

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.85;
}

/* ─────────────────────────────────────────────────
   CARDS
───────────────────────────────────────────────── */
.bt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.bt-card:hover {
  border-color: rgba(0,229,196,0.18);
  transform: translateY(-2px);
  background: var(--surface2);
}

.bt-card--teal  { border-left: 3px solid var(--teal); }
.bt-card--purple { border-left: 3px solid var(--purple); }
.bt-card--orange { border-left: 3px solid var(--orange); }

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.bt-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.2s, transform 0.15s, background 0.2s;
}

.bt-btn:hover { transform: translateY(-2px); }

.bt-btn--teal {
  background: var(--teal);
  color: var(--bg);
}
.bt-btn--teal:hover {
  background: #00ffda;
  box-shadow: 0 0 28px rgba(0,229,196,0.4);
  color: var(--bg);
}

.bt-btn--purple {
  background: var(--purple);
  color: var(--bg);
}
.bt-btn--purple:hover {
  box-shadow: 0 0 28px rgba(176,106,255,0.4);
  color: var(--bg);
}

.bt-btn--orange {
  background: var(--orange);
  color: var(--bg);
}
.bt-btn--orange:hover {
  box-shadow: 0 0 28px rgba(255,124,58,0.4);
  color: var(--bg);
}

.bt-btn--ghost {
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(0,229,196,0.25);
}
.bt-btn--ghost:hover {
  border-color: var(--teal);
  background: rgba(0,229,196,0.05);
  color: var(--teal);
  box-shadow: none;
}

.bt-btn--ghost-purple {
  background: transparent;
  color: var(--purple);
  border: 1px solid rgba(176,106,255,0.25);
}
.bt-btn--ghost-purple:hover {
  border-color: var(--purple);
  background: rgba(176,106,255,0.05);
  color: var(--purple);
  box-shadow: none;
}

/* ─────────────────────────────────────────────────
   LIVE PULSE DOT
───────────────────────────────────────────────── */
.bt-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: btPulse 1.5s ease-in-out infinite;
}

@keyframes btPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

/* ─────────────────────────────────────────────────
   MONO LABEL (the // style text)
───────────────────────────────────────────────── */
.bt-mono-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────
   DIVIDER LINE
───────────────────────────────────────────────── */
.bt-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}

.bt-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,196,0.2), transparent);
}

.bt-divider__icon { font-size: 18px; }

/* ─────────────────────────────────────────────────
   BLOG / THE SHELL
───────────────────────────────────────────────── */
.entry-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

.entry-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  color: var(--teal);
  margin-bottom: 12px;
}

.entry-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.entry-meta a { color: var(--muted); }
.entry-meta a:hover { color: var(--teal); }

.entry-content {
  max-width: 700px;
}

.entry-content p { color: var(--muted); font-size: 16px; line-height: 1.9; margin-bottom: 22px; }
.entry-content p strong { color: var(--text); }
.entry-content h2 { color: var(--teal); font-size: 22px; margin: 40px 0 16px; }
.entry-content h3 { color: var(--text); font-size: 18px; margin: 32px 0 14px; }
.entry-content a { color: var(--teal); border-bottom: 1px solid rgba(0,229,196,0.3); }
.entry-content a:hover { border-color: var(--teal); }

.entry-content ul,
.entry-content ol {
  color: var(--muted);
  margin-bottom: 20px;
  padding-left: 24px;
}

.entry-content li { margin-bottom: 6px; }

.entry-content blockquote {
  background: var(--surface);
  border-left: 3px solid var(--teal);
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text);
}

.entry-content img {
  border: 1px solid var(--border);
  margin: 24px 0;
}

/* Post navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.nav-previous a,
.nav-next a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.nav-previous a:hover,
.nav-next a:hover { border-color: rgba(0,229,196,0.2); color: var(--teal); }

/* Archive / blog list */
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  margin-bottom: 2px;
  transition: border-color 0.2s, background 0.2s;
  display: block;
  text-decoration: none;
}

.post-card:hover {
  border-color: rgba(0,229,196,0.18);
  background: var(--surface2);
}

.post-card__date {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.post-card__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1.25;
}

.post-card__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.post-card__read {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ─────────────────────────────────────────────────
   COMMENTS
───────────────────────────────────────────────── */
#comments {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.comments-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 32px;
}

.comment-list { list-style: none; padding: 0; }

.comment-body {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 16px;
}

.comment-author .fn { color: var(--teal); font-weight: 600; }
.comment-meta { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-bottom: 12px; }
.comment-content p { font-size: 14px; }

/* Comment form */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 12px;
}

.comment-form input:focus,
.comment-form textarea:focus { border-color: rgba(0,229,196,0.3); }
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }

.comment-form input[type="submit"] {
  background: var(--teal);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.comment-form input[type="submit"]:hover {
  background: #00ffda;
  box-shadow: 0 0 24px rgba(0,229,196,0.35);
}

/* ─────────────────────────────────────────────────
   SIDEBAR & WIDGETS
───────────────────────────────────────────────── */
.widget-area { padding: 0 0 0 32px; }

.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 16px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { font-size: 13px; color: var(--muted); }
.widget ul li a:hover { color: var(--teal); }

/* ─────────────────────────────────────────────────
   SHOP / WOOCOMMERCE BASICS
───────────────────────────────────────────────── */
.woocommerce .products .product {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.woocommerce .products .product:hover {
  border-color: rgba(255,124,58,0.25);
  transform: translateY(-3px);
}

.woocommerce .products .product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
}

.woocommerce .products .product .price {
  color: var(--orange);
  font-family: var(--font-mono);
}

.woocommerce .products .product .button,
.woocommerce .single_add_to_cart_button {
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.woocommerce .products .product .button:hover,
.woocommerce .single_add_to_cart_button:hover {
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255,124,58,0.4);
}

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 28px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
}

.footer-nav a:hover { color: var(--teal); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(77,106,102,0.45);
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────────
   PAGE TEMPLATES — HERO (for homepage)
───────────────────────────────────────────────── */
.page-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 28px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,196,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,196,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: btGridShift 20s linear infinite;
  pointer-events: none;
}

@keyframes btGridShift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.page-hero__glow-teal {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,196,0.06) 0%, transparent 70%);
  top: 10%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero__glow-purple {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(176,106,255,0.04) 0%, transparent 70%);
  bottom: 10%; right: 5%;
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  animation: btFadeUp 0.6s ease forwards 0.1s;
  opacity: 0;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 11vw, 105px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  animation: btFadeUp 0.7s ease forwards 0.25s;
  opacity: 0;
}

.page-hero__title .teal {
  display: block;
  color: var(--teal);
  text-shadow: 0 0 50px rgba(0,229,196,0.35);
}

.page-hero__sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--muted);
  max-width: 500px;
  margin: 24px auto 0;
  line-height: 1.9;
  animation: btFadeUp 0.7s ease forwards 0.4s;
  opacity: 0;
}

.page-hero__radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid rgba(0,229,196,0.2);
  padding: 10px 20px;
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-decoration: none;
  animation: btFadeUp 0.7s ease forwards 0.55s;
  opacity: 0;
  transition: background 0.2s, border-color 0.2s;
}

.page-hero__radio-pill:hover {
  background: rgba(0,229,196,0.05);
  border-color: rgba(0,229,196,0.35);
  color: var(--teal);
}

/* ─────────────────────────────────────────────────
   DESTINATION GRID (homepage cards)
───────────────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 768px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.dest-card:hover { background: var(--surface2); border-color: var(--border); }

.dest-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.dest-card:hover::after { transform: scaleX(1); }
.dest-card--teal::after  { background: var(--teal); }
.dest-card--purple::after { background: var(--purple); }
.dest-card--orange::after { background: var(--orange); }

.dest-card__num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--border);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}

.dest-card__icon { font-size: 32px; margin-bottom: 14px; display: block; }

.dest-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
}

.dest-card--teal  .dest-card__name { color: var(--teal); }
.dest-card--purple .dest-card__name { color: var(--purple); }
.dest-card--orange .dest-card__name { color: var(--orange); }

.dest-card__desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

.dest-card__arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.dest-card--teal   .dest-card__arrow { color: var(--teal); }
.dest-card--purple  .dest-card__arrow { color: var(--purple); }
.dest-card--orange  .dest-card__arrow { color: var(--orange); }
.dest-card:hover .dest-card__arrow { opacity: 1; transform: translate(4px, -4px); }

/* ─────────────────────────────────────────────────
   STAT CARDS
───────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

@media (max-width: 600px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  padding: 32px 20px;
  text-align: center;
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--purple);
  display: block;
  margin-bottom: 8px;
}

.stat-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────
   PLATFORM CARDS
───────────────────────────────────────────────── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 700px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.platform-card:hover {
  border-color: rgba(0,229,196,0.2);
  background: var(--surface2);
  transform: translateY(-4px);
}

.platform-card__icon { font-size: 30px; margin-bottom: 10px; display: block; }

.platform-card__name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.platform-card__handle {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────
   EMAIL SIGNUP
───────────────────────────────────────────────── */
.bt-email-row {
  display: flex;
}

.bt-email-row input[type="email"] {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 12px 16px;
  outline: none;
}

.bt-email-row input[type="email"]:focus { border-color: rgba(255,124,58,0.3); }
.bt-email-row input[type="email"]::placeholder { color: var(--muted); }

.bt-email-row button {
  background: var(--orange);
  border: none;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.bt-email-row button:hover { background: #ff9a5c; }

/* ─────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────── */
@keyframes btFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-navigation ul { display: none; }
  .menu-toggle { display: block; }
  .main-navigation.toggled ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(8,12,13,0.97);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    gap: 0;
  }
  .widget-area { padding: 32px 0 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .post-navigation { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .bt-container, .bt-container--narrow { padding: 0 18px; }
  .page-hero { padding: 100px 18px 60px; }
}
