﻿/* ─────────────────────────────────────────────────────────────────────────
   EduReach – EduTech Landing v2
   Palette: Navy #1A2447 · Green #2DC76D · Mint #D8F3E3 · Coral #F2BAB1
   All rules scoped under .tp-landing so they never leak to other pages.
   ─────────────────────────────────────────────────────────────────────────*/

.tp-landing-html { background: #FBFDFB; overflow-x: clip; }

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

.tp-landing {
  --navy:        #1A2447;
  --navy-deep:   #11193A;
  --navy-soft:   #E7EAF1;
  --navy-soft2:  #F1F3F8;
  --green:       #2DC76D;
  --green-deep:  #22B05E;
  --mint:        #D8F3E3;
  --mint-soft:   #EAF8F0;
  --coral:       #F2BAB1;
  --coral-soft:  #FDE7E3;
  --teal:        #1FB39F;
  --teal-soft:   #CFEEEA;
  --ink:         #1A2447;
  --text:        #2A3358;
  --muted:       #8089A4;
  --bg:          #FBFDFB;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tp-landing a   { text-decoration: none; color: inherit; }
.tp-landing img { max-width: 100%; display: block; }
.tp-landing button { font-family: inherit; cursor: pointer; border: none; background: none; }
.tp-landing ul { list-style: none; }

/* ── Container ──────────────────────────────────────────────────────────── */
.tp-landing .wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.tp-landing .btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: white;
  padding: 12px 28px; border-radius: 100px;
  font-weight: 600; font-size: 0.92rem;
  transition: background .2s, transform .15s;
  box-shadow: 0 8px 22px -8px rgba(45,199,109,.5);
  border: none; cursor: pointer;
}
.tp-landing .btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }

.tp-landing .btn-outline {
  display: inline-flex; align-items: center;
  background: none; color: var(--ink);
  border: 1.5px solid var(--navy-soft);
  padding: 10px 24px; border-radius: 100px;
  font-weight: 600; font-size: 0.92rem;
  transition: border-color .2s; cursor: pointer;
}
.tp-landing .btn-outline:hover { border-color: var(--navy); }

.tp-landing .btn-ghost {
  color: var(--muted); font-weight: 500; font-size: 0.92rem; transition: color .2s;
}
.tp-landing .btn-ghost:hover { color: var(--ink); }

/* ── Scroll progress ────────────────────────────────────────────────────── */
.tp-landing .scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; background: var(--green); width: 0;
  transition: width .08s linear; pointer-events: none;
}

/* ── NAV ────────────────────────────────────────────────────────────────── */
.tp-landing .topnav {
  position: sticky; top: 0; z-index: 100;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.tp-landing .topnav.scrolled { box-shadow: 0 2px 16px -4px rgba(26,36,71,.1); }
.tp-landing .topnav-inner {
  max-width: 1240px; margin: 0 auto; padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.tp-landing .logo {
  font-weight: 800; font-size: 1.8rem; color: var(--ink);
  letter-spacing: -.03em; flex-shrink: 0;
  display: flex; flex-direction: column; line-height: 1.05;
}
.tp-landing .logo-tagline {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em;
  opacity: 0.55; line-height: 1; margin-top: 3px; text-transform: uppercase;
}
.tp-landing .navlinks { display: flex; align-items: center; gap: 42px; }
.tp-landing .navlinks a {
  color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color .2s;
}
.tp-landing .navlinks a.active,
.tp-landing .navlinks a:hover { color: var(--ink); font-weight: 600; }
.tp-landing .nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.tp-landing .nav-hamburger {
  display: none; padding: 6px; color: var(--ink); border: none; background: none; cursor: pointer;
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.tp-landing .hero {
  padding: 70px 0 40px;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center; position: relative;
}
.tp-landing .hero::before {
  content: ''; position: absolute; inset: -40px -10% 0;
  background: linear-gradient(135deg, rgba(216,243,227,.6) 0%, rgba(253,231,227,.5) 60%, transparent 100%);
  z-index: -1; border-radius: 30px;
}
.tp-landing .pill {
  display: inline-block; padding: 10px 18px;
  border: 1.5px solid var(--green); border-radius: 6px;
  color: var(--green); font-size: .78rem; font-weight: 600; margin-bottom: 28px;
}
.tp-landing .hero-title {
  font-size: 3.4rem; font-weight: 500; line-height: 1.18;
  color: var(--ink); letter-spacing: -.02em; margin-bottom: 22px;
}
.tp-landing .hero-title b { font-weight: 800; position: relative; display: inline-block; }
.tp-landing .hero-title b.under::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 6px; background: var(--green); z-index: -1; border-radius: 3px;
}
.tp-landing .hero-sub {
  color: var(--muted); font-size: .98rem; line-height: 1.7;
  max-width: 440px; margin-bottom: 38px;
}
.tp-landing .hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.tp-landing .play-row {
  display: flex; align-items: center; gap: 14px;
  border: none; background: none; cursor: pointer; font-family: inherit;
}
.tp-landing .play-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 6px 18px -6px rgba(242,186,177,.7);
}
.tp-landing .play-circle svg { width: 16px; height: 16px; margin-left: 3px; }
.tp-landing .play-label {
  font-weight: 600; font-size: .95rem; color: var(--ink);
  text-decoration: underline; text-underline-offset: 4px;
}

/* ── Hero collage ─────────────────────────────────────────────────────── */
.tp-landing .collage {
  position: relative; width: 100%; aspect-ratio: 1.05/1;
  max-width: 540px; justify-self: end;
}
.tp-landing .tile {
  position: absolute; overflow: hidden; background-size: cover; background-position: center;
}
.tp-landing .tile-1 { left: 0; top: 0;     width: 48%; height: 48%; background-color: var(--mint);  border-radius: 50%; }
.tp-landing .tile-2 { right: 0; top: 0;    width: 48%; height: 48%; background-color: var(--green); border-radius: 18px; }
.tp-landing .tile-3 { left: 0; bottom: 0;  width: 48%; height: 48%; background-color: var(--coral); border-radius: 18px; }
.tp-landing .tile-4 { right: 0; bottom: 0; width: 48%; height: 48%; background-color: var(--teal);  border-radius: 50%; }
.tp-landing .tile img { width: 100%; height: 100%; object-fit: cover; }
.tp-landing .coll-tri {
  position: absolute; left: -20px; top: 30px; z-index: 2;
  width: 0; height: 0;
  border-left: 22px solid transparent; border-right: 22px solid transparent;
  border-bottom: 32px solid var(--coral); transform: rotate(-25deg);
}
.tp-landing .coll-dot { position: absolute; border-radius: 50%; }
.tp-landing .coll-dot.d1 { left: 46%; top: 47%; width: 12px; height: 12px; background: var(--coral); }
.tp-landing .coll-dot.d2 { left: 52%; top: 49%; width:  8px; height:  8px; background: var(--green); }
.tp-landing .coll-dot.d3 { left: 50%; top: 51%; width: 10px; height: 10px; background: var(--navy); }
.tp-landing .coll-spark {
  position: absolute; left: 48%; bottom: -6px;
  color: var(--green); font-size: 28px; pointer-events: none;
}
.tp-landing .coll-leaf {
  position: absolute; right: -10px; bottom: 20%;
  width: 22px; height: 12px; background: var(--teal);
  border-radius: 0 100% 0 100%; transform: rotate(35deg);
}

/* ── STATS BAR ──────────────────────────────────────────────────────────── */
.tp-landing .stats-wrap { margin: 30px 0 0; }
.tp-landing .stats-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 12px;
}
.tp-landing .live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,199,109,.1); border: 1px solid rgba(45,199,109,.3);
  border-radius: 100px; padding: 5px 14px;
  font-size: .75rem; font-weight: 700; color: var(--green); letter-spacing: .04em;
}
.tp-landing .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: tp-pulse-ring 1.6s ease-out infinite; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(45,199,109,.4);
}
@keyframes tp-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,199,109,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(45,199,109,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,199,109,0); }
}
.tp-landing .live-dot { animation: tp-live-pulse 1.6s ease-out infinite; }
.tp-landing .stats-updated { font-size: .74rem; color: var(--muted); }

