/* ================================================================
   StreamingSites.store — Shared Design System
   ================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  --bg:       #06090F;
  --bg-2:     #0A0E18;
  --panel:    #0E1520;
  --panel-2:  #152030;
  --panel-3:  #1C2C42;

  --border:       rgba(255,255,255,0.06);
  --border-md:    rgba(255,255,255,0.10);
  --border-hover: rgba(99,102,241,0.55);

  --text:       #E4EEFF;
  --text-2:     #A0B0D0;
  --text-muted: #607090;
  --text-dim:   #384560;

  --indigo:  #6366F1;
  --violet:  #8B5CF6;
  --blue:    #3B82F6;
  --sky:     #0EA5E9;
  --cyan:    #06B6D4;
  --teal:    #14B8A6;
  --emerald: #10B981;
  --lime:    #84CC16;
  --yellow:  #EAB308;
  --amber:   #F59E0B;
  --orange:  #F97316;
  --red:     #EF4444;
  --rose:    #F43F5E;
  --pink:    #EC4899;
  --fuchsia: #D946EF;
  --purple:  #A855F7;

  --accent:   #6366F1;
  --accent-2: #818CF8;
  --ring:     rgba(99,102,241,0.30);

  --good: #10B981;
  --off:  #EF4444;

  --grad-accent: var(--accent);
  --grad-hero:   var(--bg-2);
  --grad-card:   var(--panel);

  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --glow-sm:   none;
  --glow-md:   none;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --nav-h: 68px;
  --max-w: 1240px;
}

/* ----------------------------------------------------------------
   BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Starfield removed */
body > * { position: relative; z-index: 1; }

img { display: block; max-width: 100%; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--text); }

.gradient-text {
  color: var(--accent);
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(6,9,15,0.78);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border-bottom: 1px solid var(--border);
}

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

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

.nav-logo:hover { text-decoration: none; }

.nav-logo-icon {
  display: none;
}

.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-logo-text span { color: var(--accent-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); text-decoration: none; }
.nav-links a.active { color: var(--accent-2); background: rgba(99,102,241,0.12); }

.nav-badge {
  font-size: 0.60rem; font-weight: 700;
  padding: 2px 6px; border-radius: 99px;
  background: var(--grad-accent); color: #fff;
  letter-spacing: 0.4px; text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 10px; gap: 2px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .nav-toggle { display: flex; }
}

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.page-body { padding-top: var(--nav-h); }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------------------------------
   HERO (homepage)
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background: var(--grad-hero);
}

/* Hero background effects removed */

.hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 860px; margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--border-md);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.3px;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: clamp(.95rem, 2vw, 1.12rem);
  color: var(--text-2);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  padding: 16px 30px;
  text-align: center;
}
.stat-item + .stat-item { border-left: 1px solid var(--border-md); }

.stat-number {
  display: block;
  font-size: 1.8rem; font-weight: 800;
  color: var(--accent);
  line-height: 1; margin-bottom: 4px;
}
.stat-label {
  font-size: 0.76rem; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.6px;
}

@media (max-width: 480px) {
  .stat-item { padding: 12px 18px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border-md); }
  .hero-stats { flex-direction: column; }
}

/* ----------------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.breadcrumb {
  font-size: 0.80rem; color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent-2); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800; margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-2);
  font-size: 1.02rem;
  max-width: 580px;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   DIRECTORY CONTROLS
   ---------------------------------------------------------------- */
.controls-section { padding: 30px 0 6px; }

.controls {
  display: flex; flex-wrap: wrap;
  gap: 12px; margin-bottom: 18px;
  align-items: center;
}

.search {
  flex: 1 1 320px;
  background: var(--panel);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.94rem; font-family: inherit;
  padding: 13px 16px 13px 46px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23607090' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 18px;
}
.search::placeholder { color: var(--text-muted); }
.search:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--ring); }

.toggle-wrap {
  display: flex; align-items: center;
  gap: 10px; cursor: pointer;
  color: var(--text-2); font-size: 0.88rem; font-weight: 500;
  user-select: none;
}

.tog {
  position: relative; width: 42px; height: 24px; flex-shrink: 0;
}
.tog input { position: absolute; opacity: 0; width: 0; height: 0; }

.tog-track {
  position: absolute; inset: 0;
  background: var(--panel-3);
  border: 1px solid var(--border-md);
  border-radius: 99px;
  transition: background .2s, border-color .2s;
}
.tog-track::after {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--text-muted); border-radius: 50%;
  transition: transform .2s, background .2s;
}
.tog input:checked ~ .tog-track { background: rgba(99,102,241,.28); border-color: var(--accent); }
.tog input:checked ~ .tog-track::after { transform: translateX(18px); background: var(--accent-2); }

.jump-nav {
  display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 4px;
}

