:root {
  --bg: #0b0c0f;
  --bg-2: #101217;
  --card: #14181b;
  --card-2: #171b22;
  --text: #f3f4f6;
  --muted: #8b8f98;          /* descriptions */
  --heading-muted: #5f646e;  /* footer titles */
  --bottom-muted: #4a4f59;   /* copyright/bottom text */
  --brand-blue: #5ca8ff;
  --line: rgba(255,255,255,0.08);
  --accent: #5ca8ff;
  --accent-2: #7cc4ff;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(11, 11, 15, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.primary-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 14px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 0;
  font-weight: 700;
}

.site-main {
  min-height: 60vh;
  padding: 48px 0 64px;
}

/* HERO */
.hero {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 24px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.7;
}

.section {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.section p,
.section li {
  color: var(--muted);
  line-height: 1.7;
}

.page-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.page-list a {
  display: block;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

/* CONTACT PAGE */
.contact-page {
  display: grid;
  gap: 28px;
}

.contact-hero {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.contact-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 820px;
  line-height: 1.7;
  font-size: 1rem;
}

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

.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  min-height: 132px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--text);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form-section h2 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(243,244,246,0.28);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(92,168,255,0.65);
  box-shadow: 0 0 0 4px rgba(92,168,255,0.12);
}

.field textarea {
  resize: vertical;
  min-height: 180px;
}

.submit-btn {
  width: fit-content;
  border: none;
  cursor: pointer;
  margin-top: 6px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  min-height: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-top {
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand p {
  color: var(--muted);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h3 {
  font-size: .82rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--heading-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-col a {
  display: block;
  color: var(--muted);
  margin: 10px 0;
  font-size: .95rem;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-sep {
  border-top: 1px solid var(--line);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 22px;
  color: var(--bottom-muted);
  font-size: .88rem;
}

/* Brand */
.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand-white {
  color: #fff;
}

.brand-tv {
  color: var(--brand-blue);
}

/* GLOBAL SCROLLBAR */
* {
  scrollbar-width: thin;
  scrollbar-color: #2f81d4 var(--bg-2);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-2);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3b8fe3, #2f81d4);
  border: 2px solid var(--bg-2);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #4a9af0, #3b8fe3);
}

::-webkit-scrollbar-corner {
  background: var(--bg-2);
}

.home-page {
  display: grid;
  gap: 85px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.platform-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.platform-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.platform-pill i,
.platform-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.home-hero {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.home-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.home-hero p {
  margin: 0 auto;
  max-width: 860px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-start {
  margin-top: 24px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.steps-section,
.faq-section,
.home-cta {
  margin-top: 10px;
}

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

.step-card,
.faq-card,
.home-cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(92,168,255,0.12);
  color: #7f9fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.step-card p,
.faq-card p,
.home-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.faq-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(92,168,255,0.12);
  color: #7f9fff;
  margin-bottom: 14px;
  font-size: 1rem;
}

.home-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  text-align: center;
  justify-items: center;
}

.home-cta-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 40px;
  padding: 0 14px;
}

.twitch-purple { color: #9146FF; }
.youtube-red { color: #FF0033; }
.kick-limegreen { color: #53FC18; }
.rumble-darkgreen { color: #85C742; }

.kick-svg,
.rumble-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.comparison-section {
  display: grid;
  gap: 18px;
}

.comparison-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-row > .comparison-feature {
  justify-content: flex-start;
}

.comparison-feature {
  justify-content: flex-start;
  text-align: left;
  color: var(--text);
  font-weight: 600;
}

.comparison-header .comparison-feature {
  justify-content: flex-start;
  text-align: left;
}

.comparison-ours {
  color: var(--text);
  font-weight: 700;
}

.comparison-others {
  color: var(--muted);
  font-weight: 700;
}

.comparison-yes {
  color: #4ade80;
  font-size: 1.05rem;
}

.comparison-no {
  color: #ef4444;
  font-size: 1.05rem;
}

.comparison-section .section-heading {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .comparison-row {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .comparison-row > div {
    padding: 14px 12px;
    font-size: 0.92rem;
  }
}

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

  .comparison-header {
    display: none;
  }

  .comparison-row > div {
    justify-content: flex-start;
    text-align: left;
  }

  .comparison-col::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--heading-muted);
    margin-right: 8px;
  }
}

@media (max-width: 900px) {
  .platform-pills,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    text-align: left;
  }

  .home-cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .nav {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cards,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .hero,
  .section {
    padding: 18px;
  }

  .contact-card {
    padding: 18px;
  }
}

.blog-page {
  display: grid;
  gap: 34px;
  padding-top: 8px;
}

.blog-hero {
  text-align: center;
  padding: 18px 0 2px;
}

.blog-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}

.blog-hero p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

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

.blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(92,168,255,0.25);
}

.blog-card.active {
  border-color: rgba(92,168,255,0.5);
  box-shadow: 0 0 0 1px rgba(92,168,255,0.14), 0 16px 44px rgba(0,0,0,0.28);
}

.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0d1016;
}

.blog-card-body {
  padding: 18px 18px 16px;
}

.blog-meta-top,
.blog-footer-meta,
.reader-badges,
.reader-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-meta-top {
  margin-bottom: 12px;
}

.blog-badge,
.reader-badges span:first-child {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(92,168,255,0.12);
  color: #7f9fff;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.blog-readtime,
.reader-badges span:nth-child(2),
.reader-badges span:nth-child(3) {
  color: var(--muted);
  font-size: .9rem;
}

.blog-card h2 {
  margin: 0 0 10px;
  font-size: 1.38rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.blog-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.blog-footer-meta {
  justify-content: space-between;
  color: var(--muted);
  font-size: .9rem;
}

.tag-row span,
.reader-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #7a7f91;
  font-size: .78rem;
}

.blog-reader {
  padding: 0;
  max-width: 820px;
  margin: 0 auto;
}

.reader-breadcrumb {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 18px;
}

.reader-header {
  margin-bottom: 16px;
}

.reader-badges {
  margin-bottom: 14px;
}

.reader-header h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.reader-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 860px;
}

.reader-tags {
  margin-bottom: 22px;
}

.reader-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}

.reader-content {
  color: var(--text);
  line-height: 1.9;
  font-size: 1.05rem;
}

.reader-content p {
  margin: 0 0 18px;
  color: var(--text);
}

.reader-breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reader-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.reader-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reader-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--bottom-muted);
}

.reader-breadcrumb a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.reader-breadcrumb a:hover {
  color: var(--text);
}

.reader-breadcrumb a[aria-current="location"] {
  color: var(--text);
  font-weight: 700;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
  cursor: pointer;
}

.blog-grid.hidden {
  display: none;
}

.blog-reader.hidden {
  display: none;
}

.about-page {
  display: grid;
  gap: 28px;
  padding-top: 8px;
}

.about-hero {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.about-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-hero p {
  margin: 0 auto;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(92,168,255,0.12);
  color: #7f9fff;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-feature {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.about-feature-inner {
  display: grid;
  gap: 18px;
}

.about-feature-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.about-feature-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 860px;
}

.start-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: #4f5560;
  border-radius: 10px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
}

.start-btn i {
  font-size: 0.9rem;
  color: #4f5560;
}

.start-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #3f444d;
}