.tp-landing .stats {
  background: var(--navy); border-radius: 20px; padding: 30px 40px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  margin-bottom: 0;
}
.tp-landing .stat {
  display: flex; align-items: center; gap: 18px;
  padding: 10px 20px; border-right: 1px solid rgba(255,255,255,.1);
}
.tp-landing .stat:last-child { border-right: none; }
.tp-landing .stat-icon {
  width: 56px; height: 56px; background: rgba(255,255,255,.1); border-radius: 14px;
  display: grid; place-items: center; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.15);
}
.tp-landing .stat-icon svg { width: 26px; height: 26px; }
.tp-landing .stat-num { font-size: 1.7rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 5px; }
.tp-landing .stat-label { font-size: .82rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── LIVE TICKER ────────────────────────────────────────────────────────── */
.tp-landing .live-ticker-bar {
  background: var(--navy-deep); border-radius: 0 0 20px 20px;
  padding: 11px 28px; display: flex; align-items: center; gap: 14px;
  overflow: hidden; margin-bottom: 80px;
}
.tp-landing .ticker-label {
  font-size: .7rem; font-weight: 700; color: var(--green);
  letter-spacing: .1em; white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.tp-landing .ticker-sep { width: 1px; height: 18px; background: rgba(255,255,255,.2); flex-shrink: 0; }
.tp-landing .ticker-text {
  font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 400;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1;
  transition: opacity .35s ease, transform .35s ease;
}

/* ── ABOUT / ORBIT ──────────────────────────────────────────────────────── */
.tp-landing .about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 130px; position: relative;
}
.tp-landing .orbit { position: relative; width: 460px; height: 460px; margin: 0 auto; }
.tp-landing .orbit-ring { position: absolute; inset: 0; border: 1.5px dashed #C7D2E5; border-radius: 50%; }
.tp-landing .orbit-ring.inner { inset: 60px; }
.tp-landing .orbit-center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 180px; height: 180px; background: white; border-radius: 50%;
  box-shadow: 0 14px 36px -12px rgba(15,42,92,.3);
  display: grid; place-items: center; text-align: center;
}
.tp-landing .orbit-center .o-num { font-size: 2.4rem; font-weight: 800; color: var(--ink); line-height: 1; }
.tp-landing .orbit-center .o-lbl { font-size: .85rem; color: var(--muted); margin-top: 6px; font-weight: 500; }
.tp-landing .orbit-pic {
  position: absolute; width: 88px; height: 88px; border-radius: 50%; overflow: hidden;
  background-size: cover; background-position: center; box-shadow: 0 10px 28px -10px rgba(0,0,0,.25);
}
.tp-landing .op-1 { left: 8%;   top: 30%;    background-color: var(--mint); }
.tp-landing .op-2 { right: 12%; top: 12%;    background-color: var(--green); width: 100px; height: 100px; }
.tp-landing .op-3 { left: 18%;  bottom: 8%;  background-color: var(--coral); }
.tp-landing .op-4 { right: 8%;  bottom: 18%; background-color: var(--teal);  width: 100px; height: 100px; }
.tp-landing .orbit-pic img { width: 100%; height: 100%; object-fit: cover; }
.tp-landing .orbit-dot { position: absolute; border-radius: 50%; }
.tp-landing .od-pink  { left: 38%; top: -6px;  width: 14px; height: 14px; background: var(--coral); }
.tp-landing .od-blue  { right: -2px; top: 38%; width: 14px; height: 14px; background: var(--navy); }
.tp-landing .od-green { left:  4%; top:  8%;  width: 10px; height: 10px; background: var(--green); }
.tp-landing .about-copy h2 {
  font-size: 2.5rem; font-weight: 500; line-height: 1.25;
  color: var(--ink); letter-spacing: -.01em; margin-bottom: 22px;
}
.tp-landing .about-copy h2 b { font-weight: 800; position: relative; }
.tp-landing .about-copy h2 b.under::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 6px; background: var(--green); z-index: -1; border-radius: 3px;
}
.tp-landing .about-copy p {
  color: var(--muted); font-size: .98rem; line-height: 1.75; margin-bottom: 32px; max-width: 440px;
}