.jump-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 99px;
  border: 1px solid var(--border-md);
  background: var(--panel);
  color: var(--text-2);
  font-size: 0.83rem; font-weight: 500;
  text-decoration: none;
  transition: transform .15s, border-color .15s, color .15s, background .15s;
}
.jump-link:hover {
  transform: translateY(-1px);
  border-color: var(--border-hover);
  color: var(--text);
  background: rgba(99,102,241,.10);
  text-decoration: none;
}

/* ----------------------------------------------------------------
   DIRECTORY
   ---------------------------------------------------------------- */
.directory { padding: 6px 0 60px; }

.category {
  margin-bottom: 50px;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.cat-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.cat-icon { display: none; }

.cat-title { flex: 1; font-size: clamp(1.05rem,2.5vw,1.38rem); font-weight: 700; margin: 0; }
.cat-count {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 99px; padding: 4px 12px;
}

/* Category theming — flat, no colored backgrounds */
.cat-icon { background: var(--panel-2); }
.cat-title { color: var(--text); }

/* Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px; }

/* Card */
.card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px;
  transition: border-color .15s;
  cursor: pointer; position: relative; outline: none;
}
.card:hover { border-color: var(--border-hover); }
.card:focus-visible { border-color: var(--accent); outline: 2px solid var(--ring); }

.logo-box {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  display: grid; place-items: center; overflow: hidden; margin-bottom: 12px;
}
.logo { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .2s; }
.card:hover .logo { transform: scale(1.05); }

.site-name { margin: 0 0 8px; font-weight: 600; font-size: .94rem; line-height: 1.3; }

.url-row { display: flex; align-items: center; gap: 8px; min-width: 0; margin-top: auto; }

.url-text {
  flex: 1 1 auto; min-width: 0;
  font-size: .76rem; color: var(--text-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.google-link {
  width: 28px; height: 28px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-md);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  transition: transform .15s, border-color .15s, background .15s;
}
.google-link:hover { transform: translateY(-1px); border-color: var(--border-hover); background: rgba(255,255,255,.08); text-decoration: none; }
.google-link svg { width: 14px; height: 14px; display: block; }

.badge {
  display: inline-block; font-size: .68rem; font-weight: 600;
  padding: 4px 10px; border-radius: 99px;
  border: 1px solid transparent; margin-top: 8px;
}
.badge-on { color: var(--good); border-color: rgba(16,185,129,.30); background: rgba(16,185,129,.09); }
.badge-off { color: var(--off); border-color: rgba(239,68,68,.30); background: rgba(239,68,68,.07); }

.empty {
  margin: 16px 0; padding: 36px;
  text-align: center; color: var(--text-muted); font-size: .93rem;
  background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border);
}

/* ----------------------------------------------------------------
   SEO CONTENT SECTION
   ---------------------------------------------------------------- */
.seo-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent-2); margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px;
}

.section-subtitle {
  color: var(--text-2); font-size: 1rem;
  margin-bottom: 36px; max-width: 600px; line-height: 1.75;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px,1fr));
  gap: 18px;
}

.seo-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .15s, transform .15s;
}
.seo-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.seo-card-icon { display: none; }
.seo-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.seo-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.category-overview {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.category-overview-card {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.category-overview-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.category-overview-card p {
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.category-overview-card ul {
  padding-left: 18px;
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.75;
}

.category-overview-card li + li {
  margin-top: 4px;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-logo-icon { display: none; }
.footer-brand-logo-text { font-size: 1rem; font-weight: 800; color: var(--text); }
.footer-brand p {
  color: var(--text-muted); font-size: .85rem;
  line-height: 1.75; max-width: 270px;
}

.footer-col h4 {
  font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--text-muted); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: var(--text-2); font-size: .88rem; text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: var(--accent-2); }

.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .8rem; color: var(--text-dim); }
.footer-disclaimer { font-size: .76rem; color: var(--text-dim); max-width: 500px; text-align: right; line-height: 1.6; }
@media (max-width: 600px) { .footer-disclaimer { text-align: left; } }

/* ----------------------------------------------------------------
   FAQ PAGE
   ---------------------------------------------------------------- */
.faq-section { padding: 56px 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .15s;
}
.faq-item.open { border-color: rgba(99,102,241,.30); }

.faq-q {
  width: 100%; background: none; border: none;
  color: var(--text); font-family: inherit;
  font-size: .97rem; font-weight: 600;
  text-align: left; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; transition: color .15s;
}
.faq-q:hover { color: var(--accent-2); }

.faq-arrow {
  flex-shrink: 0; width: 20px; height: 20px;
  color: var(--text-muted); transition: transform .25s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent-2); }

.faq-a {
  display: none;
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }

.faq-a p { color: var(--text-2); font-size: .92rem; line-height: 1.8; margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--accent-2); }
.faq-a a:hover { text-decoration: underline; }
.faq-a ul { padding-left: 20px; margin-top: 8px; color: var(--text-2); font-size: .92rem; line-height: 1.8; }
.faq-a li { margin-bottom: 4px; }

