/* =========================================================
   MAHARA MEDIA — CSM Hiring Funnel
   Vanilla CSS. Builds on colors_and_type.css tokens.
   ========================================================= */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--deep-space);
  color: #F5F7FA;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: rgba(0,207,200,0.35); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

section { position: relative; }

.band {
  padding: 112px 0;
}
@media (max-width: 1024px) { .band { padding: 88px 0; } }
@media (max-width: 768px)  { .band { padding: 64px 0; } }

.band-dark  { background: var(--deep-space); color: #F5F7FA; }
.band-light { background: #F5F7FA; color: #091333; }
.band-elevated { background: #0B1638; color: #F5F7FA; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mahara-teal);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--mahara-teal);
}
.band-light .eyebrow { color: #0A8F8A; }
.band-light .eyebrow::before { background: #0A8F8A; }
/* colors_and_type.css forces headings to white (--fg); restore dark on light bands */
.band-light h1, .band-light h2, .band-light h3, .band-light h4 { color: #091333; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; }

.h-hero {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 60ch;
  text-wrap: pretty;
}
.band-dark .section-lead { color: rgba(245,247,250,0.72); }
.band-light .section-lead { color: #41485C; }

.mono { font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease-brand), box-shadow .3s var(--ease-brand), background .3s var(--ease-brand);
  white-space: nowrap;
}
.btn-primary {
  background: var(--mahara-teal);
  color: #062B2A;
  box-shadow: 0 0 0 0 rgba(0,207,200,0.0), 0 8px 24px rgba(0,207,200,0.18);
  animation: teal-breathe 3.2s var(--ease-brand) infinite;
}
.btn-primary:hover {
  background: #1BD9D2;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0,207,200,0.45), 0 10px 30px rgba(0,207,200,0.25);
  animation: none;
}
.btn-primary:active { transform: translateY(0); }
@keyframes teal-breathe {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,207,200,0.14); }
  50%      { box-shadow: 0 8px 30px rgba(0,207,200,0.30); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: #F5F7FA;
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-brand), transform .7s var(--ease-brand);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
}
.topbar .wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar img { height: 26px; }
.topbar .top-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245,247,250,0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s var(--ease-brand);
}
.topbar .top-cta:hover { color: var(--mahara-teal); }
@media (max-width: 768px) { .topbar .top-cta { display: none; } }

/* =========================================================
   1 · HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -15%; left: 50%;
  width: 1100px; height: 1100px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,207,200,0.14), transparent 58%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(0,207,200,0.08);
  border: 1px solid rgba(0,207,200,0.3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mahara-teal);
}
.hero .pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mahara-teal);
  box-shadow: 0 0 8px var(--mahara-teal);
  animation: dot-pulse 1.8s var(--ease-brand) infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 8px var(--mahara-teal), 0 0 0 0 rgba(0,207,200,0.4); }
  50%     { box-shadow: 0 0 10px var(--mahara-teal), 0 0 0 8px rgba(0,207,200,0); }
}
.hero h1 { max-width: 16ch; }
.hero h1 .grad {
  background: var(--mahara-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.5;
  color: var(--mahara-teal);
  max-width: 720px;
  font-weight: 400;
}
.hero-sub strong { color: #F5F7FA; font-weight: 600; }

/* VSL */
.vsl {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, #0B1638, #060D24);
  cursor: pointer;
  margin-top: 8px;
}
.vsl img.thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.vsl::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(46,91,214,0.25), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0,207,200,0.22), transparent 60%);
}
.vsl-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--mahara-teal);
  color: #062B2A;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(0,207,200,0.5);
  animation: play-pulse 2.2s var(--ease-brand) infinite;
  transition: transform .3s var(--ease-brand), background .3s var(--ease-brand);
}
.vsl:hover .vsl-play { background: #1BD9D2; transform: translate(-50%,-50%) scale(1.06); }
.vsl-play svg { width: 34px; height: 34px; margin-left: 4px; }
@keyframes play-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,207,200,0.5), 0 0 40px rgba(0,207,200,0.25); }
  50%     { box-shadow: 0 0 0 22px rgba(0,207,200,0), 0 0 60px rgba(0,207,200,0.4); }
}
@media (prefers-reduced-motion: reduce) { .vsl-play { animation: none; } }
.vsl-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mahara-teal);
  background: rgba(0,207,200,0.08);
  border: 1px solid rgba(0,207,200,0.3);
  padding: 5px 12px;
  border-radius: 999px;
}