/* ── FEATURED JOBS ──────────────────────────────────────────────────────── */
.tp-landing .subjects { margin-bottom: 130px; text-align: center; position: relative; }
.tp-landing .eyebrow {
  font-size: .85rem; font-weight: 600; color: var(--green);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}
.tp-landing .section-title {
  font-size: 2.4rem; font-weight: 500; line-height: 1.25;
  color: var(--ink); letter-spacing: -.01em; margin-bottom: 50px;
}
.tp-landing .section-title b { font-weight: 800; }

/* accordion (fallback when no featured jobs) */
.tp-landing .accordion {
  max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; text-align: left;
}
.tp-landing .acc-item {
  background: var(--mint-soft); border-radius: 14px; padding: 22px 28px;
  cursor: pointer; transition: background .2s;
}
.tp-landing .acc-item:hover { background: var(--mint); }
.tp-landing .acc-head {
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.tp-landing .acc-chev {
  width: 32px; height: 32px; background: white; border-radius: 50%;
  display: grid; place-items: center; color: var(--green); flex-shrink: 0;
}
.tp-landing .acc-chev svg { width: 14px; height: 14px; transition: transform .3s; }
.tp-landing .acc-body {
  max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s;
  color: var(--muted); font-size: .92rem; line-height: 1.7;
}
.tp-landing .acc-item.open .acc-body   { max-height: 200px; padding-top: 12px; }
.tp-landing .acc-item.open .acc-chev   { background: var(--green); color: white; }
.tp-landing .acc-item.open .acc-chev svg { transform: rotate(180deg); }

/* featured job cards */
.tp-landing .feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  max-width: 960px; margin: 0 auto; text-align: left;
}
.tp-landing .job-card {
  background: white; border-radius: 18px; padding: 26px 22px;
  box-shadow: 0 6px 24px -10px rgba(26,36,71,.12);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.tp-landing .job-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -12px rgba(26,36,71,.18); }
