:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --text: #15171a;
  --text-2: #565b64;
  --text-3: #8a8f98;
  --border: #e7e7ea;
  --red: #FE2C55;
  --red-dark: #d91845;
  --red-50: #ffe8ee;
  --red-100: #ffb6c6;
  --cyan: #25F4EE;
  --cyan-50: #e6fffd;
  --cyan-100: #9ffaf6;
  --cyan-ink: #0e8a85;
  --ink: #111111;
  --green: #1aa260;
  --green-dark: #0e7a46;
  --green-50: #e7f7ee;
  --green-100: #beebd2;
  --ink: #15171a;
  --muted: #565b64;
  --line: #e7e7ea;
  --card: #ffffff;
  --shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.14);
  --sans: "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, h3 {
  margin: 0 0 0.4em;
  letter-spacing: -0.015em;
  font-weight: 800;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 1.9rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; position: relative; }
.narrow { max-width: 760px; }
.sr-only, .skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 8px 12px; z-index: 80; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .03s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .09s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .15s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .27s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .33s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: .39s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: .45s; }

.hero-in { opacity: 0; transform: translateY(16px); animation: heroUp .6s ease forwards; }
.hero-in.d1 { animation-delay: .05s; }
.hero-in.d2 { animation-delay: .15s; }
.hero-in.d3 { animation-delay: .28s; }
.hero-in.d4 { animation-delay: .42s; }
.hero-in.d5 { animation-delay: .56s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

.btn,
.cta-btn,
.calc-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn:hover,
.cta-btn:hover,
.calc-btn:hover {
  background: var(--cyan);
  color: #111;
  transform: translateY(-1px);
}
.btn:active,
.cta-btn:active,
.calc-btn:active { transform: translateY(0) scale(.98); }
.cta-btn::before,
.btn-gold::before,
.header-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine { 0% { left: -60%; } 35% { left: 130%; } 100% { left: 130%; } }
.btn-dark { background: #111; color: #fff; }
.btn-gold, .btn-red { background: #111; color: #fff; }
.btn-dark:hover, .btn-gold:hover, .btn-red:hover { background: var(--cyan); color: #111; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner,
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: transform .25s ease;
}
.brand-mark svg { width: 28px; height: 28px; overflow: visible; }
.brand:hover .brand-mark { transform: scale(1.08) rotate(-4deg); }
.brand-text { display: flex; align-items: baseline; gap: 6px; line-height: 1.1; }
.brand-text strong { font-size: 16px; }
.brand-text em { font-style: normal; color: var(--text-2); font-weight: 600; font-size: 15px; }
.nav-desktop,
.navlinks {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 14.5px;
  color: var(--text-2);
  font-weight: 500;
}
.nav-desktop a,
.navlinks a {
  position: relative;
  padding-bottom: 4px;
}
.nav-desktop a::after,
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width .2s ease;
}
.nav-desktop a:hover,
.navlinks a:hover { color: var(--text); }
.nav-desktop a:hover::after,
.navlinks a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-cta, .cta-btn { min-height: 40px; padding: 10px 20px; font-size: 14.5px; }
.nav-toggle,
.hamburger-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}
.nav-toggle i { display: block; height: 2px; background: var(--text); margin: 5px 8px; }
.mobile-nav,
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 32px 18px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.is-open,
.mobile-menu.open { display: flex; }
.mobile-nav a,
.mobile-menu a {
  padding: 11px 6px;
  font-size: 15px;
  color: var(--text-2);
  border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-menu a:hover { background: var(--bg-soft); color: var(--text); }
.mobile-menu-label {
  padding: 14px 6px 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.mobile-cta { margin-top: 14px; width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 14.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-dropdown-btn:hover { color: var(--text); }
.nav-chevron { width: 13px; height: 13px; transition: transform .2s ease; }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.18);
  padding: 8px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-2);
  white-space: nowrap;
}
.nav-dropdown-item:hover { background: var(--cyan-50); color: var(--cyan-ink); }

.hero {
  position: relative;
  padding: 72px 0 40px;
  text-align: center;
  overflow: hidden;
}
.hero-wash { display: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  opacity: .35;
  animation: drift 16s ease-in-out infinite;
  pointer-events: none;
}
.blob-a { width: 260px; height: 260px; background: var(--cyan-100); top: -40px; left: 4%; }
.blob-b { width: 220px; height: 220px; background: var(--red-50); top: 120px; right: 6%; animation-delay: -6s; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(18px,-22px) scale(1.08); }
}
.hero-intro { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.hero-intro h1 em,
.hero h1 .accent,
.hero h1 em,
.accent {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--cyan-ink);
  color: var(--cyan-ink);
}
.eyebrow-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 22px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cyan-50);
  color: var(--cyan-ink);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0;
  text-transform: none;
  border: 0;
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.lede, .hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 620px;
  margin: 16px auto 0;
}
.lede b, .hero-sub b { color: var(--text); font-weight: 700; }