.hero-trust {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245,247,250,0.5);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(245,247,250,0.3); }

/* =========================================================
   2 · QUALIFIER STRIP
   ========================================================= */
.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) { .qual-grid { grid-template-columns: 1fr; } }
.qual-card {
  background: #fff;
  border: 1px solid #E3E7EF;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 6px 18px rgba(9,19,51,0.05);
}
.qual-card.yes { border-top: 3px solid var(--mahara-teal); }
.qual-card.no  { border-top: 3px solid #E5484D; }
.qual-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  margin-bottom: 22px;
}
.qual-badge {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.qual-card.yes .qual-badge { background: rgba(0,207,200,0.12); color: #0A8F8A; }
.qual-card.no  .qual-badge { background: rgba(229,72,77,0.10); color: #E5484D; }
.qual-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.qual-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
  color: #2A3047;
}
.qual-list .ic { margin-top: 2px; }
.qual-card.yes .ic { color: #0A8F8A; }
.qual-card.no  .ic { color: #E5484D; }

/* =========================================================
   3 · ROLE OVERVIEW — icon stat cards
   ========================================================= */
.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 1024px) { .role-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .role-grid { grid-template-columns: 1fr; } }
.role-card {
  position: relative;
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color .3s var(--ease-brand), transform .3s var(--ease-brand);
}
.role-card:hover { border-color: rgba(0,207,200,0.4); transform: translateY(-3px); }
.role-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(0,207,200,0.10), transparent 70%);
}
.role-ic {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(0,207,200,0.10);
  color: var(--mahara-teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.role-stat {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.role-desc { font-size: 14px; color: rgba(245,247,250,0.62); line-height: 1.5; }

/* =========================================================
   4 · COMPENSATION
   ========================================================= */
.comp-bar {
  margin-top: 44px;
  display: flex;
  width: 100%;
  height: 92px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E3E7EF;
  box-shadow: 0 6px 18px rgba(9,19,51,0.06);
}
.comp-seg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  min-width: 0;
  transition: flex-grow .4s var(--ease-brand);
}
.comp-seg .seg-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comp-seg .seg-val { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.comp-seg.base     { flex: 2.6; background: #1B2550; }
.comp-seg.renewal  { flex: 1.8; background: #2E5BD6; }
.comp-seg.ascend   { flex: 1.4; background: #1E7BC9; }
.comp-seg.upsell   { flex: 1.4; background: #00B3AD; }
.comp-seg.churn    { flex: 1.2; background: var(--mahara-teal); color: #062B2A; }
@media (max-width: 860px) {
  .comp-bar { flex-direction: column; height: auto; }
  .comp-seg { flex: none !important; padding: 16px 20px; flex-direction: row; align-items: center; justify-content: space-between; }
}
.comp-ceiling {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.comp-ceiling .note { font-size: 15px; color: #41485C; }
.comp-ceiling .total {
  font-family: var(--font-mono);
  font-size: 15px;
  color: #0A8F8A;
  letter-spacing: 0.04em;
}
.comp-kicker {
  margin-top: 36px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #091333;
  text-align: center;
  text-wrap: balance;
}
.comp-kicker em { font-style: normal; color: #0A8F8A; }

/* =========================================================
   5 · DAY IN THE LIFE — timeline
   ========================================================= */
.timeline {
  margin-top: 48px;
  position: relative;
  display: grid;
  gap: 4px;
}
.tl-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 640px) { .tl-row { grid-template-columns: 76px 1fr; gap: 18px; } }
.tl-time {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--mahara-teal);
  padding-top: 22px;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 640px) { .tl-time { font-size: 13px; } }
.tl-marker {
  position: relative;
  padding-left: 28px;
  padding-bottom: 28px;
}
.tl-row:last-child .tl-marker { padding-bottom: 0; }
.tl-marker::before {
  content: "";
  position: absolute;
  left: 0; top: 26px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--mahara-teal);
  box-shadow: 0 0 0 4px rgba(0,207,200,0.15);
  z-index: 1;
}
.tl-marker::after {
  content: "";
  position: absolute;
  left: 6px; top: 26px;
  width: 1px; height: 100%;
  background: linear-gradient(rgba(0,207,200,0.4), rgba(0,207,200,0.06));
}
.tl-row:last-child .tl-marker::after { display: none; }
.tl-card {
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color .3s var(--ease-brand);
}
.tl-card:hover { border-color: rgba(0,207,200,0.35); }
.tl-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.tl-card p { margin: 0; font-size: 14px; color: rgba(245,247,250,0.62); line-height: 1.5; }

/* =========================================================
   6 · ABOUT MAHARA
   ========================================================= */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid #E3E7EF;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 640px) { .about-stats { grid-template-columns: 1fr; } }
.about-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid #E3E7EF;
}
.about-stat:last-child { border-right: none; }
@media (max-width: 640px) {
  .about-stat { border-right: none; border-bottom: 1px solid #E3E7EF; }
  .about-stat:last-child { border-bottom: none; }
}
.about-stat .num {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #091333;
  line-height: 1;
}
.about-stat .num .u { color: #0A8F8A; }
.about-stat .lbl {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B7280;
}
.about-copy {
  max-width: 64ch;
  font-size: 18px;
  line-height: 1.65;
  color: #2A3047;
}
.about-copy strong { color: #091333; }

/* =========================================================
   7 · CAREER PATH — ladder
   ========================================================= */
.ladder {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}
@media (max-width: 860px) { .ladder { grid-template-columns: 1fr; gap: 16px; } }
.rung {
  position: relative;
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ladder .rung:nth-child(1) { border-radius: 12px 0 0 12px; }
.ladder .rung:nth-child(3) { border-radius: 0 12px 12px 0; }
@media (max-width: 860px) { .ladder .rung { border-radius: 12px !important; } }
.rung:nth-child(2) { background: #112051; }
.rung:nth-child(3) {
  background: linear-gradient(135deg, rgba(46,91,214,0.18), rgba(0,207,200,0.14));
  border-color: rgba(0,207,200,0.4);
}
.rung .step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mahara-teal);
}
.rung h4 { font-size: 21px; font-weight: 600; }
.rung p { margin: 0; font-size: 14px; color: rgba(245,247,250,0.66); line-height: 1.55; }
.rung .arrow {
  position: absolute;
  top: 50%; right: -13px;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--mahara-teal);
  color: #062B2A;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--deep-space);
}
.ladder .rung:last-child .arrow { display: none; }
@media (max-width: 860px) {
  .rung .arrow { top: auto; bottom: -21px; right: 50%; transform: translateX(50%) rotate(90deg); }
}

/* =========================================================
   8 · REQUIREMENTS
   ========================================================= */
.req-list {
  margin-top: 40px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 760px;
}
.req-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: center;
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 17px;
  color: #F5F7FA;
  transition: border-color .3s var(--ease-brand), transform .3s var(--ease-brand);
}
.req-list li:hover { border-color: rgba(0,207,200,0.5); transform: translateX(4px); }
.req-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--mahara-teal);
  color: #062B2A;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* =========================================================
   9 · APPLICATION FORM
   ========================================================= */
.apply-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.form-shell {
  margin: 40px auto 0;
  max-width: 720px;
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.form-shell::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(0,207,200,0.10), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(46,91,214,0.10), transparent 50%);
  pointer-events: none;
}
.form-shell > [data-tf-live] {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  background: var(--deep-space);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 700px) { .form-shell > [data-tf-live] { height: 640px; } }
.form-embed {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  background: var(--deep-space);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
}
.form-embed .tf-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0,207,200,0.10);
  color: var(--mahara-teal);
  display: flex; align-items: center; justify-content: center;
}
.form-embed .tf-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,247,250,0.5);
}
.form-embed p { margin: 0; color: rgba(245,247,250,0.7); font-size: 15px; max-width: 38ch; line-height: 1.5; }
.form-trust {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(245,247,250,0.5);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* =========================================================
   10 · FAQ
   ========================================================= */
.faq-list {
  margin-top: 40px;
  max-width: 820px;
  border-top: 1px solid #E3E7EF;
}
.faq-item { border-bottom: 1px solid #E3E7EF; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: #091333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  letter-spacing: -0.01em;
  transition: color .3s var(--ease-brand);
}
.faq-q:hover { color: #0A8F8A; }
.faq-chev {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #0A8F8A;
  transition: transform .3s var(--ease-brand);
}
.faq-item.open .faq-chev { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease-brand);
}
.faq-a-inner {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #41485C;
  max-width: 64ch;
}

/* =========================================================
   11 · FOOTER
   ========================================================= */
.footer {
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--deep-space);
}
.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer img { height: 26px; }
.footer .legal {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245,247,250,0.5);
}
.footer .legal a { color: var(--mahara-teal); }

/* =========================================================
   REAL-TALK CALLOUT (honesty banner)
   ========================================================= */
.realtalk {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  background: #fff;
  border: 1px solid #E3E7EF;
  border-left: 3px solid var(--royal-blue);
  border-radius: 12px;
  padding: 28px 30px;
  box-shadow: 0 6px 18px rgba(9,19,51,0.05);
}
.realtalk .rt-ic {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(46,91,214,0.10);
  color: var(--royal-blue);
  display: flex; align-items: center; justify-content: center;
}
.realtalk h3 { font-size: 20px; margin-bottom: 8px; color: #091333; }
.realtalk p { margin: 0; font-size: 16px; line-height: 1.6; color: #41485C; }
.realtalk p strong { color: #091333; }
@media (max-width: 560px) {
  .realtalk { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT THE FOUNDER
   ========================================================= */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  margin-top: 44px;
}
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 32px; } }
.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #2E5BD6 0%, #00CFC8 100%);
}
.founder-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.05) contrast(1.03);
}
.founder-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(9,19,51,0.6) 100%);
}
.founder-name {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.founder-bio { font-size: 20px; line-height: 1.55; color: #F5F7FA; }
.founder-bio strong { color: #fff; }
.founder-bio + .founder-bio { margin-top: 18px; font-size: 16px; color: rgba(245,247,250,0.7); }

/* YouTube inline list */
.yt-block { margin-top: 30px; }
.yt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,247,250,0.55);
  margin-bottom: 16px;
}
.yt-channel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mahara-teal);
  transition: color .3s var(--ease-brand);
}
.yt-channel:hover { color: #1BD9D2; }
.yt-list { display: flex; flex-direction: column; gap: 14px; }
.yt-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px;
  transition: border-color .3s var(--ease-brand), transform .3s var(--ease-brand), box-shadow .3s var(--ease-brand);
}
.yt-row:hover {
  border-color: rgba(0,207,200,0.4);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0,207,200,0.18), 0 0 26px rgba(0,207,200,0.12);
}
.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #0B1638;
}
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.yt-thumb .pl {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,207,200,0.92);
  color: #062B2A;
  display: flex; align-items: center; justify-content: center;
}
.yt-row .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,247,250,0.5); }
.yt-row .ttl {
  margin-top: 4px;
  font-size: 15px; font-weight: 600; line-height: 1.4; color: #F5F7FA;
  letter-spacing: -0.005em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 480px) { .yt-row { grid-template-columns: 1fr; } }