.tp-landing .job-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.tp-landing .job-badge {
  background: var(--mint); color: var(--navy);
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 100px; text-transform: uppercase;
}
.tp-landing .job-verified { display: flex; align-items: center; gap: 4px; color: var(--green); font-size: .75rem; font-weight: 600; }
.tp-landing .job-verified svg { width: 12px; height: 12px; }
.tp-landing .job-title-text { font-size: 1.02rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.tp-landing .job-college { font-size: .86rem; color: var(--muted); font-weight: 500; }
.tp-landing .job-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.tp-landing .job-chip { background: var(--navy-soft2); color: var(--text); font-size: .73rem; font-weight: 500; padding: 4px 10px; border-radius: 6px; }
.tp-landing .job-deadline { font-size: .78rem; color: var(--muted); margin-top: auto; padding-top: 4px; }
.tp-landing .job-card .btn-primary { align-self: flex-start; padding: 9px 18px; font-size: .83rem; }

.tp-landing .see-all {
  display: inline-block; margin-top: 38px; color: var(--ink); font-weight: 600;
  text-decoration: underline; text-underline-offset: 5px; transition: color .2s;
}
.tp-landing .see-all:hover { color: var(--green); }

/* ── TUTORS / BROWSE TEACHERS ───────────────────────────────────────────── */
.tp-landing .tutors {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 130px; position: relative;
}
.tp-landing .tutors-copy h2 {
  font-size: 2.5rem; font-weight: 500; line-height: 1.25;
  color: var(--ink); letter-spacing: -.01em; margin-bottom: 22px;
}
.tp-landing .tutors-copy h2 b { font-weight: 800; }
.tp-landing .tutors-copy p {
  color: var(--muted); font-size: .98rem; line-height: 1.75; margin-bottom: 32px; max-width: 440px;
}
.tp-landing .arrow-doodle { position: absolute; left: 38%; top: 60%; width: 80px; height: 60px; pointer-events: none; }
.tp-landing .cluster { position: relative; width: 480px; height: 460px; margin: 0 auto; }
.tp-landing .cluster-blob {
  position: absolute; border-radius: 50%; overflow: hidden; background-size: cover; background-position: center;
}
.tp-landing .cb-1 { left: 30px; top: 30px; width: 200px; height: 200px; background-color: var(--coral); }
.tp-landing .cb-2 { right: 20px; top: 0; width: 200px; height: 200px; background-color: var(--teal); }
.tp-landing .cb-4 { right: 60px; bottom: 0; width: 200px; height: 200px; background-color: var(--green); }
.tp-landing .cb-deco-a { position: absolute; left: 0; top: 100px; width: 170px; height: 170px; background: var(--navy); border-radius: 50%; }
.tp-landing .cb-deco-b { position: absolute; right: 240px; bottom: 70px; width: 80px; height: 80px; background: var(--navy); border-radius: 50%; }
.tp-landing .cb-deco-c { position: absolute; left: 100px; bottom: 30px; width: 60px; height: 60px; background: var(--mint); border-radius: 50%; }
.tp-landing .cluster-blob img { width: 100%; height: 100%; object-fit: cover; }
.tp-landing .cluster-dot { position: absolute; border-radius: 50%; }
.tp-landing .cd-coral { left: 50%; top: -8px; width: 14px; height: 14px; background: var(--coral); }
.tp-landing .cd-navy  { right: -4px; top: 50%; width: 12px; height: 12px; background: var(--navy); }
.tp-landing .cd-green { left: 10%; bottom: 36%; width: 10px; height: 10px; background: var(--green); }

/* ── TESTIMONIALS ───────────────────────────────────────────────────────── */
.tp-landing .testimonials { text-align: center; margin-bottom: 100px; position: relative; }
.tp-landing .testi-stage { position: relative; height: 380px; max-width: 980px; margin: 30px auto 0; }
.tp-landing .testi-side {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 84px; height: 84px; border-radius: 50%; overflow: hidden; opacity: .8;
}
.tp-landing .ts-left  { left:  0; background-color: var(--coral); }
.tp-landing .ts-right { right: 0; background-color: var(--mint); }
.tp-landing .testi-side img { width: 100%; height: 100%; object-fit: cover; }
.tp-landing .testi-main {
  position: absolute; left: 50%; top: 30px; transform: translateX(-50%);
  width: 130px; height: 130px; border-radius: 50%; background: var(--mint); overflow: hidden;
  box-shadow: 0 10px 28px -10px rgba(0,0,0,.2);
}
.tp-landing .testi-main img { width: 100%; height: 100%; object-fit: cover; }
.tp-landing .testi-quote {
  position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%);
  max-width: 580px; text-align: center;
}
.tp-landing .testi-quote p { color: var(--muted); font-size: .98rem; line-height: 1.8; margin-bottom: 22px; }
.tp-landing .testi-name { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.tp-landing .testi-role { color: var(--muted); font-size: .85rem; margin-top: 2px; }
.tp-landing .testi-nav { position: absolute; right: 0; top: 0; display: flex; gap: 12px; }
.tp-landing .testi-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--green); background: white; color: var(--green);
  display: grid; place-items: center; cursor: pointer; transition: all .2s;
}
.tp-landing .testi-arrow.active { background: var(--green); color: white; }
.tp-landing .testi-arrow svg { width: 14px; height: 14px; }
.tp-landing .sprinkle { position: absolute; border-radius: 50%; pointer-events: none; }
.tp-landing .sp1 { left:  8%; top: 12%;     width:  8px; height:  8px; background: var(--green); }
.tp-landing .sp2 { right: 18%; top: 20%;    width: 10px; height: 10px; background: var(--coral); }
.tp-landing .sp3 { left:  22%; bottom: 24%; width:  8px; height:  8px; background: var(--navy); }
.tp-landing .sp4 { right:  8%; bottom: 36%; width: 12px; height: 12px; background: var(--teal); }
.tp-landing .sp-tri {
  position: absolute; right: 6%; bottom: 22%; width: 0; height: 0;
  border-left: 12px solid transparent; border-right: 12px solid transparent;
  border-bottom: 18px solid var(--green); transform: rotate(20deg);
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.tp-landing footer { background: var(--navy); color: white; padding: 70px 0 28px; }
.tp-landing .foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px;
}
.tp-landing .foot-brand h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; display: flex; flex-direction: column; line-height: 1.1; }
.tp-landing .foot-brand-tagline { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.04em; opacity: 0.55; margin-top: 3px; }
.tp-landing .foot-brand p  { font-size: .92rem; line-height: 1.7; opacity: .85; max-width: 280px; }
.tp-landing .foot-col h4   { font-size: 1.05rem; font-weight: 700; margin-bottom: 22px; }
.tp-landing .foot-col ul   { display: flex; flex-direction: column; gap: 12px; }
.tp-landing .foot-col a    { color: rgba(255,255,255,.82); font-size: .92rem; transition: color .2s; }
.tp-landing .foot-col a:hover { color: white; }
.tp-landing .foot-bottom {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px;
  text-align: center; font-size: .85rem; opacity: .8;
}