.about-page {
  display: grid;
  gap: 30px;
  padding-top: 10px;
}

.about-hero {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 0 6px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-pill i {
  color: #a970ff;
}

.about-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-hero p {
  margin: 0 auto;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-start {
  margin-top: 22px;
  background: var(--card);
  color: #4f5560;
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-start i {
  font-size: 0.9rem;
  color: #4f5560;
}

.hero-start:hover {
  background: rgba(255,255,255,0.05);
  color: #3f444d;
}

.hero-start i,
.start-btn i {
  font-size: 0.9rem;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.step-card,
.faq-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(92,168,255,0.12);
  color: #7f9fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.step-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-section {
  display: grid;
  gap: 18px;
}

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

.faq-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(92,168,255,0.12);
  color: #7f9fff;
  margin-bottom: 14px;
  font-size: 1rem;
}

.contact-send-btn {
  background: var(--card);
  color: #4f5560;
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-send-btn i {
  font-size: 0.9rem;
  color: #4f5560;
}

.contact-send-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #3f444d;
}

.twitch-purple {
  color: #9146FF;
}

.youtube-red {
  color: #FF0000;
}

.hero-pill i.youtube-red {
  color: #FF0000;
}

.kick-limegreen {
  color: #53FC18;
}

.hero-pill i.kick-limegreen {
  color: #53FC18;
}

.kick-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.rumble-darkgreen {
  color: #85C742;
}

.hero-pill i.rumble-darkgreen {
  color: #85C742;
}

.rumble-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}


@media (max-width: 900px) {
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-hero {
    text-align: left;
  }
}

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

  .blog-footer-meta {
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .blog-card h2 {
    font-size: 1.22rem;
  }

  .reader-header h2 {
    font-size: 1.8rem;
  }
}

.icon-btn,
.primary-btn,
.start-btn,
.hero-start,
.hero-secondary,
.contact-send-btn,
button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.icon-btn::after,
.primary-btn::after,
.start-btn::after,
.hero-start::after,
.hero-secondary::after,
.contact-send-btn::after,
button::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -75%;
  width: 45%;
  height: 140%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.16) 45%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.16) 55%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.icon-btn:hover::after,
.primary-btn:hover::after,
.start-btn:hover::after,
.hero-start:hover::after,
.hero-secondary:hover::after,
.contact-send-btn:hover::after,
button:hover::after {
  opacity: 1;
  animation: button-glare 0.8s ease forwards;
}

.icon-btn,
.primary-btn,
.start-btn,
.hero-start,
.hero-secondary,
.contact-send-btn,
button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.icon-btn:hover,
.primary-btn:hover,
.start-btn:hover,
.hero-start:hover,
.hero-secondary:hover,
.contact-send-btn:hover,
button:hover {
  transform: translateY(-1px) scale(1.02);
}

.icon-btn:active,
.primary-btn:active,
.start-btn:active,
.hero-start:active,
.hero-secondary:active,
.contact-send-btn:active,
button:active {
  transform: translateY(0) scale(0.99);
}

@keyframes button-glare {
  from {
    left: -75%;
  }
  to {
    left: 130%;
  }
}

.twitch-gradient,
.youtube-gradient,
.kick-gradient,
.rumble-gradient {
  background-size: 200% 200%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: brand-flow 4.5s ease-in-out infinite;
}

.twitch-gradient {
  background-image: linear-gradient(90deg, #9146FF, #772CE8, #BF94FF, #9146FF);
}

.youtube-gradient {
  background-image: linear-gradient(90deg, #FF0033, #B30024, #FF6B7A, #FF0033);
}

.kick-gradient {
  background-image: linear-gradient(90deg, #53FC18, #2EA300, #9CFF6B, #53FC18);
}

.rumble-gradient {
  background-image: linear-gradient(90deg, #85C742, #4F8A22, #B8E986, #85C742);
}

@keyframes brand-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}