/* ============================================================
   Slab Sidekick — Dashboard Styles
   ============================================================ */

@font-face {
  font-family: 'Mona Sans Condensed';
  src: url('assets/fonts/MonaSansCondensed-ExtraBold.woff2') format('woff2'),
       url('assets/fonts/MonaSansCondensed-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Helvetica Now Display';
  src: url('assets/fonts/HelveticaNowDisplay-Medium.woff2') format('woff2'),
       url('assets/fonts/HelveticaNowDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a0a;
  --bg-card: #151515;
  --bg-elevated: #1a1a1a;
  --green: #29ff5e;
  --green-dark: #1fcc4a;
  --yellow: #fff200;
  --red: #ff453a;
  --text: #ffffff;
  --text-sec: rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --radius: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-heading: 'Mona Sans Condensed', 'Inter', sans-serif;
  --font-body: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font: var(--font-body);
  --sidebar-w: 64px;
  --topbar-h: 72px;
  --transition: 0.18s ease;
}

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

h1, h2, h3, h4, h5, h6 { text-transform: uppercase; }

h1 { font-size: clamp(2.5rem, 4vw, 4.5rem); }
h2 { font-size: clamp(3.25rem, 5.5vw, 5.25rem); }
h3 { font-size: clamp(1.375rem, 3vw, 3rem); }

/* Global eyebrow pills */
.eyebrow-dark {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.eyebrow-light {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #d0d0d0;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 24px;
}
.eyebrow-solid {
  display: inline-block;
  background: #000;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.bottom-cta-title,
.browse-col-label {
  font-family: var(--font-heading);
  font-weight: 800;

  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; color: inherit; font: inherit; }
input { font: inherit; color: inherit; }
em { font-style: italic; }

body::-webkit-scrollbar { width: 10px; height: 10px; }
body::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 5px; }
body::-webkit-scrollbar-thumb { background: #29ff5e; border-radius: 5px; }
body::-webkit-scrollbar-thumb:hover { background: #22e650; }

/* ---- App Shell ---- */
.app { display: flex; min-height: 100vh; width: 100%; max-width: 100vw; }

/* ---- Sidebar ---- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: #000;
  border-right: 1px solid rgb(255 255 255 / 16%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  padding: 16px 0;
}

.sidebar-logo {
  margin-bottom: 8px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

.sidebar-label-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 12px 0 8px;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.sidebar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: #fff;
  transition: all var(--transition);
  position: relative;
}

.sidebar-icon:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.sidebar-icon.active {
  color: #fff;
  background: var(--green);
}

.sidebar-icon.active svg { stroke: #000; }

.expand-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-sec);
}

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 8px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

.sidebar-bottom-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  opacity: 1;
}

.sidebar-bottom-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.sidebar-bottom-link svg { flex-shrink: 0; }
.sidebar-bottom-link span { opacity: 0; width: 0; overflow: hidden; white-space: nowrap; transition: opacity 0.2s ease 0.1s, width 0.25s ease; }
.sidebar:hover .sidebar-bottom-link span { opacity: 1; width: auto; }

/* ---- Main ---- */
.main {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
  max-width: calc(100vw - var(--sidebar-w));
}

/* ---- Topbar ---- */
.topbar {
  position: sticky;
  top: 0;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 32px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  z-index: 50;
  transition: transform 0.3s ease;
}
.topbar.topbar-hidden {
  transform: translateY(-100%);
}

.topbar-tabs {
  display: flex;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}

.tab-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-pill:hover { color: var(--text); }

.tab-pill.active {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}


.topbar-left {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.topbar-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-sec);
  transition: all var(--transition);
}

.topbar-icon-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.avatar-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}

.avatar-img { width: 100%; height: 100%; object-fit: cover; }

.install-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--green);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.install-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.install-btn:hover {
  background: var(--green-dark);
  box-shadow: 0 0 20px rgba(41,255,94,0.3);
}

/* ---- Desktop Dropdown Menus ---- */
.topbar-dd-wrap {
  position: relative;
}

.dd-chevron {
  transition: transform 0.25s ease;
  margin-left: 2px;
  opacity: 0.5;
}

.topbar-dd-wrap:hover .dd-chevron,
.topbar-dd-wrap.dd-open .dd-chevron {
  opacity: 1;
  transform: rotate(180deg);
}

.topbar-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.topbar-dd-wrap:hover .topbar-dropdown,
.topbar-dd-wrap.dd-open .topbar-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Invisible bridge between tab and dropdown to prevent flicker */
.topbar-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

/* Arrow */
.dd-arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #1a1a1a;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
  z-index: 1;
}

/* Dropdown body */
.dd-body {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 8px;
  min-width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.dd-body--cats {
  min-width: 220px;
  padding: 6px;
}

/* Product dropdown items */
.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: background 0.15s ease;
}

.dd-item:hover {
  background: rgba(255,255,255,0.06);
}

.dd-item:hover .dd-item-title {
  color: #29ff5e;
}

.dd-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
}

.dd-item:hover .dd-item-icon {
  background: rgba(41,255,94,0.1);
  border-color: rgba(41,255,94,0.2);
  color: #29ff5e;
}

.dd-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dd-item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.dd-item-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Category dropdown items */
.dd-cat-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: background 0.15s ease, color 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.dd-cat-item:hover {
  background: rgba(255,255,255,0.06);
  color: #29ff5e;
}

/* Hide dropdowns on mobile */
@media (max-width: 768px) {
  .topbar-dropdown {
    display: none !important;
  }
  .dd-chevron {
    display: none;
  }
}

/* ---- Content ---- */
.content {
  padding: 0;
  max-width: 100%;
}

/* ---- Hero ---- */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 0;
  overflow: hidden;
}

.hero-left { flex: 0 0 500px; }

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-green {
  color: var(--green);
  font-style: italic;
  padding-right: 0.12em;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 340px;
}

.hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-sec);
}

.feat-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex-shrink: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--green);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  transition: all var(--transition);
  min-height: 44px;
}

.hero-cta:hover {
  background: var(--green-dark);
  box-shadow: 0 0 24px rgba(41,255,94,0.3);
  transform: translateY(-1px);
}

.hero-cta.small { font-size: 1rem; padding: 9px 18px; }

.hero-right {
  flex: 1;
  min-width: 0;
}