/* ── MISC ────────────────────────────────────────────────────────────────── */
.tp-landing .bg-dot { position: absolute; border-radius: 50%; pointer-events: none; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tp-landing .orbit { width: 340px; height: 340px; }
  .tp-landing .orbit-ring.inner { inset: 44px; }
  .tp-landing .orbit-center { width: 140px; height: 140px; }
  .tp-landing .orbit-center .o-num { font-size: 1.9rem; }
  .tp-landing .orbit-pic { width: 70px; height: 70px; }
  .tp-landing .op-2, .tp-landing .op-4 { width: 80px; height: 80px; }
  .tp-landing .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .tp-landing .navlinks, .tp-landing .nav-actions { display: none; }
  .tp-landing .nav-hamburger { display: block; }
  .tp-landing .topnav-inner.nav-open { flex-wrap: wrap; }
  .tp-landing .topnav-inner.nav-open .navlinks {
    display: flex; flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; padding: 16px 0 8px;
  }
  .tp-landing .topnav-inner.nav-open .nav-actions { display: flex; width: 100%; padding-bottom: 16px; flex-wrap: wrap; }
  .tp-landing .hero { grid-template-columns: 1fr; padding: 50px 0 30px; }
  .tp-landing .hero-title { font-size: 2.8rem; }
  .tp-landing .collage { max-width: 360px; justify-self: center; }
  .tp-landing .about { grid-template-columns: 1fr; }
  .tp-landing .tutors { grid-template-columns: 1fr; }
  .tp-landing .cluster { display: none; }
}

/* ── 768 × 1024 (iPad portrait) ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .tp-landing .wrap { padding: 0 28px; }
  .tp-landing .hero { padding: 44px 0 24px; gap: 36px; }
  .tp-landing .hero-title { font-size: 2.5rem; }
  .tp-landing .collage { max-width: 320px; }
  .tp-landing .stats { grid-template-columns: repeat(2,1fr); padding: 22px 18px; }
  .tp-landing .stat { padding: 8px 14px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .tp-landing .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
  .tp-landing .stat:nth-child(3),
  .tp-landing .stat:nth-child(4)    { border-bottom: none; }
  .tp-landing .feat-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .tp-landing .orbit { width: 300px; height: 300px; }
  .tp-landing .orbit-ring.inner { inset: 38px; }
  .tp-landing .orbit-center { width: 120px; height: 120px; }
  .tp-landing .orbit-center .o-num { font-size: 1.65rem; }
  .tp-landing .orbit-pic { width: 64px; height: 64px; }
  .tp-landing .op-2, .tp-landing .op-4 { width: 72px; height: 72px; }
  .tp-landing .about { margin-bottom: 80px; gap: 40px; }
  .tp-landing .about-copy h2,
  .tp-landing .tutors-copy h2 { font-size: 2.1rem; }
  .tp-landing .section-title { font-size: 2.1rem; }
  .tp-landing .subjects { margin-bottom: 80px; }
  .tp-landing .tutors { margin-bottom: 80px; }
  .tp-landing .testi-stage { height: 420px; }
  .tp-landing .testi-quote { max-width: 460px; }
  .tp-landing .live-ticker-bar { padding: 10px 18px; }
  .tp-landing .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .tp-landing .wrap { padding: 0 18px; }
  .tp-landing .hero-title { font-size: 2.1rem; }
  .tp-landing .collage { display: none; }
  .tp-landing .stats { grid-template-columns: repeat(2,1fr); padding: 18px 14px; margin-bottom: 0; }
  .tp-landing .stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; padding: 10px 12px; }
  .tp-landing .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1) !important; }
  .tp-landing .stat:nth-child(3), .tp-landing .stat:nth-child(4) { border-bottom: none !important; }
  .tp-landing .stat-icon { width: 46px; height: 46px; border-radius: 10px; }
  .tp-landing .stat-icon svg { width: 20px; height: 20px; }
  .tp-landing .stat-num { font-size: 1.4rem; }
  .tp-landing .live-ticker-bar { padding: 9px 14px; margin-bottom: 50px; }
  .tp-landing .about, .tp-landing .subjects, .tp-landing .tutors { margin-bottom: 60px; }
  .tp-landing .section-title { font-size: 1.85rem; }
  .tp-landing .feat-grid { grid-template-columns: 1fr; }
  .tp-landing .testi-side { display: none; }
  .tp-landing .testi-stage { height: auto; }
  .tp-landing .testi-quote { position: static; transform: none; margin-top: 180px; padding: 0 8px; }
  .tp-landing .testi-nav { position: static; justify-content: center; margin-top: 16px; }
  .tp-landing .foot-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS & FUN ELEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Keyframes ──────────────────────────────────────────────────────────── */
@keyframes tp-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tp-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}
@keyframes tp-float-b {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(-3deg); }
}
@keyframes tp-float-c {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes tp-spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes tp-spin-reverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes tp-pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes tp-bounce-in {
  0%   { transform: scale(0.5) translateY(10px); opacity: 0; }
  60%  { transform: scale(1.15) translateY(-4px); opacity: 1; }
  80%  { transform: scale(0.95) translateY(2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes tp-tile-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes tp-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes tp-wiggle {
  0%, 100% { transform: rotate(-4deg); }
  50%       { transform: rotate(4deg); }
}
@keyframes tp-reveal-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tp-reveal-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tp-reveal-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tp-icon-rise {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-120px) scale(0.6); opacity: 0; }
}
@keyframes tp-stat-bounce {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.18) translateY(-4px); }
  70%       { transform: scale(0.96); }
}
@keyframes tp-card-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(45,199,109,.08); }
  50%       { box-shadow: 0 8px 40px rgba(45,199,109,.22); }
}
@keyframes tp-dot-pop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.4); }
}

/* ── Hero entrance ──────────────────────────────────────────────────────── */
.tp-landing .pill {
  animation: tp-fadeUp .6s ease both;
}
.tp-landing .hero-title {
  animation: tp-fadeUp .7s .12s ease both;
}
.tp-landing .hero-sub {
  animation: tp-fadeUp .7s .22s ease both;
}
.tp-landing .hero-ctas {
  animation: tp-fadeUp .7s .34s ease both;
}