/* ----------------------------------------------------------------
   LEGAL/FREE STREAMING SERVICES PAGE
   ---------------------------------------------------------------- */
.service-section { padding: 56px 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px,1fr));
  gap: 18px; margin: 28px 0 48px;
}

.service-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .15s, transform .15s;
}
.service-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.service-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.service-emoji { display: none; }
.service-name-box .service-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.service-name-box .service-price { font-size: .80rem; color: var(--text-muted); }

.service-desc {
  font-size: .86rem; color: var(--text-2); line-height: 1.68; margin-bottom: 14px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  display: inline-block; font-size: .70rem; font-weight: 600;
  padding: 3px 10px; border-radius: 99px; border: 1px solid transparent;
}
.tag-free     { color: var(--emerald); border-color: rgba(16,185,129,.30); background: rgba(16,185,129,.08); }
.tag-paid     { color: var(--amber);   border-color: rgba(245,158,11,.30);  background: rgba(245,158,11,.07); }
.tag-trial    { color: var(--sky);     border-color: rgba(14,165,233,.30);  background: rgba(14,165,233,.08); }
.tag-movies   { color: var(--blue);    border-color: rgba(59,130,246,.30);  background: rgba(59,130,246,.08); }
.tag-shows    { color: var(--violet);  border-color: rgba(139,92,246,.30);  background: rgba(139,92,246,.08); }
.tag-anime    { color: var(--pink);    border-color: rgba(236,72,153,.30);  background: rgba(236,72,153,.08); }
.tag-sports   { color: var(--orange);  border-color: rgba(249,115,22,.30);  background: rgba(249,115,22,.08); }
.tag-kids     { color: var(--cyan);    border-color: rgba(6,182,212,.30);   background: rgba(6,182,212,.07); }
.tag-originals { color: var(--fuchsia); border-color: rgba(217,70,239,.30); background: rgba(217,70,239,.07); }
.tag-library  { color: var(--teal);    border-color: rgba(20,184,166,.30);  background: rgba(20,184,166,.07); }

/* Comparison table */
.table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--border); margin: 28px 0 48px;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: .87rem; min-width: 620px; }
.compare-table th, .compare-table td {
  padding: 13px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--panel-2); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted);
  white-space: nowrap;
}
.compare-table td:first-child { font-weight: 600; white-space: nowrap; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,.018); }
.chk { color: var(--emerald); font-weight: 700; }
.xmk { color: var(--off); font-weight: 700; }

/* ----------------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------------- */
.about-section { padding: 56px 0; }
.about-lead { font-size: 1.1rem; color: var(--text-2); line-height: 1.85; margin-bottom: 28px; max-width: 720px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 18px; margin: 40px 0;
}
.feature-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .15s;
}
.feature-card:hover { border-color: var(--border-hover); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: .88rem; color: var(--text-2); line-height: 1.72; }

/* ----------------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------------- */
.info-box {
  background: rgba(99,102,241,.07); border: 1px solid rgba(99,102,241,.22);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: .88rem; color: var(--text-2); line-height: 1.75; margin: 16px 0;
}
.info-box strong { color: var(--accent-2); }

.warn-box {
  background: rgba(245,158,11,.07); border: 1px solid rgba(245,158,11,.22);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: .88rem; color: var(--text-2); line-height: 1.75; margin: 16px 0;
}
.warn-box strong { color: var(--amber); }

.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-xs);
  background: var(--accent); color: #fff;
  font-size: .9rem; font-weight: 600; text-decoration: none;
  transition: background .15s;
}
.cta-btn:hover { background: var(--accent-2); text-decoration: none; }

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

.divider { border: none; border-top: 1px solid var(--border); margin: 52px 0; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 99px;
  border: 1px solid var(--border-md); background: var(--panel);
  font-size: .82rem; font-weight: 500; color: var(--text-2);
}

.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px}
.mt-32{margin-top:32px} .mt-48{margin-top:48px}
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px}
.mb-32{margin-bottom:32px} .mb-48{margin-bottom:48px}
.text-center{text-align:center} .text-muted{color:var(--text-muted)}

/* Back to top */
#btt {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-accent); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  box-shadow: var(--shadow-md); z-index: 99;
}
#btt.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#btt:hover { opacity: .88; }
#btt svg { width: 20px; height: 20px; }

/* ----------------------------------------------------------------
   ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:.6; transform: scale(.92); }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

.animate-fade-up { animation: fadeUp .5s ease forwards; }