/* ---- Webflow Hero Mockup (cs-*) ---- */
.cs-hero * { box-sizing: border-box; margin: 0; padding: 0; }
.cs-hero { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; overflow: visible; }
.cs-desktop { position: relative; width: 100%; max-width: 860px; transform: perspective(1400px) rotateY(-8deg) rotateX(2deg) scale(0); transform-style: preserve-3d; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5)) drop-shadow(0 15px 30px rgba(0,0,0,0.3)); }
.cs-screen { opacity: 0; }
.cs-monitor { background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 30%, #0c0c0c 60%, #1a1a1a 100%); border-radius: 20px; padding: 14px; border: 2px solid #888; border-top-color: #aaa; border-bottom-color: #555; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.4), inset 2px 0 4px rgba(0,0,0,0.3), inset -2px 0 4px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.4); }
.cs-screen-wrap { border-radius: 6px; overflow: hidden; background: #fff; }
.cs-screen { width: 100%; display: block; }
.cs-sidepanel-wrap { position: absolute; top: 2%; right: 10%; width: clamp(240px, 33%, 320px); z-index: 10; transform: perspective(1400px) rotateY(-8deg) rotateX(2deg); transform-style: preserve-3d; filter: drop-shadow(-10px 20px 40px rgba(0,0,0,0.5)); }
.cs-embed { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; background: #000000; color: #fff; width: 100%; border-radius: 18px; overflow: hidden; font-size: 11px; -webkit-font-smoothing: antialiased; letter-spacing: 0.01em; box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06); border: 2px solid #555; padding-bottom: 12px; transform-origin: center center; transform: scale(0); opacity: 0; }
.cs-embed .cs-header, .cs-embed .cs-cert-card, .cs-embed .cs-section-header, .cs-embed .cs-li-heading, .cs-embed .cs-bento-card, .cs-embed .cs-accordion, .cs-embed .cs-progress-track, .cs-embed .cs-chip, .cs-embed .cs-cert-status-text, .cs-embed .cs-scan-status, .cs-embed .cs-scan-grid, .cs-embed .cs-open-cert-btn { opacity: 0; }

/* ---- Header: logo + icon buttons (matches extension) ---- */
.cs-header { display: flex; align-items: center; justify-content: flex-start; padding: 10px 8px 6px; gap: 0; position: relative; }
.cs-header-left { flex-shrink: 0; margin-right: 6px; }
.cs-logo { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-header-right { display: flex; align-items: center; gap: 0; }
.cs-icon-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 4px 5px; color: #fff; cursor: default; flex-shrink: 0; }
.cs-icon-btn svg { width: 12px; height: 12px; stroke: #fff; flex-shrink: 0; }
.cs-icon-btn span { font-size: 6px; font-weight: 500; color: rgba(255,255,255,0.7); }

/* ---- Cert area ---- */
.cs-body { padding: 0 12px; display: flex; flex-direction: column; gap: 8px; }
.cs-cert-card { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; padding: 12px 0 14px; margin: 0; }
.cs-cert-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cs-cert-check { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: rgba(41,255,94,0.12); border: 1px solid rgba(41,255,94,0.22); border-radius: 7px; }
.cs-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px 4px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; background: rgba(41,255,94,0.10); border: 1px solid rgba(41,255,94,0.22); color: #29ff5e; }
.cs-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #29ff5e; }
.cs-progress-track { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; margin-bottom: 8px; }
.cs-progress-fill { height: 100%; border-radius: 999px; background: #29ff5e; box-shadow: 0 0 10px rgba(41,255,94,0.45); transform-origin: left; width: 100%; }
.cs-cert-status-text { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 500; }

/* ---- Section header ---- */
.cs-section-header { font-size: 9px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.32); letter-spacing: 0.08em; padding: 10px 0 6px; }
.cs-li-heading { font-size: 13px; font-weight: 800; text-transform: uppercase; color: #fff; letter-spacing: -0.01em; padding: 4px 0 3px; font-family: var(--font-heading); }
.cs-open-cert-btn { width: 100%; padding: 8px; border: none; border-radius: 10px; background: #29ff5e; color: #000; font-size: 9px; font-weight: 600; cursor: default; display: flex; align-items: center; justify-content: center; gap: 4px; margin: 6px 0; }
.cs-btn-green { padding: 8px 10px; border: none; border-radius: 8px; font-size: 9px; font-weight: 600; cursor: default; font-family: inherit; background: #29ff5e; color: #000; text-align: center; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* ---- Bento grid (6 cards, matches extension .bento-card) ---- */
.cs-bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.cs-bento-card { border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; padding: 8px 10px 7px; background: linear-gradient(135deg, #242424 0%, #363636 100%); display: flex; flex-direction: column; justify-content: space-between; min-height: 48px; }
.cs-bento-label { font-size: 6px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.cs-bento-stat { font-size: 16px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.5px; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; }
.cs-bento-sub { font-size: 6px; font-weight: 500; color: rgba(255,255,255,0.50); margin-top: 2px; }

/* ---- Accordions (matches extension .accordion-card) ---- */
.cs-accordion { background: #1c1c1e; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; overflow: hidden; box-shadow: inset 0 2px 6px rgba(0,0,0,0.4); }
.cs-acc-toggle { width: 100%; padding: 8px 10px; display: flex; align-items: center; background: transparent; border: none; cursor: default; gap: 0; }
.cs-acc-label { display: inline-flex; align-items: center; gap: 0; font-size: 12px; font-weight: 800; letter-spacing: 0.01em; color: #fff; font-family: var(--font-heading); text-transform: uppercase; }
.cs-acc-icon { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; min-width: 2rem; border-radius: 7px; flex-shrink: 0; margin-right: 7px; }
.cs-acc-icon svg { width: 0.9rem; height: 0.9rem; fill: none; stroke: #ffffff; stroke-width: 1.5; }
.cs-acc-badge { font-size: 8px; font-weight: 800; padding: 3px 8px; border-radius: 12px; letter-spacing: 0.04em; text-transform: uppercase; margin-left: 8px; white-space: nowrap; }
.cs-badge-green { background: rgba(41,255,94,0.12); color: #29ff5e; border: 1px solid rgba(41,255,94,0.22); }
.cs-badge-cyan { background: rgba(34,212,234,0.12); color: #22d4ea; border: 1px solid rgba(34,212,234,0.22); }
.cs-badge-amber { background: rgba(240,168,48,0.12); color: #f0a830; border: 1px solid rgba(240,168,48,0.22); }
.cs-acc-arrow { flex-shrink: 0; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); margin-left: auto; }
.cs-acc-arrow svg { width: 10px; height: 10px; stroke: currentColor; fill: none; }
.cs-acc-arrow.up { transform: rotate(180deg); }
.cs-acc-body { padding: 0 10px 10px; }
.cs-acc-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0 10px; }

/* ---- Scan area ---- */
.cs-scan-status { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 500; margin: 8px 0; }
.cs-scan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
.cs-btn-yellow { padding: 8px 10px; border: none; border-radius: 8px; font-size: 9px; font-weight: 700; cursor: default; font-family: inherit; background: #fff200; color: #000; text-align: center; display: flex; align-items: center; justify-content: center; gap: 4px; }
.cs-btn-gray { padding: 8px 10px; border: 1px solid rgba(255,255,255,0.10); border-radius: 8px; font-size: 9px; font-weight: 600; cursor: default; font-family: inherit; background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.35); text-align: center; display: flex; align-items: center; justify-content: center; gap: 4px; }
.cs-scan-placeholders { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 6px; }
.cs-scan-placeholder { background: transparent; border: 1px dashed rgba(255,255,255,0.10); border-radius: 10px; height: 60px; display: flex; align-items: flex-start; padding: 6px 8px; }
.cs-scan-item { background: transparent; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.cs-scan-img { width: 100%; height: auto; border-radius: 4px; object-fit: contain; }
.cs-scan-inspect { background: #fff200; color: #000; font-size: 6px; font-weight: 600; text-align: center; padding: 3px; border-radius: 4px; }
.cs-scan-label { font-size: 7px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }

/* ---- Animations ---- */
@keyframes cs-glow-pulse { 0%, 100% { box-shadow: 0 0 6px rgba(41,255,94,0.3), 0 0 12px rgba(41,255,94,0.1); } 50% { box-shadow: 0 0 10px rgba(41,255,94,0.5), 0 0 20px rgba(41,255,94,0.2); } }
.cs-chip.glow { animation: cs-glow-pulse 2s ease-in-out infinite; }
.cs-bento-card.pop { transition: transform 0.3s ease; }
.cs-embed.float { animation: cs-float 2.5s ease-in-out infinite; }
@keyframes cs-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---- Sidebar Expand on Hover ---- */
.sidebar { transition: width 0.25s cubic-bezier(0.4,0,0.2,1); overflow: hidden; }
.sidebar:hover { width: 220px; align-items: stretch; }

/* Logo left-align on hover */
.sidebar:hover .sidebar-logo { align-self: flex-start; padding-left: 18px; }

/* "MAIN" label left-align */
.sidebar:hover .sidebar-label-text { opacity: 1; padding-left: 18px; align-self: flex-start; }

/* Nav items stretch full width */
.sidebar:hover .sidebar-nav { align-items: stretch; padding: 0 12px; }
.sidebar:hover .expand-arrow { display: none; }

.sidebar:hover .sidebar-icon {
  width: 100%;
  justify-content: flex-start;
  padding: 10px 14px;
  gap: 12px;
  border-radius: var(--radius-sm);
}

/* Sidebar nav labels on hover */
.sidebar-icon-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.2s ease 0.1s, width 0.25s ease;
}
.sidebar:hover .sidebar-icon-label { opacity: 1; width: auto; }
.sidebar-icon.active .sidebar-icon-label { color: #000; }

/* Bottom links full width left-aligned */
.sidebar:hover .sidebar-bottom { width: 100%; padding: 0 12px 12px; align-items: stretch; }
.sidebar:hover .sidebar-bottom-link {
  flex-direction: row;
  gap: 10px;
  padding: 10px 14px;
  width: 100%;
  justify-content: flex-start;
  border-radius: var(--radius-sm);
}
.sidebar:hover .sidebar-bottom-link:hover { background: rgba(255,255,255,0.06); }
.sidebar:hover .sidebar-bottom-link span { font-size: 1rem; }

/* ---- Swiper overrides ---- */
.market-ticker-swiper,
.categories-swiper,
.deals-swiper,
.tcg-swiper {
  overflow: hidden;
  padding-bottom: 4px;
}
.market-ticker-swiper .swiper-slide {
  flex: 1;
  height: auto;
}
.deals-swiper .swiper-slide,
.tcg-swiper .swiper-slide {
  width: auto;
  height: auto;
}
.categories-swiper .swiper-slide {
  flex: 1;
  height: auto;
}

/* ---- Market Ticker Cards ---- */
.market-ticker-swiper {
  margin-bottom: 40px;
}

.ticker-card {
  width: 100%;
  min-height: 130px;
  border-radius: var(--radius);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.ticker-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.ticker-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.ticker-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
}

.ticker-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.ticker-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.ticker-right {
  text-align: right;
}

.ticker-symbol {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.ticker-change {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}

.ticker-change.up { color: var(--green); }
.ticker-change.down { color: var(--red); }

.ticker-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.ticker-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.ticker-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.ticker-sparkline {
  width: 100px;
  height: 36px;
  opacity: 0.5;
}

/* ---- Section ---- */
.section {
  margin-bottom: 48px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;

  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.fire { margin-left: 4px; }

.view-all-btn {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 100px;
  transition: all var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.view-all-btn:hover { border-color: var(--green); }

/* ---- Categories Row ---- */
/* categories handled by swiper */

.cat-card {
  min-width: 200px;
  flex: 1;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.cat-card:hover { transform: translateY(-4px); }

.cat-card-header {
  padding: 16px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

.cat-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.cat-card-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.85);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}

.cat-card-img-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0 0;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

/* ---- Filter Pills ---- */
.filter-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fpill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  transition: all var(--transition);
}

.fpill:hover { border-color: var(--border-hover); }

.fpill.active {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}

.fpill.active svg { stroke: #000; }

/* ---- Deals Grid ---- */
/* deals handled by swiper */

.deal-card {
  width: 280px;
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: all var(--transition);
  cursor: pointer;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.deal-card-img-wrap {
  position: relative;
  width: 100%;
  height: 360px;
  background: #fff !important;
  border-radius: 15px 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.deal-card-img {
  max-width: 85%;
  max-height: 92%;
  object-fit: contain;
}

.deal-card-views {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  color: #667085;
  font-weight: 500;
}

.deal-card-views svg { stroke: #667085; }

.deal-card-body {
  padding: 16px 18px 18px;
  background: #ffffff !important;
  border-top: 1px solid var(--border);
}

.deal-card-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #000 !important;
  margin-bottom: 3px;
}

.deal-card-set {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333 !important;
  margin-bottom: 1px;
}

.deal-card-number {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333 !important;
  margin-bottom: 16px;
}

.deal-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 3px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.deal-card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #43b66c;
}

.deal-card-reserve {
  font-size: 1rem;
  color: #333 !important;
  font-weight: 500;
}

.deal-card-meta {
  font-size: 1rem;
  color: #333 !important;
  margin-bottom: 16px;
}

.deal-card-btn {
  width: 100%;
  padding: 13px;
  background: #111;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  transition: all var(--transition);
}

.deal-card-btn:hover {
  background: #333;
}

/* ---- TCG Row ---- */
/* tcg handled by swiper */

.tcg-card {
  width: 320px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition);
}

.tcg-card:hover { transform: translateY(-4px); }

.tcg-card-img-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.tcg-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.tcg-card-bottom {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 2px;
}

.tcg-card-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.tcg-card-change {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-left: auto;
}

.tcg-card-change.up { color: var(--green); }
.tcg-card-change.down { color: var(--red); }

/* ---- Bottom Combined Section ---- */
.bottom-combined {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 56px 0 60px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.bottom-combined-left { flex: 0 0 340px; }

.bottom-combined-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.bottom-combined-desc {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 24px;
}

.bottom-combined-cards {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
}

.browse-col {
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition);
}

.browse-col:hover { transform: translateY(-6px); }

.browse-col-img-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 340px;
  margin-bottom: 16px;
}

.browse-col-img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.browse-icon-fire {
  font-size: 1.75rem;
  line-height: 1;
}

.browse-icon-trend {
  width: 28px;
  height: 28px;
}

.browse-col-label {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ---- Login / Signup Pages ---- */
.login-page {
  min-height: 100vh;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px 36px;
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.login-logo h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  color: #111;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.15s;
}

.btn-google:hover { background: #f5f5f5; }

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.input-group {
  margin-bottom: 16px;
}

.input-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.input {
  width: 100%;
  padding: 12px 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.15s;
  outline: none;
}

.input:focus { border-color: #29ff5e; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
}

.btn-primary {
  background: #29ff5e;
  color: #000;
  margin-top: 8px;
}

.btn-primary:hover { opacity: 0.88; }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.login-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
}

.login-footer a {
  color: #29ff5e;
  font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .hero { flex-direction: column; padding: 32px; }
  .hero-left { flex: none; width: 100%; max-width: 600px; }
  .hero-right { width: 100%; max-width: 700px; }
  .cs-sidepanel-wrap { width: clamp(200px, 35%, 280px); }
  .ticker-card { width: 100%; }
}

@media (max-width: 1100px) {
  .hero { padding: 28px 24px; }
  .cs-desktop { max-width: 600px; }
  h2 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); }
  h3 { font-size: clamp(1.25rem, 2.8vw, 2rem); }
  .content { padding: 0 32px; }
}

@media (max-width: 768px) {
  .sidebar { display: none; }
  .main { margin-left: 0; max-width: 100vw; }
  .topbar { padding: 8px 16px; gap: 10px; justify-content: space-between; }
  .topbar-tabs { display: none; }
  .topbar-icon-btn { display: none; }
  .avatar-wrap { display: none; }
  .topbar-right { gap: 10px; flex: 0; order: 2; margin-left: auto; }
  .install-btn { font-size: 1rem; padding: 8px 14px; white-space: nowrap; }
  .topbar-mobile-logo { display: flex !important; order: -1; }
  .topbar-hamburger { display: flex !important; order: 3; }
  .content { padding: 0px; }
  .hero { padding: 20px 16px; gap: 24px; padding-top: 60px; }
  .hero-left { max-width: 100%; }
  .hero-title { margin-bottom: 14px; }
  .hero-desc { font-size: 1.1rem; margin-bottom: 18px; }
  .hero-features { gap: 8px; margin-bottom: 20px; }
  .hero-features li { font-size: 1rem; }
  .hero-right { max-width: 100%; padding-top: 1rem; overflow: hidden; }
  .cs-desktop { max-width: 100%; }
  .cs-sidepanel-wrap { width: clamp(160px, 38%, 240px); right: 5%; }
  .section-title { font-size: 1.375rem; }
  .bottom-cta { flex-direction: column; padding: 32px; }
  .bottom-cta-left { flex: none; }
  .bottom-browse { flex-direction: column; align-items: center; }
  .bottom-combined { flex-direction: column; gap: 32px; padding: 40px 20px 48px; text-align: center; }
  .bottom-combined-left { flex: none; width: 100%; }
  .bottom-combined-cards { flex-wrap: wrap; gap: 20px; }
  .browse-col-img-wrap { height: 240px; }
  .browse-col-img { max-height: 220px; }
}

@media (max-width: 480px) {
  .hero { padding: 16px 12px; gap: 20px; padding-bottom: 0px; padding-top: 45px; }
  .hero-title { margin-bottom: 10px; max-width: 100%; }
  .hero-desc { font-size: 1.1rem; margin-bottom: 14px; max-width: 100%; }
  .hero-features { gap: 6px; margin-bottom: 16px; }
  .hero-features li { font-size: 1rem; gap: 8px; }
  .feat-icon { width: 36px; height: 36px; }
  .hero-cta { font-size: 1rem; padding: 9px 16px; }
  .cs-hero { flex-direction: column; gap: 0; }
  .cs-desktop { display: none !important; }
  .cs-sidepanel-wrap { position: relative; top: auto; right: auto; width: 100%; transform: none; filter: none; }
  .cs-embed { font-size: 11px; border-radius: 14px; border: 1px solid rgb(76 76 76); }
  .cs-embed .cs-body { display: flex; flex-direction: column; }
  .cs-embed .cs-cert-card { order: 1; }
  .cs-embed .cs-accordion { order: 2; }
  .cs-embed .cs-li-heading { order: 3; }
  .cs-embed .cs-bento-grid { order: 4; }
  .cs-embed .cs-body > .cs-accordion:last-child { display: none; }
  .cs-monitor {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 30%, #0c0c0c 60%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 6px;
    border: 2px solid #888;
    border-top-color: #aaa;
    border-bottom-color: #555;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.4), inset 2px 0 4px rgba(0,0,0,0.3), inset -2px 0 4px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.4);
  }
}

/* ================ INTRO SECTION ================ */
.intro-inline-img { height: 0.75em; vertical-align: baseline; margin: 0 2px; display: inline; }
.intro-inline-img.ebay { height: 0.8em; }
.intro-section { background: #ffffff; padding: 100px 40px; }
.intro-wrapper { display: flex; align-items: center; gap: 60px; max-width: 1400px; margin: 0 auto; }
.intro-left { flex: 1; min-width: 0; text-align: left; }
.intro-sub { text-align: left; margin-left: 0; margin-right: 0; }
.intro-right { flex: 1; min-width: 0; display: flex; justify-content: center; }
.intro-eyebrow { display: inline-block; background: #fff; border: 1px solid #e0e0e0; border-radius: 999px; padding: 8px 20px; font-size: clamp(1rem, 1vw, 1rem); font-weight: 600; color: #222; margin-bottom: 28px; }
.intro-h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 4.125rem); font-weight: 900; color: #111; line-height: 1.15; letter-spacing: -0.02em; margin: 0px; text-transform: uppercase; }
.intro-h2.last { margin-bottom: 24px; }
.intro-ebay { font-style: normal; font-weight: 900; }
.intro-icon-inline { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #f0f0f0; border: 1.5px solid #ddd; border-radius: 8px; vertical-align: middle; margin: 0 4px; }
.intro-icon-inline.eye { background: #eee; }
.intro-icon-inline svg { width: 20px; height: 20px; }
.intro-btn-icon { display: inline-flex; align-items: center; padding: 8px 20px; background: #fff200; color: #000; border-radius: 10px; font-size: clamp(1rem, 1.5vw, 1.125rem); font-weight: 700; vertical-align: middle; margin: 0 4px; letter-spacing: 0.02em; transform: translateY(-2px); }
.intro-sub { font-size: 1.1rem; color: #666; line-height: 1.6; margin-bottom: 28px; max-width: 480px; }
.intro-download { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: #29ff5e; color: #000; border-radius: 999px; font-size: clamp(1rem, 1.2vw, 1rem); font-weight: 700; text-decoration: none; border: 1px solid #22e650; transition: transform 0.15s, box-shadow 0.15s; min-height: 44px; }
.intro-download:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.intro-dl-circle { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.intro-dl-circle svg { width: 20px; height: 20px; }
.intro-collage { width: 100%; max-width: 800px; height: auto; object-fit: contain; }

@media (max-width: 900px) {
  h2 { font-size: clamp(2.5rem, 7vw, 3.75rem); }
  h3 { font-size: clamp(1.25rem, 3.5vw, 1.875rem); }
  .intro-section { padding: 60px 24px; }
  .intro-wrapper { flex-direction: column; text-align: center; gap: 40px; }
  .intro-left { text-align: center; }
  .intro-sub { margin-left: auto; margin-right: auto; }
  .intro-collage { max-width: 400px; }
  .intro-download { margin: 0 auto; }
}

@media (max-width: 768px) {
  h2 { font-size: clamp(2.75rem, 11vw, 4rem); }
  h3 { font-size: clamp(1.25rem, 6vw, 2rem); }
  .intro-section { padding: 48px 20px; }
  .intro-wrapper { flex-direction: column; text-align: left; gap: 32px; }
  .intro-left { text-align: left; align-items: flex-start; }
  .intro-h2 { font-size: clamp(2rem, 9vw, 4.25rem); text-align: left; }
  .intro-sub { text-align: left; margin-left: 0; margin-right: 0; }
  .intro-download { margin: 0; }
  .intro-btn-icon { padding: 6px 14px; font-size: 1rem; }
  .intro-collage { max-width: 100%; }
}

@media (max-width: 480px) {
  h2 { font-size: clamp(2.375rem, 10vw, 3.25rem); }
  h3 { font-size: clamp(1.125rem, 5vw, 1.625rem); }
  .intro-section { padding: 36px 16px; }
  .intro-wrapper { gap: 20px; }
  .intro-left { text-align: left; align-items: flex-start; }
  .intro-h2 { font-size: clamp(1.375rem, 33vw, 2.112rem); line-height: 1.2; text-align: left; margin-bottom: 0px !important; }
  .intro-btn-icon { padding: 5px 12px; font-size: 1rem; border-radius: 6px; }
  .intro-sub { font-size: 1.1rem; margin-bottom: 20px; text-align: left; }
  .intro-download { padding: 12px 24px; font-size: 1rem; }
  .intro-collage { max-width: 100%; }
  .eyebrow-light { padding: 8px 18px; font-size: 1rem; margin-bottom: 16px; }
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  transition: color 0.2s ease;
}
.mobile-menu-link:hover, .mobile-menu-link:focus {
  color: #29ff5e;
}
.mobile-menu-cta {
  margin-top: 48px;
}
.mobile-menu-install {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #29ff5e;
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease;
}
.mobile-menu-install:hover { background: #1fcc4a; }

/* Hamburger z-index when menu open */
.topbar-hamburger { z-index: 1000; position: relative; }

/* ── Mobile Menu Inner (mm-) ── */
.mm-inner {
  width: 100%;
  max-width: 480px;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Header */
.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.mm-logo { height: 32px; width: auto; filter: brightness(0) invert(1); }
.mm-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #29ff5e;
  border: none;
  border-radius: 8px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.mm-close svg { stroke: #000; }
.mm-close:hover { background: #1fcc4a; }

/* Search */
.mm-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
}
.mm-search {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}
.mm-search::placeholder { color: rgba(255,255,255,0.35); }

/* Nav */
.mm-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Group (accordion) */
.mm-group {}

.mm-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 14px 4px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mm-group-toggle:hover { color: #fff; }

.mm-chevron {
  transition: transform 0.3s ease;
  color: rgba(255,255,255,0.4);
}
.mm-group.open .mm-chevron { transform: rotate(180deg); }

.mm-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mm-group.open .mm-group-body {
  max-height: 500px;
}

/* Product sub-links */
.mm-sub-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 8px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.mm-sub-link:hover { background: rgba(255,255,255,0.04); }
.mm-sub-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(41,255,94,0.08);
  border: 1px solid rgba(41,255,94,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #29ff5e;
}
.mm-sub-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.mm-sub-desc {
  display: block;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* Category links */
.mm-cat-link {
  display: block;
  padding: 10px 8px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.mm-cat-link:hover { color: #29ff5e; background: rgba(255,255,255,0.03); }

/* Direct links */
.mm-link {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.mm-link:hover { color: #29ff5e; padding-left: 8px; }

/* Bottom CTA section */
.mm-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mm-bottom-row {
  display: flex;
  gap: 10px;
}
.mm-btn-outline {
  flex: 1;
  text-align: center;
  padding: 14px 16px;
  min-height: 44px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.mm-btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }
.mm-btn-solid {
  flex: 1;
  text-align: center;
  padding: 14px 16px;
  min-height: 44px;
  border-radius: 10px;
  background: #29ff5e;
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease;
}
.mm-btn-solid:hover { background: #1fcc4a; }
.mm-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  min-height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.mm-download-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ================ FEATURE GRID, CARD COMPONENTS & STICKY SECTIONS ================ */
/* ================ FEATURE GRID ================ */
.features-section { padding-left: 2rem; padding-right: 2rem; padding-top: 10rem; padding-bottom: 10rem; background-color: white; }
.feat-eyebrow { display: inline-block; background: #fff; border: 1px solid #e0e0e0; border-radius: 999px; padding: 8px 20px; font-size: 1rem; font-weight: 600; color: #222; margin-bottom: 20px; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 5vw, 6rem); font-weight: 900; color: #111; letter-spacing: -0.02em; line-height: 1.1; text-transform: uppercase; }
.features-subtitle { font-size: clamp(1rem, 1.2vw, 1.125rem); color: #666; max-width: 560px; margin: 16px auto 0; line-height: 1.6; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: auto; width: 1400px; max-width: 100%; }
.feature-card { background: transparent; border: none; border-radius: 0; overflow: visible; }
.feature-visual { background: #e8e8e8; min-height: 45rem; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 60px 24px; border-radius: 20px; }
.feature-visual > * { width: 100%; }
.feature-title { font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 800; color: #111; padding: 16px 0 6px; font-family: var(--font-heading); text-transform: uppercase; }
.feature-desc { font-size: 1rem; color: #666; padding: 0 0 20px; line-height: 1.5; }
.bottom-cta { text-align: center; padding: 80px 0 100px; }
.bottom-cta-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; color: #111; letter-spacing: -0.02em; text-transform: uppercase; }
.bottom-cta-desc { font-size: clamp(1rem, 1.2vw, 1.125rem); color: #666; max-width: 500px; margin: 16px auto 32px; line-height: 1.6; }
@media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .features-section { padding-top: 6rem; padding-bottom: 6rem; } .features-grid { grid-template-columns: 1fr; } .feature-visual { min-height: 32rem; padding: 40px 16px; } .bottom-cta { padding: 56px 20px 72px; } .bottom-cta-title { font-size: 1.375rem; } .bottom-cta-desc { font-size: 1rem; margin: 12px auto 24px; } }
@media (max-width: 480px) { .features-section { padding-top: 4rem; padding-bottom: 4rem; padding-left: 1rem; padding-right: 1rem; } .feature-visual { min-height: 26rem; padding: 28px 12px; border-radius: 14px; } .bottom-cta { padding: 40px 16px 56px; } .bottom-cta-title { font-size: 1.25rem; } .bottom-cta-desc { font-size: 1rem; max-width: 320px; margin: 10px auto 20px; } }

/* ================ CERT DETECTION (cd-) ================ */
.cd-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.cd-wrap { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: center; justify-content: center; padding: 20px; position: relative; }
.cd-scene { position: relative; width: 100%; max-width: 520px; }
.cd-label { width: 100%; display: block; border-radius: 4px; user-select: none; -webkit-user-drag: none; }
.cd-hand { position: absolute; width: 60px; height: auto; z-index: 20; pointer-events: none; opacity: 0; user-select: none; -webkit-user-drag: none; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.cd-selection { position: absolute; border: 2.5px solid rgba(59, 130, 246, 0.8); background: rgba(59, 130, 246, 0.12); border-radius: 3px; z-index: 10; pointer-events: none; opacity: 0; }
.cd-handle { position: absolute; width: 8px; height: 8px; background: #fff; border: 2px solid rgba(59, 130, 246, 0.9); border-radius: 2px; z-index: 11; }
.cd-handle.tl { top: -4px; left: -4px; }
.cd-handle.tr { top: -4px; right: -4px; }
.cd-handle.bl { bottom: -4px; left: -4px; }
.cd-handle.br { bottom: -4px; right: -4px; }
.cd-scanline { position: absolute; left: 3px; right: 3px; height: 2px; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.9), rgba(59,130,246,0.9), transparent); box-shadow: 0 0 12px 3px rgba(59,130,246,0.4); z-index: 12; opacity: 0; top: 0; }
.cd-detected { position: absolute; z-index: 15; opacity: 0; transform: translateY(4px); }
.cd-detected-inner { background: rgba(0,0,0,0.85); border: 1.5px solid rgba(41,255,94,0.4); border-radius: 8px; padding: 8px 14px; display: flex; align-items: center; gap: 8px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.cd-detected-dot { width: 8px; height: 8px; border-radius: 50%; background: #29ff5e; flex-shrink: 0; }
.cd-detected-text { font-size: 14px; font-weight: 700; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; color: #29ff5e; letter-spacing: 0.05em; }
.cd-detected-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); margin-left: 4px; }
@keyframes cd-glow { 0%, 100% { box-shadow: 0 0 8px rgba(41,255,94,0.2), inset 0 0 8px rgba(41,255,94,0.05); } 50% { box-shadow: 0 0 18px rgba(41,255,94,0.4), inset 0 0 14px rgba(41,255,94,0.1); } }
.cd-selection.found { border-color: rgba(41,255,94,0.7); background: rgba(41,255,94,0.08); animation: cd-glow 1.2s ease-in-out infinite; }

/* ================ GRADER DETECTION (gd-) ================ */
.gd-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.gd-wrap { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: center; justify-content: center; padding: 20px; }
.gd-card { width: 100%; max-width: 420px; background: #131313; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04); }
.gd-header { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); }
.gd-header-left { display: flex; align-items: center; gap: 8px; }
.gd-header-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.gd-header-icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.gd-header-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.gd-arrow { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.gd-arrow svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gd-body { padding: 20px 18px 24px; display: flex; flex-direction: column; align-items: center; min-height: 150px; position: relative; }
.gd-radar { width: 80px; height: 80px; position: relative; margin-bottom: 14px; }
.gd-radar-ring { position: absolute; inset: 0; border: 2px solid rgba(255,255,255,0.08); border-radius: 50%; }
.gd-radar-ring.r2 { inset: 12px; }
.gd-radar-ring.r3 { inset: 24px; }
.gd-radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0deg, rgba(255,242,0,0.25) 40deg, transparent 80deg); opacity: 0; }
.gd-radar-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff200; box-shadow: 0 0 10px rgba(255,242,0,0.6); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; }
.gd-status { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); text-align: center; min-height: 18px; }
.gd-logo-area { width: 100%; height: 100px; position: relative; display: flex; align-items: center; justify-content: center; margin-top: 10px; overflow: hidden; }
.gd-ghost-track { display: flex; align-items: center; gap: 36px; position: absolute; opacity: 0; }
.gd-logo { height: 22px; width: auto; flex-shrink: 0; object-fit: contain; filter: brightness(0) invert(1); }
.gd-logo.ghost { opacity: 0.12; }
.gd-found-img { position: absolute; height: 80px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0; }
.gd-confirm { display: flex; align-items: center; gap: 8px; margin-top: 12px; opacity: 0; }
.gd-confirm-check { width: 18px; height: 18px; border-radius: 50%; background: #29ff5e; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transform: scale(0); }
.gd-confirm-check svg { width: 10px; height: 10px; stroke: #000; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.gd-confirm-text { font-size: 13px; font-weight: 700; color: #29ff5e; }
@keyframes gd-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,242,0,0.3); } 50% { box-shadow: 0 0 0 6px rgba(255,242,0,0); } }
.gd-header-icon.scanning { border-radius: 6px; animation: gd-pulse 1s ease-out infinite; }

/* ================ PRICING INFO (pi-) ================ */
.pi-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.pi-wrap { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: center; justify-content: center; padding: 20px; }
.pi-card { width: 100%; max-width: 420px; background: #131313; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04); }
.pi-header { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pi-header-left { display: flex; align-items: center; gap: 8px; }
.pi-header-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.pi-header-icon svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.5; }
.pi-header-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.pi-header-arrow { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.pi-header-arrow svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pi-title { padding: 12px 18px 6px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); }
.pi-viewport { height: 240px; overflow: hidden; position: relative; }
.pi-viewport::before, .pi-viewport::after { content: ''; position: absolute; left: 0; right: 0; height: 40px; z-index: 5; pointer-events: none; }
.pi-viewport::before { top: 0; background: linear-gradient(180deg, #131313 0%, transparent 100%); }
.pi-viewport::after { bottom: 0; background: linear-gradient(0deg, #131313 0%, transparent 100%); }
.pi-scroll { padding: 0 18px; }
.pi-section { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); padding: 14px 0 6px; }
.pi-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pi-row:last-child { border-bottom: none; }
.pi-grade { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); }
.pi-price { font-size: 14px; font-weight: 700; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; color: #fff; letter-spacing: -0.02em; }
.pi-price.dash { color: rgba(255,255,255,0.25); }
.pi-row.highlight { background: rgba(41,255,94,0.06); border-radius: 6px; margin: 2px -8px; padding: 10px 8px; }
.pi-row.highlight .pi-grade { color: rgba(255,255,255,0.85); }
.pi-row.highlight .pi-price { color: #29ff5e; }
.pi-footer { padding: 10px 18px 14px; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.pi-footer a { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); text-decoration: none; }

/* ================ CARD INFO (ci-) ================ */
.ci-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.ci-wrap { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: center; justify-content: center; padding: 20px; }
.ci-card { width: 100%; max-width: 420px; background: #131313; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04); }
.ci-inner { overflow: hidden; }
.ci-toggle { width: 100%; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; background: transparent; border: none; cursor: default; }
.ci-toggle-left { display: flex; align-items: center; gap: 8px; }
.ci-toggle-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: transparent; border-radius: 6px; flex-shrink: 0; }
.ci-toggle-icon svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.5; }
.ci-toggle-label { font-family: 'Mona Sans Condensed', var(--font-heading), sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.ci-arrow { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.ci-arrow svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0 16px; transform: scaleX(0); transform-origin: left; }
.ci-body { padding: 4px 18px 14px; }
.ci-table { width: 100%; border-collapse: collapse; }
.ci-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); opacity: 0; transform: translateX(-12px); }
.ci-table tr:last-child { border-bottom: none; }
.ci-table td { padding: 10px 4px; font-size: 13px; line-height: 1.3; vertical-align: middle; }
.ci-table td:first-child { font-family: 'Mona Sans Condensed', var(--font-heading), sans-serif; color: rgba(255,255,255,0.45); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding-right: 16px; white-space: nowrap; width: 100px; }
.ci-table td:last-child { font-family: 'Mona Sans Condensed', var(--font-heading), sans-serif; font-weight: 800; color: #fff; font-size: 1.125rem; text-transform: uppercase; }
.ci-footer { padding: 6px 18px 16px; display: flex; align-items: center; gap: 10px; opacity: 0; transform: translateY(6px); }
.ci-confidence { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; background: rgba(41,255,94,0.08); border: 1px solid rgba(41,255,94,0.22); color: #29ff5e; white-space: nowrap; }
.ci-sources { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.35); }
@keyframes ci-glow { 0%, 100% { box-shadow: 0 0 6px rgba(41,255,94,0.3), 0 0 14px rgba(41,255,94,0.1); } 50% { box-shadow: 0 0 18px rgba(41,255,94,0.7), 0 0 36px rgba(41,255,94,0.25), 0 0 4px rgba(41,255,94,0.9); } }
.ci-confidence.glow { animation: ci-glow 1.2s ease-in-out infinite; }

/* ================ DATA PANEL (dp-) ================ */
@media only screen and (max-width: 568px) { .dp-stats { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; } }
.dp * { box-sizing: border-box; margin: 0; padding: 0; }
.dp { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: flex-start; justify-content: center; }
.dp-panel { width: 100%; max-width: 460px; background: #232323; border-radius: 14px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06); opacity: 0; transform: translateY(20px) scale(0.96); }
.dp-inner { transform-origin: top center; }
.dp-topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: linear-gradient(180deg, rgba(41,255,94,0.14) 0%, rgba(41,255,94,0.02) 100%); border-bottom: 1px solid rgba(41,255,94,0.12); }
.dp-topbar-left { display: flex; align-items: center; gap: 12px; }
.dp-back { display: inline-flex; align-items: center; gap: 5px; padding: 7px 18px; border-radius: 999px; background: #29ff5e; color: #000; font-size: 13px; font-weight: 700; border: none; cursor: default; font-family: inherit; }
.dp-title { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: 0.05em; text-transform: uppercase; }
.dp-export { display: inline-flex; align-items: center; gap: 5px; padding: 7px 18px; border-radius: 999px; background: #29ff5e; color: #000; font-size: 13px; font-weight: 700; border: none; cursor: default; font-family: inherit; }
.dp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 18px 16px 18px; }
.dp-stat { border-radius: 12px; padding: 18px 8px 14px; text-align: center; }
.dp-stat-num { font-size: 32px; font-weight: 900; line-height: 1; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; letter-spacing: -1.5px; }
.dp-stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; }
.dp-stat.red { background: rgba(62,142,255,0.22); border: 1.5px solid rgba(62,142,255,0.35); color: #3e8eff; }
.dp-stat.red .dp-stat-label { color: rgba(62,142,255,0.65); }
.dp-stat.purple { background: rgba(155,114,255,0.22); border: 1.5px solid rgba(155,114,255,0.35); color: #9b72ff; }
.dp-stat.purple .dp-stat-label { color: rgba(155,114,255,0.65); }
.dp-stat.green { background: rgba(34,199,122,0.22); border: 1.5px solid rgba(34,199,122,0.35); color: #22c77a; }
.dp-stat.green .dp-stat-label { color: rgba(34,199,122,0.65); }
.dp-stat.brown { background: rgba(240,168,48,0.22); border: 1.5px solid rgba(240,168,48,0.35); color: #f0a830; }
.dp-stat.brown .dp-stat-label { color: rgba(240,168,48,0.65); }
/* ================ MANUAL INPUT (mi-) ================ */
.mi-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.mi-wrap { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: center; justify-content: center; padding: 20px; width: 100%; }
.mi-card { width: 100%; max-width: 520px; background: #1e1e1e; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; overflow: visible; box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04); }
.mi-toggle { border-radius: 12px 12px 0 0; width: 100%; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; background: transparent; border: none; cursor: default; }
.mi-toggle-left { display: flex; align-items: center; gap: 8px; }
.mi-toggle-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mi-toggle-icon svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.5; }
.mi-toggle-label { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.mi-arrow { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.mi-arrow svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mi-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0 16px; }
.mi-body { padding: 12px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.mi-input { width: 100%; padding: 14px 16px; min-height: 46px; background: #0a0a0a; border: 1.5px solid rgba(255,255,255,0.10); border-radius: 8px; color: #fff; font-size: 1rem; font-weight: 600; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; letter-spacing: 0.08em; text-transform: uppercase; cursor: default; position: relative; transition: border-color 0.2s; }
.mi-input.focus { border-color: rgba(255,242,0,0.5); }
.mi-input .mi-placeholder { color: rgba(255,255,255,0.6); font-family: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; text-transform: inherit; }
.mi-input .mi-typed { color: #fff; }
.mi-select-wrap { position: relative; }
.mi-select { width: 100%; padding: 14px 16px; min-height: 46px; background: #0a0a0a; border: 1.5px solid rgba(255,255,255,0.10); border-radius: 8px; color: #fff; font-size: 1rem; font-weight: 600; font-family: inherit; cursor: default; transition: border-color 0.2s; }
.mi-select.focus { border-color: rgba(255,242,0,0.5); }
.mi-select-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.mi-select-arrow svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mi-dropdown { position: absolute; left: 0; right: 0; top: calc(100% + 4px); background: #1a1a1a; border: 1.5px solid rgba(255,255,255,0.20); border-radius: 8px; overflow: hidden; z-index: 10; transform-origin: top center; }
.mi-option { padding: 12px 16px; font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.08); cursor: default; transition: background 0.15s, color 0.15s; }
.mi-option:last-child { border-bottom: none; }
.mi-option.highlight { background: rgba(255,242,0,0.15); color: #fff200; text-shadow: 0 0 8px rgba(255,242,0,0.3); }
.mi-btn { width: 100%; padding: 14px 16px; background: #29ff5e; border: none; border-radius: 8px; color: #000; font-size: 1rem; font-weight: 700; font-family: inherit; cursor: default; display: flex; align-items: center; justify-content: center; gap: 6px; opacity: 0.3; filter: saturate(0); transition: filter 0.3s; }
.mi-btn.ready { opacity: 1; filter: saturate(1); }
@keyframes mi-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.mi-cursor { display: inline-block; width: 2px; height: 14px; background: #fff200; vertical-align: middle; animation: mi-blink 0.7s step-end infinite; }
.mi-check-svg { width: 14px; height: 14px; }
.mi-check-svg path { stroke: #000; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; }

/* ================ LANGUAGE DETECTION (lg-) ================ */
.lg-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.lg-wrap { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: center; justify-content: center; padding: 20px; width: 100%; }
.lg-card { width: 100%; max-width: 520px; background: #131313; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04); padding: 20px 22px 24px; }
.lg-globe-wrap { width: 56px; height: 56px; margin: 0 auto 16px; position: relative; }
.lg-progress { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.lg-progress-track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 3; }
.lg-progress-fill { fill: none; stroke: rgba(255,242,0,0.8); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 157; stroke-dashoffset: 157; transition: stroke 0.3s; }
.lg-progress-fill.done { stroke: #29ff5e; }
.lg-globe { width: 42px; height: 42px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; opacity: 0; }
.lg-globe svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lg-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.lg-label { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }
.lg-value { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; color: #fff; min-width: 160px; justify-content: flex-end; position: relative; }
.lg-flag { font-size: 1.25rem; line-height: 1; display: inline-block; opacity: 0; transform: scale(0) rotate(-20deg); }
.lg-text { display: inline-flex; overflow: hidden; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; letter-spacing: 0.02em; }
.lg-char { display: inline-block; opacity: 0; transform: translateY(14px); }
.lg-scanning { display: flex; align-items: center; gap: 6px; position: absolute; right: 0; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; }
.lg-scan-dots { display: flex; gap: 3px; }
.lg-scan-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.lg-check { width: 18px; height: 18px; border-radius: 50%; background: #29ff5e; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0); flex-shrink: 0; }
.lg-check svg { width: 10px; height: 10px; stroke: #000; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ================ NOTIFICATIONS (nt-) ================ */
.nt-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.nt-wrap { font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: center; justify-content: center; padding: 20px; width: 100%; }
.nt-card { width: 100%; max-width: 520px; background: #1e1e1e; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; overflow: visible; box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04); padding: 18px 22px 20px; position: relative; }
.nt-header { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 4px; }
.nt-bell { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; transform-origin: top center; }
.nt-bell svg { width: 18px; height: 18px; fill: none; stroke: rgba(255,255,255,0.6); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nt-header-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.nt-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nt-toggle-text { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.nt-switch { width: 44px; height: 24px; border-radius: 12px; background: rgba(255,255,255,0.12); position: relative; cursor: default; transition: background 0.3s; flex-shrink: 0; }
.nt-switch.on { background: #29ff5e; }
.nt-knob { width: 20px; height: 20px; border-radius: 50%; background: #fff; position: absolute; top: 2px; left: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.3); transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.nt-switch.on .nt-knob { left: 22px; }
.nt-slider-section { padding: 16px 0 12px; }
.nt-slider-label { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.nt-slider-label strong { color: #fff; font-weight: 700; }
.nt-slider-track { width: 100%; height: 6px; background: rgba(255,255,255,0.12); border-radius: 3px; position: relative; }
.nt-slider-fill { height: 100%; border-radius: 3px; background: #3b82f6; width: 0%; position: absolute; left: 0; top: 0; }
.nt-slider-thumb { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid #3b82f6; position: absolute; top: 50%; transform: translate(-50%, -50%); left: 0%; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.nt-buttons { display: flex; gap: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 4px; }
.nt-btn { flex: 1; padding: 10px 12px; border-radius: 8px; font-size: 1rem; font-weight: 700; font-family: inherit; cursor: default; text-align: center; border: 1px solid rgba(255,255,255,0.15); background: transparent; color: #fff; }
.nt-btn.primary { background: #29ff5e; color: #000; border-color: #29ff5e; }
.nt-status { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 0 0; opacity: 0; }
.nt-status-icon { width: 18px; height: 18px; border-radius: 50%; background: #29ff5e; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nt-status-icon svg { width: 10px; height: 10px; stroke: #000; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.nt-status-text { font-size: 1rem; font-weight: 700; color: #29ff5e; }
/* ================ THREE-CARD DETAIL GRID (td-) ================ */
.td-section { background: #000; padding: 10rem 2rem 4rem; }
.td-header { text-align: left; max-width: 1400px; margin: 0 auto 60px; padding: 0 1rem; }
.td-card-text { padding: 18px 0 6px; }
.td-card-title { font-family: var(--font-heading); font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 10px; text-transform: uppercase; font-size: clamp(2.5rem, 4vw, 3rem); }
.td-card-desc { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.td-eyebrow { display: inline-block; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 8px 20px; font-size: clamp(1rem, 1vw, 1rem); font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.td-heading { font-family: var(--font-heading); font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -0.03em; text-transform: uppercase; }
.td-hero-block { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
.td-hero-card { background: #141414; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; min-height: 480px; }
.td-hero-text { padding: 60px 50px; }
.td-copy-lg { font-size: clamp(1.125rem, 1.6vw, 1.375rem); line-height: 1.5; }
.td-hero-title { font-family: var(--font-heading); font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 12px; text-transform: uppercase; }
.td-hero-desc { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: clamp(1rem, 1.5vw, 1.25rem); color: rgba(255,255,255,0.6); line-height: 1.55; }
.td-hero-subs { margin-top: 110px; display: flex; flex-direction: column; gap: 36px; }
.td-hero-sub { display: flex; align-items: flex-start; gap: 14px; }
.td-hero-sub-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(41,255,94,0.1); border: 1px solid rgba(41,255,94,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #29ff5e; }
.td-hero-sub-icon svg { width: 16px; height: 16px; }
.td-hero-sub-title { font-family: var(--font-heading); font-size: clamp(1rem, 1.6vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 2px; text-transform: uppercase; }
.td-hero-sub-desc { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.45; }
.td-hero-visual { padding: 30px 40px 30px 0; display: flex; align-items: center; justify-content: center; }
.td-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; max-width: 1400px; margin: 90px auto 0; padding: 0 1rem; }
@media (max-width: 1100px) { .td-hero-card { grid-template-columns: 1fr; } .td-hero-text { padding: 40px 30px 20px; } .td-hero-visual { padding: 20px 30px 40px; } .td-two-col { grid-template-columns: 1fr; } }
.td-card { background: transparent; display: flex; flex-direction: column; }
.td-visual { background: #141414; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 40px 24px; position: relative; }
.td-copy { padding: 18px 0 6px; line-height: 1.45; font-size: clamp(1rem, 1.3vw, 1.125rem); }
.td-copy-heading { font-family: var(--font-heading); font-weight: 800; color: #fff; text-transform: uppercase; }
.td-copy-body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400; color: rgba(255,255,255,0.65); }

/* --- Deal Score (ds-) --- */
.ds-wrap { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.ds-ring-wrap { width: 200px; height: 200px; position: relative; }
.ds-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ds-ring-track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 8; }
.ds-ring-fill { fill: none; stroke: #29ff5e; stroke-width: 8; stroke-linecap: round; stroke-dasharray: 408; stroke-dashoffset: 408; transition: stroke 0.3s; }
.ds-ring-fill.great { stroke: #29ff5e; }
.ds-ring-fill.good { stroke: #fff200; }
.ds-ring-fill.fair { stroke: #ff9f43; }
.ds-score-inner { position: absolute; inset: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ds-score-num { font-size: 2.75rem; font-weight: 900; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; color: #fff; line-height: 1; letter-spacing: -2px; }
.ds-score-label { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-top: 2px; }
.ds-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; opacity: 0; transform: scale(0.7); }
.ds-badge.great { background: rgba(41,255,94,0.12); border: 1px solid rgba(41,255,94,0.3); color: #29ff5e; }
.ds-badge.good { background: rgba(255,242,0,0.12); border: 1px solid rgba(255,242,0,0.3); color: #fff200; }
.ds-badge.fair { background: rgba(255,159,67,0.12); border: 1px solid rgba(255,159,67,0.3); color: #ff9f43; }
.ds-badge-dot { width: 6px; height: 6px; border-radius: 50%; }
.ds-badge.great .ds-badge-dot { background: #29ff5e; }
.ds-badge.good .ds-badge-dot { background: #fff200; }
.ds-badge.fair .ds-badge-dot { background: #ff9f43; }
.ds-detail-rows { width: 100%; max-width: 320px; }
.ds-detail-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1rem; opacity: 0; transform: translateX(-8px); }
.ds-detail-row:last-child { border-bottom: none; }
.ds-detail-key { color: rgba(255,255,255,0.6); font-weight: 600; }
.ds-detail-val { color: #fff; font-weight: 700; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; }
@keyframes ds-glow { 0%,100% { filter: drop-shadow(0 0 6px rgba(41,255,94,0.15)); } 50% { filter: drop-shadow(0 0 18px rgba(41,255,94,0.35)); } }
.ds-ring.glow { animation: ds-glow 1.5s ease-in-out infinite; }
@media (max-width: 768px) { .ds-ring-wrap { width: 160px; height: 160px; } .ds-score-num { font-size: 2.25rem; } .ds-score-label { font-size: 1rem; } .ds-detail-rows { max-width: 280px; } .ds-badge { font-size: 1rem; padding: 5px 12px; } }

/* --- Scan Viewer (sv-) --- */
.sv-wrap { width: 100%; display: flex; flex-direction: column; align-items: center; }
.sv-panel { width: 100%; max-width: 520px; background: #0e0e0e; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.sv-status { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.18); opacity: 0; }
.sv-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #29ff5e; flex-shrink: 0; }
.sv-status-text { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.sv-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 16px 20px 32px; }
.sv-col { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; transform: translateY(10px); }
.sv-col-label { font-size: 1rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #29ff5e; }
.sv-col-frame { width: 100%; aspect-ratio: 2/3; background: #292929; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; overflow: hidden; padding: 12px 0 3rem; position: relative; }
.sv-col-img { width: 100%; height: 100%; object-fit: contain; object-position: center; opacity: 0; }
.sv-source-row { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-top: 1px solid rgba(255,255,255,0.18); opacity: 0; }
.sv-source-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.sv-source-icon svg { width: 14px; height: 14px; fill: none; stroke: rgba(255,255,255,0.4); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sv-source-text { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.sv-col-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 55%, transparent 70%); background-size: 300% 100%; background-position: 150% 0; opacity: 0; pointer-events: none; z-index: 2; }
@keyframes sv-shimmer { 0% { background-position: 150% 0; } 100% { background-position: -150% 0; } }
.sv-col-frame.shimmer::after { opacity: 1; animation: sv-shimmer 1s ease-in-out forwards; }
.sv-inspect { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); font-size: 1rem; font-weight: 700; color: #000; background: #fff200; padding: 4px 12px; border-radius: 6px; letter-spacing: 0.04em; opacity: 0; z-index: 3; white-space: nowrap; }
/* --- Pop Report (pr-) --- */
.pr-wrap { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pr-card { width: 100%; max-width: 340px; background: #131313; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.pr-header { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pr-header-left { display: flex; align-items: center; gap: 8px; }
.pr-header-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.pr-header-icon svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pr-header-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.pr-total { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.6); font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; opacity: 0; }
.pr-body { padding: 16px 18px 20px; }
.pr-chart { display: flex; align-items: flex-end; gap: 6px; height: 140px; padding-bottom: 24px; position: relative; }
.pr-chart::after { content: ''; position: absolute; bottom: 24px; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.06); }
.pr-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; z-index: 1; }
.pr-bar { width: 100%; border-radius: 4px 4px 0 0; background: rgba(255,255,255,0.08); min-height: 0; position: relative; overflow: hidden; }
.pr-bar-inner { position: absolute; bottom: 0; left: 0; right: 0; border-radius: 4px 4px 0 0; height: 0%; }
.pr-bar-col:nth-child(1) .pr-bar-inner { background: linear-gradient(180deg, rgba(255,107,107,0.9), rgba(255,107,107,0.5)); }
.pr-bar-col:nth-child(2) .pr-bar-inner { background: linear-gradient(180deg, rgba(255,159,67,0.9), rgba(255,159,67,0.5)); }
.pr-bar-col:nth-child(3) .pr-bar-inner { background: linear-gradient(180deg, rgba(255,242,0,0.9), rgba(255,242,0,0.5)); }
.pr-bar-col:nth-child(4) .pr-bar-inner { background: linear-gradient(180deg, rgba(41,255,94,0.9), rgba(41,255,94,0.5)); }
.pr-bar-col:nth-child(5) .pr-bar-inner { background: linear-gradient(180deg, rgba(59,130,246,0.9), rgba(59,130,246,0.5)); }
.pr-bar-col:nth-child(6) .pr-bar-inner { background: linear-gradient(180deg, rgba(168,85,247,0.9), rgba(168,85,247,0.5)); }
.pr-bar-col:nth-child(7) .pr-bar-inner { background: linear-gradient(180deg, rgba(236,72,153,0.9), rgba(236,72,153,0.5)); }
.pr-bar-label { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; white-space: nowrap; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); }
.pr-bar-count { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 1rem; font-weight: 700; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; color: #fff; opacity: 0; white-space: nowrap; }
.pr-highlight { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-top: 1px solid rgba(255,255,255,0.06); opacity: 0; }
.pr-highlight-dot { width: 8px; height: 8px; border-radius: 50%; background: #29ff5e; flex-shrink: 0; }
.pr-highlight-text { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; word-spacing: 0.15em; }
.pr-highlight-text strong { color: #29ff5e; font-weight: 700; }

/* --- Sold Comps (sc-) --- */
.sc-wrap { width: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.sc-card { width: 100%; max-width: 520px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.sc-header { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sc-header-left { display: flex; align-items: center; gap: 10px; }
.sc-header-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.sc-header-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sc-header-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.sc-pill { padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; background: rgba(41,255,94,0.12); border: 1px solid rgba(41,255,94,0.25); color: #29ff5e; }
.sc-arrow { color: rgba(255,255,255,0.6); font-size: 1.125rem; }
.sc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sc-stat { display: flex; flex-direction: column; gap: 4px; }
.sc-stat-label { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }
.sc-stat-val { font-size: 1.125rem; font-weight: 800; color: #fff; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; }
.sc-stat-val.green { color: #29ff5e; }
.sc-stat-val.red { color: #ff6b6b; }
.sc-trend { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; margin: 12px 20px 0; border-radius: 8px; font-size: 1rem; font-weight: 700; background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.2); color: #ff6b6b; opacity: 0; transform: scale(0.8); }
.sc-trend svg { width: 12px; height: 12px; stroke: #ff6b6b; fill: none; stroke-width: 2; }
.sc-listings { padding: 14px 20px 18px; display: flex; flex-direction: column; gap: 10px; }
.sc-listing { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; opacity: 0; transform: translateY(8px); }
.sc-listing-left { flex: 1; min-width: 0; }
.sc-listing-title { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 240px; }
.sc-listing-seller { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.sc-listing-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; margin-left: 12px; }
.sc-listing-price { font-size: 1rem; font-weight: 800; color: #fff; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; }
.sc-listing-badge { font-size: 1rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.sc-listing-badge.near { background: rgba(41,255,94,0.1); color: #29ff5e; }
.sc-listing-badge.above { background: rgba(255,107,107,0.1); color: #ff6b6b; }

/* --- Seller Quality (sq-) --- */
.sq-wrap { width: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.sq-card { width: 100%; max-width: 520px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.sq-header { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sq-header-left { display: flex; align-items: center; gap: 10px; }
.sq-header-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.sq-header-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sq-header-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.sq-pill { padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3); color: #f5a623; opacity: 0; transform: scale(0.7); }
.sq-arrow { color: rgba(255,255,255,0.6); font-size: 1.125rem; }
.sq-seller-info { padding: 16px 20px 12px; opacity: 0; }
.sq-seller-name { font-size: 1rem; font-weight: 700; color: #fff; }
.sq-seller-meta { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.sq-history { padding: 0 20px 18px; display: flex; flex-direction: column; gap: 6px; }
.sq-sale-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,0.03); border-left: 3px solid rgba(245,166,35,0.5); border-radius: 0 8px 8px 0; opacity: 0; transform: translateY(-8px); }
.sq-sale-date { font-size: 1rem; color: rgba(255,255,255,0.6); }
.sq-sale-price { font-size: 1rem; font-weight: 800; color: #fff; font-family: 'SF Mono', 'Cascadia Mono', 'Consolas', monospace; }

/* ================ SNIPE ALERTS (sa-) ================ */
.sa-wrap { width: 100%; font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; display: flex; align-items: center; justify-content: center; padding: 20px; }
.sa-card { width: 100%; max-width: 520px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.sa-header { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sa-header-left { display: flex; align-items: center; gap: 10px; }
.sa-bell { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.sa-bell svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.6); }
.sa-header-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.sa-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 12px; }
.sa-desc { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.5; opacity: 0; }
.sa-empty { font-size: 1rem; color: rgba(255,255,255,0.6); font-style: italic; opacity: 0; }
.sa-input { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 10px; font-size: 1rem; color: #fff; font-family: inherit; opacity: 0; min-height: 46px; }
.sa-input.focus { border-color: rgba(41,255,94,0.5); }
.sa-placeholder { color: rgba(255,255,255,0.6); }
.sa-typed { color: #fff; font-weight: 600; }
.sa-price-row { display: flex; gap: 10px; opacity: 0; }
.sa-price-input { flex: 1; padding: 14px 16px; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 10px; font-size: 1rem; color: #fff; min-height: 46px; }
.sa-price-input.focus { border-color: rgba(41,255,94,0.5); }
.sa-add-btn { padding: 14px 22px; background: #29ff5e; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; color: #000; cursor: default; white-space: nowrap; opacity: 0.4; filter: saturate(0); transition: filter 0.3s, opacity 0.3s; }
.sa-add-btn.ready { opacity: 1; filter: saturate(1); }
.sa-alert-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(41,255,94,0.06); border: 1px solid rgba(41,255,94,0.2); border-radius: 10px; opacity: 0; transform: translateY(6px); }
.sa-alert-dot { width: 8px; height: 8px; border-radius: 50%; background: #29ff5e; flex-shrink: 0; }
.sa-alert-text { flex: 1; }
.sa-alert-name { font-size: 1rem; font-weight: 700; color: #fff; }
.sa-alert-meta { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.sa-alert-remove { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.125rem; cursor: default; padding: 0 4px; }
@keyframes sa-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.sa-cursor { display: inline-block; width: 2px; height: 14px; background: #29ff5e; vertical-align: middle; animation: sa-blink 0.7s step-end infinite; }

/* ================ AI ANALYSIS (ai-) ================ */
.ai-wrap { width: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.ai-card { width: 100%; max-width: 520px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.ai-header { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ai-header-left { display: flex; align-items: center; gap: 10px; }
.ai-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.ai-icon svg { stroke: rgba(255,255,255,0.5); }
.ai-header-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.ai-verdict { padding: 4px 12px; border-radius: 6px; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0; transform: scale(0.7); }
.ai-verdict.avoid { background: #e74c3c; color: #fff; }
.ai-verdict.buy { background: #29ff5e; color: #000; }
.ai-body { padding: 16px 20px 22px; display: flex; flex-direction: column; gap: 12px; }
.ai-insight { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 18px 18px 18px 14px; font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.6; display: flex; gap: 10px; opacity: 0; transform: translateY(8px); }
.ai-insight-arrow { color: rgba(255,255,255,0.6); font-size: 1.125rem; flex-shrink: 0; margin-top: 1px; }
.ai-insight strong { color: #fff; font-weight: 700; }
.ai-green { color: #29ff5e !important; }
/* ================ COLLECTION DASHBOARD (cd-dash-) ================ */
.cd-dash-wrap { width: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cd-dash { width: 100%; max-width: 520px; display: flex; flex-direction: column; gap: 14px; }
.cd-dash-add { background: #0e2a10; border: 1.5px solid rgba(41,255,94,0.3); border-radius: 14px; padding: 20px; opacity: 0; }
.cd-dash-add-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(41,255,94,0.5); margin-bottom: 14px; }
.cd-dash-collection-btn { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: #fff; border-radius: 10px; font-size: 15px; font-weight: 800; color: #000; margin-bottom: 12px; }
.cd-dash-arrow { font-size: 20px; color: rgba(0,0,0,0.3); }
.cd-dash-create { padding: 14px 18px; background: rgba(255,255,255,0.08); border: 1.5px dashed rgba(255,255,255,0.15); border-radius: 10px; text-align: center; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.7); }
.cd-dash-portfolio { background: #1a1a1a; border: 1.5px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px; opacity: 0; }
.cd-dash-port-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cd-dash-port-dot { width: 10px; height: 10px; border-radius: 50%; background: #3b82f6; }
.cd-dash-port-title { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: 0.06em; flex: 1; }
.cd-dash-port-count { font-size: 12px; color: rgba(255,255,255,0.4); }
.cd-dash-port-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.cd-dash-port-stat { padding: 14px 12px; border-radius: 10px; }
.cd-dash-port-stat.cost { background: rgba(62,142,255,0.15); border: 1px solid rgba(62,142,255,0.25); }
.cd-dash-port-stat.market { background: rgba(34,199,122,0.15); border: 1px solid rgba(34,199,122,0.25); }
.cd-dash-port-stat.gain { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25); }
.cd-dash-port-stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.cd-dash-port-stat-val { font-size: 16px; font-weight: 900; color: #fff; font-family: 'SF Mono','Cascadia Mono','Consolas',monospace; }
.cd-dash-port-stat.gain .cd-dash-port-stat-val { color: #ef4444; }
.cd-dash-cert-btn { width: 100%; padding: 16px; background: #29ff5e; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; color: #000; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: default; opacity: 0; }

/* ================ DATA PANEL V2 (dp2-) ================ */
.dp2-wrap { width: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.dp2-card { width: 100%; max-width: 560px; display: flex; flex-direction: column; gap: 0; }
.dp2-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.dp2-stat { border-radius: 12px; padding: 18px 8px 14px; text-align: center; opacity: 0; transform: scale(0.5); }
.dp2-stat-num { font-size: 2rem; font-weight: 900; line-height: 1; font-family: 'SF Mono','Cascadia Mono','Consolas',monospace; letter-spacing: -1.5px; }
.dp2-stat-label { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; }
.dp2-stat.blue { background: rgba(62,142,255,0.22); border: 1.5px solid rgba(62,142,255,0.35); color: #3e8eff; }
.dp2-stat.blue .dp2-stat-label { color: rgba(62,142,255,0.65); }
.dp2-stat.purple { background: rgba(155,114,255,0.22); border: 1.5px solid rgba(155,114,255,0.35); color: #9b72ff; }
.dp2-stat.purple .dp2-stat-label { color: rgba(155,114,255,0.65); }
.dp2-stat.green { background: rgba(34,199,122,0.22); border: 1.5px solid rgba(34,199,122,0.35); color: #22c77a; }
.dp2-stat.green .dp2-stat-label { color: rgba(34,199,122,0.65); }
.dp2-stat.amber { background: rgba(240,168,48,0.22); border: 1.5px solid rgba(240,168,48,0.35); color: #f0a830; }
.dp2-stat.amber .dp2-stat-label { color: rgba(240,168,48,0.65); }
.dp2-tabs { display: flex; align-items: center; gap: 0; background: #1a1a1a; border-radius: 12px; padding: 6px; overflow-x: auto; opacity: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.dp2-tabs::-webkit-scrollbar { display: none; }
.dp2-tab { padding: 10px 14px; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.4); white-space: nowrap; border-radius: 8px; }
.dp2-tab.active { background: #29ff5e; color: #000; }
/* ================ FEATURE STICKY SECTION (fs-) ================ */
.fs-section { background: #000; padding: 0; position: relative; }
.fs-body { display: flex; align-items: flex-start; max-width: 1400px; margin: 0 auto; padding: 0 3rem; position: relative; }
.fs-left { width: 560px; flex-shrink: 0; position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-right: 4rem; }
.fs-tabs { display: flex; flex-direction: column; gap: 0; }
.fs-tab { background: none; border: none; text-align: left; cursor: pointer; padding: 8px 0; transition: opacity 0.3s; }
.fs-tab-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 3.5vw, 3.25rem); font-weight: 800; color: rgb(255 255 255 / 34%); line-height: 1.25; letter-spacing: -0.02em; text-transform: uppercase; text-transform: uppercase; white-space: nowrap; transition: color 0.4s; display: flex; align-items: center; gap: 14px; }
.fs-tab-title::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: transparent; flex-shrink: 0; transition: background 0.4s; }
.fs-tab.active .fs-tab-title { color: #fff; }
.fs-tab.active .fs-tab-title::before { background: #29ff5e; }
.fs-right { flex: 1; min-width: 0; }
.fs-panel { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 0; }
.fs-visual { width: 100%; max-width: 560px; background: #141414; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; min-height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 40px 24px; }
.fs-info { width: 100%; max-width: 560px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-top: 20px; }
.fs-info-text { flex: 1; }
.fs-info-title { font-family: var(--font-heading); font-size: clamp(1.25rem, 2vw, 4.875rem); font-weight: 800; color: #fff; margin-bottom: 6px; text-transform: uppercase; }
.fs-info-desc { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
@media (max-width: 1100px) { .fs-body { flex-direction: column; } .fs-left { display: none; } .fs-right { width: 100%; } .fs-panel { min-height: auto; padding: 0 0 80px; } .fs-visual { min-height: 360px; } }

/* ================ STICKY TAB SECTION (st-) ================ */
.st-section { background: #fff; padding: 0; position: relative; }
.st-hero { max-width: 1400px; margin: 0 auto; padding: 10rem 3rem 4rem; }
.st-heading { font-family: var(--font-heading); font-weight: 900; color: #111; line-height: 1.0; letter-spacing: -0.04em; text-align: center; margin-bottom: 64px; text-transform: uppercase; }
.st-heading em { font-style: normal; }
.st-highlight { background: #29ff5e; color: #000; padding: 0 0.19em; border-radius: 4px; line-height: 1; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.st-body { display: flex; align-items: flex-start; max-width: 1400px; margin: 0 auto; padding: 0 3rem; position: relative; }
.st-left { width: 520px; flex-shrink: 0; position: sticky; top: 0; height: 70vh; display: flex; flex-direction: column; justify-content: center; padding-right: 2rem; }
.st-tabs { display: flex; flex-direction: column; gap: 0; background: #0d0d0d; border-radius: 16px; overflow: hidden; }
.st-tab { display: block; padding: 0; background: none; border: none; border-left: 3px solid transparent; border-bottom: 1px solid rgba(255,255,255,0.06); cursor: pointer; text-align: left; position: relative; overflow: hidden; max-height: 72px; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), border-color 0.3s, background 0.3s; }
.st-tab:last-child { border-bottom: none; }
.st-tab.active { max-height: 500px; border-left-color: #29ff5e; background: rgba(41,255,94,0.04); }
.st-tab-strip { display: flex; align-items: center; gap: 14px; padding: 20px 20px; min-height: 72px; }
.st-tab-num { font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); font-family: var(--font-body); flex-shrink: 0; transition: color 0.3s; }
.st-tab.active .st-tab-num { color: #29ff5e; }
.st-tab-title { font-family: var(--font-heading); font-size: clamp(1rem, 1.5vw, 1.375rem); white-space: nowrap; font-weight: 800; color: rgba(255,255,255,0.6); letter-spacing: -0.01em; flex: 1; transition: color 0.4s; text-transform: uppercase; }
.st-tab.active .st-tab-title { color: #fff; }
.st-tab-arrow { width: 18px; height: 18px; color: rgba(255,255,255,0.6); flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), color 0.3s; }
.st-tab.active .st-tab-arrow { transform: rotate(180deg); color: #29ff5e; }
.st-tab-body { padding: 0 20px 24px 20px; }
.st-tab-desc { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 400px; margin-bottom: 16px; }
.st-tab-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.st-tab-features li { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.7); line-height: 1.4; }
.st-feat-icon { width: 36px; height: 36px; border-radius: 10px; background: #29ff5e; border: none; color: #000; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.st-feat-icon svg { width: 18px; height: 18px; }
.st-tab-stat-row { display: flex; gap: 20px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s, margin 0.4s; margin-top: 0; }
.st-tab.active .st-tab-stat-row { max-height: 100px; opacity: 1; margin-top: 24px; }
.st-tab-stat { display: flex; flex-direction: column; gap: 2px; }
.st-tab-stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: #29ff5e; }
.st-tab-stat-label { font-size: 1rem; font-weight: 600; color: rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.st-tab-badges { display: flex; flex-wrap: wrap; gap: 12px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s, margin 0.4s; margin-top: 0; }
.st-tab.active .st-tab-badges { max-height: 120px; opacity: 1; margin-top: 24px; }
.st-badge { padding: 6px 14px; border-radius: 8px; font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; color: #111; background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.1); }
.st-badge-more { background: #29ff5e; color: #000; border-color: #29ff5e; }
.st-tab-checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s, margin 0.4s; margin-top: 0; }
.st-tab.active .st-tab-checks { max-height: 280px; opacity: 1; margin-top: 24px; }
.st-tab-checks li { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 600; color: rgba(0,0,0,0.55); }
.st-tab-checks li svg { flex-shrink: 0; }
.st-mobile-header { display: none; }
.st-right { flex: 1; min-width: 0; }
.st-panel { display: flex; align-items: center; justify-content: center; min-height: 70vh; padding: 30px 0; }
.st-panel-inner { width: 100%; max-width: 620px; background: #131313; border-radius: 24px; padding: 36px 24px; box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.08); }
.st-monitor { width: 100%; max-width: 720px; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.45)) drop-shadow(0 15px 30px rgba(0,0,0,0.25)); }
.st-monitor-bezel { background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 30%, #0c0c0c 60%, #1a1a1a 100%); border-radius: 20px; padding: 14px; border: 2px solid #888; border-top-color: #aaa; border-bottom-color: #555; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.4), inset 2px 0 4px rgba(0,0,0,0.3), inset -2px 0 4px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.4); }
.st-monitor-inner { border-radius: 6px; overflow: hidden; background: #fff; }
.st-monitor-topbar { display: none; }
.st-topbar-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px 8px; }
.st-dots { display: flex; gap: 7px; flex-shrink: 0; }
.st-dots span { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 1px 2px rgba(0,0,0,0.2); }
.st-dots span:nth-child(1) { background: radial-gradient(circle at 35% 35%, #ff8a80, #ff5f57); }
.st-dots span:nth-child(2) { background: radial-gradient(circle at 35% 35%, #ffd54f, #febc2e); }
.st-dots span:nth-child(3) { background: radial-gradient(circle at 35% 35%, #69f0ae, #28c840); }
.st-tab-bar { display: flex; align-items: center; gap: 2px; flex: 1; margin-left: 6px; }
.st-browser-tab { padding: 5px 14px; border-radius: 6px 6px 0 0; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.6); background: transparent; white-space: nowrap; }
.st-browser-tab.active { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.st-nav-row { display: flex; align-items: center; gap: 8px; padding: 0 14px 10px; }
.st-nav-btns { display: flex; gap: 6px; flex-shrink: 0; }
.st-nav-btn { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); }
.st-nav-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.st-url-bar { flex: 1; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 6px 12px; font-size: 1rem; color: rgba(255,255,255,0.6); font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif; letter-spacing: 0.01em; display: flex; align-items: center; gap: 6px; }
.st-url-lock { width: 12px; height: 12px; color: rgba(255,255,255,0.6); flex-shrink: 0; }
.st-url-lock svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.st-screen { position: relative; background: #fff; aspect-ratio: 16/10; overflow: hidden; }
.st-screen-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-scan-overlay { position: absolute; inset: 0; pointer-events: none; }
.st-scan-box { position: absolute; right: 8%; top: 10%; width: 35%; height: 70%; border: 2px solid #29ff5e; border-radius: 4px; opacity: 0; }
.st-scan-corner { position: absolute; width: 10px; height: 10px; border-color: #29ff5e; border-style: solid; }
.st-scan-corner.tl { top: -2px; left: -2px; border-width: 3px 0 0 3px; }
.st-scan-corner.tr { top: -2px; right: -2px; border-width: 3px 3px 0 0; }
.st-scan-corner.bl { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; }
.st-scan-corner.br { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; }
.st-scan-line { position: absolute; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #29ff5e, transparent); top: 0; opacity: 0; }
.st-scan-badge { position: absolute; right: 8%; bottom: 12%; display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); padding: 6px 12px; border-radius: 8px; border: 1px solid rgba(41,255,94,0.3); opacity: 0; }
.st-scan-dot { width: 6px; height: 6px; border-radius: 50%; background: #29ff5e; }
.st-scan-cert { font-size: 1rem; font-weight: 700; color: #fff; font-family: 'SF Mono', monospace; }
.st-scan-label { font-size: 1rem; font-weight: 700; color: #29ff5e; letter-spacing: 0.05em; }
.st-sidepanel { position: absolute; top: 0; right: 0; width: 38%; height: 100%; border-left: 1px solid rgba(255,255,255,0.1); opacity: 0; transform: translateX(20px); }
.st-cs-embed { background: #000 !important; display: flex; flex-direction: column; font-family: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif; color: #fff; font-size: 11px; -webkit-font-smoothing: antialiased; border-radius: 0; overflow: hidden; padding-bottom: 0; border-left: 1px solid rgba(255,255,255,0.08); }
.st-cs-embed .cs-header { padding: 6px 8px; position: relative; opacity: 1 !important; }
.st-cs-embed .cs-header > div:last-child { position: absolute; top: 6px; right: 8px; }
.st-cs-embed .cs-header .cs-header-right { opacity: 1 !important; gap: 0; margin-left: 4px; }
.st-cs-embed .cs-header .cs-icon-btn { opacity: 1 !important; padding: 2px 4px; }
.st-cs-embed .cs-header .cs-icon-btn svg { width: 10px; height: 10px; }
.st-cs-embed .cs-header .cs-icon-btn span { font-size: 5px; }
.st-cs-embed .cs-body > * { opacity: 1 !important; }
.st-cs-embed .cs-body { padding: 8px; }
.st-cs-embed .cs-cert-card { margin-bottom: 8px; }
.st-cs-embed .cs-chip { font-size: 10px; padding: 3px 8px; }
.st-cs-embed .cs-progress-track { height: 6px; margin-bottom: 4px; }
.st-cs-embed .cs-cert-status-text { font-size: 9px; }
.st-cs-embed .cs-li-heading { font-size: 11px; margin-bottom: 6px; font-family: 'Mona Sans Condensed', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.st-cs-embed .cs-acc-label { font-family: 'Mona Sans Condensed', sans-serif !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 0.04em !important; }
.st-cs-embed .cs-bento-grid { gap: 4px; }
.st-cs-embed .cs-bento-card { padding: 8px 6px; border-radius: 8px; background: linear-gradient(135deg, #242424 0%, #363636 100%) !important; border: 1px solid rgba(255,255,255,0.10) !important; }
.st-cs-embed .cs-bento-label { font-size: 7px; font-family: 'Mona Sans Condensed', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.st-cs-embed .cs-bento-stat { font-size: 16px; font-family: 'Mona Sans Condensed', sans-serif; font-weight: 900; text-transform: uppercase; }
.st-cs-embed .cs-bento-sub { font-size: 7px; font-family: 'Mona Sans Condensed', sans-serif; font-weight: 700; text-transform: uppercase; }
.st-sp-header { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.st-sp-title { font-weight: 700; font-size: 1rem; flex: 1; }
.st-sp-dots { display: flex; gap: 3px; }
.st-sp-dots span { width: 5px; height: 5px; border-radius: 50%; }
.st-sp-body { flex: 1; padding: 12px; overflow: hidden; }
.st-sp-chip { display: flex; align-items: center; gap: 6px; background: rgba(41,255,94,0.08); border: 1px solid rgba(41,255,94,0.2); border-radius: 8px; padding: 6px 10px; font-family: 'SF Mono', monospace; font-size: 1rem; font-weight: 700; color: #29ff5e; opacity: 0; }
.st-sp-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #29ff5e; }
.st-sp-progress { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.07); margin-top: 10px; overflow: hidden; }
.st-sp-progress-fill { height: 100%; width: 0%; border-radius: 3px; background: #29ff5e; }
.st-sp-status { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 8px; }
.st-sp-grader-card { background: #131313; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.st-sp-grader-header { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.st-sp-grader-header svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 1.8; fill: none; }
.st-sp-grader-label { font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.st-sp-grader-radar { width: 100px; height: 100px; border-radius: 50%; position: relative; margin: 0 auto 14px; }
.st-radar-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); }
.st-radar-ring.r2 { inset: 25%; border-color: rgba(255,255,255,0.08); }
.st-radar-sweep { position: absolute; width: 50%; height: 2px; top: 50%; left: 50%; transform-origin: left center; background: linear-gradient(90deg, rgba(41,255,94,0.8), transparent); opacity: 0; }
.st-radar-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff200; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; }
.st-sp-grader-status { text-align: center; font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); min-height: 18px; margin-bottom: 8px; }
.st-sp-grader-result { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 6px; }
.st-sp-grader-logo { width: 56px; height: 56px; object-fit: contain; opacity: 0; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.st-sp-grader-confirm { display: flex; align-items: center; gap: 6px; font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif; font-size: 1rem; font-weight: 700; color: #29ff5e; opacity: 0; background: rgba(41,255,94,0.08); padding: 5px 12px; border-radius: 8px; border: 1px solid rgba(41,255,94,0.15); }
.st-sp-pricing-card { background: #131313; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 14px; overflow: hidden; }
.st-sp-pricing-title { font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.st-sp-pricing-sub { font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif; font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.st-sp-pricing-viewport { height: 200px; overflow: hidden; position: relative; }
.st-sp-pricing-scroll { position: absolute; width: 100%; }
.st-sp-pi-section { font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif; font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 0 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.st-sp-pi-row { display: flex; justify-content: space-between; padding: 6px 0; font-family: -apple-system, 'SF Pro Text', system-ui, sans-serif; font-size: 1rem; color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.04); }
.st-sp-pi-row span:last-child { font-weight: 700; color: #fff; font-family: 'SF Mono', monospace; }
.st-sp-pi-row.hl { background: rgba(41,255,94,0.06); border-radius: 4px; padding: 5px 6px; }
.st-sp-pi-row.hl span:last-child { color: #29ff5e; }

@media (max-width: 900px) { .st-hero { padding: 6rem 1.5rem 2rem; } .st-body { flex-direction: column; padding: 0 1.5rem; } .st-left { display: none; } .st-right { width: 100%; } .st-panel { min-height: auto; padding: 20px 0 40px; display: flex; flex-direction: column; align-items: stretch; } .st-monitor { max-width: 88%; margin: 0 auto; order: 1; } .st-monitor-bezel { padding-bottom: 32px; } .st-mobile-header { display: block; padding: 48px 0 20px; border-top: none; order: 2; text-align: center; width: 100%; } .st-mobile-header .st-tab-title { color: #111; font-size: clamp(1.625rem, 7vw, 2.5rem); text-align: center; } .st-mobile-header .st-tab-desc { color: rgba(0,0,0,0.5); font-size: 1rem; line-height: 1.5; margin-top: 10px; text-align: center; margin-left: auto; margin-right: auto; } .st-panel:first-child .st-mobile-header { padding-top: 48px; } }

@media (max-width: 1100px) { .fs-panel { padding: 0 0 80px; } .fs-visual { min-height: 320px; padding: 30px 20px; } .fs-info { flex-direction: column; gap: 12px; } }
@media (max-width: 768px) { .td-section { padding: 6rem 1rem 0; } .td-header { margin: 0 auto 40px; padding: 0; } .td-hero-card { min-height: auto; } .td-hero-text { padding: 30px 20px 20px; } .td-hero-visual { padding: 10px 20px 30px; } .td-hero-subs { gap: 38px; margin-bottom: 36px; margin-top: 66px; } .td-hero-sub-icon { width: 38px; height: 38px; } .td-hero-sub-icon svg { width: 18px; height: 18px; } .td-hero-sub-title { font-size: 1.25rem; } .td-hero-sub-desc { font-size: 1rem; } .td-hero-block { padding: 0; margin-bottom: 90px; } .td-two-col { gap: 90px; padding: 0; margin-bottom: 90px; } .td-visual { height: auto; min-height: 560px; padding: 30px 16px; overflow: visible; } .sc-card, .sq-card { max-width: 100%; } .td-card-title { font-size: clamp(1.75rem, 7vw, 3rem); } .st-hero { padding: 5rem 1rem 1.5rem; } .st-body { padding: 0 1rem; } .st-monitor { max-width: 90%; margin: 0 auto; } .st-monitor-bezel { padding: 10px; border-radius: 14px; } .st-dots span { width: 9px; height: 9px; } .st-browser-tab { font-size: 1rem; padding: 4px 10px; } .st-url-bar { font-size: 1rem; padding: 5px 10px; } .st-screen-img { display: none; } .st-screen { background: #1a1a1a; aspect-ratio: 3/4; } .st-sidepanel { width: 100%; position: relative; height: 100%; opacity: 1 !important; transform: none !important; } .st-cs-embed { font-size: 12px; } .st-tab-title { font-size: clamp(1.25rem, 5vw, 1.875rem); } .st-tab-content { padding: 10px 0; padding-top: 3rem; padding-bottom: 3rem; } .st-tab-features li { font-size: 1rem; } .st-feat-icon { width: 30px; height: 30px; } .st-feat-icon svg { width: 15px; height: 15px; } .st-tab-stat-num { font-size: 1.625rem; } .st-panel { padding: 30px 0; } .fs-body { padding: 0 1.5rem; } .fs-panel { padding: 0 0 80px; } .fs-visual { min-height: 280px; padding: 24px 16px; max-width: 100%; } .fs-info { max-width: 100%; margin-top: 20px; } .fs-info-title { font-size: clamp(1.375rem, 5vw, 4rem); } .fs-info-desc { font-size: 1.1rem; } .fs-tab-title { white-space: normal; } .sv-panel { max-width: 100%; } .sv-cols { padding: 12px 14px 24px; gap: 14px; } .sa-card { max-width: 100%; } .ai-card { max-width: 100%; } .pr-card { max-width: 100%; } .cd-dash { max-width: 100%; } .dp2-card { max-width: 100%; } .dp2-stats { grid-template-columns: repeat(2, 1fr); } .dp2-stat-num { font-size: 1.5rem; } }

@media (max-width: 480px) { .td-section { padding: 4rem 0.75rem 0; } .td-hero-text { padding: 24px 16px 16px; } .td-hero-visual { padding: 8px 16px 24px; } .td-hero-desc { font-size: 1rem; } .td-hero-subs { gap: 38px; margin-bottom: 36px; margin-top: 66px; } .td-hero-sub { gap: 10px; } .td-hero-sub-title { font-size: 1.375rem; } .td-hero-sub-desc { font-size: 1rem; } .td-two-col { gap: 90px; margin-top: 40px; margin-bottom: 90px; overflow: hidden; } .td-visual { height: auto; min-height: 480px; padding: 24px 12px; overflow: visible; } .td-card { margin-bottom: 20px; } .td-card-text { padding: 14px 0 0; } .td-hero-block { margin-bottom: 90px; } .sc-card, .sq-card { max-width: 100%; box-sizing: border-box; } .sc-card *, .sq-card * { max-width: 100%; box-sizing: border-box; } .sc-stats { grid-template-columns: repeat(2, 1fr); } .sc-wrap, .sq-wrap { padding: 10px; max-width: 100%; overflow: visible; } .sc-listing { flex-wrap: wrap; gap: 6px; } .sc-listing-title { font-size: 1rem; } .sc-listing-price { font-size: 1rem; } .sc-listing-badge { font-size: 1rem; padding: 3px 8px; } .sq-sale-row { font-size: 1rem; } .sq-body { overflow: visible; } .fs-panel { padding: 0 0 80px !important; } .fs-info { margin-top: 20px !important; margin-bottom: 20px; } .st-panel { padding: 30px 0 50px !important; } .st-mobile-header { padding: 30px 0 20px; } .td-card-title { font-size: clamp(1.75rem, 7vw, 3rem); } .td-card-desc { font-size: 1rem; } .td-eyebrow { padding: 6px 14px; font-size: 1rem; } .st-hero { padding: 4rem 0.75rem 1rem; } .st-body { padding: 0 0.75rem; } .st-tab-title { font-size: clamp(1.125rem, 5vw, 1.5rem); white-space: normal; } .st-tab-desc { font-size: 1rem; max-width: 100%; } .st-tab-features li { font-size: 1rem; gap: 8px; } .st-feat-icon { width: 26px; height: 26px; border-radius: 7px; } .st-feat-icon svg { width: 13px; height: 13px; } .st-tab-stat-num { font-size: 1.375rem; } .st-tab-stat-label { font-size: 1rem; } .st-badge { padding: 5px 10px; font-size: 1rem; } .st-tab-checks li { font-size: 1rem; } .st-monitor-bezel { padding: 8px; border-radius: 12px; border-width: 1.5px; } .st-monitor-topbar { font-size: 1rem; } .st-topbar-row { padding: 7px 10px 5px; gap: 6px; } .st-dots span { width: 8px; height: 8px; } .st-browser-tab { font-size: 1rem; padding: 3px 8px; } .st-nav-row { padding: 0 10px 7px; gap: 5px; } .st-nav-btn { width: 16px; height: 16px; } .st-nav-btn svg { width: 11px; height: 11px; } .st-url-bar { font-size: 1rem; padding: 4px 8px; } .st-panel { padding: 20px 0; } .st-screen-img { display: none; } .st-screen { background: #1a1a1a; aspect-ratio: 4/5; } .st-sidepanel { width: 100%; position: relative; height: 100%; opacity: 1 !important; transform: none !important; } .st-cs-embed { font-size: 13px; } .st-sp-body { padding: 8px; } .st-sp-chip { font-size: 1rem; padding: 4px 8px; } .st-sp-grader-card { padding: 10px; } .st-sp-grader-radar { width: 80px; height: 80px; } .st-sp-pricing-card { padding: 10px; } .st-sp-pricing-viewport { height: 160px; } .fs-body { padding: 0 1.25rem; } .fs-panel { padding: 0 0 80px; } .fs-visual { min-height: 240px; padding: 20px 12px; border-radius: 12px; } .fs-info-title { font-size: clamp(1.375rem, 5vw, 4rem); } .fs-info-desc { font-size: 1.1rem; } .fs-tab-title { font-size: clamp(1.25rem, 5vw, 2rem); } .sv-panel { border-radius: 10px; } .sv-cols { gap: 10px; padding: 10px 12px 20px; } .sv-col-label { font-size: 1rem; } .sv-status { padding: 8px 12px; } .sv-status-text { font-size: 1rem; } .sa-card { border-radius: 12px; } .sa-header { padding: 12px 14px; } .sa-header-label { font-size: 1rem; } .sa-body { padding: 14px; gap: 10px; } .sa-input { padding: 12px 14px; font-size: 1rem; min-height: 40px; } .sa-price-input { padding: 12px 14px; font-size: 1rem; min-height: 40px; } .ai-card { border-radius: 12px; } .ai-header { padding: 14px 16px; } .ai-header-label { font-size: 1rem; } .ai-body { padding: 12px 14px; gap: 10px; } .ai-insight { padding: 14px 12px; font-size: 1rem; } .pr-card { border-radius: 10px; } .pr-chart { height: 110px; } .cd-dash-port-stats { grid-template-columns: 1fr; gap: 8px; } .cd-dash-port-stat-val { font-size: 14px; } .dp2-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; } .dp2-stat { padding: 14px 6px 10px; } .dp2-stat-num { font-size: 1.375rem; } .dp2-tab { padding: 8px 10px; font-size: 1rem; } }
/* ================ FEATURE HERO BROWSER MOCKUP (fh-) ================ */
          .fh-section { background: #fff; padding: 6rem 1.5rem 7rem; text-align: center; display: none; }
          .fh-inner { max-width: 860px; margin: 0 auto; }
          .fh-heading { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; color: #111; text-transform: uppercase; line-height: 1.05; margin: 0 0 16px; }
          .fh-subtitle { font-size: clamp(1rem, 1.6vw, 1.125rem); color: rgba(0,0,0,0.55); line-height: 1.6; max-width: 540px; margin: 0 auto 48px; }
          .fh-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
          .fh-tab { padding: 10px 22px; border-radius: 999px; font-size: 1rem; font-weight: 700; font-family: inherit; cursor: pointer; border: 1.5px solid rgba(0,0,0,0.15); background: transparent; color: rgba(0,0,0,0.55); transition: all 0.18s ease; white-space: nowrap; }
          .fh-tab:hover { border-color: rgba(0,0,0,0.35); color: #111; }
          .fh-tab.active { background: #111; border-color: #111; color: #fff; }
          .fh-panel { display: none; }
          .fh-panel.active { display: flex; justify-content: center; }
          .fh-device { width: 100%; max-width: 680px; }
          .fh-browser { background: #1a1a1a; border-radius: 14px 14px 10px 10px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.12); }
          .fh-browser-bar { background: #2a2a2a; padding: 10px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
          .fh-browser-dots { display: flex; gap: 6px; }
          .fh-browser-dot { width: 10px; height: 10px; border-radius: 50%; }
          .fh-browser-dot:nth-child(1) { background: #FF5F57; }
          .fh-browser-dot:nth-child(2) { background: #FFBD2E; }
          .fh-browser-dot:nth-child(3) { background: #28CA41; }
          .fh-url-bar { flex: 1; background: rgba(255,255,255,0.07); border-radius: 6px; padding: 5px 12px; font-size: 0.75rem; color: rgba(255,255,255,0.4); font-family: monospace; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
          .fh-screen { display: flex; height: 380px; position: relative; overflow: hidden; }
          .fh-ebay-side { flex: 1; background: #f6f6f6; padding: 16px; overflow: hidden; display: flex; flex-direction: column; gap: 8px; }
          .fh-ebay-img { width: 100%; aspect-ratio: 1; background: #e0e0e0; border-radius: 6px; overflow: hidden; }
          .fh-ebay-img img { width: 100%; height: 100%; object-fit: cover; }
          .fh-ebay-title { height: 12px; background: #ccc; border-radius: 4px; width: 85%; }
          .fh-ebay-price { height: 18px; background: #bbb; border-radius: 4px; width: 40%; }
          .fh-ext-side { width: 220px; flex-shrink: 0; background: #111; border-left: 1px solid rgba(255,255,255,0.08); overflow-y: auto; overflow-x: hidden; }
          .fh-ext-side::-webkit-scrollbar { display: none; }
          .fh-sp-header { padding: 8px 10px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.07); background: #0e0e0e; }
          .fh-sp-logo { height: 14px; width: auto; }
          .fh-sp-dots { display: flex; gap: 4px; }
          .fh-sp-dot { width: 6px; height: 6px; border-radius: 50%; }
          .fh-sp-body { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
          .fh-cert-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 8px 10px; }
          .fh-chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; margin-bottom: 6px; }
          .fh-chip.searching { background: rgba(34,199,122,0.1); border: 1px solid rgba(34,199,122,0.25); color: #29ff5e; }
          .fh-chip.found { background: rgba(41,255,94,0.12); border: 1px solid rgba(41,255,94,0.35); color: #29ff5e; }
          .fh-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
          .fh-chip-spinner { width: 7px; height: 7px; border: 1.5px solid rgba(41,255,94,0.3); border-top-color: #29ff5e; border-radius: 50%; animation: fh-spin 0.7s linear infinite; }
          @keyframes fh-spin { to { transform: rotate(360deg); } }
          .fh-progress-track { height: 5px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; margin-bottom: 5px; }
          .fh-progress-fill { height: 100%; border-radius: 999px; background: #29ff5e; width: 0%; transition: width 0.6s ease; }
          .fh-cert-status { font-size: 9px; color: rgba(255,255,255,0.45); }
          .fh-grader-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 10px; display: flex; align-items: center; gap: 8px; }
          .fh-grader-badge { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; color: #fff; flex-shrink: 0; }
          .fh-grader-info { flex: 1; min-width: 0; }
          .fh-grader-name { font-size: 11px; font-weight: 800; color: #fff; }
          .fh-grader-sub { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 2px; }
          .fh-grader-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(41,255,94,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 0; }
          .fh-grader-check svg { stroke: #29ff5e; }
          .fh-pricing-header { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
          .fh-price-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); opacity: 0; transform: translateX(-6px); }
          .fh-price-row:last-child { border-bottom: none; }
          .fh-price-label { font-size: 9px; color: rgba(255,255,255,0.5); }
          .fh-price-val { font-size: 10px; font-weight: 700; color: #fff; font-family: monospace; }
          .fh-price-val.green { color: #29ff5e; }
          .fh-bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
          .fh-bento { background: linear-gradient(135deg, #242424 0%, #363636 100%); border: 1px solid rgba(255,255,255,0.10); border-radius: 7px; padding: 7px 8px; opacity: 0; transform: translateY(6px); }
          .fh-bento-label { font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
          .fh-bento-val { font-size: 15px; font-weight: 900; color: #fff; line-height: 1; font-family: var(--font-heading); }
          .fh-bento-sub { font-size: 7px; color: rgba(255,255,255,0.4); margin-top: 2px; }
          @media (max-width: 640px) { .fh-screen { height: 280px; } .fh-ext-side { width: 160px; } .fh-tab { font-size: 1rem; padding: 8px 14px; } }
/* ================ FEATURE TABLET SHOWCASE (ft-) ================ */
          .ft-section { background: #ffffff; padding: 7rem 1.5rem 8rem; text-align: center; }
          .ft-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
          .ft-section .feat-eyebrow { display: inline-block; margin: 0 auto 20px; }
          .ft-heading { font-family: var(--font-heading); font-size: clamp(2.75rem, 5vw, 4rem); font-weight: 900; color: #000; text-transform: uppercase; line-height: 1.05; margin: 0 0 16px; letter-spacing: -0.02em; }
          .ft-heading em { font-style: normal; color: #29ff5e; }
          .ft-subtitle { font-size: clamp(1rem, 1.5vw, 1.125rem); color: rgba(0,0,0,0.55); line-height: 1.6; max-width: 520px; margin: 0 auto 48px; }
          .ft-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
          .ft-tab { padding: 10px 24px; border-radius: 999px; font-size: 1.2rem; font-weight: 800; font-family: var(--font-heading, inherit); text-transform: uppercase; cursor: pointer; border: 1.5px solid rgba(0,0,0,0.15); background: transparent; color: rgba(0,0,0,0.5); transition: all 0.18s ease; white-space: nowrap; }
          .ft-tab:hover { border-color: rgba(0,0,0,0.4); color: #111; }
          .ft-tab.active { background: #111; border-color: #111; color: #fff; }
          .ft-panel { display: none; flex-direction: column; align-items: center; }
          .ft-panel.active { display: flex; }
          .ft-tablet-wrap { width: 100%; max-width: 920px; margin: 0 auto 92px; }
          .ft-tablet { background: #1c1c1e; border-radius: 28px; padding: 12px; box-shadow: 0 60px 130px rgba(0,0,0,0.3), 0 20px 50px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.07); }
          .ft-tablet-screen { display: flex; border-radius: 18px; overflow: hidden; aspect-ratio: 1.72; }
          .ft-ebay-half { flex: 0 0 70%; overflow: hidden; background: #f0f0f0; }
          .ft-ebay-half img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
          .ft-cd-half { flex: 1; background: #000; display: flex; flex-direction: column; overflow: hidden; text-align: left; }
          .ft-cd-hdr { display: flex; align-items: center; padding: 6px 8px; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 3px; flex-shrink: 0; }
          .ft-cd-hdr-logo { width: 22px; height: 22px; border-radius: 5px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-right: 2px; }
          .ft-cd-hdr-icons { display: flex; flex: 1; }
          .ft-cd-hdr-icon { display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 2px 4px; opacity: 0.55; }
          .ft-cd-hdr-icon svg { width: 9px; height: 9px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
          .ft-cd-hdr-icon span { font-size: 5px; color: rgba(255,255,255,0.7); white-space: nowrap; }
          .ft-cd-hdr-dots { display: flex; gap: 3px; margin-left: auto; flex-shrink: 0; }
          .ft-cd-hdr-dot { width: 7px; height: 7px; border-radius: 50%; }
          .ft-cd-body { flex: 1; overflow: hidden; padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; }
          .ft-cert-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
          .ft-cert-chip { display: flex; align-items: center; gap: 6px; background: rgba(41,255,94,0.1); border: 1.5px solid rgba(41,255,94,0.28); border-radius: 999px; padding: 5px 10px; font-size: 10px; font-weight: 800; color: #29ff5e; font-family: monospace; }
          .ft-cert-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #29ff5e; flex-shrink: 0; }
          .ft-cert-chk { width: 20px; height: 20px; min-width: 20px; border-radius: 5px; background: #29ff5e; display: flex; align-items: center; justify-content: center; }
          .ft-cert-chk svg { width: 11px; height: 11px; stroke: #000; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
          .ft-cert-bar-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
          .ft-cert-bar-fill { height: 100%; background: #29ff5e; border-radius: 3px; width: 0%; }
          .ft-cert-status-txt { font-size: 10px; color: rgba(255,255,255,0.45); }
          .ft-li-hdr { font-size: 10px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; color: #fff; margin-top: 2px; font-family: var(--font-heading, inherit); }
          .ft-bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
          .ft-bento-c { background: linear-gradient(135deg, #242424 0%, #363636 100%); border: 1px solid rgba(255,255,255,0.10); border-radius: 9px; padding: 6px 8px; }
          .ft-acc-section { display: flex; flex-direction: column; gap: 4px; margin-top: 5px; flex-shrink: 0; }
          .ft-acc-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 8px; background: #1c1c1e; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; gap: 6px; flex-shrink: 0; }
          .ft-acc-lbl { font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; color: #fff; display: flex; align-items: center; gap: 5px; font-family: var(--font-heading, inherit); }
          .ft-acc-lbl svg { width: 10px; height: 10px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
          .ft-acc-badge { font-size: 7px; font-weight: 800; padding: 2px 6px; border-radius: 999px; white-space: nowrap; }
          .ft-acc-badge.green  { background: rgba(41,255,94,0.12);  color: #29ff5e; border: 1px solid rgba(34,199,122,0.30); }
          .ft-acc-badge.red    { background: rgba(255,79,106,0.12); color: #FF4F6A; border: 1px solid rgba(255,79,106,0.32); }
          .ft-acc-badge.blue   { background: rgba(77,163,255,0.12); color: #4DA3FF; border: 1px solid rgba(62,142,255,0.32); }
          .ft-acc-badge.orange { background: rgba(240,168,48,0.12); color: #F0A830; border: 1px solid rgba(240,168,48,0.32); }
          .ft-acc-arr { color: rgba(255,255,255,0.25); font-size: 10px; flex-shrink: 0; }
          .ft-open-cert-btn { display: block; width: 100%; text-align: center; background: #29ff5e; color: #000; font-size: 7.5px; font-weight: 900; padding: 5px; border-radius: 6px; flex-shrink: 0; font-family: var(--font-heading, inherit); text-transform: uppercase; }
          .ft-ai-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; flex-shrink: 0; }
          .ft-ai-lbl { font-size: 7.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; font-family: var(--font-heading, inherit); }
          .ft-ai-avoid { font-size: 6.5px; font-weight: 800; padding: 2px 6px; border-radius: 999px; background: rgba(255,100,60,0.15); color: #ff7050; border: 1px solid rgba(255,100,60,0.3); }
          .ft-ai-snipe { font-size: 6.5px; font-weight: 800; padding: 2px 6px; border-radius: 999px; background: rgba(41,255,94,0.12); color: #29ff5e; border: 1px solid rgba(41,255,94,0.28); }
          .ft-bento-lbl { font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: rgba(255,255,255,0.38); margin-bottom: 2px; font-family: var(--font-heading, inherit); }
          .ft-bento-val { font-size: 20px; font-weight: 900; color: #fff; line-height: 1; font-family: var(--font-heading,inherit); }
          .ft-bento-sub { font-size: 7px; color: rgba(255,255,255,0.38); margin-top: 2px; }
          .ft-gd-hdr { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.9); flex-shrink: 0; font-family: var(--font-heading, inherit); text-transform: uppercase; }
          .ft-gd-hdr svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.6; flex-shrink: 0; }
          .ft-radar-wrap { flex: 1; display: flex; align-items: center; justify-content: center; }
          .ft-radar { width: 90px; height: 90px; position: relative; display: flex; align-items: center; justify-content: center; }
          .ft-radar-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.1); }
          .ft-radar-ring.r1 { width: 100%; height: 100%; }
          .ft-radar-ring.r2 { width: 58%; height: 58%; }
          .ft-radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(rgba(41,255,94,0.25) 0deg, transparent 100deg); opacity: 0; }
          .ft-radar-dot { width: 9px; height: 9px; border-radius: 50%; background: #29ff5e; box-shadow: 0 0 8px #29ff5e, 0 0 16px rgba(41,255,94,0.4); opacity: 0; position: absolute; }
          .ft-gd-found { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); text-align: center; flex-shrink: 0; }
          .ft-gd-logo-txt { display: flex; align-items: center; justify-content: center; flex-shrink: 0; min-height: 28px; }
          .ft-gd-logo-txt img { height: 28px; width: auto; max-width: 80px; object-fit: contain; filter: brightness(0) invert(1); }
          .ft-gd-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(41,255,94,0.12); border: 1.5px solid #29ff5e; color: #29ff5e; font-size: 12px; font-weight: 800; padding: 7px 16px; border-radius: 999px; flex-shrink: 0; margin: 0 auto; width: fit-content; }
          .ft-gd-pill svg { width: 12px; height: 12px; stroke: #29ff5e; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
          .ft-sc-acc-hdr { display: flex; align-items: center; justify-content: space-between; padding: 6px 0 4px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 4px; }
          .ft-sc-acc-title { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; color: #fff; font-family: var(--font-heading,inherit); text-transform: uppercase; letter-spacing: 0.05em; }
          .ft-sc-status-txt { font-size: 9px; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
          .ft-sc-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 6px; flex-shrink: 0; }
          .ft-sc-btn { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 6px 8px; background: #29ff5e; color: #000; border: none; border-radius: 7px; font-size: 9px; font-weight: 800; font-family: var(--font-heading,inherit); text-transform: uppercase; letter-spacing: 0.03em; cursor: default; }
          .ft-sc-popout-btn { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 6px 8px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.1); border-radius: 7px; font-size: 9px; font-weight: 700; font-family: var(--font-heading,inherit); text-transform: uppercase; letter-spacing: 0.03em; cursor: default; }
          .ft-sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; width: 100%; flex-shrink: 0; }
          .ft-sc-item { display: flex; flex-direction: column; }
          .ft-sc-card { background: #1a1a1a; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; padding: 6px 6px 6px; gap: 6px; }
          .ft-sc-card-lbl { font-size: 8px; font-weight: 700; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
          .ft-sc-img-wrap { width: 100%; aspect-ratio: 2/3; overflow: hidden; background: #111; border-radius: 6px; position: relative; }
          .ft-sc-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
          .ft-sc-shimmer { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%); background-size: 200% 100%; animation: ftScShimmer 1s ease infinite; z-index: 1; }
          @keyframes ftScShimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
          .ft-sc-inspect-btn { padding: 6px; background: #fff200; color: #000; font-size: 9px; font-weight: 700; text-align: center; border-radius: 7px; cursor: default; }
          .ft-price-section-hdr { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.28); padding: 2px 0; }
          .ft-price-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); opacity: 0; transform: translateX(-8px); }
          .ft-price-row:last-child { border-bottom: none; }
          .ft-price-lbl { font-size: 10px; color: rgba(255,255,255,0.45); }
          .ft-price-val { font-size: 11px; font-weight: 700; color: #fff; font-family: monospace; }
          .ft-price-val.green { color: #29ff5e; }
          .ft-feats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; text-align: left; }
          .ft-feat { display: flex; align-items: flex-start; gap: 14px; min-width: 220px; flex: 1; }
          .ft-feat-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: #000; display: flex; align-items: center; justify-content: center; }
          .ft-feat-icon svg { width: 20px; height: 20px; stroke: #29ff5e; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
          .ft-feat-title { font-size: 1.525rem; font-weight: 800; font-family: 'Mona Sans Condensed', sans-serif; color: #111; margin-bottom: 4px; text-transform: uppercase; }
          .ft-feat-desc { font-size: 1rem; color: rgba(0,0,0,0.5); line-height: 1.55; }
          @media (max-width: 1100px) { .ft-feats { gap: 20px; } .ft-feat { flex-direction: row; align-items: flex-start; flex: 0 0 calc(50% - 10px); min-width: 0; } .ft-feat > div { display: flex; flex-direction: column; } }
          @media (max-width: 768px) { .ft-section { padding: 4rem 1rem 5rem; } .ft-heading { font-size: clamp(2.75rem, 11vw, 4rem); margin: 0 0 10px; } .ft-subtitle { font-size: 1rem; margin: 0 auto 32px; } .ft-tablet-wrap { max-width: 100%; margin: 0 auto 48px; overflow: hidden; } .ft-tablet { border-radius: 20px; padding: 8px; } .ft-tablet-screen { aspect-ratio: 1.4; } .ft-ebay-half { flex: 0 0 65%; } .ft-cd-half { flex: 1; min-height: 0; overflow: hidden; } .ft-cd-body { padding: 6px 8px; gap: 4px; } .ft-bento-val { font-size: 14px; } .ft-gd-hdr { font-size: 9px; } .ft-radar { width: 60px; height: 60px; } .ft-gd-found { font-size: 10px; } .ft-gd-pill { font-size: 9px; padding: 4px 10px; } .ft-cert-chip { font-size: 8px; padding: 3px 8px; } .ft-li-hdr { font-size: 8px; } .ft-acc-row { padding: 4px 6px; } .ft-acc-lbl { font-size: 7px; } .ft-acc-badge { font-size: 6px; } .ft-bento-grid { gap: 3px; } .ft-bento-lbl { font-size: 6px; } .ft-bento-sub { font-size: 6px; } .ft-sc-grid { gap: 4px; } .ft-sc-img-wrap { aspect-ratio: 3/4; } .ft-sc-card { padding: 4px; gap: 4px; } .ft-sc-card-lbl { font-size: 7px; } .ft-sc-btn { font-size: 7px; padding: 4px 6px; } .ft-sc-popout-btn { font-size: 7px; padding: 4px 6px; } .ft-sc-inspect-btn { font-size: 7px; padding: 4px; } .ft-open-cert-btn { font-size: 6px; padding: 4px; } .ft-feats { flex-direction: column; gap: 18px; padding: 0 4px; } .ft-feat-title { font-size: 1.6rem; } .ft-feat-desc { font-size: 1rem; } .ft-feat-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 10px; } .ft-feat-icon svg { width: 16px; height: 16px; } }
          @media (max-width: 640px) { .ft-section { padding: 3rem 0.75rem 4rem; } .ft-tab { font-size: 1rem; padding: 8px 16px; } .ft-tabs { gap: 6px; margin-bottom: 28px; } .ft-tablet { border-radius: 14px; padding: 6px; } .ft-tablet-wrap { margin: 0 auto 36px; } .ft-tablet-screen { aspect-ratio: 1.3; } .ft-ebay-half { flex: 0 0 60%; } .ft-cd-body { padding: 5px 6px; gap: 3px; } .ft-bento-val { font-size: 14px; } .ft-bento-grid { gap: 4px; } .ft-acc-row { padding: 5px 6px; } }
/* ================ DATA TOOLS SECTION (dt-) ================ */
          .dt-section { background: #000000; padding: 8rem 2rem; position: relative; }
          .dt-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
          .dt-heading { font-family: var(--font-heading); text-transform: uppercase; color: #fff; line-height: 1.05; margin: 0 0 1rem; letter-spacing: -0.02em; }
          .dt-subtitle { font-family: var(--font-body); font-size: 1.25rem; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 3rem; line-height: 1.6; }
          .dt-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 2rem; }
          .dt-tab { padding: 10px 24px; border-radius: 999px; border: none; background: transparent; color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.25s, color 0.25s; }
          .dt-tab:hover { color: rgba(255,255,255,0.7); }
          .dt-tab.active { background: #29ff5e; color: #000; }
          .dt-panel-wrap { background: #141414; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; min-height: 450px; position: relative; overflow: hidden; }
          .dt-panel { display: none; padding: 28px; text-align: left; }
          .dt-panel.active { display: block; }
          .dt-tr-tabs { display: flex; align-items: center; background: #1a1a1a; border-radius: 12px; padding: 6px; overflow: hidden; margin-bottom: 8px; }
          .dt-tr-tab { padding: 8px 12px; font-size: 1rem; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.6); border: none; background: transparent; cursor: default; white-space: nowrap; font-family: var(--font-body); }
          .dt-tr-tab.active { background: #29ff5e; color: #000; border-radius: 8px; }
          .dt-tr-label { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin: 16px 0 10px; font-family: var(--font-body); font-weight: 600; }
          .dt-tr-index { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
          .dt-tr-index-title { font-size: 1rem; font-weight: 700; color: #fff; }
          .dt-tr-index-change { font-size: 1rem; color: rgba(255,255,255,0.6); margin-left: 8px; }
          .dt-tr-index-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
          .dt-tr-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; margin-bottom: 8px; opacity: 0; transform: translateY(12px); }
          .dt-tr-rank { font-size: 1.125rem; font-weight: 400; color: rgba(255,255,255,0.6); width: 24px; text-align: center; flex-shrink: 0; }
          .dt-tr-info { flex: 1; min-width: 0; }
          .dt-tr-name { font-size: 1rem; font-weight: 700; color: #fff; }
          .dt-tr-set { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
          .dt-tr-stats { text-align: right; flex-shrink: 0; }
          .dt-tr-views { font-size: 1rem; color: #29ff5e; font-weight: 600; }
          .dt-tr-price { font-size: 1.125rem; font-weight: 900; color: #fff; font-family: 'SF Mono','Cascadia Mono','Consolas',monospace; }
          .dt-ex-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
          .dt-ex-header-icon { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.5; }
          .dt-ex-header-label { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-heading); }
          .dt-ex-chevron { margin-left: auto; width: 16px; height: 16px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 2; }
          .dt-ex-desc { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.5; }
          .dt-ex-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
          .dt-ex-row { display: flex; align-items: center; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; margin-bottom: 8px; opacity: 0; transform: translateY(12px); }
          .dt-ex-row-name { font-size: 1rem; font-weight: 600; color: #fff; flex: 1; }
          .dt-ex-row-count { font-size: 1rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); margin-right: 12px; }
          .dt-ex-row-btn { font-size: 1rem; font-weight: 700; padding: 6px 16px; border-radius: 999px; border: 1px solid rgba(41,255,94,0.3); background: rgba(41,255,94,0.08); color: #29ff5e; cursor: pointer; white-space: nowrap; }
          .dt-ex-big-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border-radius: 12px; border: none; background: #29ff5e; color: #000; font-size: 1rem; font-weight: 800; cursor: pointer; margin-top: 16px; opacity: 0; transform: translateY(8px); }
          .dt-wl-topbar { display: flex; align-items: center; gap: 4px; margin-bottom: 16px; flex-wrap: wrap; }
          .dt-wl-tab { padding: 7px 14px; border-radius: 999px; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); background: transparent; border: 1px solid transparent; cursor: default; transition: none; }
          .dt-wl-tab.active { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.12); }
          .dt-wl-clear { margin-left: auto; padding: 5px 14px; border-radius: 999px; font-size: 1rem; font-weight: 700; background: rgba(255,77,77,0.12); color: #ff6b6b; border: none; cursor: pointer; }
          .dt-wl-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 16px; margin-bottom: 10px; opacity: 0; transform: translateY(16px); }
          .dt-wl-card-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
          .dt-wl-card-info { flex: 1; min-width: 0; }
          .dt-wl-card-title { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 4px; }
          .dt-wl-card-time { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
          .dt-wl-card-cert { display: inline-block; font-size: 1rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: rgba(41,255,94,0.12); color: #29ff5e; margin-bottom: 10px; }
          .dt-wl-card-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
          .dt-wl-btn { padding: 6px 12px; border-radius: 999px; font-size: 1rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); cursor: pointer; white-space: nowrap; }
          .dt-wl-card-side { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
          .dt-wl-side-btn { padding: 6px 14px; border-radius: 999px; font-size: 1rem; font-weight: 700; border: 1px solid rgba(255,200,50,0.25); background: rgba(255,200,50,0.08); color: #ffc832; cursor: pointer; white-space: nowrap; text-align: center; }
          @media (max-width: 700px) { .dt-section { padding: 5rem 1.2rem; } .dt-tr-tabs { flex-wrap: wrap; gap: 4px; } .dt-tr-row { flex-wrap: wrap; gap: 8px; } .dt-ex-row { flex-wrap: wrap; gap: 8px; } .dt-wl-card-top { flex-direction: column; } .dt-wl-card-side { flex-direction: row; } .dt-tabs { flex-wrap: wrap; } }
          @media (max-width: 480px) { .dt-section { padding: 3.5rem 1rem; } .dt-panel { padding: 18px; } .dt-tab { font-size: 1rem; padding: 8px 16px; } }

/* ================ SUPPORTED GRADERS MARQUEE (sg-) ================ */
          .sg-section { background: #000; padding: 8rem 2rem; overflow: hidden; position: relative; }
          .sg-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
          .sg-eyebrow { display: inline-block; padding: 0.4rem 1.2rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-family: var(--font-body); }
          .sg-heading { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4.2rem); text-transform: uppercase; color: #fff; line-height: 1.05; margin: 0 0 1.2rem; letter-spacing: -0.02em; }
          .sg-subtitle { font-family: var(--font-body); font-size: 1.25rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 4rem; line-height: 1.6; }
          .sg-marquee-wrap { position: relative; width: 100%; overflow: hidden; margin-bottom: 3.5rem; }
          .sg-marquee-track { display: flex; align-items: center; gap: 5rem; width: max-content; animation: sg-scroll 20s linear infinite; }
          .sg-logo { height: 48px; width: auto; opacity: 0.5; filter: brightness(0) invert(1); transition: opacity 0.3s ease, transform 0.3s ease; flex-shrink: 0; }
          .sg-logo:hover { opacity: 1; transform: scale(1.1); }
          @keyframes sg-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
          .sg-categories { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
          .sg-cat-pill { padding: 0.5rem 1.4rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.03em; transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease; }
          .sg-cat-pill:hover { border-color: rgba(255,242,0,0.4); color: #fff200; background: rgba(255,242,0,0.06); }
          @media (max-width: 768px) { .sg-section { padding: 5rem 1.2rem; } .sg-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); } .sg-subtitle { font-size: 1rem; margin-bottom: 2.5rem; } .sg-logo { height: 36px; } .sg-marquee-wrap { margin-bottom: 2.5rem; } .sg-marquee-track { gap: 3rem; } }
          @media (max-width: 480px) { .sg-section { padding: 3.5rem 1rem; } .sg-heading { font-size: 1.5rem; } .sg-subtitle { font-size: 1rem; margin-bottom: 2rem; } .sg-logo { height: 76px; } .sg-marquee-wrap { margin-bottom: 2rem; } .sg-marquee-track { gap: 2rem; } .sg-cat-pill { font-size: 1rem; padding: 0.4rem 1rem; } }

/* ================ HOW IT WORKS TIMELINE (tl-) ================ */
.tl-section { background: #000000; padding: 8rem 2rem; }
.tl-outer { max-width: 1200px; margin: 0 auto; display: flex; gap: 80px; align-items: flex-start; }
.tl-left { width: 420px; flex-shrink: 0; position: sticky; top: 20vh; }
.tl-left-heading { font-family: var(--font-heading); font-size: clamp(2rem,4vw,3rem); font-weight:900; color:#fff; text-transform:uppercase; letter-spacing:-0.02em; line-height:1.1; margin:0 0 16px; }
.tl-left-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height:1.5; }
.tl-right { flex: 1; position: relative; padding-left: 50px; }
.tl-track { position: absolute; left: 0; top: 0; bottom: 0; width: 20px; }
.tl-track-line { position: absolute; left: 9px; top: 0; bottom: 0; width: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.tl-track-fill { position: absolute; left: 9px; top: 0; width: 3px; height: 0; background: #29ff5e; border-radius: 2px; }
.tl-track-dot { position: absolute; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.15); z-index: 2; transition: background 0.3s, box-shadow 0.3s; }
.tl-track-dot.active { background: #29ff5e; box-shadow: 0 0 8px rgba(41,255,94,0.4); }
.tl-step { padding-bottom: 80px; opacity: 0; transform: translateY(14px); }
.tl-step:last-child { padding-bottom: 0; }
.tl-step-label { font-family: var(--font-heading); font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; color: #29ff5e; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.tl-step-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: #fff; text-transform: uppercase; margin-bottom: 10px; }
.tl-step-desc { font-size: 1.062rem; color: rgba(255,255,255,0.6); line-height: 1.55; max-width: 380px; }
@media (max-width: 900px) { .tl-section { padding: 4rem 1.2rem 8rem; } .tl-outer { flex-direction: column; gap: 40px; } .tl-left { width: 100%; position: static; } .tl-left-heading { font-size: clamp(1.625rem, 9vw, 3.5rem); } .tl-left-sub { margin-bottom: 0; } .tl-right { padding-left: 40px; } .tl-step { padding-bottom: 60px; } .tl-step-label { font-size: clamp(2.625rem, 10vw, 4rem); } .tl-step-title { font-size: clamp(1.5rem, 6vw, 2.25rem); } .tl-step-desc { font-size: 1rem; } }
/* ================ TESTIMONIALS (tm-) ================ */
.tm-section { background: #f5f5f5; padding: 120px 40px; }
.tm-wrap { max-width: 1280px; margin: 0 auto; text-align: center; }
.tm-eyebrow { display: inline-block; background: #fff; border: 1px solid #e0e0e0; border-radius: 999px; padding: 8px 20px; font-size: 1rem; font-weight: 600; color: #222; margin-bottom: 28px; }
.tm-heading { font-family: var(--font-heading); font-weight: 900; color: #111; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.05; margin: 0 auto 20px; max-width: 900px; }
.tm-subtitle { font-family: var(--font-body); font-size: clamp(1rem, 1.2vw, 1.062rem); color: #555; line-height: 1.6; max-width: 680px; margin: 0 auto 36px; }
.tm-download { display: inline-flex; align-items: center; gap: 10px; padding: 12px 28px; background: #29ff5e; color: #000; border-radius: 999px; font-size: clamp(1rem, 1.2vw, 1rem); font-weight: 700; text-decoration: none; border: 1px solid #22e650; transition: transform 0.15s, box-shadow 0.15s; margin-bottom: 60px; }
.tm-download:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(41, 255, 94, 0.3); }
.tm-download-icon { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: #000; border-radius: 50%; }
.tm-download-icon svg { width: 12px; height: 12px; }
.tm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left; }
.tm-card { background: #e8e8e8; border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 0; }
.tm-quote-mark { font-size: 2.25rem; font-weight: 900; color: #111; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.tm-quote { font-size: 1rem; color: #333; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.tm-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #111; margin-bottom: 4px; }
.tm-role { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: #666; }
@media (max-width: 1100px) { .tm-section { padding: 80px 24px; } .tm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .tm-section { padding: 64px 16px; } .tm-grid { grid-template-columns: 1fr; } .tm-subtitle { font-size: 1rem; margin-bottom: 24px; } .tm-download { font-size: 1rem; padding: 10px 22px; margin-bottom: 40px; } }
@media (max-width: 480px) { .tm-section { padding: 48px 12px; } .tm-card { padding: 20px; } .tm-quote { font-size: 1rem; } .tm-name { font-size: 1rem; } }

/* ================ BANNER STATS (bs-) ================ */
.bs-section { background: #29ff5e; width: 100%; padding: 100px 24px 0; overflow: hidden; position: relative; }
.bs-container { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.bs-eyebrow { display: inline-flex; align-items: center; background: #000; color: #fff; font-size: 1rem; font-weight: 600; padding: 6px 18px; border-radius: 999px; border: none; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px; }
.bs-heading { font-family: var(--font-heading); font-weight: 900; color: #000; text-transform: uppercase; line-height: 1.05; margin: 0 0 20px; max-width: 900px; }
.bs-subtitle { font-size: clamp(1rem, 1.8vw, 1.25rem); color: rgba(0, 0, 0, 0.6); line-height: 1.6; max-width: 680px; margin: 0 0 64px; font-weight: 400; }
.bs-stats-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; width: 100%; max-width: 1200px; margin-bottom: 72px; }
.bs-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bs-stat-number { font-family: var(--font-heading); font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 900; white-space: nowrap; color: #000; line-height: 1.1; text-transform: uppercase; }
.bs-stat-label { font-size: 1rem; color: rgba(0, 0, 0, 0.5); font-weight: 500; line-height: 1.4; }
.bs-image-wrap { width: 100%; display: flex; justify-content: center; margin-bottom: -60px; }
.bs-image { width: 100%; max-width: 1200px; border-radius: 16px 16px 0 0; display: block; }
@media (max-width: 1100px) { .bs-section { padding: 80px 20px 0; } .bs-stats-row { gap: 32px 20px; margin-bottom: 56px; } .bs-subtitle { margin-bottom: 48px; } }
@media (max-width: 768px) { .bs-section { padding: 72px 20px 0; } .bs-stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; margin-bottom: 56px; } .bs-subtitle { font-size: 1rem; margin-bottom: 40px; } .bs-image-wrap { width: 300% !important; } }
@media (max-width: 480px) { .bs-section { padding: 48px 16px 0; } .bs-stats-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; } .bs-subtitle { font-size: 1rem; margin-bottom: 32px; } .bs-stat-number { font-size: 2rem; } .bs-stat-label { font-size: 1rem; } .bs-image { border-radius: 12px 12px 0 0; } .bs-image-wrap { width: 300% !important; } }

/* ================ FAQ (faq-) ================ */
.faq-section { background: #fff; width: 100%; padding: 100px 24px; position: relative; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.faq-eyebrow { display: inline-flex; align-items: center; background: #fff; color: #222; font-size: 1rem; font-weight: 600; padding: 6px 18px; border-radius: 999px; border: 1px solid #e0e0e0; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px; }
.faq-heading { font-family: var(--font-heading); font-weight: 900; color: #111; text-transform: uppercase; line-height: 1.1; margin: 0 0 16px; }
.faq-subtitle { font-size: 1.062rem; color: #666; margin: 0 0 48px; line-height: 1.5; }
.faq-list { width: 100%; text-align: left; }
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 1.062rem; font-weight: 700; color: #111; cursor: pointer; background: none; border: none; width: 100%; text-align: left; gap: 16px; font-family: inherit; }
.faq-question:hover { color: #333; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform 0.3s ease; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: #111; border-radius: 2px; transition: transform 0.3s ease; }
.faq-icon::before { width: 16px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 16px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { font-size: 1rem; color: #555; line-height: 1.6; padding-bottom: 20px; }
@media (max-width: 768px) { .faq-section { padding: 72px 20px; } .faq-subtitle { font-size: 1rem; margin-bottom: 36px; } }
@media (max-width: 600px) { .faq-section { padding: 56px 16px; } .faq-question { font-size: 1rem; padding: 16px 0; } .faq-answer-inner { font-size: 1rem; } }
@media (max-width: 480px) { .faq-section { padding: 40px 12px; } .faq-subtitle { font-size: 1rem; margin-bottom: 28px; } .faq-question { font-size: 1rem; gap: 12px; } .faq-answer-inner { font-size: 1rem; } .faq-icon { width: 20px; height: 20px; } }

/* ================ PRICING CARDS (pc-) ================ */
.pc-section { background: #000; padding: 120px 24px; }
.pc-wrapper { max-width: 1300px; margin: 0 auto; text-align: center; }
.pc-eyebrow { display: inline-block; font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); background: transparent; padding: 6px 18px; border-radius: 999px; margin-bottom: 24px; }
.pc-heading { font-family: var(--font-heading); font-size: clamp(1.625rem, 9vw, 3.5rem); font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; }
.pc-subtitle { font-size: 1.062rem; color: rgba(255,255,255,0.6); margin: 0 0 56px; }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1200px; }
.pc-card { position: relative; background: #141414; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px 32px 36px; text-align: left; display: flex; flex-direction: column; }
.pc-card--pro { background: #29ff5e; border: 1.5px solid #29ff5e; color: #000; }
.pc-card--pro .pc-plan-name, .pc-card--pro .pc-price-amount, .pc-card--pro .pc-price-period, .pc-card--pro .pc-tagline, .pc-card--pro .pc-tagline-sub { color: #000; }
.pc-card--pro .pc-features li { color: rgba(0,0,0,0.75); }
.pc-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #29ff5e; color: #000; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.pc-label { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 12px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin: 0 0 32px; }
.pc-price-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.pc-card--pro .pc-price-amount { color: #000; }
.pc-price-period { font-size: 1rem; color: rgba(255,255,255,0.6); }
.pc-plan-name { font-family: var(--font-heading); font-size: 2.475rem; font-weight: 900; color: #fff; margin-right: 6px; text-transform: uppercase; text-transform: uppercase; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin: 0 0 24px; flex-wrap: wrap; }
.pc-price-amount { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 900; color: #fff; line-height: 1; }
.pc-tagline { font-size: 1rem; color: #fff; margin-bottom: 6px; line-height: 1.4; }
.pc-tagline-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.5; }
.pc-btn--yellow { display: block; width: 100%; padding: 14px 24px; border-radius: 999px; font-size: 1rem; font-weight: 700; text-align: center; text-decoration: none; background: #29ff5e; color: #000; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.pc-btn--yellow:hover { opacity: 0.85; transform: scale(1.02); }
.pc-btn--pro-cta { display: block; width: 100%; padding: 14px 24px; border-radius: 999px; font-size: 1rem; font-weight: 700; text-align: center; text-decoration: none; background: #000; color: #fff; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.pc-btn--pro-cta:hover { opacity: 0.85; transform: scale(1.02); }
.pc-note { font-size: 1rem; color: rgba(255,255,255,0.6); text-align: center; margin: 12px 0 24px; }
.pc-note--pro { color: #000; }
.pc-card--pro .pc-check svg path { stroke: #29ff5e; }
.pc-included-label { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.pc-included--pro { color: rgba(0,0,0,0.5); }
.pc-features { list-style: none; margin: 0 0 36px; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pc-features li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: rgba(255,255,255,0.75); }
.pc-check { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: #29ff5e; display: flex; align-items: center; justify-content: center; }
.pc-check svg { width: 11px; height: 11px; stroke: #000; }
.pc-card--pro .pc-check { background: #000; }
.pc-card--pro .pc-check svg { stroke: #29ff5e; }
.pc-btn { display: block; width: 100%; padding: 14px 24px; border-radius: 999px; font-size: 1rem; font-weight: 700; text-align: center; cursor: pointer; transition: opacity 0.2s, transform 0.2s; text-decoration: none; border: none; }
.pc-btn:hover { opacity: 0.85; transform: scale(1.02); }
.pc-btn--outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.pc-btn--solid { background: #29ff5e; color: #000; }
@media (max-width: 1100px) { .pc-section { padding: 80px 20px; } .pc-grid--3 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; } .pc-grid--3 .pc-card:last-child { grid-column: 1 / -1; max-width: 440px; justify-self: center; } }
@media (max-width: 700px) { .pc-section { padding: 64px 16px; } .pc-grid, .pc-grid--3 { grid-template-columns: 1fr; } .pc-grid--3 .pc-card:last-child { max-width: none; grid-column: auto; } .pc-card { padding: 32px 24px 28px; } .pc-subtitle { margin-bottom: 36px; } .pc-heading { font-size: clamp(1.625rem, 9vw, 3.5rem); } .pc-subtitle { font-size: 1rem; } }
@media (max-width: 480px) { .pc-section { padding: 48px 12px; } .pc-card { padding: 24px 18px 24px; border-radius: 12px; } .pc-heading { font-size: clamp(1.625rem, 9vw, 3.5rem); } .pc-subtitle { font-size: 1rem; margin-bottom: 28px; } .pc-plan-name { font-size: 1.125rem; } .pc-price-amount { font-size: 1.125rem; } .pc-tagline { font-size: 1rem; } .pc-tagline-sub { font-size: 1rem; } .pc-features li { font-size: 1rem; gap: 10px; } .pc-features { gap: 10px; } .pc-btn--yellow, .pc-btn--pro-cta { font-size: 1rem; padding: 12px 20px; } }

/* ============================================================
   Extracted From index.html Inline Styles
   Preserved in original cascade order to match live site.
   ============================================================ */

/* ── Feature Grid / Section Visuals ── */
.features-section { padding-left: 2rem; padding-right: 2rem; padding-top: 10rem; padding-bottom: 10rem; background-color: white; }
.feat-eyebrow { display: inline-block; background: #fff; border: 1px solid #e0e0e0; border-radius: 999px; padding: 8px 20px; font-size: 1rem; font-weight: 600; color: #222; margin-bottom: 20px; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 5vw, 6rem); font-weight: 900; color: #111; letter-spacing: -0.02em; line-height: 1.1; text-transform: uppercase; }
.features-subtitle { font-size: clamp(1rem, 1.2vw, 1.125rem); color: #666; max-width: 560px; margin: 16px auto 0; line-height: 1.6; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: auto; width: 1400px; max-width: 100%; }
.feature-card { background: transparent; border: none; border-radius: 0; overflow: visible; }
.feature-visual { background: #e8e8e8; min-height: 45rem; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 60px 24px; border-radius: 20px; }
.feature-visual > * { width: 100%; }
.feature-title { font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 800; color: #111; padding: 16px 0 6px; font-family: var(--font-heading); text-transform: uppercase; }
.feature-desc { font-size: 1rem; color: #666; padding: 0 0 20px; line-height: 1.5; }
.bottom-cta { text-align: center; padding: 80px 0 100px; }
.bottom-cta-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; color: #111; letter-spacing: -0.02em; text-transform: uppercase; }
.bottom-cta-desc { font-size: clamp(1rem, 1.2vw, 1.125rem); color: #666; max-width: 500px; margin: 16px auto 32px; line-height: 1.6; }
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .features-section { padding-top: 6rem; padding-bottom: 6rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-visual { min-height: 32rem; padding: 40px 16px; }
  .bottom-cta { padding: 56px 20px 72px; }
  .bottom-cta-title { font-size: 1.375rem; }
  .bottom-cta-desc { font-size: 1rem; margin: 12px auto 24px; }
}
@media (max-width: 480px) {
  .features-section { padding: 4rem 1.75rem 0; }
  .feature-visual { min-height: 26rem; padding: 28px 12px; border-radius: 14px; }
  .bottom-cta { padding: 40px 16px 56px; }
  .bottom-cta-title { font-size: 1.25rem; }
  .bottom-cta-desc { font-size: 1rem; max-width: 320px; margin: 10px auto 20px; }
}

/* ── Feature Tabs ── */
.ft-section { background: #ffffff; padding: 7rem 1.5rem 8rem; text-align: center; }
.ft-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.ft-section .feat-eyebrow { display: inline-block; margin: 0 auto 20px; }
.ft-heading { font-family: var(--font-heading); font-size: clamp(2.75rem, 5vw, 4rem); font-weight: 900; color: #000; text-transform: uppercase; line-height: 1.05; margin: 0 0 16px; letter-spacing: -0.02em; }
.ft-heading em { font-style: normal; color: #29ff5e; }
.ft-subtitle { font-size: clamp(1rem, 1.5vw, 1.125rem); color: rgba(0,0,0,0.55); line-height: 1.6; max-width: 520px; margin: 0 auto 48px; }
.ft-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.ft-tab { padding: 10px 24px; border-radius: 999px; font-size: 1.2rem; font-weight: 800; font-family: var(--font-heading, inherit); text-transform: uppercase; cursor: pointer; border: 1.5px solid rgba(0,0,0,0.15); background: transparent; color: rgba(0,0,0,0.5); transition: all 0.18s ease; white-space: nowrap; }
.ft-tab:hover { border-color: rgba(0,0,0,0.4); color: #111; }
.ft-tab.active { background: #111; border-color: #111; color: #fff; }
.ft-panel { display: none; flex-direction: column; align-items: center; }
.ft-panel.active { display: flex; }
.ft-tablet-wrap { width: 100%; max-width: 920px; margin: 0 auto 92px; }
.ft-tablet { background: #1c1c1e; border-radius: 28px; padding: 12px; overflow: hidden; box-shadow: 0 60px 130px rgba(0,0,0,0.3), 0 20px 50px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.07); }
.ft-tablet-screen { display: flex; border-radius: 18px; overflow: hidden; aspect-ratio: 1.72; }
.ft-ebay-half { flex: 0 0 70%; overflow: hidden; background: #1c1c1e; }
.ft-ebay-half img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
.ft-cd-half { flex: 1; background: #000; display: flex; flex-direction: column; overflow: hidden; text-align: left; }
.ft-cd-hdr { display: flex; align-items: center; padding: 6px 8px; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 3px; flex-shrink: 0; }
.ft-cd-hdr-logo { width: 22px; height: 22px; border-radius: 5px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-right: 2px; }
.ft-cd-hdr-icons { display: flex; flex: 1; }
.ft-cd-hdr-icon { display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 2px 4px; opacity: 0.55; }
.ft-cd-hdr-icon svg { width: 9px; height: 9px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ft-cd-hdr-icon span { font-size: 5px; color: rgba(255,255,255,0.7); white-space: nowrap; }
.ft-cd-hdr-dots { display: flex; gap: 3px; margin-left: auto; flex-shrink: 0; }
.ft-cd-hdr-dot { width: 7px; height: 7px; border-radius: 50%; }
.ft-cd-body { flex: 1; overflow: hidden; padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; }
.ft-cert-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ft-cert-chip { display: flex; align-items: center; gap: 6px; background: rgba(41,255,94,0.1); border: 1.5px solid rgba(41,255,94,0.28); border-radius: 999px; padding: 5px 10px; font-size: 10px; font-weight: 800; color: #29ff5e; font-family: monospace; }
.ft-cert-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #29ff5e; flex-shrink: 0; }
.ft-cert-chk { width: 20px; height: 20px; min-width: 20px; border-radius: 5px; background: #29ff5e; display: flex; align-items: center; justify-content: center; }
.ft-cert-chk svg { width: 11px; height: 11px; stroke: #000; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.ft-cert-bar-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.ft-cert-bar-fill { height: 100%; background: #29ff5e; border-radius: 3px; width: 0%; }
.ft-cert-status-txt { font-size: 10px; color: rgba(255,255,255,0.45); }
.ft-li-hdr { font-size: 10px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; color: #fff; margin-top: 2px; font-family: var(--font-heading, inherit); }
.ft-bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.ft-bento-c { background: linear-gradient(135deg, #242424 0%, #363636 100%); border: 1px solid rgba(255,255,255,0.10); border-radius: 9px; padding: 6px 8px; }
.ft-acc-section { display: flex; flex-direction: column; gap: 4px; margin-top: 5px; flex-shrink: 0; }
.ft-acc-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 8px; background: #1c1c1e; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; gap: 6px; flex-shrink: 0; }
.ft-acc-lbl { font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; color: #fff; display: flex; align-items: center; gap: 5px; font-family: var(--font-heading, inherit); }
.ft-acc-lbl svg { width: 10px; height: 10px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ft-acc-badge { font-size: 7px; font-weight: 800; padding: 2px 6px; border-radius: 999px; white-space: nowrap; }
.ft-acc-badge.green { background: rgba(41,255,94,0.12); color: #29ff5e; border: 1px solid rgba(34,199,122,0.30); }
.ft-acc-badge.red { background: rgba(255,79,106,0.12); color: #FF4F6A; border: 1px solid rgba(255,79,106,0.32); }
.ft-acc-badge.blue { background: rgba(77,163,255,0.12); color: #4DA3FF; border: 1px solid rgba(62,142,255,0.32); }
.ft-acc-badge.orange { background: rgba(240,168,48,0.12); color: #F0A830; border: 1px solid rgba(240,168,48,0.32); }
.ft-acc-arr { color: rgba(255,255,255,0.25); font-size: 10px; flex-shrink: 0; }
.ft-open-cert-btn { display: block; width: 100%; text-align: center; background: #29ff5e; color: #000; font-size: 7.5px; font-weight: 900; padding: 5px; border-radius: 6px; flex-shrink: 0; font-family: var(--font-heading, inherit); text-transform: uppercase; }
.ft-ai-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; flex-shrink: 0; }
.ft-ai-lbl { font-size: 7.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; font-family: var(--font-heading, inherit); }
.ft-ai-avoid { font-size: 6.5px; font-weight: 800; padding: 2px 6px; border-radius: 999px; background: rgba(255,100,60,0.15); color: #ff7050; border: 1px solid rgba(255,100,60,0.3); }
.ft-ai-snipe { font-size: 6.5px; font-weight: 800; padding: 2px 6px; border-radius: 999px; background: rgba(41,255,94,0.12); color: #29ff5e; border: 1px solid rgba(41,255,94,0.28); }
.ft-bento-lbl { font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: rgba(255,255,255,0.38); margin-bottom: 2px; font-family: var(--font-heading, inherit); }
.ft-bento-val { font-size: 20px; font-weight: 900; color: #fff; line-height: 1; font-family: var(--font-heading,inherit); }
.ft-bento-sub { font-size: 7px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.ft-gd-hdr { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.9); flex-shrink: 0; font-family: var(--font-heading, inherit); text-transform: uppercase; }
.ft-gd-hdr svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.ft-radar-wrap { flex: 1; display: flex; align-items: center; justify-content: center; }
.ft-radar { width: 90px; height: 90px; position: relative; display: flex; align-items: center; justify-content: center; }
.ft-radar-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.1); }
.ft-radar-ring.r1 { width: 100%; height: 100%; }
.ft-radar-ring.r2 { width: 58%; height: 58%; }
.ft-radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(rgba(41,255,94,0.25) 0deg, transparent 100deg); opacity: 0; }
.ft-radar-dot { width: 9px; height: 9px; border-radius: 50%; background: #29ff5e; box-shadow: 0 0 8px #29ff5e, 0 0 16px rgba(41,255,94,0.4); opacity: 0; position: absolute; }
.ft-gd-found { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); text-align: center; flex-shrink: 0; }
.ft-gd-logo-txt { display: flex; align-items: center; justify-content: center; flex-shrink: 0; min-height: 28px; }
.ft-gd-logo-txt img { height: 28px; width: auto; max-width: 80px; object-fit: contain; filter: brightness(0) invert(1); }
.ft-gd-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(41,255,94,0.12); border: 1.5px solid #29ff5e; color: #29ff5e; font-size: 12px; font-weight: 800; padding: 7px 16px; border-radius: 999px; flex-shrink: 0; margin: 0 auto; width: fit-content; }
.ft-gd-pill svg { width: 12px; height: 12px; stroke: #29ff5e; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ft-sc-acc-hdr { display: flex; align-items: center; justify-content: space-between; padding: 6px 0 4px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 4px; }
.ft-sc-acc-title { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; color: #fff; font-family: var(--font-heading,inherit); text-transform: uppercase; letter-spacing: 0.05em; }
.ft-sc-status-txt { font-size: 9px; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.ft-sc-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 6px; flex-shrink: 0; }
.ft-sc-btn { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 6px 8px; background: #29ff5e; color: #000; border: none; border-radius: 7px; font-size: 9px; font-weight: 800; font-family: var(--font-heading,inherit); text-transform: uppercase; letter-spacing: 0.03em; cursor: default; }
.ft-sc-popout-btn { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 6px 8px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.1); border-radius: 7px; font-size: 9px; font-weight: 700; font-family: var(--font-heading,inherit); text-transform: uppercase; letter-spacing: 0.03em; cursor: default; }
.ft-sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; width: 100%; flex-shrink: 0; }
.ft-sc-item { display: flex; flex-direction: column; }
.ft-sc-card { background: #1a1a1a; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; padding: 6px 6px 6px; gap: 6px; }
.ft-sc-card-lbl { font-size: 8px; font-weight: 700; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.ft-sc-img-wrap { width: 100%; aspect-ratio: 2/3; overflow: hidden; background: #111; border-radius: 6px; position: relative; }
.ft-sc-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ft-sc-shimmer { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%); background-size: 200% 100%; animation: ftScShimmer 1s ease infinite; z-index: 1; }
@keyframes ftScShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.ft-sc-inspect-btn { padding: 6px; background: #fff200; color: #000; font-size: 9px; font-weight: 700; text-align: center; border-radius: 7px; cursor: default; }
.ft-price-section-hdr { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.28); padding: 2px 0; }
.ft-price-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); opacity: 0; transform: translateX(-8px); }
.ft-price-row:last-child { border-bottom: none; }
.ft-price-lbl { font-size: 10px; color: rgba(255,255,255,0.45); }
.ft-price-val { font-size: 11px; font-weight: 700; color: #fff; font-family: monospace; }
.ft-price-val.green { color: #29ff5e; }
.ft-feats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; text-align: left; }
.ft-feat { display: flex; align-items: flex-start; gap: 14px; min-width: 220px; flex: 1; }
.ft-feat-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: #000; display: flex; align-items: center; justify-content: center; }
.ft-feat-icon svg { width: 20px; height: 20px; stroke: #29ff5e; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ft-feat-title { font-size: 1.525rem; font-weight: 800; font-family: 'Mona Sans Condensed', sans-serif; color: #111; margin-bottom: 4px; text-transform: uppercase; }
.ft-feat-desc { font-size: 1rem; color: rgba(0,0,0,0.5); line-height: 1.55; }
@media (max-width: 1100px) {
  .ft-feats { gap: 20px; }
  .ft-feat { flex-direction: row; align-items: flex-start; flex: 0 0 calc(50% - 10px); min-width: 0; }
  .ft-feat > div { display: flex; flex-direction: column; }
}
@media (max-width: 768px) {
  .ft-section { padding: 4rem 1rem 5rem; }
  .ft-heading { font-size: clamp(2.75rem, 11vw, 4rem); margin: 0 0 10px; }
  .ft-subtitle { font-size: 1rem; margin: 0 auto 32px; }
  .ft-tablet-wrap { max-width: 100%; margin: 0 auto 48px; overflow: hidden; }
  .ft-tablet { border-radius: 20px; padding: 8px; }
  .ft-tablet-screen { aspect-ratio: 1.4; }
  .ft-ebay-half { flex: 0 0 65%; }
  .ft-cd-half { flex: 1; min-height: 0; overflow: hidden; }
  .ft-cd-body { padding: 6px 8px; gap: 4px; }
  .ft-bento-val { font-size: 14px; }
  .ft-gd-hdr { font-size: 9px; }
  .ft-radar { width: 60px; height: 60px; }
  .ft-gd-found { font-size: 10px; }
  .ft-gd-pill { font-size: 9px; padding: 4px 10px; }
  .ft-cert-chip { font-size: 8px; padding: 3px 8px; }
  .ft-li-hdr { font-size: 8px; }
  .ft-acc-row { padding: 4px 6px; }
  .ft-acc-lbl { font-size: 7px; }
  .ft-acc-badge { font-size: 6px; }
  .ft-bento-grid { gap: 3px; }
  .ft-bento-lbl { font-size: 6px; }
  .ft-bento-sub { font-size: 6px; }
  .ft-sc-grid { gap: 4px; }
  .ft-sc-img-wrap { aspect-ratio: 3/4; }
  .ft-sc-card { padding: 4px; gap: 4px; }
  .ft-sc-card-lbl { font-size: 7px; }
  .ft-sc-btn { font-size: 7px; padding: 4px 6px; }
  .ft-sc-popout-btn { font-size: 7px; padding: 4px 6px; }
  .ft-sc-inspect-btn { font-size: 7px; padding: 4px; }
  .ft-open-cert-btn { font-size: 6px; padding: 4px; }
  .ft-feats { flex-direction: column; gap: 18px; padding: 0 4px; }
  .ft-feat-title { font-size: 1.6rem; }
  .ft-feat-desc { font-size: 1rem; }
  .ft-feat-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 10px; }
  .ft-feat-icon svg { width: 16px; height: 16px; }
}
@media (max-width: 640px) {
  .ft-section { padding: 4rem 1.75rem 3rem; }
  .ft-tab { font-size: 1rem; padding: 8px 16px; }
  .ft-tabs { gap: 6px; margin-bottom: 28px; }
  .ft-tablet { border-radius: 14px; padding: 6px; }
  .ft-tablet-wrap { margin: 0 auto 36px; }
  .ft-tablet-screen { aspect-ratio: 1.3; }
  .ft-ebay-half { flex: 0 0 60%; }
  .ft-cd-body { padding: 5px 6px; gap: 3px; }
  .ft-bento-val { font-size: 14px; }
  .ft-bento-grid { gap: 4px; }
  .ft-acc-row { padding: 5px 6px; }
}

/* ── Data Tools ── */
.dt-section { background: #000000; padding: 8rem 2rem; position: relative; }
.dt-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.dt-heading { font-family: var(--font-heading); text-transform: uppercase; color: #fff; line-height: 1.05; margin: 0 0 1rem; letter-spacing: -0.02em; }
.dt-subtitle { font-family: var(--font-body); font-size: 1.25rem; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 3rem; line-height: 1.6; }
.dt-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 2rem; }
.dt-tab { padding: 10px 24px; border-radius: 999px; border: none; background: transparent; color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.25s, color 0.25s; }
.dt-tab:hover { color: rgba(255,255,255,0.7); }
.dt-tab.active { background: #29ff5e; color: #000; }
.dt-panel-wrap { background: #141414; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; min-height: 450px; position: relative; overflow: hidden; }
.dt-panel { display: none; padding: 28px; text-align: left; }
.dt-panel.active { display: block; }
.dt-tr-tabs { display: flex; align-items: center; background: #1a1a1a; border-radius: 12px; padding: 6px; overflow: hidden; margin-bottom: 8px; }
.dt-tr-tab { padding: 8px 12px; font-size: 1rem; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.6); border: none; background: transparent; cursor: default; white-space: nowrap; font-family: var(--font-body); }
.dt-tr-tab.active { background: #29ff5e; color: #000; border-radius: 8px; }
.dt-tr-label { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin: 16px 0 10px; font-family: var(--font-body); font-weight: 600; }
.dt-tr-index { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
.dt-tr-index-title { font-size: 1rem; font-weight: 700; color: #fff; }
.dt-tr-index-change { font-size: 1rem; color: rgba(255,255,255,0.6); margin-left: 8px; }
.dt-tr-index-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.dt-tr-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; margin-bottom: 8px; opacity: 0; transform: translateY(12px); }
.dt-tr-rank { font-size: 1.125rem; font-weight: 400; color: rgba(255,255,255,0.6); width: 24px; text-align: center; flex-shrink: 0; }
.dt-tr-info { flex: 1; min-width: 0; }
.dt-tr-name { font-size: 1rem; font-weight: 700; color: #fff; }
.dt-tr-set { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.dt-tr-stats { text-align: right; flex-shrink: 0; }
.dt-tr-views { font-size: 1rem; color: #29ff5e; font-weight: 600; }
.dt-tr-price { font-size: 1.125rem; font-weight: 900; color: #fff; font-family: 'SF Mono','Cascadia Mono','Consolas',monospace; }
.dt-ex-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.dt-ex-header-icon { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.5; }
.dt-ex-header-label { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-heading); }
.dt-ex-chevron { margin-left: auto; width: 16px; height: 16px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 2; }
.dt-ex-desc { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.5; }
.dt-ex-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
.dt-ex-row { display: flex; align-items: center; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; margin-bottom: 8px; opacity: 0; transform: translateY(12px); }
.dt-ex-row-name { font-size: 1rem; font-weight: 600; color: #fff; flex: 1; }
.dt-ex-row-count { font-size: 1rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); margin-right: 12px; }
.dt-ex-row-btn { font-size: 1rem; font-weight: 700; padding: 6px 16px; border-radius: 999px; border: 1px solid rgba(41,255,94,0.3); background: rgba(41,255,94,0.08); color: #29ff5e; cursor: pointer; white-space: nowrap; }
.dt-ex-big-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border-radius: 12px; border: none; background: #29ff5e; color: #000; font-size: 1rem; font-weight: 800; cursor: pointer; margin-top: 16px; opacity: 0; transform: translateY(8px); }
.dt-wl-topbar { display: flex; align-items: center; gap: 4px; margin-bottom: 16px; flex-wrap: wrap; }
.dt-wl-tab { padding: 7px 14px; border-radius: 999px; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); background: transparent; border: 1px solid transparent; cursor: default; transition: none; }
.dt-wl-tab.active { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.12); }
.dt-wl-clear { margin-left: auto; padding: 5px 14px; border-radius: 999px; font-size: 1rem; font-weight: 700; background: rgba(255,77,77,0.12); color: #ff6b6b; border: none; cursor: pointer; }
.dt-wl-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 16px; margin-bottom: 10px; opacity: 0; transform: translateY(16px); }
.dt-wl-card-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.dt-wl-card-info { flex: 1; min-width: 0; }
.dt-wl-card-title { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 4px; }
.dt-wl-card-time { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.dt-wl-card-cert { display: inline-block; font-size: 1rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: rgba(41,255,94,0.12); color: #29ff5e; margin-bottom: 10px; }
.dt-wl-card-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dt-wl-btn { padding: 6px 12px; border-radius: 999px; font-size: 1rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); cursor: pointer; white-space: nowrap; }
.dt-wl-card-side { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.dt-wl-side-btn { padding: 6px 14px; border-radius: 999px; font-size: 1rem; font-weight: 700; border: 1px solid rgba(255,200,50,0.25); background: rgba(255,200,50,0.08); color: #ffc832; cursor: pointer; white-space: nowrap; text-align: center; }
@media (max-width: 700px) {
  .dt-section { padding: 5rem 1.2rem; }
  .dt-tr-tabs { flex-wrap: wrap; gap: 4px; }
  .dt-tr-row { flex-wrap: wrap; gap: 8px; }
  .dt-ex-row { flex-wrap: wrap; gap: 8px; }
  .dt-wl-card-top { flex-direction: column; }
  .dt-wl-card-side { flex-direction: row; }
  .dt-tabs { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .dt-section { padding: 4rem 1.75rem 0; }
  .dt-panel { padding: 18px; }
  .dt-tab { font-size: 1rem; padding: 8px 16px; }
}

/* ── Supported Graders ── */
.sg-section { background: #000; padding: 8rem 2rem; overflow: hidden; position: relative; }
.sg-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.sg-eyebrow { display: inline-block; padding: 0.4rem 1.2rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-family: var(--font-body); }
.sg-heading { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4.2rem); text-transform: uppercase; color: #fff; line-height: 1.05; margin: 0 0 1.2rem; letter-spacing: -0.02em; }
.sg-subtitle { font-family: var(--font-body); font-size: 1.25rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 4rem; line-height: 1.6; }
.sg-marquee-wrap { position: relative; width: 100%; overflow: hidden; margin-bottom: 3.5rem; }
.sg-marquee-track { display: flex; align-items: center; gap: 5rem; width: max-content; animation: sg-scroll 20s linear infinite; }
.sg-logo { height: 48px; width: auto; opacity: 0.5; filter: brightness(0) invert(1); transition: opacity 0.3s ease, transform 0.3s ease; flex-shrink: 0; }
.sg-logo:hover { opacity: 1; transform: scale(1.1); }
@keyframes sg-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.sg-categories { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.sg-cat-pill { padding: 0.5rem 1.4rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.03em; transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease; }
.sg-cat-pill:hover { border-color: rgba(255,242,0,0.4); color: #fff200; background: rgba(255,242,0,0.06); }
@media (max-width: 768px) {
  .sg-section { padding: 5rem 1.2rem; }
  .sg-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .sg-subtitle { font-size: 1rem; margin-bottom: 2.5rem; }
  .sg-logo { height: 36px; }
  .sg-marquee-wrap { margin-bottom: 2.5rem; }
  .sg-marquee-track { gap: 3rem; }
}
@media (max-width: 480px) {
  .sg-section { padding: 4rem 1.75rem 0; }
  .sg-heading { font-size: 1.5rem; }
  .sg-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .sg-logo { height: 76px; }
  .sg-marquee-wrap { margin-bottom: 2rem; }
  .sg-marquee-track { gap: 2rem; }
  .sg-cat-pill { font-size: 1rem; padding: 0.4rem 1rem; }
}

/* ── Testimonials ── */
.tm-section { background: #f5f5f5; padding: 120px 40px; }
.tm-wrap { max-width: 1280px; margin: 0 auto; text-align: center; }
.tm-eyebrow { display: inline-block; background: #fff; border: 1px solid #e0e0e0; border-radius: 999px; padding: 8px 20px; font-size: 1rem; font-weight: 600; color: #222; margin-bottom: 28px; }
.tm-heading { font-family: var(--font-heading); font-weight: 900; color: #111; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.05; margin: 0 auto 20px; max-width: 900px; }
.tm-subtitle { font-family: var(--font-body); font-size: clamp(1rem, 1.2vw, 1.062rem); color: #555; line-height: 1.6; max-width: 680px; margin: 0 auto 36px; }
.tm-download { display: inline-flex; align-items: center; gap: 10px; padding: 12px 28px; background: #29ff5e; color: #000; border-radius: 999px; font-size: clamp(1rem, 1.2vw, 1rem); font-weight: 700; text-decoration: none; border: 1px solid #22e650; transition: transform 0.15s, box-shadow 0.15s; margin-bottom: 60px; }
.tm-download:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(41, 255, 94, 0.3); }
.tm-download-icon { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: #000; border-radius: 50%; }
.tm-download-icon svg { width: 12px; height: 12px; }
.tm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left; }
.tm-card { background: #e8e8e8; border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 0; }
.tm-quote-mark { font-size: 2.25rem; font-weight: 900; color: #111; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.tm-quote { font-size: 1rem; color: #333; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.tm-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #111; margin-bottom: 4px; }
.tm-role { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: #666; }
@media (max-width: 1100px) {
  .tm-section { padding: 80px 24px; }
  .tm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .tm-section { padding: 64px 16px; }
  .tm-grid { grid-template-columns: 1fr; }
  .tm-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .tm-download { font-size: 1rem; padding: 10px 22px; margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .tm-section { padding: 4rem 1.75rem 0; }
  .tm-card { padding: 20px; }
  .tm-quote { font-size: 1rem; }
  .tm-name { font-size: 1rem; }
}

/* ── Stats ── */
.bs-section { background: #29ff5e; width: 100%; padding: 100px 24px 0; overflow: hidden; position: relative; }
.bs-container { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.bs-eyebrow { display: inline-flex; align-items: center; background: #000; color: #fff; font-size: 1rem; font-weight: 600; padding: 6px 18px; border-radius: 999px; border: none; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px; }
.bs-heading { font-family: var(--font-heading); font-weight: 900; color: #000; text-transform: uppercase; line-height: 1.05; margin: 0 0 20px; max-width: 900px; }
.bs-subtitle { font-size: clamp(1rem, 1.8vw, 1.25rem); color: rgba(0, 0, 0, 0.6); line-height: 1.6; max-width: 680px; margin: 0 0 64px; font-weight: 400; }
.bs-stats-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; width: 100%; max-width: 1200px; margin-bottom: 72px; }
.bs-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bs-stat-number { font-family: var(--font-heading); font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 900; white-space: nowrap; color: #000; line-height: 1.1; text-transform: uppercase; }
.bs-stat-label { font-size: 1rem; color: rgba(0, 0, 0, 0.5); font-weight: 500; line-height: 1.4; }
.bs-image-wrap { width: 100%; display: flex; justify-content: center; margin-bottom: -60px; }
.bs-image { width: 100%; max-width: 1200px; border-radius: 16px 16px 0 0; display: block; }
@media (max-width: 1100px) {
  .bs-section { padding: 80px 20px 0; }
  .bs-stats-row { gap: 32px 20px; margin-bottom: 56px; }
  .bs-subtitle { margin-bottom: 48px; }
}
@media (max-width: 768px) {
  .bs-section { padding: 72px 20px 0; }
  .bs-stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; margin-bottom: 56px; }
  .bs-subtitle { font-size: 1rem; margin-bottom: 40px; }
  .bs-image-wrap { width: 300% !important; }
}
@media (max-width: 480px) {
  .bs-section { padding: 4rem 1.75rem 0; }
  .bs-stats-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .bs-subtitle { font-size: 1rem; margin-bottom: 32px; }
  .bs-stat-number { font-size: 2rem; }
  .bs-stat-label { font-size: 1rem; }
  .bs-image { border-radius: 12px 12px 0 0; }
  .bs-image-wrap { width: 300% !important; }
}

/* ── FAQ ── */
.faq-section { background: #fff; width: 100%; padding: 100px 24px; position: relative; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.faq-eyebrow { display: inline-flex; align-items: center; background: #fff; color: #222; font-size: 1rem; font-weight: 600; padding: 6px 18px; border-radius: 999px; border: 1px solid #e0e0e0; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px; }
.faq-heading { font-family: var(--font-heading); font-weight: 900; color: #111; text-transform: uppercase; line-height: 1.1; margin: 0 0 16px; }
.faq-subtitle { font-size: 1.062rem; color: #666; margin: 0 0 48px; line-height: 1.5; }
.faq-list { width: 100%; text-align: left; }
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 1.062rem; font-weight: 700; color: #111; cursor: pointer; background: none; border: none; width: 100%; text-align: left; gap: 16px; font-family: inherit; }
.faq-question:hover { color: #333; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform 0.3s ease; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: #111; border-radius: 2px; transition: transform 0.3s ease; }
.faq-icon::before { width: 16px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 16px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { font-size: 1rem; color: #555; line-height: 1.6; padding-bottom: 20px; }
@media (max-width: 768px) {
  .faq-section { padding: 72px 20px; }
  .faq-subtitle { font-size: 1rem; margin-bottom: 36px; }
}
@media (max-width: 600px) {
  .faq-section { padding: 56px 16px; }
  .faq-question { font-size: 1rem; padding: 16px 0; }
  .faq-answer-inner { font-size: 1rem; }
}
@media (max-width: 480px) {
  .faq-section { padding: 4rem 1.75rem 0; }
  .faq-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .faq-question { font-size: 1rem; gap: 12px; }
  .faq-answer-inner { font-size: 1rem; }
  .faq-icon { width: 20px; height: 20px; }
}

/* ── Pricing ── */
.pc-section { background: #000; padding: 120px 24px; }
.pc-wrapper { max-width: 1300px; margin: 0 auto; text-align: center; }
.pc-eyebrow { display: inline-block; font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); background: transparent; padding: 6px 18px; border-radius: 999px; margin-bottom: 24px; }
.pc-heading { font-family: var(--font-heading); font-size: clamp(1.625rem, 9vw, 3.5rem); font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; }
.pc-subtitle { font-size: 1.062rem; color: rgba(255,255,255,0.6); margin: 0 0 56px; }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1200px; }
.pc-card { position: relative; background: #141414; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px 32px 36px; text-align: left; display: flex; flex-direction: column; }
.pc-card--pro { background: #29ff5e; border: 1.5px solid #29ff5e; color: #000; }
.pc-card--pro .pc-plan-name, .pc-card--pro .pc-price-amount, .pc-card--pro .pc-price-period, .pc-card--pro .pc-tagline, .pc-card--pro .pc-tagline-sub { color: #000; }
.pc-card--pro .pc-features li { color: rgba(0,0,0,0.75); }
.pc-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #29ff5e; color: #000; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.pc-label { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 12px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin: 0 0 32px; }
.pc-price-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.pc-card--pro .pc-price-amount { color: #000; }
.pc-price-period { font-size: 1rem; color: rgba(255,255,255,0.6); }
.pc-plan-name { font-family: var(--font-heading); font-size: 2.475rem; font-weight: 900; color: #fff; margin-right: 6px; text-transform: uppercase; text-transform: uppercase; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin: 0 0 24px; flex-wrap: wrap; }
.pc-price-amount { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 900; color: #fff; line-height: 1; }
.pc-tagline { font-size: 1rem; color: #fff; margin-bottom: 6px; line-height: 1.4; }
.pc-tagline-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.5; }
.pc-btn--yellow { display: block; width: 100%; padding: 14px 24px; border-radius: 999px; font-size: 1rem; font-weight: 700; text-align: center; text-decoration: none; background: #29ff5e; color: #000; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.pc-btn--yellow:hover { opacity: 0.85; transform: scale(1.02); }
.pc-btn--pro-cta { display: block; width: 100%; padding: 14px 24px; border-radius: 999px; font-size: 1rem; font-weight: 700; text-align: center; text-decoration: none; background: #000; color: #fff; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.pc-btn--pro-cta:hover { opacity: 0.85; transform: scale(1.02); }
.pc-note { font-size: 1rem; color: rgba(255,255,255,0.6); text-align: center; margin: 12px 0 24px; }
.pc-note--pro { color: #000; }
.pc-card--pro .pc-check svg path { stroke: #29ff5e; }
.pc-included-label { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.pc-included--pro { color: rgba(0,0,0,0.5); }
.pc-features { list-style: none; margin: 0 0 36px; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pc-features li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: rgba(255,255,255,0.75); }
.pc-check { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: #29ff5e; display: flex; align-items: center; justify-content: center; }
.pc-check svg { width: 11px; height: 11px; stroke: #000; }
.pc-card--pro .pc-check { background: #000; }
.pc-card--pro .pc-check svg { stroke: #29ff5e; }
.pc-btn { display: block; width: 100%; padding: 14px 24px; border-radius: 999px; font-size: 1rem; font-weight: 700; text-align: center; cursor: pointer; transition: opacity 0.2s, transform 0.2s; text-decoration: none; border: none; }
.pc-btn:hover { opacity: 0.85; transform: scale(1.02); }
.pc-btn--outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.pc-btn--solid { background: #29ff5e; color: #000; }
@media (max-width: 1100px) {
  .pc-section { padding: 80px 20px; }
  .pc-grid--3 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
  .pc-grid--3 .pc-card:last-child { grid-column: 1 / -1; max-width: 440px; justify-self: center; }
}
@media (max-width: 700px) {
  .pc-section { padding: 64px 16px; }
  .pc-grid, .pc-grid--3 { grid-template-columns: 1fr; }
  .pc-grid--3 .pc-card:last-child { max-width: none; grid-column: auto; }
  .pc-card { padding: 32px 24px 28px; }
  .pc-subtitle { margin-bottom: 36px; }
  .pc-heading { font-size: clamp(1.625rem, 9vw, 3.5rem); }
  .pc-subtitle { font-size: 1rem; }
}
@media (max-width: 480px) {
  .pc-section { padding: 4rem 1.75rem 0; }
  .pc-card { padding: 24px 18px 24px; border-radius: 12px; }
  .pc-heading { font-size: clamp(1.625rem, 9vw, 3.5rem); }
  .pc-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .pc-plan-name { font-size: 1.125rem; }
  .pc-price-amount { font-size: 1.125rem; }
  .pc-tagline { font-size: 1rem; }
  .pc-tagline-sub { font-size: 1rem; }
  .pc-features li { font-size: 1rem; gap: 10px; }
  .pc-features { gap: 10px; }
  .pc-btn--yellow, .pc-btn--pro-cta { font-size: 1rem; padding: 12px 20px; }
}

/* ── Mobile Section Bottom Padding ── */
@media (max-width: 768px) {
  .features-section,
  .fh-section,
  .ft-section,
  .dt-section,
  .sg-section,
  .tl-section,
  .tm-section,
  .bs-section,
  .faq-section,
  .pc-section,
  .td-section,
  .st-hero {
    padding-bottom: 3rem !important;
  }
}

/* ── Site Footer Strip ── */
.site-footer {
  background: #000;
  border-top: 1px solid rgb(255 255 255 / 16%);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer-copy {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer-links a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    text-align: center;
  }
  .site-footer-links {
    justify-content: center;
    gap: 12px;
  }
}

/* ── Blog post body components (bp-*) ── */
.bp-tip {
  background: rgba(41,255,94,0.08);
  border-left: 3px solid #29ff5e;
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  margin: 24px 0;
}
.bp-tip-label {
  font-weight: 700;
  font-size: 1rem;
  color: #1a8c3c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.bp-tip p { margin: 0; color: #333; }

.bp-warning {
  background: rgba(255,180,0,0.08);
  border-left: 3px solid #f5a623;
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  margin: 24px 0;
}
.bp-warning-label {
  font-weight: 700;
  font-size: 1rem;
  color: #a06500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.bp-warning p { margin: 0; color: #333; }

.bp-stat-row {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.bp-stat {
  flex: 1;
  min-width: 120px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.bp-stat-num {
  font-family: 'Mona Sans Condensed', 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0a0a0a;
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}
.bp-stat-label { font-size: 1rem; color: #666; }

.bp-steps {
  counter-reset: bp-step;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.bp-steps li {
  counter-increment: bp-step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #222;
  line-height: 1.65;
}
.bp-steps li::before {
  content: counter(bp-step);
  min-width: 30px;
  height: 30px;
  background: #0a0a0a;
  color: #29ff5e;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.bp-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #222;
  line-height: 1.6;
}
.bp-checklist li::before {
  content: "✓";
  color: #29ff5e;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.bp-takeaway {
  background: #0a0a0a;
  color: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 36px 0 20px;
}
.bp-takeaway-label {
  font-size: 1rem;
  font-weight: 700;
  color: #29ff5e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.bp-takeaway p { margin: 0; color: #fff; line-height: 1.65; font-size: 1.05rem; }