/* ── Hero collage stagger ───────────────────────────────────────────────── */
.tp-landing .tile-1 { animation: tp-tile-in .6s .3s ease both; }
.tp-landing .tile-2 { animation: tp-tile-in .6s .44s ease both; }
.tp-landing .tile-3 { animation: tp-tile-in .6s .58s ease both; }
.tp-landing .tile-4 { animation: tp-tile-in .6s .72s ease both; }

/* Tile hover lift */
.tp-landing .tile {
  transition: transform .3s ease, box-shadow .3s ease;
}
.tp-landing .tile:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(26,36,71,.18);
  z-index: 2;
}

/* ── Floating collage accents ──────────────────────────────────────────── */
.tp-landing .coll-tri  { animation: tp-float   4.2s ease-in-out infinite; }
.tp-landing .coll-spark{ animation: tp-float-b 3.6s ease-in-out infinite; }
.tp-landing .coll-leaf { animation: tp-float-c 5.0s ease-in-out infinite; }
.tp-landing .coll-dot.d1 { animation: tp-dot-pop 2.4s ease-in-out infinite; }
.tp-landing .coll-dot.d2 { animation: tp-dot-pop 2.4s .8s ease-in-out infinite; }
.tp-landing .coll-dot.d3 { animation: tp-dot-pop 2.4s 1.6s ease-in-out infinite; }

/* ── Play button aura rings ─────────────────────────────────────────────── */
.tp-landing .play-circle { position: relative; }
.tp-landing .play-circle::before,
.tp-landing .play-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  animation: tp-pulse-ring 2s ease-out infinite;
}
.tp-landing .play-circle::after { animation-delay: 1s; }

/* CTA button shimmer on hover */
.tp-landing .btn-primary {
  position: relative;
  overflow: hidden;
}
.tp-landing .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position .4s ease;
}
.tp-landing .btn-primary:hover::after {
  background-position: 200% center;
}

/* ── Orbit rotation ─────────────────────────────────────────────────────── */
.tp-landing .orbit-ring       { animation: tp-spin-slow    22s linear infinite; }
.tp-landing .orbit-ring.inner { animation: tp-spin-reverse 16s linear infinite; }

/* Orbit dots float */
.tp-landing .orbit-dot.od-pink  { animation: tp-float   3.8s ease-in-out infinite; }
.tp-landing .orbit-dot.od-blue  { animation: tp-float-b 4.4s .6s ease-in-out infinite; }
.tp-landing .orbit-dot.od-green { animation: tp-float-c 3.2s 1.2s ease-in-out infinite; }

/* Orbit pic hover */
.tp-landing .orbit-pic {
  transition: transform .3s ease, box-shadow .3s ease;
}
.tp-landing .orbit-pic:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(26,36,71,.25);
  z-index: 5;
}

/* ── Stats bar ──────────────────────────────────────────────────────────── */
.tp-landing .stat-icon {
  animation: tp-float-b 4s ease-in-out infinite;
}
.tp-landing .stat-num.counted {
  animation: tp-stat-bounce .5s ease;
}

/* ── Cluster float ──────────────────────────────────────────────────────── */
.tp-landing .cb-1 { animation: tp-float   5.5s ease-in-out infinite; }
.tp-landing .cb-2 { animation: tp-float-b 4.8s 1s ease-in-out infinite; }
.tp-landing .cb-4 { animation: tp-float-c 6.0s 2s ease-in-out infinite; }

.tp-landing .cluster-dot.cd-coral { animation: tp-dot-pop 3s ease-in-out infinite; }
.tp-landing .cluster-dot.cd-navy  { animation: tp-dot-pop 3s 1s ease-in-out infinite; }
.tp-landing .cluster-dot.cd-green { animation: tp-dot-pop 3s 2s ease-in-out infinite; }

/* ── Arrow doodle wiggle ────────────────────────────────────────────────── */
.tp-landing .arrow-doodle {
  animation: tp-wiggle 3s ease-in-out infinite;
  transform-origin: 40px 30px;
}

/* ── Sprinkle float ─────────────────────────────────────────────────────── */
.tp-landing .sprinkle.sp1 { animation: tp-float   4.2s ease-in-out infinite; }
.tp-landing .sprinkle.sp2 { animation: tp-float-b 5.0s .7s ease-in-out infinite; }
.tp-landing .sprinkle.sp3 { animation: tp-float-c 3.8s 1.4s ease-in-out infinite; }
.tp-landing .sprinkle.sp4 { animation: tp-float   4.6s 2.1s ease-in-out infinite; }
.tp-landing .sp-tri        { animation: tp-float-b 5.4s .3s ease-in-out infinite; }

/* ── Job card hover glow ────────────────────────────────────────────────── */
.tp-landing .job-card {
  transition: transform .25s ease, box-shadow .25s ease;
  perspective: 800px;
}
.tp-landing .job-card:hover {
  transform: translateY(-8px) rotateX(1.5deg) rotateY(-1deg);
  box-shadow: 0 20px 50px rgba(26,36,71,.14), 0 0 0 1.5px var(--green);
}

