/* ============================================================
   Homepage scope — keeps the editorial visual language isolated
   from the global compiled Tailwind. All selectors are prefixed
   with .tag-home to avoid bleed.
   ============================================================ */
.tag-home {
  --r: 8px;
  --r-lg: 14px;
  --pad: clamp(20px, 5vw, 72px);
  --th-border: #1E2D45;
  --th-cyan-dim: rgba(34,197,212,0.12);
  --th-cyan-glow: rgba(34,197,212,0.25);
  --th-gold: #E8C547;
  --th-gold-dim: rgba(232,197,71,0.10);
  --th-cream: #F0EBE0;
  --th-muted: #7A8899;
  color: var(--th-cream);
  background: #0B0F1A;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.tag-home *, .tag-home *::before, .tag-home *::after { box-sizing: border-box; }
.tag-home a { color: inherit; text-decoration: none; }
.tag-home .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad); }
.tag-home .eyebrow {
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #22C5D4; font-weight: 700;
}

@property --tag-home-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes tag-home-spin { to { --tag-home-angle: 360deg; } }
@keyframes tag-home-fade-up { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes tag-home-pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }
@media (prefers-reduced-motion: reduce) {
    .tag-home * { animation: none !important; transition: none !important; }
}

/* Promo bar */
.tag-home .promo-bar {
  background: rgba(34,197,212,0.06);
  border-bottom: 1px solid rgba(34,197,212,0.12);
  text-align: center;
  padding: 9px var(--pad);
  font-size: 13px;
  color: var(--th-muted);
}
.tag-home .promo-bar .dot {
  display: inline-block; width: 6px; height: 6px;
  background: #22C5D4; border-radius: 50%;
  vertical-align: middle; margin-right: 7px;
  box-shadow: 0 0 8px #22C5D4;
  animation: tag-home-pulse-dot 1.8s infinite;
}
.tag-home .promo-bar strong { color: var(--th-cream); }
.tag-home .promo-bar a { color: #22C5D4; font-weight: 700; }
.tag-home .promo-bar a:hover { text-decoration: underline; }

/* Hero */
.tag-home .hero {
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden;
}
.tag-home .hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(34,197,212,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(34,197,212,0.03) 0%, transparent 50%),
    #0B0F1A;
  z-index: 0;
}
.tag-home .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.007) 3px, rgba(255,255,255,0.007) 4px);
}
.tag-home .hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.tag-home .hero-ed {
  padding: clamp(40px,6vw,80px) var(--pad);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--th-border);
}
.tag-home .hero-vol { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.tag-home .hero-vol-div { width: 28px; height: 1px; background: var(--th-border); }
.tag-home .hero-kicker {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: #22C5D4; margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
  animation: tag-home-fade-up .6s .1s both ease;
}
.tag-home .hero-kicker::before { content: ''; display: block; width: 20px; height: 2px; background: #22C5D4; }
.tag-home .hero-h1 {
  font-family: 'Bungee', cursive; font-size: clamp(34px,4.2vw,56px);
  line-height: 1.05; color: var(--th-cream); margin-bottom: 22px; font-weight: 400;
  animation: tag-home-fade-up .6s .2s both ease;
}
.tag-home .hero-h1 em { font-style: normal; color: #22C5D4; }
.tag-home .hero-h1-link {
    color: inherit; text-decoration: none;
    transition: color .15s, text-shadow .15s;
}
.tag-home .hero-h1-link:hover {
    color: #22C5D4;
    text-shadow: 0 0 30px rgba(34,197,212,0.25);
}
.tag-home .hero-dek {
  font-size: clamp(15px,1.3vw,17px); line-height: 1.65;
  color: var(--th-muted); max-width: 420px; margin-bottom: 32px;
  animation: tag-home-fade-up .6s .3s both ease;
}
.tag-home .hero-byline { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; animation: tag-home-fade-up .6s .4s both ease; }
.tag-home .hero-avatar {
  width: 40px; height: 40px; border-radius: 8px;
  background: #22C5D4;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 0 6px;
}
.tag-home .hero-byline-text { font-size: 13px; color: var(--th-muted); line-height: 1.4; }
.tag-home .hero-byline-text strong { color: var(--th-cream); font-weight: 600; display: block; }
.tag-home .hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; animation: tag-home-fade-up .6s .5s both ease; }
.tag-home .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  background: #22C5D4; color: #0B0F1A;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s;
}
.tag-home .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 32px var(--th-cyan-glow); }
.tag-home .hero-free { font-size: 13px; color: var(--th-muted); }
.tag-home .hero-free a { color: var(--th-cream); }
.tag-home .hero-free a:hover { color: #22C5D4; }

.tag-home .hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--th-border);
  animation: tag-home-fade-up .6s .55s both ease;
}
.tag-home .trust-item { font-size: 12px; color: var(--th-muted); display: flex; align-items: center; gap: 6px; }
.tag-home .trust-item strong { color: var(--th-cream); font-weight: 600; }