.yt-skel { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; padding: 12px; }
.yt-skel .t, .yt-skel .l {
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  background-size: 200% 100%;
  animation: skel 1.4s linear infinite;
  border-radius: 6px;
}
.yt-skel .t { aspect-ratio: 16 / 9; }
.yt-skel .lines { display: flex; flex-direction: column; gap: 8px; }
.yt-skel .l { height: 12px; }
.yt-skel .l.s { width: 45%; }
@keyframes skel { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (max-width: 480px) { .yt-skel { grid-template-columns: 1fr; } }

.yt-fallback {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.03);
  color: #F5F7FA; font-size: 14px; font-weight: 500;
  transition: all .3s var(--ease-brand);
}
.yt-fallback:hover { color: var(--mahara-teal); border-color: var(--mahara-teal); }

/* =========================================================
   TESTIMONIALS + GOOGLE REVIEWS
   ========================================================= */
.proof-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-top: 44px;
}
@media (max-width: 820px) { .proof-head { grid-template-columns: 1fr; gap: 24px; } }
.google-card {
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.google-card .g-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.google-card .g-num { font-family: var(--font-mono); font-size: 28px; font-weight: 600; letter-spacing: -0.01em; line-height: 1; }
.google-card .g-num .of { color: rgba(245,247,250,0.5); font-size: 16px; font-weight: 400; }
.google-card .stars { display: flex; gap: 2px; color: #FFC93B; margin: 6px 0; }
.google-card .stars svg { width: 17px; height: 17px; }
.google-card .g-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,247,250,0.5); }
.google-card .g-meta { margin-left: auto; max-width: 200px; font-size: 13px; line-height: 1.45; color: rgba(245,247,250,0.66); }
@media (max-width: 480px) { .google-card { flex-wrap: wrap; } .google-card .g-meta { margin-left: 0; } }
.proof-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mahara-teal);
  align-self: end;
  padding-bottom: 8px;
}
.tv-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 900px) { .tv-grid { grid-template-columns: 1fr; } }
.tv-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.tv-cell {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color .3s var(--ease-brand);
}
.tv-cell:hover { border-color: rgba(0,207,200,0.4); }
.tv-cell wistia-player { display: block; width: 100%; }
.tv-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mahara-teal);
  background: rgba(9,19,51,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,207,200,0.3);
  padding: 5px 10px;
  border-radius: 999px;
  pointer-events: none;
}
.tv-wide { margin-top: 20px; }