/* ── Scroll reveal ──────────────────────────────────────────────────────── */
.tp-landing .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.tp-landing .reveal.from-left  { transform: translateX(-40px); }
.tp-landing .reveal.from-right { transform: translateX(40px); }
.tp-landing .reveal.visible {
  opacity: 1;
  transform: none;
}
.tp-landing .reveal.delay-1 { transition-delay: .1s; }
.tp-landing .reveal.delay-2 { transition-delay: .2s; }
.tp-landing .reveal.delay-3 { transition-delay: .3s; }
.tp-landing .reveal.delay-4 { transition-delay: .4s; }
.tp-landing .reveal.delay-5 { transition-delay: .5s; }

/* ── Floating edu icons ─────────────────────────────────────────────────── */
.tp-landing .edu-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.tp-landing .edu-icon {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0;
  animation: tp-icon-rise linear forwards;
  user-select: none;
  pointer-events: none;
}

/* ── Testimonial entrance ───────────────────────────────────────────────── */
.tp-landing .testi-main {
  transition: transform .4s ease;
}
.tp-landing .testi-main:hover {
  transform: scale(1.04);
}
.tp-landing .testi-side {
  transition: transform .4s ease, opacity .4s ease;
}
.tp-landing .testi-side:hover {
  transform: scale(1.06);
  opacity: 1 !important;
}

/* ── Section heading underline animate ─────────────────────────────────── */
.tp-landing .under {
  position: relative;
}
.tp-landing .under::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 4px;
  background: var(--green);
  border-radius: 2px;
  transition: width .8s cubic-bezier(.22,1,.36,1);
}
.tp-landing .under.underline-visible::after {
  width: 100%;
}

/* ── Background dot pulse ───────────────────────────────────────────────── */
.tp-landing .bg-dot {
  animation: tp-dot-pop 4s ease-in-out infinite;
}

/* ── sk-* shared nav / footer / CTA system (About · Contact · Jobs · Login) ─
   These classes are used by pages that share teach-portal-landing.css but
   don't have the Admin layout — About, Contact, Jobs, Login, Register, etc.
   ─────────────────────────────────────────────────────────────────────────── */

/* Extra CSS variables (sk-* aliases that map to the tp-landing palette) */
.tp-landing {
  --sk-ink:          #1A2447;
  --sk-text:         #2A3358;
  --sk-muted:        #6B7C9A;
  --sk-faint:        #A8B4C8;
  --sk-border:       #D8E4EC;
  --sk-bg-soft:      #F1F5F8;
  --sk-orange:       #2DC76D;
  --sk-orange-deep:  #22B05E;
  --sk-orange-soft:  #EAF8F0;
  --sk-orange-tint:  rgba(45,199,109,.08);
  --sk-sky:          #1FB39F;
  --sk-sky-deep:     #179589;
  --sk-yellow:       #FFD166;
  --sk-pink:         #F2BAB1;
  --sk-purple:       #6B48FF;
  --sk-r-sm:         12px;
  --sk-r-md:         16px;
  --sk-r-lg:         20px;
  --sk-r-xl:         28px;
  --sk-shadow-soft:  0 2px 12px rgba(26,36,71,.06);
  --sk-shadow-card:  0 4px 24px rgba(26,36,71,.09);
  --sk-shadow-pop:   0 16px 48px rgba(26,36,71,.14);
}

/* Sticky nav wrapper */
.sk-nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,36,71,.07);
  box-shadow: 0 2px 12px -4px rgba(26,36,71,.04);
  transition: box-shadow .2s;
}
.sk-nav-wrap.sk-scrolled { box-shadow: 0 4px 20px -4px rgba(26,36,71,.12); }
.sk-nav {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 max(20px,4%); gap: 24px; position: relative;
}