.calc-card {
  margin: 36px auto 0;
  max-width: 760px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: box-shadow .3s ease, transform .3s ease;
}
.calc-card:hover { box-shadow: 0 20px 44px -20px rgba(0,0,0,.14); transform: translateY(-2px); }
.yt-search,
.calc-row {
  display: grid;
  grid-template-columns: 1.15fr minmax(210px, 1fr) auto;
  gap: 12px;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.calc-select {
  min-width: 0;
  text-overflow: ellipsis;
}
.yt-search input,
.calc-input,
.yt-search select,
.calc-select,
.input-plain,
.select-plain {
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 14px;
  font-size: 14.5px;
  color: var(--text);
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.yt-search input:focus,
.calc-input:focus,
.yt-search select:focus,
.calc-select:focus,
.input-plain:focus,
.select-plain:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-50);
  outline: none;
}
.yt-search input::placeholder { color: var(--text-3); }
.yt-search .btn,
.calc-btn { height: 48px; padding: 0 22px; border-radius: 10px; min-width: 140px; }
.search-error { color: var(--red-dark); margin-top: 10px; font-size: 13px; font-weight: 600; }
.calc-input.is-invalid,
.yt-search input.is-invalid {
  border-color: var(--red-dark);
  box-shadow: 0 0 0 3px var(--red-50);
}
.yt-alert {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 17, 20, 0.42);
}
.yt-alert[hidden] { display: none !important; }
.yt-alert-card {
  width: min(520px, 100%);
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.yt-alert-card p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 500;
}
.yt-alert-ok {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.yt-alert-ok:hover { background: var(--cyan); color: #111; }
.calc-board[hidden], .search-error[hidden], .report[hidden] { display: none !important; }

.report {
  display: grid;
  gap: 16px;
  margin: 28px auto 0;
  max-width: 880px;
  text-align: left;
}
.report > * {
  opacity: 0;
  transform: translateY(14px);
  animation: heroUp .5s ease forwards;
}
.report > *:nth-child(1) { animation-delay: .04s; }
.report > *:nth-child(2) { animation-delay: .1s; }
.report > *:nth-child(3) { animation-delay: .16s; }
.report > *:nth-child(4) { animation-delay: .22s; }
.report > *:nth-child(5) { animation-delay: .28s; }
.report > *:nth-child(6) { animation-delay: .34s; }

.profile-card,
.stat-panel,
.range-panel,
.rpm-panel,
.ledger,
.tool-board,
.info-card,
.pay-card,
.salary-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.profile-card:hover,
.stat-panel:hover,
.range-panel:hover,
.rpm-panel:hover,
.info-card:hover,
.pay-card:hover,
.salary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -18px rgba(0,0,0,.16);
  border-color: var(--cyan-100);
}
.profile-card { overflow: hidden; text-align: center; padding-bottom: 22px; }
.profile-banner {
  height: 180px;
  margin: -22px -22px 0;
  background: #111 center center / cover no-repeat;
}
.profile-banner.has-image {
  background-color: #111;
}
.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin: -36px auto 10px;
  background: var(--red);
}
.profile-name { font-size: 1.4rem; margin: 0 0 4px; }
.profile-subs, .profile-joined, .channel-meta { color: var(--text-3); margin: 0 0 4px; font-size: 14px; }
.profile-chips { display: flex; justify-content: center; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.profile-chip,
.yt-niche-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f4f6f8, #eef1f5);
  border: 0;
  color: var(--text-2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
}
.profile-chip b { font-weight: 700; color: var(--text); }
.profile-chip .chip-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  stroke: currentColor;
}
.profile-chip.is-entertainment { background: linear-gradient(135deg, #ffe4e8, #fff1f3); color: #e11d48; }
.profile-chip.is-entertainment b { color: #be123c; }
.profile-chip.is-education { background: linear-gradient(135deg, #fff1d6, #fff8ea); color: #d97706; }
.profile-chip.is-education b { color: #b45309; }
.profile-chip.is-tech { background: linear-gradient(135deg, #e0edff, #eef5ff); color: #2563eb; }
.profile-chip.is-tech b { color: #1d4ed8; }
.profile-chip.is-finance { background: linear-gradient(135deg, #dcfce7, #f0fdf4); color: #16a34a; }
.profile-chip.is-finance b { color: #15803d; }
.profile-chip.is-gaming { background: linear-gradient(135deg, #ede9fe, #f5f3ff); color: #7c3aed; }
.profile-chip.is-gaming b { color: #6d28d9; }
.profile-chip.is-health { background: linear-gradient(135deg, #ccfbf1, #f0fdfa); color: #0d9488; }
.profile-chip.is-health b { color: #0f766e; }
.profile-chip.is-music { background: linear-gradient(135deg, #fae8ff, #fdf4ff); color: #c026d3; }
.profile-chip.is-music b { color: #a21caf; }
.profile-chip.is-general { background: linear-gradient(135deg, #f4f6f8, #eef1f5); color: #64748b; }
.profile-chip.is-general b { color: #334155; }
.profile-chip.is-country { background: linear-gradient(135deg, #e0f2fe, #f0f9ff); color: #0284c7; }
.profile-chip.is-country b { color: #0369a1; }
.panel-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 14px;
}
.panel-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}
.panel-icon svg { width: 13px; height: 13px; display: block; }
.panel-icon.is-play { background: #ffe4ea; color: #FE2C55; }
.panel-icon.is-shorts { background: var(--cyan-50); color: #0d9488; }
.panel-icon.is-total { background: #dcfce7; color: #16a34a; }
.panel-icon.is-range { background: #ffedd5; color: #ea580c; }
.panel-icon.is-rpm { background: #e0e7ff; color: #4f46e5; }
.rpm-panel .panel-title { justify-content: center; margin-bottom: 10px; }
.stat-panel h3, .range-panel h3 { font-size: 16px; margin-bottom: 14px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat-grid.three { grid-template-columns: repeat(3, 1fr); }
.stat-grid div {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat-grid div:hover { transform: translateY(-3px); box-shadow: 0 10px 20px -10px rgba(0,0,0,.12); }
.stat-grid small { display: block; color: var(--text-3); margin-bottom: 6px; font-size: 12px; font-weight: 600; }
.stat-grid b { font-family: var(--mono); font-size: 1.05rem; }
.money { color: var(--green-dark); }
.range-panel { background: var(--green-50); border-color: var(--green-100); }
.rpm-panel { text-align: center; }
.rpm-panel p { color: var(--text-2); }
.rpm-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.rpm-row strong { font-family: var(--mono); font-size: 1.6rem; color: var(--green-dark); }
.rpm-row input[type="range"] { width: min(420px, 70%); accent-color: var(--cyan); }
.rpm-reset {
  border: 0;
  background: var(--cyan-50);
  color: var(--cyan-ink);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
}
.adjust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
  text-align: left;
}
.adjust-field {
  display: grid;
  gap: 8px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}
.adjust-field .calc-select { background: var(--bg-soft); }

.trust,
.trust-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
.trust p,
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text-2);
  margin: 0;
}
.trust i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex: 0 0 15px;
}
.trust i:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 5px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.trust-item svg { width: 15px; height: 15px; flex-shrink: 0; }

.section, .section-alt, .paper, .paper-2, .ink { padding: 72px 0; background: transparent; }
.section-alt, .ink { background: var(--bg-soft); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 1.9rem); }
.section-head p { color: var(--text-2); font-size: 15.5px; line-height: 1.65; margin-top: 12px; }
.kicker {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  font-weight: 700;
  margin-bottom: 10px;
}
.kicker.light { color: var(--cyan-ink); }
.direct { font-size: 16px; max-width: 62ch; color: var(--text-2); }
.direct.light { color: var(--text-2); }
.footnote, .tiers-note { color: var(--text-3); font-size: 13.5px; margin-top: 22px; text-align: center; }

.tier-table, .rpm-table-old { display: none; }
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tier-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tier-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px -18px rgba(0,0,0,.16); border-color: var(--cyan-100); }
.tier-card .badge,
.tool-card .badge,
.tool-card em {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--cyan-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--cyan-ink);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  transition: transform .25s ease;
}
.tier-card:hover .badge,
.tool-card:hover .badge,
.tool-card:hover em { transform: scale(1.1) rotate(-6deg); }
.tier-card .badge svg,
.tool-card .badge svg { width: 17px; height: 17px; stroke: var(--cyan-ink); fill: none; }
.tier-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 4px; }
.tier-card .sub { font-size: 13px; color: var(--text-3); margin-bottom: 14px; }
.tier-card .figure { font-family: var(--mono); font-size: 18px; font-weight: 600; color: var(--green-dark); }
.tier-card .figure small { font-size: 12px; color: var(--text-3); font-family: var(--sans); font-weight: 500; }

.info-grid, .two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.info-card { padding: 30px; }
.info-card .bar {
  width: 38px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
  margin-bottom: 18px;
  transition: width .3s ease;
}
.info-card:hover .bar { width: 58px; }
.info-card h3, .panel h3 { font-size: 19px; margin-bottom: 14px; }
.info-card ul, .ticks { margin: 0; padding: 0; list-style: none; }
.info-card li, .ticks li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
  padding: 7px 0;
}
.info-card li::before, .ticks li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 8px;
  flex-shrink: 0;
}
.rpm-table { width: 100%; font-size: 14px; margin-top: 8px; border-collapse: collapse; }
.rpm-table tr { border-bottom: 1px solid var(--border); }
.rpm-table tr:hover { background: var(--bg-soft); }
.rpm-table td, .rpm-table th { padding: 9px 4px; text-align: left; font-weight: 500; }
.rpm-table td:not(:first-child), .rpm-table th:not(:first-child) {
  text-align: right;
  font-family: var(--mono);
  font-weight: 600;
}
.rpm-table td:not(:first-child) { color: var(--green-dark); }
.rpm-table th { color: var(--text-3); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.panel { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px; }

.salary-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 520px; margin: 0 auto; text-align: center; }
.salary-wrap { max-width: 520px; margin: 0 auto; text-align: center; }
.salary-grid > div:first-child { text-align: center; }
.salary-grid .direct { margin-inline: auto; }
.toggle,
.seg.tight {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 18px;
  gap: 0;
}
.toggle button,
.seg-btn {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.toggle button.active,
.seg-btn.is-on { background: #111; color: #fff; border-color: #111; }
.pay-num,
.salary-figure {
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 600;
  color: var(--green-dark);
  margin: 8px 0;
}
.pay-num span,
.salary-figure small {
  font-size: 15px;
  color: var(--text-3);
  font-family: var(--sans);
  font-weight: 500;
  margin-left: 6px;
  -webkit-text-fill-color: var(--text-3);
}
.pay-note, .salary-sub { font-size: 14px; color: var(--text-2); }

.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.tool-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  min-height: 0;
  box-shadow: none;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
  position: relative;
  overflow: visible;
}
.tool-card:before { display: none; }
.tool-card:hover { border-color: var(--cyan-100); box-shadow: 0 16px 32px -14px rgba(37,244,238,.22); transform: translateY(-5px); }
.tool-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.tool-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; margin: 0 0 16px; }
.tool-card .open {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cyan-ink);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tool-card .open svg { width: 13px; height: 13px; transition: transform .2s ease; }
.tool-card:hover .open svg { transform: translateX(3px); }

.faq-wrap { width: min(720px, 100%); margin: 0 auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details,
.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.faq-list summary,
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover,
.faq-q:hover { color: var(--cyan-ink); }
.faq-list summary::after,
.faq-plus {
  content: "+";
  font-size: 20px;
  color: var(--text-3);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .3s ease, color .3s ease;
}
.faq-list details[open] summary::after,
.faq-item.open .faq-plus { transform: rotate(45deg); color: var(--cyan-ink); }
.faq-list details p,
.faq-a {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.7;
  padding: 0 4px 20px;
}

.footer-cta {
  background: transparent;
  color: var(--text);
  text-align: center;
  padding: 20px 32px 72px;
}
.footer-cta-inner {
  background: linear-gradient(135deg, #e6fffd, #ffe8ee);
  border: 1px solid #9ffaf6;
  border-radius: 20px;
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.footer-cta-inner::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(37,244,238,.16);
  top: -160px;
  right: -100px;
  animation: drift 14s ease-in-out infinite;
}
.footer-cta h2 { color: var(--text); font-size: clamp(1.6rem, 3vw, 1.85rem); max-width: 460px; position: relative; }
.eyebrow { letter-spacing: 0; text-transform: none; color: var(--cyan-ink); font-size: 13px; font-weight: 700; position: relative; }
.footer-cta .btn-dark,
.cta-white {
  position: relative;
  background: #111;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
}
.footer-cta .btn-dark:hover,
.cta-white:hover {
  background: var(--cyan);
  color: #111;
  box-shadow: 0 12px 24px -10px rgba(37,244,238,.45);
}

.site-footer { background: #fff; color: var(--text-3); padding: 8px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 28px;
}
.footer-bottom,
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-3);
  font-size: 13px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--text-2); }
.footer-label { color: var(--text); font-weight: 700; margin: 0 0 8px; font-size: 14px; }
.brand-footer { margin-bottom: 10px; }
.footer-note { display: block; max-width: 32ch; color: var(--text-3); font-size: 13.5px; }
.site-footer a { display: block; margin: 6px 0; color: var(--text-3); }
.site-footer a:hover { color: var(--text-2); }
.site-footer .brand { display: inline-flex; }

.page-hero, .page-plain, .tool-page { padding: 56px 0 24px; }
.tool-hero { padding: 48px 0 64px; }
.tool-hero::after { display: none; }
.tool-hero .hero-intro { margin-bottom: 28px; }
.tool-search { max-width: 640px; margin: 24px auto 0; grid-template-columns: 1fr auto; }
.tool-board.ledger {
  max-width: none;
  padding: 0;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.tool-board.ledger:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -20px rgba(0,0,0,.14); }
.tool-board.ledger:before,
.ledger:before { display: none; }
.tool-board .ledger-top { display: none; }
.calc-result {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 22px;
  background: var(--bg-soft);
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.calc-typical span,
.calc-range span {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 4px;
}
.calc-typical {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  padding: 18px;
}
.calc-typical strong {
  display: block;
  font-family: var(--mono);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.1;
  color: var(--green-dark);
}
.calc-typical .result-formula { margin: 10px 0 0; color: var(--text-2); font-size: 14px; }
.calc-range { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.calc-range div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.calc-range div:hover { transform: translateY(-3px); box-shadow: 0 10px 20px -10px rgba(0,0,0,.12); }
.calc-range b { font-family: var(--mono); font-size: 1.15rem; color: var(--green-dark); }
.calc-controls { padding: 22px; }
.calc-filters { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.field { margin-bottom: 16px; }
.field label, .field-label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.num-input {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  outline: none;
  color: var(--text);
}
.chips, .seg { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text-2);
}
.chip.is-on { background: #111; color: #fff; border-color: #111; }
.result-trio { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 8px; }
.stat { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 12px 10px; text-align: center; }
.stat span { display: block; font-size: 12px; color: var(--text-3); font-weight: 600; }
.stat strong { display: block; margin-top: 4px; font-family: var(--mono); font-size: 1.2rem; color: var(--green-dark); }
.stat-main { background: var(--green-50); border-color: var(--green-100); transform: none; box-shadow: none; }
.stat-main span { color: var(--text-3); }
.stat-main strong { font-size: 1.5rem; color: var(--green-dark); }
.result-year { text-align: center; margin: 14px 0 4px; color: var(--text-3); }
.tool-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.mini-note { color: var(--text-3); }
.link-row { display: flex; gap: 8px; }
.link-row .input-plain { flex: 1; }
.link-row .btn { min-height: 46px; padding: 0 16px; flex: 0 0 auto; }
.check-line { display: flex; align-items: center; gap: 8px; min-height: 46px; }
.check-grid { display: grid; gap: 10px; }
.check-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}
.check-item b { color: var(--green-dark); }
.check-item b.no, .calc-typical strong.no, .calc-range b.no { color: var(--red-dark); }

@media (max-width: 980px) {
  .header-inner, .nav { padding: 0 20px; }
  .hero-grid, .two-cards, .info-grid, .salary-grid, .tool-split, .footer-grid,
  .calc-result, .calc-filters, .calc-views .num-row, .adjust-grid { grid-template-columns: 1fr; }
  .yt-search, .calc-row { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .tool-grid { grid-template-columns: 1fr 1fr; }
  .nav-desktop, .navlinks, .header-cta { display: none; }
  .nav-toggle, .hamburger-btn { display: flex; }
  .stat-grid, .stat-grid.three { grid-template-columns: 1fr 1fr; }
  .calc-range { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 48px; }
  .hero h1, .hero-intro h1 { font-size: 33px; }
  .tool-grid, .trust, .trust-row, .tier-grid { grid-template-columns: 1fr; }
  .footer-base, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .calc-range { grid-template-columns: 1fr; }
  .footer-cta { padding: 12px 20px 48px; }
  .footer-cta-inner { padding: 36px 20px; }
}

.elig { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.elig div {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.elig small { display: block; color: var(--text-3); margin-bottom: 6px; font-size: 12px; font-weight: 600; }
.elig b.yes { color: var(--green-dark); }
.elig b.no { color: var(--red-dark); }
.pay-num { font-family: var(--mono); font-size: 2rem; color: var(--green-dark); margin: 0; text-align: center; }
.page-plain { padding: 48px 0 80px; }
.page-plain .narrow { width: min(720px, 100%); }
.profile-chip.is-likes { background: linear-gradient(135deg, #ffe4ea, #fff1f4); color: #e11d48; }
.profile-chip.is-likes b { color: #be123c; }
.profile-chip.is-videos { background: linear-gradient(135deg, #ccfbf1, #f0fdfa); color: #0d9488; }
.profile-chip.is-videos b { color: #0f766e; }
.profile-chip.is-followers { background: linear-gradient(135deg, #e0edff, #eef5ff); color: #2563eb; }
.profile-chip.is-followers b { color: #1d4ed8; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > *, .hero-in, .report > * { opacity: 1 !important; transform: none !important; }
}