/* =========================================================
   KPI STRIP
   ========================================================= */
.kpi-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .kpi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .kpi-grid { grid-template-columns: 1fr 1fr; } }
.kpi {
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 22px;
  transition: border-color .3s var(--ease-brand), transform .3s var(--ease-brand);
}
.kpi:hover { border-color: rgba(0,207,200,0.4); transform: translateY(-3px); }
.kpi .v { font-family: var(--font-mono); font-size: clamp(26px, 3vw, 34px); font-weight: 600; letter-spacing: -0.02em; line-height: 1; color: #F5F7FA; }
.kpi .v .u { color: var(--mahara-teal); }
.kpi .k { margin-top: 10px; font-size: 13px; color: rgba(245,247,250,0.62); line-height: 1.4; }

/* =========================================================
   PLATFORM LOGOS STRIP
   ========================================================= */
.platforms {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.platforms .pf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,247,250,0.85);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.platforms .pf svg { width: 26px; height: 26px; display: block; }
.platforms .pf-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(245,247,250,0.25); }
@media (max-width: 540px) { .platforms { gap: 18px; } .platforms .pf { font-size: 14px; } .platforms .pf-sep { display: none; } }

/* On light bands */
.band-light .platforms .pf { color: #2A3047; }
.band-light .platforms .pf-sep { background: rgba(9,19,51,0.2); }

/* Platforms inside the hero (compact, label optional) */
.hero-platforms {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}
.hero-platforms .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,247,250,0.5);
}
.hero-platforms .pfs { display: inline-flex; align-items: center; gap: 16px; }
.hero-platforms svg { width: 24px; height: 24px; display: block; }
@media (max-width: 540px) {
  .hero-platforms { flex-direction: column; gap: 10px; padding: 14px 20px; }
}