/* Brand */
.sk-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em;
  color: var(--sk-ink); text-decoration: none; flex-shrink: 0;
  transition: color .2s;
}
.sk-brand:hover { color: var(--sk-orange); }
.sk-brand-text { display: flex; flex-direction: column; line-height: 1; }
.sk-brand-tagline { font-size: 0.52rem; font-weight: 500; letter-spacing: 0.03em; opacity: 0.55; margin-top: 2px; }
.sk-brand-mark { display: inline-flex; align-items: center; }
.sk-brand-mark svg { width: 30px; height: 30px; }
.sk-brand-mark .stop-a { stop-color: #D8F3E3; }
.sk-brand-mark .stop-b { stop-color: #2DC76D; }

/* Nav links */
.sk-nav-links {
  display: flex; gap: 28px; align-items: center;
  list-style: none; padding: 0; margin: 0; flex: 1;
}
.sk-nav-links a {
  font-size: .875rem; font-weight: 500;
  color: var(--sk-muted); text-decoration: none; transition: color .18s;
}
.sk-nav-links a:hover, .sk-nav-links a.active { color: var(--sk-ink); }

/* Nav action buttons */
.sk-nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.sk-btn-login {
  display: inline-flex; align-items: center;
  font-size: .875rem; font-weight: 700;
  padding: 8px 20px; border-radius: var(--sk-r-sm);
  border: 1.5px solid #2DC76D;
  background: #2DC76D; color: #fff; text-decoration: none;
  transition: background .18s, transform .1s;
  box-shadow: 0 4px 12px -4px rgba(45,199,109,.40);
}
.sk-btn-login:hover { background: #22B05E; border-color: #22B05E; color: #fff; transform: translateY(-1px); }
.sk-btn-login.active { background: #2DC76D; border-color: #2DC76D; color: #fff; }

.sk-btn-signup {
  display: inline-flex; align-items: center;
  font-size: .875rem; font-weight: 700;
  padding: 8px 22px; border-radius: var(--sk-r-sm);
  background: var(--sk-orange); color: #fff; text-decoration: none;
  border: 1.5px solid transparent;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 6px 16px -4px rgba(45,199,109,.45);
}
.sk-btn-signup:hover { background: var(--sk-orange-deep); color: #fff; }

.sk-btn-outline {
  display: inline-flex; align-items: center;
  font-size: .875rem; font-weight: 600;
  padding: 8px 20px; border-radius: var(--sk-r-sm);
  border: 1.5px solid var(--sk-border);
  color: var(--sk-ink); background: transparent; text-decoration: none;
  transition: border-color .18s, color .18s; cursor: pointer;
}
.sk-btn-outline:hover { border-color: var(--sk-ink); }

.sk-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .925rem;
  padding: 12px 28px; border-radius: 100px;
  background: var(--sk-orange); color: #fff; text-decoration: none;
  border: none; cursor: pointer;
  transition: background .18s, transform .12s, box-shadow .18s;
  box-shadow: 0 8px 24px -6px rgba(45,199,109,.45);
}
.sk-btn-primary:hover { background: var(--sk-orange-deep); color: #fff; transform: translateY(-1px); }

.sk-btn-ghost {
  font-size: .875rem; font-weight: 600; color: var(--sk-muted);
  background: none; border: none; text-decoration: none; cursor: pointer;
  transition: color .18s;
}
.sk-btn-ghost:hover { color: var(--sk-ink); }

/* Mobile hamburger */
.sk-nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--sk-ink); line-height: 1;
}
@media (max-width: 768px) {
  .sk-nav-hamburger { display: flex; align-items: center; justify-content: center; }
  .sk-nav-links { display: none; }
}
.sk-nav.nav-open .sk-nav-links {
  display: flex; flex-direction: column; align-items: flex-start;
  position: absolute; top: 64px; left: 0; right: 0;
  background: #fff; padding: 16px 24px; gap: 16px;
  border-bottom: 1px solid rgba(26,36,71,.08);
  box-shadow: 0 8px 20px -4px rgba(26,36,71,.1); z-index: 99;
}

/* Scroll reveal */
.sk-reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.sk-reveal.d1 { transition-delay: .1s; }
.sk-reveal.d2 { transition-delay: .2s; }
.sk-reveal.d3 { transition-delay: .3s; }
.sk-reveal.in-view { opacity: 1; transform: translateY(0); }

/* CTA band */
.sk-cta-band { background: var(--sk-ink); padding: 80px 32px; text-align: center; }
.sk-cta-inner { max-width: 680px; margin: 0 auto; }
.sk-cta-band h2 {
  font-size: clamp(1.8rem, 2.8vw + .5rem, 2.6rem);
  font-weight: 800; color: #fff; letter-spacing: -.03em;
  line-height: 1.15; margin-bottom: 16px;
}
.sk-cta-band h2 span { color: var(--sk-orange); }
.sk-cta-band p {
  font-size: 1rem; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 36px;
}
.sk-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sk-cta-band .sk-btn-ghost { color: rgba(255,255,255,.7); }
.sk-cta-band .sk-btn-ghost:hover { color: #fff; }

/* Footer */
.sk-footer { background: var(--sk-ink); padding: 28px 32px; border-top: 1px solid rgba(255,255,255,.07); }
.sk-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.sk-footer .sk-brand { color: rgba(255,255,255,.9); font-size: 1.05rem; }
.sk-footer .sk-brand:hover { color: var(--sk-orange); }
.sk-footer .sk-brand-tagline { color: rgba(255,255,255,.45); }
.sk-footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.sk-footer-links a {
  font-size: .83rem; font-weight: 500; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .18s;
}
.sk-footer-links a:hover { color: rgba(255,255,255,.95); }
.sk-footer p { font-size: .78rem; color: rgba(255,255,255,.4); margin: 0; }

/* ── How It Works 4-step timeline ──────────────────────────────────────── */
.tp-landing .hiw-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.tp-landing .hiw-line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, #6b48ff 33%, var(--teal) 66%, var(--coral) 100%);
  border-radius: 2px;
  z-index: 0;
}
.tp-landing .hiw-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1;
}
.tp-landing .hiw-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px; flex-shrink: 0;
  box-shadow: 0 8px 24px -6px rgba(26,36,71,.22);
}
.tp-landing .hiw-num {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 10px;
}
.tp-landing .hiw-step h4 {
  font-size: 0.97rem; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; line-height: 1.3;
}
.tp-landing .hiw-step p {
  font-size: 0.83rem; color: var(--muted); line-height: 1.65;
}
.tp-landing .delay-4 { transition-delay: .4s; }
@media (max-width: 768px) {
  .tp-landing .hiw-track { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .tp-landing .hiw-line { display: none; }
}
@media (max-width: 480px) {
  .tp-landing .hiw-track { grid-template-columns: 1fr; }
}

/* ── Footer brand hover ─────────────────────────────────────────────────── */
.tp-landing footer .foot-brand h3 {
  transition: color .2s;
}
.tp-landing footer .foot-brand h3:hover {
  color: var(--green);
}
.tp-landing footer .foot-col a {
  position: relative;
  transition: color .2s, padding-left .2s;
}
.tp-landing footer .foot-col a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: opacity .2s, left .2s;
}
.tp-landing footer .foot-col a:hover {
  color: var(--green);
  padding-left: 16px;
}
.tp-landing footer .foot-col a:hover::before {
  opacity: 1;
  left: 0;
}