/* Hero cover panel */
.tag-home .hero-cover {
  position: relative; display: flex; flex-direction: column;
  justify-content: flex-end; padding: clamp(32px,4vw,56px);
  background: #131825; overflow: hidden;
}
.tag-home .cover-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--th-border) 1px, transparent 1px), linear-gradient(90deg, var(--th-border) 1px, transparent 1px);
  background-size: 48px 48px; opacity: 0.35; z-index: 0;
}
.tag-home .cover-fade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(34,197,212,0.05) 0%, transparent 70%),
    linear-gradient(180deg, transparent 30%, rgba(11,15,26,0.97) 100%);
  z-index: 1;
}
.tag-home .cover-content { position: relative; z-index: 2; animation: tag-home-fade-up .6s .4s both ease; }
.tag-home .cover-chip {
  display: inline-block; padding: 4px 10px;
  border: 1px solid #22C5D4; border-radius: 4px;
  font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: #22C5D4;
}
.tag-home .issue-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.tag-home .issue-lock {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--th-muted);
}

.tag-home .teasers { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.tag-home .teaser { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.tag-home .teaser:first-child { padding-top: 0; }
.tag-home .teaser:last-child { border-bottom: none; }
.tag-home .teaser-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.tag-home .teaser-type { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: #22C5D4; }
.tag-home .teaser-read { font-family: 'Space Mono', monospace; font-size: 9px; color: var(--th-muted); }
.tag-home .teaser-title { font-family: 'Bungee', cursive; font-size: 15px; line-height: 1.2; color: var(--th-cream); margin-bottom: 5px; font-weight: 400; }
.tag-home .teaser-dek { font-size: 12px; color: var(--th-muted); line-height: 1.5; }
.tag-home .teaser-blur-layer {
  position: absolute; inset: 0;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  background: linear-gradient(to right, transparent 15%, rgba(19,24,37,0.55) 100%);
  pointer-events: none;
}
.tag-home .teaser-locked .teaser-title { color: rgba(240,235,224,0.5); }
.tag-home .teaser-locked .teaser-dek   { color: rgba(122,136,153,0.5); }
.tag-home .teaser-lock-badge {
  position: absolute; bottom: 12px; right: 0;
  display: flex; align-items: center; gap: 5px;
  font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  color: #22C5D4; border: 1px solid rgba(34,197,212,0.4); border-radius: 3px;
  padding: 3px 7px; background: rgba(19,24,37,0.85); pointer-events: none;
}
.tag-home .teaser-more-blur .teaser-blur-layer {
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  background: linear-gradient(to right, transparent 5%, rgba(19,24,37,0.75) 100%);
}
.tag-home .teaser-ghost { opacity: 0.35; }
.tag-home .teaser-ghost .teaser-title { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--th-muted); letter-spacing: 0.5px; }
.tag-home .teaser-ghost .teaser-blur-layer { backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); background: rgba(19,24,37,0.6); }

.tag-home .issue-cta {
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%; padding: 12px 16px; border-radius: var(--r);
  background: var(--th-cyan-dim); border: 1px solid rgba(34,197,212,0.2);
  color: #22C5D4; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  transition: background .2s, border-color .2s; justify-content: center;
}
.tag-home .issue-cta:hover { background: rgba(34,197,212,0.18); border-color: rgba(34,197,212,0.4); }

.tag-home .founding-strip {
  position: relative; z-index: 1;
  background: rgba(34,197,212,0.05);
  border-top: 1px solid rgba(34,197,212,0.12);
  padding: 13px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  animation: tag-home-fade-up .4s .7s both ease;
}
.tag-home .founding-strip p { font-size: 13px; color: var(--th-muted); margin: 0; }
.tag-home .founding-strip strong { color: var(--th-cream); }
.tag-home .founding-strip em { font-style: normal; color: #22C5D4; font-weight: 600; }
.tag-home .founding-strip a { font-size: 12px; font-weight: 700; color: #22C5D4; white-space: nowrap; }

/* Guides */
.tag-home .guides-section {
  padding: clamp(64px,8vw,96px) var(--pad);
  border-bottom: 1px solid var(--th-border);
}
.tag-home .section-head { margin-bottom: clamp(32px,4vw,48px); }
.tag-home .section-head h2 {
  font-family: 'Bungee', cursive; font-size: clamp(26px,3vw,36px);
  line-height: 1.1; color: var(--th-cream); margin-top: 12px; font-weight: 400;
}
.tag-home .section-head p { font-size: 15px; color: var(--th-muted); max-width: 540px; margin-top: 10px; line-height: 1.65; }

.tag-home .guides-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tag-home .guide-card {
  background: linear-gradient(160deg, #1A2133, #0B0F1A);
  border: 1px solid var(--th-border); border-radius: var(--r-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tag-home .guide-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(34,197,212,0.10); border-color: rgba(34,197,212,0.25); }
.tag-home .guide-cat { font-family: 'Press Start 2P', monospace; font-size: 7.5px; letter-spacing: 1.5px; color: #22C5D4; text-transform: uppercase; }
.tag-home .guide-title { font-family: 'Bungee', cursive; font-size: 17px; line-height: 1.2; color: var(--th-cream); font-weight: 400; }
.tag-home .guide-dek { font-size: 13px; color: var(--th-muted); line-height: 1.55; flex: 1; }
.tag-home .guide-foot {
  padding-top: 12px; border-top: 1px solid var(--th-border);
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--th-muted); font-family: 'Space Mono', monospace;
}
.tag-home .guide-card-more {
  background: linear-gradient(160deg, rgba(34,197,212,0.06), #0B0F1A);
  border: 1px dashed rgba(34,197,212,0.2); border-radius: var(--r-lg);
  padding: 24px; display: flex; flex-direction: column;
  justify-content: center; gap: 12px;
  transition: border-color .2s;
}
.tag-home .guide-card-more:hover { border-color: rgba(34,197,212,0.4); }
.tag-home .guide-more-label { font-family: 'Press Start 2P', monospace; font-size: 7.5px; letter-spacing: 1.5px; color: #22C5D4; }
.tag-home .guide-more-title { font-family: 'Bungee', cursive; font-size: 17px; color: var(--th-cream); font-weight: 400; }
.tag-home .guide-more-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #22C5D4; width: fit-content; }

/* Briefing */
.tag-home .briefing-section { padding: clamp(64px,8vw,96px) var(--pad); border-bottom: 1px solid var(--th-border); }
.tag-home .briefing-card {
  background: linear-gradient(150deg, #1A2133, #131825);
  border: 1px solid var(--th-border); border-radius: var(--r-lg);
  padding: clamp(36px,5vw,56px); text-align: center;
  position: relative; overflow: hidden;
}
.tag-home .briefing-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(34,197,212,0.08), transparent 70%);
  pointer-events: none;
}
.tag-home .briefing-card > * { position: relative; }
.tag-home .briefing-card h2 { font-family: 'Bungee', cursive; font-size: clamp(26px,3vw,36px); line-height: 1.1; color: var(--th-cream); margin-top: 12px; margin-bottom: 12px; font-weight: 400; }
.tag-home .briefing-card p { font-size: 15px; color: var(--th-muted); max-width: 500px; margin: 0 auto 28px; line-height: 1.65; }
.tag-home .capture-row { display: flex; gap: 10px; max-width: 440px; margin: 0 auto 14px; flex-wrap: wrap; justify-content: center; }
.tag-home .capture-input {
  flex: 1; min-width: 220px;
  background: #0B0F1A; border: 1px solid var(--th-border);
  border-radius: var(--r); padding: 13px 16px;
  color: var(--th-cream); font-family: 'Space Grotesk', sans-serif; font-size: 15px;
  transition: border-color .2s; outline: none;
}
.tag-home .capture-input:focus { border-color: #22C5D4; }
.tag-home .capture-input::placeholder { color: var(--th-muted); }
.tag-home .btn-capture {
  padding: 13px 24px; border-radius: var(--r);
  background: #22C5D4; color: #0B0F1A;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.tag-home .btn-capture:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--th-cyan-glow); }
.tag-home .briefing-fine { font-size: 12px; color: var(--th-muted); }
.tag-home .briefing-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.tag-home .briefing-tag { padding: 4px 10px; border-radius: 100px; border: 1px solid var(--th-border); background: #131825; font-size: 11px; color: var(--th-muted); font-family: 'Space Mono', monospace; letter-spacing: 0.5px; }
.tag-home .briefing-success { display: none; color: #22C55E; font-size: 14px; margin-top: 16px; }
.tag-home .briefing-error { display: none; color: #FF4842; font-size: 13px; margin-top: 10px; }

/* Stat / receipt */
.tag-home .stat-section { padding: clamp(80px,10vw,120px) 0; }
.tag-home .stat-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center; }
.tag-home .stat-left { padding-left: var(--pad); }
.tag-home .stat-eye { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--th-muted); margin-bottom: 22px; }
.tag-home .stat-num {
  font-family: 'Bungee', cursive; font-size: clamp(72px,11vw,140px);
  line-height: 0.9; color: var(--th-gold); margin-bottom: 16px;
  position: relative; display: inline-block; font-weight: 400;
}
.tag-home .stat-num::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--th-gold), transparent);
}
.tag-home .stat-sub { font-size: clamp(17px,2.2vw,24px); font-weight: 600; color: var(--th-cream); line-height: 1.3; margin-bottom: 14px; }
.tag-home .stat-body { font-size: 15px; color: var(--th-muted); line-height: 1.7; max-width: 380px; }
.tag-home .receipt-wrap { padding-right: var(--pad); }
.tag-home .receipt { background: #131825; border: 1px solid var(--th-border); border-radius: var(--r-lg); overflow: hidden; font-family: 'Space Mono', monospace; }
.tag-home .receipt-head { padding: 14px 20px; border-bottom: 1px solid var(--th-border); display: flex; align-items: center; justify-content: space-between; }
.tag-home .receipt-head-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--th-muted); }
.tag-home .receipt-badge { font-size: 9px; padding: 3px 8px; border-radius: 100px; border: 1px solid rgba(232,197,71,0.3); color: var(--th-gold); letter-spacing: 1px; }
.tag-home .receipt-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 20px; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background .15s; }
.tag-home .receipt-row:hover { background: rgba(255,255,255,0.02); }
.tag-home .r-game { color: var(--th-cream); }
.tag-home .r-meta { font-size: 10px; color: var(--th-muted); margin-top: 2px; }
.tag-home .r-price { color: var(--th-gold); font-weight: 700; white-space: nowrap; }
.tag-home .receipt-foot { padding: 14px 20px; border-top: 1px solid var(--th-border); display: flex; align-items: center; justify-content: space-between; }
.tag-home .receipt-foot-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--th-muted); }
.tag-home .receipt-foot-val { font-size: 20px; color: var(--th-gold); font-weight: 700; }

/* SavePoint */
.tag-home .sp-section { padding: clamp(80px,10vw,120px) var(--pad); border-top: 1px solid var(--th-border); }
.tag-home .sp-header { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); margin-bottom: clamp(48px,6vw,64px); }
.tag-home .sp-h2 { font-family: 'Bungee', cursive; font-size: clamp(30px,3.5vw,44px); line-height: 1.1; color: var(--th-cream); margin-top: 12px; font-weight: 400; }
.tag-home .sp-h2 em { font-style: normal; color: #22C5D4; }
.tag-home .sp-body { font-size: 16px; line-height: 1.7; color: var(--th-muted); padding-top: 6px; }
.tag-home .feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--th-border); border: 1px solid var(--th-border); border-radius: var(--r-lg); overflow: hidden; }
.tag-home .feat-card { background: #131825; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: background .2s; }
.tag-home .feat-card:hover { background: #1A2133; }

/* Trailer showcase (homepage "See TAG in Action" section + SavePoint section fold-in) */
.tag-home .trailers-section { padding: clamp(64px,8vw,96px) var(--pad); border-top: 1px solid var(--th-border); }
.tag-home .trailers-header { text-align: center; max-width: 640px; margin: 0 auto clamp(40px,5vw,56px); }
.tag-home .trailers-h2 { font-family: 'Bungee', cursive; font-size: clamp(28px,3.2vw,40px); line-height: 1.1; color: var(--th-cream); margin-top: 12px; font-weight: 400; }
.tag-home .trailers-h2 em { font-style: normal; color: #22C5D4; }
.tag-home .trailer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.tag-home .trailer-card { background: #131825; border: 1px solid var(--th-border); border-radius: var(--r-lg); overflow: hidden; }
.tag-home .trailer-card-video { aspect-ratio: 16/9; background: #0B0F1A; }
.tag-home .trailer-card-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tag-home .trailer-card-body { padding: 20px 22px 24px; }
.tag-home .trailer-card-title { font-family: 'Bungee', cursive; font-size: 17px; color: var(--th-cream); font-weight: 400; margin-bottom: 8px; }
.tag-home .trailer-card-dek { font-size: 14px; line-height: 1.6; color: var(--th-muted); margin-bottom: 14px; }
.tag-home .trailer-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #22C5D4; }
.tag-home .trailer-card-link:hover { text-decoration: underline; }
.tag-home .trailer-card-link svg { flex-shrink: 0; }

/* Single trailer card folded into the SavePoint feature section */
.tag-home .sp-video { max-width: 520px; margin: 0 auto clamp(40px,5vw,56px); }
.tag-home .feat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--th-cyan-dim); border: 1px solid rgba(34,197,212,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tag-home .feat-title { font-family: 'Bungee', cursive; font-size: 18px; color: var(--th-cream); line-height: 1.2; font-weight: 400; }
.tag-home .feat-body { font-size: 14px; color: var(--th-muted); line-height: 1.65; flex: 1; }
.tag-home .feat-chip { display: inline-block; padding: 4px 10px; border-radius: 100px; background: var(--th-cyan-dim); border: 1px solid rgba(34,197,212,0.15); font-size: 11px; color: #22C5D4; font-weight: 600; width: fit-content; }
.tag-home .feat-chip.pro { background: var(--th-gold-dim); border-color: rgba(232,197,71,0.2); color: var(--th-gold); }

/* Clarity */
.tag-home .clarity-section { padding: clamp(64px,8vw,96px) var(--pad); border-top: 1px solid var(--th-border); border-bottom: 1px solid var(--th-border); }
.tag-home .clarity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(32px,4vw,48px); }
.tag-home .clarity-col { border: 1px solid var(--th-border); border-radius: var(--r-lg); padding: 28px 32px; }
.tag-home .clarity-col.free { background: rgba(34,197,212,0.03); }
.tag-home .clarity-col.pro { background: linear-gradient(160deg, rgba(34,197,212,0.07), #0B0F1A); border-color: rgba(34,197,212,0.3); }
.tag-home .clarity-col-title { font-family: 'Bungee', cursive; font-size: 24px; color: var(--th-cream); margin-bottom: 6px; font-weight: 400; }
.tag-home .clarity-price { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 1.2px; color: var(--th-muted); margin-bottom: 22px; text-transform: uppercase; line-height: 1.55; }
.tag-home .clarity-price em { font-style: normal; color: #22C5D4; font-weight: 700; }
.tag-home .clist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; padding: 0; }
.tag-home .clist li { font-size: 14px; color: #94A3B4; line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
.tag-home .clist li svg { flex-shrink: 0; margin-top: 4px; }
.tag-home .clist li strong { color: var(--th-cream); font-weight: 600; }
.tag-home .btn-clarity-free { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 100px; border: 1px solid var(--th-border); background: transparent; color: var(--th-cream); font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; transition: border-color .2s; }
.tag-home .btn-clarity-free:hover { border-color: #22C5D4; color: #22C5D4; }
.tag-home .btn-clarity-pro { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 100px; background: #22C5D4; color: #0B0F1A; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; border: none; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.tag-home .btn-clarity-pro:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--th-cyan-glow); }

/* Bundle */
.tag-home .bundle-section { padding: clamp(80px,10vw,120px) var(--pad); border-bottom: 1px solid var(--th-border); }
.tag-home .bundle-intro { margin-bottom: clamp(48px,6vw,64px); }
.tag-home .bundle-h2 { font-family: 'Bungee', cursive; font-size: clamp(30px,3.5vw,44px); line-height: 1.1; color: var(--th-cream); margin-top: 12px; font-weight: 400; }
.tag-home .bundle-sub { font-size: 16px; color: var(--th-muted); max-width: 480px; margin-top: 10px; line-height: 1.6; }
.tag-home .bundle-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tag-home .b-card { background: #131825; border: 1px solid var(--th-border); border-radius: var(--r-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s; }
.tag-home .b-card:hover { border-color: rgba(34,197,212,0.2); }
.tag-home .b-icon { width: 40px; height: 40px; margin-bottom: 4px; }
.tag-home .b-name { font-family: 'Bungee', cursive; font-size: 22px; color: var(--th-cream); font-weight: 400; }
.tag-home .b-desc { font-size: 14px; color: var(--th-muted); line-height: 1.65; flex: 1; }
.tag-home .b-items { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; padding: 0; }
.tag-home .b-items li { font-size: 13px; color: var(--th-muted); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.tag-home .b-items li svg { flex-shrink: 0; margin-top: 3px; }

/* Pricing */
.tag-home .pricing-section { padding: clamp(80px,10vw,120px) var(--pad); display: flex; flex-direction: column; align-items: center; text-align: center; }
.tag-home .pricing-eye { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--th-muted); margin-bottom: 18px; }
.tag-home .pricing-h2 { font-family: 'Bungee', cursive; font-size: clamp(30px,3.8vw,50px); color: var(--th-cream); margin-bottom: 14px; line-height: 1.1; font-weight: 400; }
.tag-home .pricing-sub { font-size: 16px; color: var(--th-muted); max-width: 520px; margin-bottom: clamp(40px,6vw,60px); line-height: 1.6; }

.tag-home .price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; max-width: 880px; margin-bottom: 24px; }
.tag-home .price-card-outer {
  padding: 3px; border-radius: calc(var(--r-lg) + 3px);
  background: conic-gradient(from var(--tag-home-angle), #22C5D4 0deg, transparent 60deg, transparent 300deg, #22C5D4 360deg);
  animation: tag-home-spin 3s linear infinite;
}
.tag-home .price-card-outer.no-spin { background: var(--th-border); animation: none; }
.tag-home .p-card { background: #131825; border-radius: var(--r-lg); padding: 36px 32px; display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden; text-align: left; }
.tag-home .p-card::before { content: ''; position: absolute; top: -40px; left: -40px; right: -40px; height: 120px; background: radial-gradient(ellipse, rgba(34,197,212,0.08) 0%, transparent 70%); }
.tag-home .p-ribbon {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 1;
  background: #22C5D4;
  color: #0B0F1A;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.tag-home .p-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 100px; background: var(--th-gold-dim); border: 1px solid rgba(232,197,71,0.25); font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--th-gold); width: fit-content; margin-bottom: 22px; position: relative; }
.tag-home .p-name { font-family: 'Bungee', cursive; font-size: 26px; color: var(--th-cream); margin-bottom: 8px; font-weight: 400; position: relative; }
.tag-home .p-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; position: relative; }
.tag-home .p-price { font-family: 'Bungee', cursive; font-size: 48px; color: var(--th-cream); line-height: 1; font-weight: 400; }
.tag-home .p-per { font-size: 14px; color: var(--th-muted); }
.tag-home .p-note { font-size: 13px; color: var(--th-muted); margin-bottom: 22px; position: relative; }
.tag-home .p-note strong { color: var(--th-cream); font-weight: 600; }
.tag-home .p-divider { height: 1px; background: var(--th-border); margin-bottom: 18px; position: relative; }
.tag-home .p-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; padding: 0; position: relative; flex: 1; }
.tag-home .p-perks li { font-size: 14px; color: var(--th-muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.tag-home .p-check { width: 18px; height: 18px; border-radius: 50%; background: var(--th-cyan-dim); border: 1px solid rgba(34,197,212,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.tag-home .btn-card { width: 100%; padding: 15px; border-radius: 100px; background: #22C5D4; color: #0B0F1A; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: transform .15s, box-shadow .15s; margin-bottom: 14px; box-shadow: 0 0 32px rgba(34,197,212,0.2); display: inline-block; text-align: center; text-decoration: none; position: relative; }
.tag-home .btn-card:hover { transform: translateY(-1px); box-shadow: 0 8px 40px rgba(34,197,212,0.4); }
.tag-home .btn-card.secondary { background: transparent; color: #22C5D4; border: 1px solid #22C5D4; box-shadow: none; }
.tag-home .btn-card.secondary:hover { background: rgba(34,197,212,0.08); box-shadow: 0 6px 20px rgba(34,197,212,0.15); }
.tag-home .btn-card.soldout { background: rgba(255,255,255,0.04); color: var(--th-muted); border: 1px solid rgba(255,255,255,0.08); cursor: not-allowed; box-shadow: none; }
.tag-home .scarcity { display: flex; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 11px; color: var(--th-muted); position: relative; }
.tag-home .scarcity-n { color: var(--th-gold); font-weight: 700; }
.tag-home .pricing-note { font-size: 13px; color: var(--th-muted); margin-top: 12px; }
.tag-home .pricing-note a { color: #22C5D4; }
.tag-home .pricing-note a:hover { text-decoration: underline; }

/* Writers, not brands strip */
.tag-home .writers-strip {
  background: rgba(34,197,212,0.04);
  border-top: 1px solid var(--th-border);
  border-bottom: 1px solid var(--th-border);
  padding: 22px var(--pad);
}
.tag-home .writers-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.tag-home .writers-strip-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--th-muted); flex-shrink: 0; }
.tag-home .writers-strip-text { flex: 1; min-width: 280px; font-size: 14px; color: var(--th-muted); line-height: 1.6; }
.tag-home .writers-strip-text strong { color: var(--th-cream); font-weight: 600; }
.tag-home .writers-strip-link { color: #22C5D4; font-weight: 700; font-size: 13px; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.tag-home .writers-strip-link:hover { text-decoration: underline; }

/* Where the writers went */
.tag-home .writers-landed { padding: clamp(80px,10vw,120px) var(--pad); border-top: 1px solid var(--th-border); }
.tag-home .writers-landed h2 { font-family: 'Bungee', cursive; font-size: clamp(26px,3vw,40px); line-height: 1.1; color: var(--th-cream); margin-top: 12px; font-weight: 400; max-width: 760px; }
.tag-home .wl-lede { font-size: 15px; color: var(--th-muted); max-width: 600px; margin-top: 12px; line-height: 1.65; }
.tag-home .writers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: clamp(28px,4vw,40px); }
.tag-home .writer-card { background: #131825; border: 1px solid var(--th-border); border-radius: var(--r-lg); padding: 24px; transition: border-color .2s, transform .2s; }
.tag-home .writer-card:hover { border-color: rgba(34,197,212,0.25); transform: translateY(-2px); }
.tag-home .writer-from { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--th-muted); margin-bottom: 8px; text-decoration: line-through; text-decoration-color: rgba(122,136,153,0.4); }
.tag-home .writer-to { font-family: 'Bungee', cursive; font-size: 20px; color: var(--th-cream); margin-bottom: 8px; font-weight: 400; }
.tag-home .writer-blurb { font-size: 13px; color: var(--th-muted); line-height: 1.6; }
.tag-home .writers-landed-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: clamp(28px,4vw,36px); padding: 12px 24px; border-radius: 100px; border: 1px solid var(--th-border); color: var(--th-cream); font-size: 13px; font-weight: 600; transition: border-color .2s, color .2s; }
.tag-home .writers-landed-cta:hover { border-color: #22C5D4; color: #22C5D4; }

/* Start here essentials */
.tag-home .essentials { padding: clamp(80px,10vw,120px) var(--pad); border-top: 1px solid var(--th-border); background: linear-gradient(180deg, #0B0F1A, rgba(34,197,212,0.03)); }
.tag-home .essentials h2 { font-family: 'Bungee', cursive; font-size: clamp(26px,3vw,40px); line-height: 1.1; color: var(--th-cream); margin-top: 12px; font-weight: 400; max-width: 760px; }
.tag-home .es-lede { font-size: 15px; color: var(--th-muted); max-width: 600px; margin-top: 12px; line-height: 1.65; }
.tag-home .essentials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: clamp(28px,4vw,40px); }
.tag-home .essential-card { display: flex; gap: 22px; align-items: flex-start; background: #131825; border: 1px solid var(--th-border); border-radius: var(--r-lg); padding: 28px; transition: border-color .2s, transform .2s; }
.tag-home .essential-card:hover { border-color: rgba(34,197,212,0.3); transform: translateY(-2px); }
.tag-home .essential-number { font-family: 'Bungee', cursive; font-size: 36px; color: #22C5D4; line-height: 1; flex-shrink: 0; opacity: 0.85; }
.tag-home .essential-eyebrow { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #22C5D4; margin-bottom: 10px; }
.tag-home .essential-card h4 { font-family: 'Bungee', cursive; font-size: 17px; line-height: 1.2; color: var(--th-cream); margin-bottom: 8px; font-weight: 400; }
.tag-home .essential-card p { font-size: 13px; color: var(--th-muted); line-height: 1.55; }

@media (max-width: 960px) {
  .tag-home .writers-grid { grid-template-columns: 1fr 1fr; }
  .tag-home .essentials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tag-home .writers-grid { grid-template-columns: 1fr; }
}

/* Scroll reveal */
.tag-home .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.tag-home .reveal.visible { opacity: 1; transform: translateY(0); }
.tag-home .reveal-d1 { transition-delay: .1s; }
.tag-home .reveal-d2 { transition-delay: .2s; }
.tag-home .reveal-d3 { transition-delay: .3s; }

/* Responsive */
@media (max-width: 960px) {
  .tag-home .hero-inner { grid-template-columns: 1fr; }
  .tag-home .hero-ed { border-right: none; border-bottom: 1px solid var(--th-border); }
  .tag-home .hero-cover { min-height: 340px; }
  .tag-home .stat-inner { grid-template-columns: 1fr; }
  .tag-home .stat-left { padding-left: var(--pad); }
  .tag-home .receipt-wrap { padding: 0 var(--pad); }
  .tag-home .sp-header { grid-template-columns: 1fr; }
  .tag-home .clarity-grid { grid-template-columns: 1fr; }
  .tag-home .guides-grid { grid-template-columns: 1fr 1fr; }
  .tag-home .bundle-grid { grid-template-columns: 1fr 1fr; }
  .tag-home .feat-grid { grid-template-columns: 1fr; }
  .tag-home .price-grid { grid-template-columns: 1fr; max-width: 440px; }
  .tag-home .trailer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tag-home .guides-grid { grid-template-columns: 1fr; }
  .tag-home .bundle-grid { grid-template-columns: 1fr; }
}

/* Sub-hero founding offer */
.tag-home .sub-hero-offer {
  background: #0D1220;
  border-top: 1px solid rgba(34,197,212,0.12);
  border-bottom: 1px solid rgba(34,197,212,0.12);
  padding: clamp(48px,6vw,80px) var(--pad);
}
.tag-home .sub-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px,4vw,64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.tag-home .sub-hero-eye {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--th-muted);
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.tag-home .sub-hero-h2 {
  font-family: 'Bungee', cursive;
  font-size: clamp(24px,2.8vw,38px);
  line-height: 1.1;
  color: var(--th-cream);
  font-weight: 400;
  margin: 0 0 16px;
}
.tag-home .sub-hero-h2 span { color: #22C5D4; }
.tag-home .sub-hero-sub {
  font-size: 15px;
  color: var(--th-muted);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 0 24px;
}
.tag-home .sub-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-home .sub-hero-pill {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #22C5D4;
  border: 1px solid rgba(34,197,212,0.3);
  border-radius: 4px;
  padding: 4px 10px;
}
.tag-home .sh-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tag-home .sh-card {
  background: #131825;
  border: 1px solid var(--th-border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tag-home .sh-card.sh-lifetime { border-color: rgba(232,197,71,0.3); }
.tag-home .sh-card.sh-featured { border: 2px solid #22C5D4; position: relative; }
.tag-home .sh-ribbon {
  position: absolute;
  top: -11px;
  left: 16px;
  background: #22C5D4;
  color: #0B0F1A;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.tag-home .sh-badge {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--th-gold-dim);
  border: 1px solid rgba(232,197,71,0.2);
  color: var(--th-gold);
  width: fit-content;
}
.tag-home .sh-card:not(.sh-lifetime) .sh-badge {
  background: var(--th-cyan-dim);
  border-color: rgba(34,197,212,0.25);
  color: #22C5D4;
}
.tag-home .sh-price {
  font-family: 'Bungee', cursive;
  font-size: 36px;
  color: var(--th-cream);
  line-height: 1;
  font-weight: 400;
}
.tag-home .sh-period { font-size: 12px; color: var(--th-muted); margin-top: -4px; }
.tag-home .sh-divider { height: 1px; background: var(--th-border); margin: 4px 0; }
.tag-home .sh-scarcity {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--th-gold);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tag-home .sh-card:not(.sh-lifetime) .sh-scarcity { color: #22C5D4; }
.tag-home .sh-cta {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 8px;
  background: #22C5D4;
  color: #0B0F1A;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s;
  margin-top: 4px;
}
.tag-home .sh-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--th-cyan-glow); }
.tag-home .sh-cta.secondary {
  background: transparent;
  border: 1px solid rgba(34,197,212,0.4);
  color: #22C5D4;
}
.tag-home .sh-cta.secondary:hover { background: var(--th-cyan-dim); box-shadow: none; }
.tag-home .sh-cta.soldout {
  background: rgba(255,255,255,0.05);
  color: var(--th-muted);
  cursor: default;
  pointer-events: none;
}
.tag-home .sub-hero-note {
  font-size: 12px;
  color: var(--th-muted);
  margin-top: 12px;
  text-align: center;
}
.tag-home .sub-hero-note a { color: #22C5D4; }
@media (max-width: 768px) {
  .tag-home .sub-hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tag-home .sh-cards { grid-template-columns: 1fr; }
}
