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

:root {
  --accent: #f25656;
  --accent-dark: #df4444;
  --accent-glow: rgba(242, 86, 86, 0.22);
  --green: #69d69a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text-primary: #fff;
  --text-secondary: rgba(255, 255, 255, 0.58);
  --text-muted: rgba(255, 255, 255, 0.34);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: #111;
  --container: 1200px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html {
  scroll-behavior: smooth;
}

body.brands-old-base {
  overflow-x: hidden;
  background: #080808;
  color: var(--text-primary);
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.brands-old-base a {
  color: inherit;
  text-decoration: none;
}

.brands-old-base button,
.brands-old-base summary {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 16px;
  top: 12px;
  padding: 9px 13px;
  border-radius: 8px;
  background: #fff;
  color: #080808 !important;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.centered {
  display: block;
  text-align: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: background-color 200ms var(--ease-out), border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out), transform 140ms var(--ease-out);
}

.btn-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}

.btn-primary:active,
.btn-secondary:active,
.db-tab:active,
.specialty-card:active,
.study-card:active {
  transform: scale(0.97);
}

/* Hero: intentionally follows the archived page's visual structure. */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(242, 86, 86, 0.1), transparent 65%),
    radial-gradient(circle at 84% 24%, rgba(112, 126, 255, 0.06), transparent 24%);
  content: "";
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero h1 {
  max-width: 880px;
  margin: 0 auto 24px;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  max-width: 610px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-note {
  max-width: 630px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.hero-proof-chip {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.hero-proof-chip span {
  color: var(--accent);
  font-size: 9px;
}

/* Proof strip */
.stats-bar {
  padding: 48px 0 38px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}

.stat-item {
  min-width: 0;
  padding: 0 24px;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--border);
}

.stat-number {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.stats-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--text-muted);
  font-size: 11px;
  text-align: center;
}

/* Moving brand wall */
.logos-section {
  overflow: hidden;
  padding: 72px 0;
}

.logos-label {
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee-wrap {
  overflow: hidden;
  margin-bottom: 20px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee-wrap.second-row {
  margin-top: 16px;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  will-change: transform;
}

.logo-marquee-track.left {
  animation: marquee-left 46s linear infinite;
}

.logo-marquee-track.right {
  animation: marquee-right 52s linear infinite;
}

.logo-set {
  display: flex;
  flex-shrink: 0;
  gap: 22px;
}

.logo-pill {
  display: flex;
  min-width: 150px;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-pill img {
  width: auto;
  max-width: 78px;
  height: 23px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
}

.logos-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 11px;
  text-align: center;
}

@keyframes marquee-left {
  to { transform: translateX(calc(-50% - 11px)); }
}

@keyframes marquee-right {
  from { transform: translateX(calc(-50% - 11px)); }
  to { transform: translateX(0); }
}

/* Direct answer */
.answer-section {
  padding: 32px 0 104px;
}

.direct-answer-card {
  position: relative;
  display: grid;
  max-width: 1020px;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px 34px;
  margin: 0 auto;
  overflow: hidden;
  padding: 38px 42px;
  border: 1px solid rgba(242, 86, 86, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% 0%, rgba(242, 86, 86, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.03);
}

.direct-answer-card::before {
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: var(--accent);
  content: "";
}

.direct-answer-label {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 8px;
  padding-top: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-answer-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(242, 86, 86, 0.1);
}

.direct-answer-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.direct-answer-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.direct-answer-steps {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.direct-answer-steps span {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 900;
}

.direct-answer-steps i {
  color: rgba(242, 86, 86, 0.7);
  font-size: 12px;
  font-style: normal;
}

/* Shared section headings */
.section-heading {
  max-width: 690px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.specialty-section h2,
.diff-section h2,
.niche-section h2,
.studies-section h2,
.timeline-section h2,
.fit-section h2,
.faq-section h2,
.measurement-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-heading > p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 16px;
}

/* Creator intelligence browser */
.intel-section {
  padding: 104px 0 116px;
  background: linear-gradient(180deg, #080808 0%, #0d0d0d 50%, #080808 100%);
}

.intel-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.intel-intro h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.intel-intro p {
  max-width: 590px;
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.db-chrome {
  max-width: 1020px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: #111;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.64), 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.db-chrome-bar {
  display: grid;
  min-height: 49px;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  background: #1a1a1a;
}

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

.db-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff5f57;
}

.db-dots span:nth-child(2) { background: #febc2e; }
.db-dots span:nth-child(3) { background: #28c840; }

.db-url-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.db-url-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(105, 214, 154, 0.08);
}

.db-url {
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.db-mode {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.db-tabs {
  display: flex;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  background: #111;
}

.db-tab {
  min-height: 38px;
  padding: 7px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 120ms var(--ease-out);
}

.db-tab.active,
.db-tab[aria-selected="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 14px rgba(242, 86, 86, 0.26);
}

.db-panel {
  display: none;
  background: #111;
}

.db-panel.active {
  display: block;
  animation: panel-in 220ms var(--ease-out) both;
}

.db-panel-layout {
  display: grid;
  min-height: 470px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
  padding: clamp(34px, 5vw, 64px);
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.db-panel-copy h3 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.db-panel-copy > p {
  margin-top: 15px;
  color: var(--text-secondary);
  font-size: 15px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.plain-list li::before {
  position: absolute;
  left: 4px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
}

.text-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(242, 86, 86, 0.8);
  text-underline-offset: 4px;
}

.intel-visual {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background:
    radial-gradient(circle at 94% 0%, rgba(242, 86, 86, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.intel-visual > p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 10px;
}

.intel-big-number {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.intel-big-number strong,
.market-stat strong {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.intel-big-number span,
.market-stat span {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.fit-row {
  display: grid;
  grid-template-columns: 110px minmax(60px, 1fr) 40px;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 11px;
}

.fit-row > span {
  color: var(--text-secondary);
  font-weight: 800;
}

.fit-row > b {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.fit-row > b i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #ff8c76);
}

.fit-row > em {
  color: var(--green);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.market-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.market-stat {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border);
}

.market-stat strong,
.market-stat span {
  display: block;
  text-align: left;
}

.market-stat span {
  margin-top: 8px;
}

.market-chart {
  display: flex;
  height: 112px;
  grid-column: 1 / -1;
  align-items: flex-end;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.18);
}

.market-chart i {
  flex: 1;
  height: 42%;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--accent), rgba(242, 86, 86, 0.22));
}

.market-chart i:nth-child(2) { height: 66%; }
.market-chart i:nth-child(3) { height: 48%; }
.market-chart i:nth-child(4) { height: 82%; }
.market-chart i:nth-child(5) { height: 70%; }
.market-chart i:nth-child(6) { height: 92%; }
.market-chart i:nth-child(7) { height: 76%; }
.market-chart i:nth-child(8) { height: 100%; }
.market-visual > p { grid-column: 1 / -1; }

.competition-visual {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 10px;
}

.analysis-clock {
  display: flex;
  grid-row: 1 / 4;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(242, 86, 86, 0.28);
  border-radius: 13px;
  background: rgba(242, 86, 86, 0.08);
  text-align: center;
}

.analysis-clock strong {
  color: var(--accent);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.analysis-clock span {
  max-width: 84px;
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.analysis-card {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.analysis-card span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
}

.analysis-card p {
  font-size: 12px;
  font-weight: 900;
}

/* Large specialty cards */
.specialty-section {
  padding: 104px 0;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.specialty-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #101010;
  transition: border-color 220ms var(--ease-out), transform 160ms var(--ease-out);
}

.specialty-card::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 86, 86, 0.23), transparent 67%);
  content: "";
  pointer-events: none;
}

.specialty-card.youtube::after {
  background: radial-gradient(circle, rgba(112, 126, 255, 0.22), transparent 67%);
}

.specialty-index {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.specialty-icon {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin: 54px 0 30px;
  border: 1px solid rgba(242, 86, 86, 0.28);
  border-radius: 18px;
  background: rgba(242, 86, 86, 0.09);
  color: var(--accent);
  font-size: 32px;
  font-weight: 900;
}

.specialty-card.youtube .specialty-icon {
  border-color: rgba(112, 126, 255, 0.3);
  background: rgba(112, 126, 255, 0.09);
  color: #8493ff;
  font-size: 25px;
}

.specialty-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.specialty-card p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 15px;
}

.specialty-card > span {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

/* Service cards */
.diff-section {
  padding: 104px 0;
  background: linear-gradient(180deg, #080808, #0d0d0d, #080808);
}

.diff-section h2,
.diff-sub {
  text-align: center;
}

.diff-sub {
  max-width: 530px;
  margin: 14px auto 52px;
  color: var(--text-secondary);
  font-size: 16px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.diff-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.diff-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 86, 86, 0.2);
  border-radius: 13px;
  background: rgba(242, 86, 86, 0.08);
  color: var(--accent);
  font-size: 25px;
  line-height: 1;
}

.diff-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.diff-body {
  flex: 1;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.diff-metric {
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 13px;
  border: 1px solid rgba(242, 86, 86, 0.2);
  border-radius: 999px;
  background: rgba(242, 86, 86, 0.09);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

/* Channels */
.niche-section {
  padding: 104px 0;
}

.niche-section h2,
.niche-sub {
  text-align: center;
}

.niche-sub {
  max-width: 580px;
  margin: 14px auto 52px;
  color: var(--text-secondary);
  font-size: 16px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.niche-card {
  min-height: 178px;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: border-color 200ms var(--ease-out), background-color 200ms var(--ease-out);
}

.niche-emoji {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(242, 86, 86, 0.08);
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

.niche-name {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 900;
}

.niche-count {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

/* Case studies */
.studies-section {
  padding: 104px 0;
  border-top: 1px solid var(--border);
}

.studies-section h2,
.studies-sub {
  text-align: center;
}

.studies-sub {
  max-width: 580px;
  margin: 14px auto 52px;
  color: var(--text-secondary);
  font-size: 16px;
}

.studies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.study-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  gap: 22px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #090909;
  transition: border-color 220ms var(--ease-out), transform 160ms var(--ease-out);
}

.study-brand-row {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.study-brand-row > span:last-child {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}

.study-brand-logo {
  width: auto;
  max-width: 90px;
  height: 28px;
  object-fit: contain;
}

.brand-wordmark {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  text-align: left !important;
}

.study-metrics {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}

.study-metric-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.study-metric-val {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

.study-metric-val em {
  color: var(--accent);
  font-style: normal;
}

.study-metric-label {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.study-divider {
  height: 1px;
  background: var(--border);
}

.study-link {
  padding-top: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.study-cta-row {
  text-align: center;
}

/* Measurement */
.measurement-section {
  padding: 104px 0;
  background: linear-gradient(180deg, #080808, #0d0d0d, #080808);
}

.measurement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.measurement-copy,
.measurement-card {
  min-height: 390px;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.measurement-copy {
  background:
    radial-gradient(circle at 0 100%, rgba(242, 86, 86, 0.14), transparent 43%),
    rgba(255, 255, 255, 0.025);
}

.measurement-copy p {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 15px;
}

.measurement-card {
  background: rgba(255, 255, 255, 0.035);
}

.measurement-card h3 {
  font-size: 24px;
  font-weight: 900;
}

.measurement-card .check-list {
  margin-top: 28px;
  gap: 16px;
}

/* Timeline */
.timeline-section {
  padding: 104px 0;
}

.timeline-section h2,
.timeline-sub {
  text-align: center;
}

.timeline-sub {
  max-width: 550px;
  margin: 14px auto 58px;
  color: var(--text-secondary);
  font-size: 16px;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  list-style: none;
}

.timeline-track::before {
  position: absolute;
  z-index: 0;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(242, 86, 86, 0.2));
  content: "";
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 8px;
  text-align: center;
}

.timeline-node {
  display: flex;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: #111;
  color: rgba(255, 255, 255, 0.75);
  font-size: 21px;
  font-weight: 900;
  transition: background-color 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 180ms var(--ease-out);
}

.timeline-step:first-child .timeline-node {
  border-color: var(--accent);
  background: rgba(242, 86, 86, 0.12);
  color: var(--accent);
}

.timeline-timing {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-title {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.timeline-desc {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.5;
}

/* Fit */
.fit-section {
  padding: 104px 0;
  border-top: 1px solid var(--border);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fit-card {
  min-height: 365px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.fit-card-positive {
  border-color: rgba(105, 214, 154, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 214, 154, 0.09), transparent 40%),
    rgba(255, 255, 255, 0.025);
}

.fit-card h3 {
  font-size: 22px;
  font-weight: 900;
}

.fit-card .check-list,
.fit-card .plain-list {
  margin-top: 26px;
  gap: 14px;
}

/* FAQ */
.faq-section {
  padding: 104px 0;
  background: linear-gradient(180deg, #080808, #0d0d0d, #080808);
}

.faq-section h2 {
  margin-bottom: 54px;
  text-align: center;
}

.faq-list {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  gap: 6px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.faq-item[open] {
  border-color: rgba(242, 86, 86, 0.35);
  background: rgba(242, 86, 86, 0.025);
}

.faq-item summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 22px;
  font-weight: 500;
  transition: color 180ms var(--ease-out), transform 200ms var(--ease-out);
}

.faq-item[open] summary span {
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 22px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* Final CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 126px;
}

.cta-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 90% at 50% 100%, rgba(242, 86, 86, 0.1), transparent 64%);
  content: "";
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.cta-inner p {
  max-width: 560px;
  margin: 18px auto 36px;
  color: var(--text-secondary);
  font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 8px 32px var(--accent-glow);
    transform: translateY(-1px);
  }

  .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
  }

  .logo-marquee-wrap:hover .logo-marquee-track {
    animation-play-state: paused;
  }

  .db-tab:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .db-tab.active:hover,
  .db-tab[aria-selected="true"]:hover {
    border-color: var(--accent);
    background: var(--accent);
  }

  .specialty-card:hover,
  .study-card:hover {
    border-color: rgba(242, 86, 86, 0.35);
    transform: translateY(-2px);
  }

  .diff-card:hover,
  .niche-card:hover {
    border-color: rgba(242, 86, 86, 0.3);
    background-color: rgba(242, 86, 86, 0.04);
  }

  .timeline-step:hover .timeline-node {
    border-color: var(--accent);
    background: rgba(242, 86, 86, 0.1);
    transform: scale(1.08);
  }

  .faq-item:hover {
    border-color: rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
  }

  .stat-item:nth-child(3) {
    border-left: 0;
  }

  .db-panel-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .specialty-grid,
  .measurement-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .specialty-card {
    min-height: 360px;
  }

  .diff-grid,
  .studies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .niche-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 8px;
  }

  .timeline-track::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 122px 0 64px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
  }

  .direct-answer-card {
    grid-template-columns: 1fr;
    padding: 30px 26px;
  }

  .direct-answer-label {
    padding-top: 0;
  }

  .direct-answer-steps {
    grid-column: 1;
  }

  .db-chrome-bar {
    grid-template-columns: 58px 1fr;
  }

  .db-mode {
    display: none;
  }

  .db-url {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .db-tabs {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .db-tabs::-webkit-scrollbar {
    display: none;
  }

  .db-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .db-panel-layout {
    min-height: 0;
    padding: 30px 22px;
  }

  .competition-visual {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .analysis-clock strong {
    font-size: 44px;
  }

  .specialty-card {
    min-height: 390px;
    padding: 28px;
  }

  .diff-grid,
  .studies-grid {
    grid-template-columns: 1fr;
  }

  .study-card {
    min-height: 370px;
  }

  .measurement-copy,
  .measurement-card {
    min-height: auto;
  }

  .timeline-track {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .timeline-track::before {
    display: block;
    left: 27px;
    right: auto;
    top: 28px;
    bottom: 28px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--accent), rgba(242, 86, 86, 0.15));
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    align-items: start;
    padding: 0 0 36px;
    text-align: left;
  }

  .timeline-step:last-child {
    padding-bottom: 0;
  }

  .timeline-node {
    grid-column: 1;
    grid-row: 1 / 4;
    margin: 0;
  }

  .timeline-timing,
  .timeline-title,
  .timeline-desc {
    grid-column: 2;
  }

  .timeline-timing { grid-row: 1; }
  .timeline-title { grid-row: 2; font-size: 16px; }
  .timeline-desc { grid-row: 3; font-size: 13px; }

  .fit-card {
    min-height: 0;
    padding: 30px 24px;
  }
}

@media (max-width: 520px) {
  .stats-bar {
    padding: 38px 0 30px;
  }

  .stat-item {
    padding: 0 10px;
  }

  .stat-number {
    font-size: 29px;
  }

  .stat-label {
    font-size: 10px;
  }

  .logo-pill {
    min-width: 130px;
  }

  .answer-section {
    padding-bottom: 84px;
  }

  .intel-section,
  .specialty-section,
  .diff-section,
  .niche-section,
  .studies-section,
  .measurement-section,
  .timeline-section,
  .fit-section,
  .faq-section {
    padding: 84px 0;
  }

  .intel-visual {
    padding: 21px;
  }

  .intel-big-number {
    display: block;
  }

  .intel-big-number span {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .fit-row {
    grid-template-columns: 92px minmax(50px, 1fr) 36px;
    gap: 8px;
  }

  .market-visual {
    grid-template-columns: 1fr;
  }

  .market-chart,
  .market-visual > p {
    grid-column: 1;
  }

  .competition-visual {
    grid-template-columns: 1fr;
  }

  .analysis-clock {
    min-height: 150px;
    grid-row: auto;
  }

  .niche-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .niche-card:last-child {
    grid-column: 1 / -1;
  }

  .direct-answer-steps i {
    display: none;
  }

  .cta-section {
    padding: 92px 0 106px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .logo-marquee-track {
    animation: none !important;
  }
}