/* =========================================================
   STICKY APPLY BUTTON
   ========================================================= */
.sticky-apply {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity .4s var(--ease-brand), transform .4s var(--ease-brand);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 28px rgba(0,207,200,0.35);
}
.sticky-apply.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .sticky-apply {
    left: 16px; right: 16px; bottom: 16px;
    justify-content: center;
  }
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.ty-hero {
  position: relative;
  text-align: center;
  padding: 80px 0 8px;
  overflow: hidden;
}
.ty-hero::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  width: 1000px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,207,200,0.14), transparent 60%);
  pointer-events: none;
}
.ty-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 25%, transparent 72%);
  pointer-events: none;
}
.ty-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.ty-check {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(0,207,200,0.10);
  border: 1.5px solid rgba(0,207,200,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--mahara-teal);
  position: relative;
  animation: ty-pulse 2.4s var(--ease-brand) infinite;
}
.ty-check svg { width: 38px; height: 38px; }
@keyframes ty-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,207,200,0.5), 0 0 60px rgba(0,207,200,0.22); }
  50%     { box-shadow: 0 0 0 18px rgba(0,207,200,0), 0 0 80px rgba(0,207,200,0.35); }
}
.ty-check::before {
  content: "";
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(0,207,200,0.2);
  animation: ty-ring 3s var(--ease-brand) infinite;
}
@keyframes ty-ring {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ty-check, .ty-check::before { animation: none; }
}
.ty-hero h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.ty-hero h1 .grad {
  background: var(--mahara-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ty-hero .sub { font-size: 18px; line-height: 1.6; color: rgba(245,247,250,0.72); max-width: 600px; }
.ty-accent { width: 80px; height: 2px; border-radius: 999px; background: var(--mahara-gradient); box-shadow: 0 0 20px rgba(0,207,200,0.5); }

.ty-video-wrap { max-width: 760px; margin: 36px auto 0; text-align: center; }
.ty-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg,#0B1638,#060D24);
  transition: border-color .3s var(--ease-brand), box-shadow .3s var(--ease-brand);
}
.ty-video:hover { border-color: rgba(0,207,200,0.5); box-shadow: 0 0 0 1px rgba(0,207,200,0.4), 0 0 60px rgba(0,207,200,0.2); }
.ty-video wistia-player { display: block; width: 100%; }
.ty-video-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mahara-teal);
  background: rgba(9,19,51,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,207,200,0.3);
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: none;
}
.ty-video-cap { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: rgba(245,247,250,0.55); }

.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 860px) { .ty-steps { grid-template-columns: 1fr; } }
.ty-step {
  position: relative;
  background: #0E1A42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: border-color .3s var(--ease-brand), transform .3s var(--ease-brand);
}
.ty-step:hover { border-color: rgba(0,207,200,0.35); transform: translateY(-2px); }
.ty-step::after {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(0,207,200,0.10), transparent 70%);
}
.ty-step .n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--mahara-teal); }
.ty-step .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,207,200,0.10);
  color: var(--mahara-teal);
  display: flex; align-items: center; justify-content: center;
}
.ty-step h3 { font-size: 19px; font-weight: 600; }
.ty-step p { margin: 0; font-size: 14.5px; color: rgba(245,247,250,0.66); line-height: 1.6; }

.ty-why {
  margin-top: 44px;
  background: linear-gradient(135deg, rgba(46,91,214,0.10), rgba(0,207,200,0.10));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ty-why h3 { font-size: clamp(22px,3vw,30px); margin-bottom: 22px; }
.ty-why-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
}
@media (max-width: 700px) { .ty-why-list { grid-template-columns: 1fr; } }
.ty-why-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: 14px;
  align-items: start; font-size: 16px; line-height: 1.55; color: #F5F7FA;
}
.ty-why-list .c {
  margin-top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mahara-teal);
  color: #062B2A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px rgba(0,207,200,0.4);
}
.ty-proof {
  margin-top: 44px;
  text-align: center;
}
.ty-proof .ttl {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245,247,250,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  border-radius: 999px;
  padding: 10px 22px;
}
.ty-foot { text-align: center; padding: 56px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.ty-foot img { height: 26px; margin: 0 auto 16px; opacity: 0.85; }
.ty-foot .line { font-size: 16px; color: rgba(245,247,250,0.72); display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.ty-foot .email { color: var(--mahara-teal); font-weight: 500; border-bottom: 1px dashed rgba(0,207,200,0.5); }
.ty-foot .back { display: inline-flex; margin-top: 22px; align-items: center; gap: 8px; color: rgba(245,247,250,0.5); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; transition: color .3s var(--ease-brand); }
.ty-foot .back:hover { color: var(--mahara-teal); }
.ty-foot .cr { margin-top: 22px; font-family: var(--font-mono); font-size: 11px; color: rgba(245,247,250,0.4); letter-spacing: 0.06em; }

/* =========================================================
   GOOGLE REVIEWS EMBED (Elfsight)
   ========================================================= */
.reviews-embed { margin-top: 32px; }
.reviews-embed .elfsight-app-0e4367cc-f2b5-4319-855b-df5f0c0d46e9 { min-height: 240px; }

/* =========================================================
   PARTNER LOGO MARQUEE
   ========================================================= */
.partners { background: var(--deep-space); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 30px 0; overflow: hidden; }
.partners-label { text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,247,250,0.42); margin-bottom: 20px; }
.partners-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.partners-track { display: flex; align-items: center; gap: 14px; width: max-content; animation: partners-scroll 50s linear infinite; }
.partners-marquee:hover .partners-track { animation-play-state: paused; }
@keyframes partners-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partners-track img { height: 46px; width: auto; max-width: 220px; object-fit: contain; display: block; flex: none; padding: 0 24px; box-sizing: content-box; opacity: 0.6; transition: opacity .35s var(--ease-brand), transform .35s var(--ease-brand), filter .35s var(--ease-brand); }
.partners-track img:hover { opacity: 1; transform: scale(1.08); filter: drop-shadow(0 0 14px rgba(0,207,200,0.55)); }
@media (max-width: 700px) { .partners { padding: 22px 0; } .partners-track { gap: 10px; } .partners-track img { height: 32px; max-width: 150px; padding: 0 14px; } }
@media (prefers-reduced-motion: reduce) { .partners-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } .partners-track img[aria-hidden="true"] { display: none; } }

/* YouTube + Instagram links */
.yt-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ig-channel { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: rgba(245,247,250,0.6); text-decoration: none; padding: 5px 10px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; transition: color .3s var(--ease-brand), border-color .3s var(--ease-brand), background .3s var(--ease-brand); }
.ig-channel:hover { color: #fff; border-color: rgba(214,41,118,0.55); background: rgba(214,41,118,0.12); }
@media (max-width: 540px) { .yt-links { gap: 10px; } }
