/* ==========================================================================
   TUTORLY — Cinematic Luxury System (v3) · dark-first
   Display: Space Grotesk · Accent: Instrument Serif (italic) · UI: Inter
   ========================================================================== */

:root {
  --blue: #2563EB;
  --blue-soft: #5b8bff;
  --ink: #0F172A;
  --teal: #14B8A6;
  --teal-soft: #4fd9c9;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;

  /* Dark (default) */
  --bg: #06080F;
  --bg-2: #0A0E18;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #EAEEF6;
  --muted: #8B95A8;
  --on-glass: #fff;

  --display: 'Space Grotesk', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --r1: 14px; --r2: 20px; --r3: 30px; --pill: 999px;
  --sh-1: 0 1px 2px rgba(0,0,0,.4), 0 10px 30px -16px rgba(0,0,0,.6);
  --sh-2: 0 30px 70px -30px rgba(0,0,0,.8);
  --glow: 0 20px 70px -20px rgba(37,99,235,.6);
  --glow-teal: 0 20px 70px -20px rgba(20,184,166,.55);
  --max: 1200px;
  --header-h: 80px;
  --ease: cubic-bezier(.22,.8,.26,1);
}

[data-theme="light"] {
  --bg: #F8FAFC;
  --bg-2: #EEF2F8;
  --surface: rgba(15, 23, 42, 0.025);
  --surface-2: #ffffff;
  --line: rgba(15, 23, 42, 0.10);
  --line-strong: rgba(15, 23, 42, 0.18);
  --text: #0F172A;
  --muted: #5B6677;
  --on-glass: #0F172A;
  --sh-1: 0 1px 2px rgba(15,23,42,.05), 0 14px 34px -20px rgba(15,23,42,.2);
  --sh-2: 0 36px 80px -34px rgba(15,23,42,.35);
  --glow: 0 24px 70px -22px rgba(37,99,235,.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--text);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  transition: background .6s var(--ease), color .6s var(--ease);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--teal); color: #04161a; }

/* ---------- Ambient: aurora + grain ---------- */
.aurora { position: fixed; inset: -20% -10% auto -10%; height: 120vh; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .42; will-change: transform; }
.aurora .a1 { width: 52vw; height: 52vw; left: -8vw; top: -16vw; background: radial-gradient(circle, rgba(37,99,235,.9), transparent 65%); animation: drift1 22s ease-in-out infinite; }
.aurora .a2 { width: 46vw; height: 46vw; right: -10vw; top: -10vw; background: radial-gradient(circle, rgba(20,184,166,.8), transparent 65%); animation: drift2 26s ease-in-out infinite; }
.aurora .a3 { width: 40vw; height: 40vw; left: 30vw; top: 6vw; background: radial-gradient(circle, rgba(99,102,241,.6), transparent 65%); animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8vw,6vw) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-7vw,7vw) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(4vw,-5vw) scale(1.15)} }
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 3000; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor { width: 34px; height: 34px; border: 1.5px solid #fff; transform: translate(-50%, -50%); transition: width .25s var(--ease), height .25s var(--ease), background .25s; }
.cursor-dot { width: 6px; height: 6px; background: #fff; transform: translate(-50%, -50%); }
.cursor.hover { width: 58px; height: 58px; background: rgba(255,255,255,.12); }
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ---------- Professional icon system ---------- */
.icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; display: inline-block; vertical-align: middle; }
.icon-sm { width: 15px; height: 15px; }
.icon-lg { width: 22px; height: 22px; }
.stars { display: inline-flex; align-items: center; gap: 5px; }
.stars b { color: var(--text); font-weight: 600; }
.verified { color: var(--success); display: inline-flex; }
.verified svg { width: 15px; height: 15px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; position: relative; z-index: 2; }
.section { padding: 40px 0; position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-soft); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.section-head { max-width: 680px; margin: 0 auto 24px; text-align: center; }
.section-head h2 { font-family: var(--display); font-weight: 600; font-size: clamp(25px, 3.9vw, 40px); line-height: 1.05; letter-spacing: -.03em; }
.section-head h2 .serif { font-family: var(--serif); font-style: italic; font-weight: 400;
  background: linear-gradient(110deg, var(--teal-soft), var(--blue-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head p { color: var(--muted); font-size: 16px; margin-top: 14px; }
.idx { font-family: var(--serif); font-style: italic; color: var(--teal-soft); font-size: 18px; }

/* progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 2000; background: linear-gradient(90deg, var(--blue), var(--teal)); }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: var(--pill); font-family: var(--sans); font-weight: 600; font-size: 15px;
  overflow: hidden; isolation: isolate; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; cursor: none; }
.btn > span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: linear-gradient(120deg, var(--blue), #3b82f6); color: #fff; box-shadow: var(--glow); border: 1px solid rgba(255,255,255,.18); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 28px 80px -18px rgba(37,99,235,.8); }
.btn-ink { background: #fff; color: #070A12; }
.btn-ink:hover { transform: translateY(-3px); box-shadow: 0 24px 60px -20px rgba(255,255,255,.4); }
.btn-glass { background: var(--surface-2); color: var(--text); border: 1px solid var(--line-strong); backdrop-filter: blur(14px); }
.btn-glass:hover { transform: translateY(-3px); border-color: var(--blue-soft); box-shadow: var(--sh-1); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--blue-soft); color: var(--blue-soft); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal-line { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease); }
.reveal-line.in { clip-path: inset(0 0 0 0); }

/* ---------- NAV ---------- */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all .4s var(--ease); }
.nav-wrap.scrolled { background: color-mix(in srgb, var(--bg) 72%, transparent); backdrop-filter: blur(18px) saturate(1.4); border-bottom: 1px solid var(--line); }
.nav-inner { height: var(--header-h); display: flex; align-items: center; gap: 30px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 23px; letter-spacing: -.03em; }
.brand .mark { width: 34px; height: 34px; }
.brand b { color: var(--blue-soft); }
.menu { display: flex; align-items: center; flex-wrap: nowrap; gap: 6px; margin-left: 8px; }
.menu > li { position: relative; flex: 0 0 auto; }
.menu > li > a { position: relative; display: inline-flex; white-space: nowrap; padding: 10px 16px; border-radius: var(--pill); font-weight: 500; font-size: 15px; color: var(--muted); transition: color .25s; }
.menu > li > a:hover { color: var(--text); }
.menu > li > a::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 5px; height: 1.5px; background: linear-gradient(90deg, var(--blue), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.menu > li > a:hover::after { transform: scaleX(1); }
.dropdown { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px); width: 560px;
  background: rgba(12,16,26,.85); backdrop-filter: blur(22px); border: 1px solid var(--line-strong); border-radius: var(--r2);
  box-shadow: var(--sh-2); padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; opacity: 0; visibility: hidden; transition: all .28s var(--ease); }
[data-theme="light"] .dropdown { background: rgba(255,255,255,.92); }
.menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; gap: 13px; padding: 13px; border-radius: var(--r1); transition: background .2s; }
.dropdown a:hover { background: var(--surface-2); }
.dropdown .di { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--blue) 22%, transparent); color: var(--blue-soft); }
.dropdown .dt { font-weight: 600; font-size: 14.5px; }
.dropdown .dd { font-size: 12.5px; color: var(--muted); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex: 0 0 auto; }
.nav-actions .btn { flex: 0 0 auto; white-space: nowrap; line-height: 1; }
.icon-btn { flex: 0 0 auto; width: 44px; height: 44px; border-radius: var(--pill); display: grid; place-items: center; color: var(--muted); transition: .25s; position: relative; cursor: none; }
.icon-btn:hover { background: var(--surface-2); color: var(--text); }
.icon-btn .dot { position: absolute; top: 10px; right: 11px; width: 8px; height: 8px; background: var(--danger); border-radius: 50%; border: 2px solid var(--bg); }
.theme-toggle { border: 1px solid var(--line-strong); background: var(--surface); }
.theme-toggle .icon { grid-area: 1 / 1; transition: opacity .25s var(--ease), transform .4s var(--ease); }
.theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(.6); }
.theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); color: var(--warning); }
[data-theme="light"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="light"] .theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(.6); }
.burger { display: none; width: 46px; height: 46px; border-radius: 13px; border: 1px solid var(--line); flex-direction: column; gap: 5px; align-items: center; justify-content: center; cursor: none; position: relative; transition: border-color .25s var(--ease), background .25s var(--ease); }
.burger:hover { border-color: var(--line-strong); background: var(--surface); }
.burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease); transform-origin: center; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; top: calc(var(--header-h) - 6px); right: 16px; left: auto; z-index: 999; width: min(320px, calc(100vw - 32px)); background: color-mix(in srgb, var(--bg-2) 94%, transparent); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); border: 1px solid var(--line-strong); border-radius: 20px; padding: 10px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04) inset; transform: translateY(-12px) scale(.97); opacity: 0; visibility: hidden; transform-origin: top right; transition: transform .32s var(--ease), opacity .28s var(--ease), visibility .28s; overflow: hidden; }
.mobile-menu.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
.mobile-menu a { display: flex; align-items: center; gap: 12px; padding: 13px 15px; font-size: 16px; font-weight: 500; border-radius: 13px; color: var(--text); opacity: 0; transform: translateX(10px); transition: background .2s var(--ease), color .2s var(--ease), opacity .3s var(--ease), transform .3s var(--ease); }
.mobile-menu.open a { opacity: 1; transform: translateX(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .10s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .14s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .18s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .22s; }
.mobile-menu.open a:nth-child(6) { transition-delay: .26s; }
.mobile-menu.open a:nth-child(7) { transition-delay: .30s; }
.mobile-menu a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex: 0 0 auto; opacity: .55; transition: opacity .2s, transform .2s; }
.mobile-menu a:hover { background: var(--surface-2); color: var(--blue-soft); }
.mobile-menu a:hover::before { opacity: 1; transform: scale(1.4); }
.mobile-menu .mm-sep { height: 1px; background: var(--line); margin: 6px 8px; }
.mobile-menu .mm-signin { color: var(--muted); }

.mobile-scrim { position: fixed; inset: 0; z-index: 998; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; backdrop-filter: blur(1px); }
.mobile-scrim.open { opacity: 1; visibility: visible; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 44px) 0 58px; z-index: 2; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }

/* ---------- HERO (centered academic) ---------- */
.hero-center { padding: calc(var(--header-h) + 46px) 0 52px; overflow: hidden; }
.hero-center .container { display: block; }
.hero-center-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-center .eyebrow { margin: 0 auto; }
.hero-center h1 { font-family: var(--display); font-weight: 700; font-size: clamp(36px, 5.8vw, 66px);
  line-height: 1.05; letter-spacing: -.035em; margin: 20px 0 20px; }
.hero-center h1 .grad { background: linear-gradient(110deg, var(--blue-soft), var(--teal-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-center h1 .serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em;
  background: linear-gradient(110deg, var(--teal-soft), var(--blue-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-center .lead { font-size: 18px; color: var(--muted); max-width: 640px; margin: 0 auto 30px; }
.hero-center .hero-cta { justify-content: center; margin-bottom: 28px; }

/* Academic themed background */
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 30%, #000 55%, transparent 92%);
          mask-image: radial-gradient(120% 100% at 50% 30%, #000 55%, transparent 92%); }
.nb-grid { position: absolute; inset: -2px; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px; }
.nb-margin { position: absolute; top: 0; bottom: 0; left: max(28px, 6vw); width: 2px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--danger) 45%, transparent) 20%, color-mix(in srgb, var(--danger) 45%, transparent) 80%, transparent); opacity: .35; }
.fx { position: absolute; font-family: var(--serif); font-style: italic; white-space: nowrap;
  color: color-mix(in srgb, var(--blue-soft) 60%, var(--muted)); opacity: .18; user-select: none;
  animation: fxDrift 16s ease-in-out infinite; }
.fx sub { font-size: .7em; }
@keyframes fxDrift { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-14px) rotate(var(--r,0deg)); } }
.f1  { top: 12%;  left: 7%;   font-size: 34px; --r:-8deg; }
.f2  { top: 20%;  right: 9%;  font-size: 30px; --r:6deg;  animation-delay: -2s; }
.f3  { top: 62%;  left: 6%;   font-size: 26px; --r:5deg;  animation-delay: -4s; }
.f4  { bottom: 12%; right: 7%; font-size: 24px; --r:-5deg; animation-delay: -6s; }
.f5  { top: 40%;  left: 3%;   font-size: 26px; --r:9deg;  animation-delay: -1s; }
.f6  { top: 30%;  left: 24%;  font-size: 40px; --r:-6deg; opacity: .12; animation-delay: -3s; }
.f7  { bottom: 26%; left: 16%; font-size: 24px; --r:4deg;  animation-delay: -5s; }
.f8  { top: 16%;  left: 44%;  font-size: 30px; --r:-4deg; opacity: .12; animation-delay: -7s; }
.f9  { top: 70%;  right: 22%; font-size: 24px; --r:6deg;  animation-delay: -2.5s; }
.f10 { top: 52%;  right: 5%;  font-size: 26px; --r:-7deg; animation-delay: -4.5s; }
.f11 { bottom: 34%; right: 30%; font-size: 30px; --r:8deg; opacity: .12; animation-delay: -1.5s; }
.f12 { top: 82%;  left: 30%;  font-size: 28px; --r:-3deg; animation-delay: -6.5s; }
.f13 { top: 8%;   right: 30%; font-size: 24px; --r:5deg;  animation-delay: -3.5s; }
.f14 { bottom: 8%; left: 12%; font-size: 24px; --r:-6deg; animation-delay: -5.5s; }
.geo { position: absolute; color: var(--teal-soft); opacity: .14; animation: fxDrift 20s ease-in-out infinite; }
.geo.g1 { width: 130px; height: 130px; top: 14%;  right: 20%; animation-delay: -3s; }
.geo.g2 { width: 110px; height: 110px; bottom: 14%; left: 26%; --r:0deg; animation-delay: -6s; }
.geo.g3 { width: 150px; height: 100px; top: 46%;  right: 12%; animation-delay: -2s; }
.geo.g4 { width: 120px; height: 120px; bottom: 20%; right: 40%; opacity: .1; animation-delay: -5s; }
.hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(44px, 6.6vw, 80px); line-height: 1.02; letter-spacing: -.035em; margin: 22px 0 26px; }
.hero h1 .grad { background: linear-gradient(110deg, var(--blue-soft), var(--teal-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.hero .lead { font-size: 19px; color: var(--muted); max-width: 520px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }

/* Glass search */
.search { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r3); backdrop-filter: blur(20px);
  box-shadow: var(--sh-1); padding: 10px; display: flex; gap: 8px; align-items: stretch; flex-wrap: wrap; }
.search .sf { flex: 1; min-width: 150px; display: flex; align-items: center; gap: 11px; padding: 12px 18px; border-radius: var(--r2); transition: background .25s; }
.search .sf:hover { background: var(--surface-2); }
.search .sf svg { color: var(--blue-soft); flex: none; }
.search .sf .lbl { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.search .sf input, .search .sf select { border: none; background: none; outline: none; width: 100%; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--text); cursor: pointer; }
.trust-line { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--muted); font-weight: 500; margin-top: 24px; }
.trust-avs { display: flex; }
.trust-avs img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; object-fit: cover; }
.trust-avs img:first-child { margin-left: 0; }

/* Hero meta + pills */
.hero-meta { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.trust { display: flex; align-items: center; gap: 12px; }
.trust-txt { font-size: 14px; color: var(--muted); font-weight: 500; }
.trust-txt b { color: var(--text); font-weight: 700; }
.rating-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--pill);
  background: var(--surface-2); border: 1px solid var(--line-strong); backdrop-filter: blur(12px); font-size: 14px; font-weight: 500; }
.rating-pill b { color: var(--text); font-weight: 700; }
.rating-pill span { color: var(--muted); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hp { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: var(--pill);
  background: var(--surface); border: 1px solid var(--line); backdrop-filter: blur(12px); font-size: 13.5px; font-weight: 600; color: var(--text); }
.hp .icon { color: var(--blue-soft); }

/* Layered hero visual */
.hero-visual { position: relative; min-height: 480px; }
.glass-card.mini { position: absolute; left: -34px; bottom: 26px; width: 64%; padding: 16px 18px; z-index: 3; box-shadow: var(--sh-2); }
.mini-head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.mini-head .ci { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.mini-head .mt { font-family: var(--display); font-weight: 600; font-size: 14px; }
.mini-head .ms { font-size: 12px; color: var(--muted); }
.mini-row { display: flex; align-items: center; gap: 11px; }
.mini-row img { width: 38px; height: 38px; border-radius: 11px; object-fit: cover; flex: none; }
.mini-row .mn { font-weight: 700; font-size: 13.5px; }
.mini-row .ms2 { font-size: 12px; color: var(--muted); }
.mini-row .badge { margin-left: auto; }

/* Hero credibility strip */
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 36px;
  border: 1px solid var(--line); border-radius: var(--r3); overflow: hidden; background: var(--surface); backdrop-filter: blur(12px); }
.hero-stats .hs { padding: 26px 28px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.hero-stats .hs:last-child { border-right: none; }
.hero-stats .hs .hi { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.hero-stats .hs .hv { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -.02em; line-height: 1; }
.hero-stats .hs .hl { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 3px; }

/* Hero referral banner */
.referral-hero { position: relative; overflow: hidden; margin-top: 28px; display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--r2); border: 1px solid var(--line-strong);
  background: linear-gradient(120deg, color-mix(in srgb, var(--blue) 16%, var(--surface)), var(--surface));
  backdrop-filter: blur(12px); box-shadow: var(--sh-1); }
.rh-glow { position: absolute; width: 220px; height: 220px; top: -120px; right: -60px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.4), transparent 68%); pointer-events: none; }
.rh-icon { position: relative; z-index: 1; flex: none; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: var(--glow); }
.rh-icon .icon { width: 22px; height: 22px; }
.rh-body { position: relative; z-index: 1; flex: 1; min-width: 0; }
.rh-eyebrow { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--blue-soft); margin-bottom: 2px; }
.rh-eyebrow .icon { color: #fbbf24; }
.rh-amount { font-family: var(--display); font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); letter-spacing: -.02em; line-height: 1.05;
  background: linear-gradient(120deg, var(--text), var(--blue-soft)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rh-desc { color: var(--muted); font-size: 12.5px; margin-top: 3px; max-width: 52ch; }
.rh-btn { position: relative; z-index: 1; flex: none; }

/* Referral modal */
.ref-modal { max-width: 620px; }
.ref-modal-head { margin-bottom: 22px; }
.ref-modal-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: var(--pill);
  font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--blue-soft);
  background: color-mix(in srgb, var(--blue) 14%, transparent); border: 1px solid var(--line); margin-bottom: 14px; }
.ref-modal .modal-title { margin-bottom: 10px; }
.ref-modal-sub { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.ref-modal-rewards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.ref-reward-item { display: flex; gap: 13px; padding: 16px; border-radius: var(--r2); background: var(--surface); border: 1px solid var(--line); }
.ref-reward-item .rri-icon { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.ref-reward-item b { display: block; font-family: var(--display); font-size: 15px; margin-bottom: 4px; }
.ref-reward-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ref-modal-steps h4 { font-family: var(--display); font-weight: 600; font-size: 17px; margin-bottom: 16px; }
.ref-steps { list-style: none; display: grid; gap: 14px; margin-bottom: 24px; }
.ref-steps li { display: flex; gap: 14px; align-items: flex-start; }
.ref-steps .rs-num { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 14px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); }
.ref-steps b { display: block; font-family: var(--display); font-size: 14.5px; margin-bottom: 2px; }
.ref-steps span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ref-modal-note { display: flex; align-items: flex-start; gap: 9px; padding: 13px 15px; border-radius: var(--r1);
  background: color-mix(in srgb, var(--teal) 10%, transparent); border: 1px solid var(--line); color: var(--muted);
  font-size: 12.5px; line-height: 1.55; margin-bottom: 22px; }
.ref-modal-note .icon { color: var(--teal-soft); flex: none; margin-top: 1px; }
.ref-modal-actions { display: flex; gap: 12px; justify-content: flex-end; }

@media (max-width: 720px) {
  .referral-hero { flex-direction: column; align-items: flex-start; text-align: left; gap: 18px; }
  .rh-btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .ref-modal-rewards { grid-template-columns: 1fr; }
  .ref-modal-actions { flex-direction: column-reverse; }
  .ref-modal-actions .btn { width: 100%; justify-content: center; }
}

/* Glass match card */
.hero-visual { position: relative; }
.glass-card { position: relative; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r3);
  backdrop-filter: blur(22px); box-shadow: var(--sh-2); padding: 28px; overflow: hidden; }
.glass-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px circle at var(--cx, 70%) var(--cy, 0%), rgba(37,99,235,.18), transparent 60%); pointer-events: none; }
.gc-ring { position: relative; width: 92px; height: 92px; flex: none; }
.gc-ring svg { transform: rotate(-90deg); }
.gc-ring .gv { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 20px; }
.gc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.gc-head img { width: 64px; height: 64px; border-radius: 18px; object-fit: cover; }
.gc-head .nm { font-family: var(--display); font-weight: 600; font-size: 18px; display: flex; align-items: center; gap: 7px; }
.gc-head .sub { font-size: 13px; color: var(--muted); }
.gc-stars { color: var(--warning); font-size: 13px; margin-top: 3px; }
.gc-stars b { color: var(--text); }
.gc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 18px; }
.tag { background: var(--surface-2); border: 1px solid var(--line); padding: 5px 12px; border-radius: var(--pill); font-size: 12.5px; font-weight: 500; color: var(--muted); }
.gc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.rate { font-family: var(--display); font-weight: 600; font-size: 22px; }
.rate small { font-size: 12px; color: var(--muted); font-weight: 400; }
.gc-actions { display: flex; gap: 8px; }
.icon-act { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--muted); transition: .25s; background: var(--surface-2); font-size: 17px; cursor: none; }
.icon-act:hover { color: var(--blue-soft); border-color: var(--blue-soft); }
.icon-act.saved { color: var(--danger); border-color: var(--danger); }
.float-chip { position: absolute; background: rgba(12,16,26,.7); backdrop-filter: blur(16px); border: 1px solid var(--line-strong); border-radius: var(--r1);
  box-shadow: var(--sh-1); padding: 11px 15px; display: flex; align-items: center; gap: 11px; font-size: 13.5px; font-weight: 600; animation: bob 7s ease-in-out infinite; z-index: 3; }
[data-theme="light"] .float-chip { background: rgba(255,255,255,.8); }
.float-chip .ci { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 16px; }
.fc-a { top: -22px; left: -26px; } .fc-b { top: 42%; right: -28px; animation-delay: 1.6s; } .fc-c { bottom: -20px; left: 8%; animation-delay: 3s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.verified { color: var(--success); display: inline-flex; }

/* ---------- MARQUEE ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; background: var(--surface); backdrop-filter: blur(8px); }
.marquee .track { display: flex; gap: 64px; width: max-content; animation: scrollx 36s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee .item { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--muted); white-space: nowrap; }
.marquee .item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r3); overflow: hidden; background: var(--surface); backdrop-filter: blur(10px); }
.stat { padding: 32px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--display); font-weight: 700; font-size: 46px; letter-spacing: -.03em; background: linear-gradient(120deg, var(--blue-soft), var(--teal-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-weight: 500; margin-top: 6px; font-size: 13.5px; }

/* ---------- IMPACT (metrics + promo) ---------- */
.impact { position: relative; overflow: hidden; }
.impact-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 45%, transparent 88%); mask-image: radial-gradient(120% 90% at 50% 40%, #000 45%, transparent 88%); }
.impact-bg .ix { position: absolute; font-family: var(--serif); font-style: italic; color: var(--teal-soft);
  opacity: .08; user-select: none; animation: fxDrift 18s ease-in-out infinite; }
.impact-bg .i1 { top: 10%; left: 6%;  font-size: 90px; --r:-6deg; }
.impact-bg .i2 { top: 60%; left: 12%; font-size: 70px; --r:8deg; animation-delay: -3s; }
.impact-bg .i3 { top: 20%; right: 10%; font-size: 80px; --r:5deg; animation-delay: -5s; }
.impact-bg .i4 { bottom: 12%; right: 16%; font-size: 96px; --r:-4deg; animation-delay: -7s; }
.impact-bg .i5 { top: 44%; right: 4%; font-size: 76px; --r:6deg; animation-delay: -2s; }
.impact-bg .i6 { bottom: 18%; left: 40%; font-size: 66px; --r:-8deg; animation-delay: -4s; }
.impact .container { position: relative; z-index: 1; }

/* Metric ribbon — unified premium panel */
.metric-ribbon { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 26px;
  border: 1px solid var(--line-strong); border-radius: var(--r3); overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); backdrop-filter: blur(18px); box-shadow: var(--sh-2); }
.metric-ribbon::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal)); z-index: 2; }
.mr-cell { position: relative; padding: 30px 30px; border-right: 1px solid var(--line); transition: background .4s var(--ease); }
.mr-cell:last-child { border-right: none; }
.mr-cell::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(300px circle at 50% -20%, rgba(37,99,235,.16), transparent 65%); }
.mr-cell:hover { background: var(--surface-2); }
.mr-cell:hover::after { opacity: 1; }
.mr-ic { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; margin-bottom: 16px;
  background: var(--surface-2); border: 1px solid var(--line); }
.mr-num { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 3.2vw, 44px); letter-spacing: -.03em; line-height: 1;
  display: flex; align-items: baseline; gap: 1px;
  background: linear-gradient(120deg, var(--text), color-mix(in srgb, var(--blue-soft) 70%, var(--text))); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mr-num i { font-style: normal; color: var(--teal-soft); -webkit-text-fill-color: var(--teal-soft); }
.mr-lbl { color: var(--muted); font-weight: 500; margin-top: 9px; font-size: 13.5px; letter-spacing: .01em; }

/* Promo cards — feature + status */
.promo-cards { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.promo-card { position: relative; overflow: hidden; display: flex; align-items: center; gap: 18px; padding: 32px; border-radius: var(--r3);
  border: 1px solid var(--line-strong); box-shadow: var(--sh-1); transition: transform .45s var(--ease), border-color .45s, box-shadow .45s; }
.promo-card .pc-body { position: relative; z-index: 2; flex: 1; }
.promo-card .pc-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; top: -170px; right: -130px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 62%); transition: transform .6s var(--ease); }
.promo-card::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(460px circle at var(--cx,80%) var(--cy,0%), rgba(255,255,255,.08), transparent 60%); }
.promo-card:hover { transform: translateY(-8px); }
.promo-card:hover .pc-glow { transform: scale(1.18) translate(-12px, 12px); }

.promo-feat { background: linear-gradient(135deg, #1d4ed8, #2563EB 45%, #0f766e); color: #fff; border-color: rgba(255,255,255,.18); }
.promo-feat:hover { box-shadow: 0 34px 90px -30px rgba(37,99,235,.75); }
.promo-plain { background: var(--surface); backdrop-filter: blur(18px); }
.promo-plain:hover { border-color: var(--teal-soft); box-shadow: var(--glow-teal); }
.promo-plain .pc-glow { background: radial-gradient(circle, rgba(20,184,166,.28), transparent 62%); }

.pc-pattern { position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 30px 30px; -webkit-mask-image: radial-gradient(120% 120% at 100% 0%, #000, transparent 60%); mask-image: radial-gradient(120% 120% at 100% 0%, #000, transparent 60%); }
.pc-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: var(--pill);
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.pc-badge .icon { color: #fff; }
.pc-badge.alt { background: var(--surface-2); border: 1px solid var(--line-strong); color: var(--muted); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 30%, transparent); animation: ping 1.8s ease-out infinite; }
.promo-card h3 { position: relative; font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -.02em; margin-bottom: 10px; }
.promo-card p { position: relative; font-size: 14.5px; margin-bottom: 16px; }
.promo-feat p { color: rgba(255,255,255,.82); }
.promo-plain p { color: var(--muted); }
.pc-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pc-feats li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.promo-feat .pc-feats li { color: rgba(255,255,255,.9); }
.promo-feat .pc-feats .icon { color: var(--teal-soft); }
.promo-plain .pc-feats li { color: var(--text); }
.promo-plain .pc-feats .icon { color: var(--teal); }
.pc-cta { position: relative; display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--pill); font-weight: 600; font-size: 15px;
  background: #fff; color: var(--ink); box-shadow: 0 16px 40px -18px rgba(0,0,0,.5); transition: gap .3s var(--ease); }
.pc-cta.plain { background: linear-gradient(120deg, var(--teal), #2dd4bf); color: #04231f; box-shadow: var(--glow-teal); }
.promo-card:hover .pc-cta { gap: 15px; }
.pc-figure { position: absolute; right: -14px; bottom: -22px; z-index: 1; pointer-events: none; opacity: .12; }
.pc-figure .icon { width: 168px; height: 168px; stroke-width: 1.2; }
.promo-feat .pc-figure { color: #fff; }
.promo-plain .pc-figure { color: var(--teal); opacity: .1; }

/* ---------- PROCESS ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r3); overflow: hidden; background: var(--surface); backdrop-filter: blur(10px); }
.step { padding: 34px 32px; border-right: 1px solid var(--line); position: relative; transition: background .4s; }
.step:last-child { border-right: none; }
.step:hover { background: var(--surface-2); }
.step .n { font-family: var(--serif); font-style: italic; font-size: 54px; font-weight: 400; color: var(--teal-soft); line-height: 1; margin-bottom: 14px; }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 20px; margin-bottom: 9px; letter-spacing: -.02em; }
.step p { color: var(--muted); font-size: 14px; }
.step .si { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; font-size: 20px; margin-bottom: 18px; }

/* ---------- TUTORS (horizontal scroll) ---------- */
.tutors-scroll { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 26px; cursor: grab; scrollbar-width: none; }
.tutors-scroll::-webkit-scrollbar { display: none; }
.tutors-scroll.drag { cursor: grabbing; }
.tutor { flex: 0 0 360px; scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r2);
  padding: 24px; backdrop-filter: blur(18px); box-shadow: var(--sh-1); position: relative; overflow: hidden; transition: transform .4s var(--ease), border-color .4s; }
.tutor::before { content: ""; position: absolute; inset: 0; background: radial-gradient(360px circle at var(--cx, 50%) var(--cy, 0%), rgba(37,99,235,.16), transparent 60%); pointer-events: none; opacity: 0; transition: opacity .4s; }
.tutor:hover { transform: translateY(-8px); border-color: var(--blue-soft); }
.tutor:hover::before { opacity: 1; }
.tutor .top { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; position: relative; }
.tutor .av { width: 60px; height: 60px; border-radius: 16px; object-fit: cover; flex: none; }
.tutor .nm { font-family: var(--display); font-weight: 600; font-size: 18px; display: flex; align-items: center; gap: 7px; }
.tutor .meta { font-size: 13px; color: var(--muted); }
.tutor .stars { color: var(--warning); font-size: 13px; margin-top: 4px; }
.tutor .stars b { color: var(--text); }
.tutor .tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0; }
.tutor .info { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 13px; margin: 14px 0 16px; }
.tutor .info .i { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.tutor .info .i b { color: var(--text); font-weight: 600; }
.tutor .foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); position: relative; }
.scroll-hint { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 500; margin-top: 6px; }
.scroll-hint .bar { width: 60px; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; }
.scroll-hint .bar i { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: 3px; }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--pill); font-size: 12px; font-weight: 600; }
.badge-v { background: color-mix(in srgb, var(--success) 16%, transparent); color: #4ade80; }
.badge-u { background: color-mix(in srgb, var(--danger) 16%, transparent); color: #f87171; }
.badge-f { background: color-mix(in srgb, var(--warning) 18%, transparent); color: #fbbf24; }
.badge-on { background: color-mix(in srgb, var(--teal) 18%, transparent); color: var(--teal-soft); }
.badge-bl { background: color-mix(in srgb, var(--blue) 18%, transparent); color: var(--blue-soft); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 25%, transparent); display: inline-block; }

/* ---------- AVAILABLE TUITIONS ---------- */
/* Toolbar */
.tl-toolbar { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; margin-bottom: 16px; }
.tl-search { flex: 1; min-width: 240px; display: flex; align-items: center; gap: 12px; padding: 0 16px;
  border-radius: var(--r2); border: 1px solid var(--line-strong); background: var(--surface); transition: border-color .25s; }
.tl-search:focus-within { border-color: var(--blue-soft); }
.tl-search > .icon { color: var(--muted); flex: none; }
.tl-search input { flex: 1; border: none; background: none; outline: none; font-family: inherit; font-size: 14.5px; color: var(--text); padding: 12px 0; }
.tl-search input::placeholder { color: var(--muted); }
.tl-select { position: relative; display: flex; align-items: center; }
.tl-select select { appearance: none; border: 1px solid var(--line-strong); background: var(--surface); border-radius: var(--r2);
  padding: 12px 42px 12px 16px; font-family: inherit; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; transition: border-color .25s; }
.tl-select select:hover { border-color: var(--blue-soft); }
.tl-select .icon { position: absolute; right: 14px; color: var(--muted); pointer-events: none; }
.tl-search-btn { flex: none; }

/* Result bar */
.tl-resultbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 22px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.tl-count { font-size: 15px; color: var(--muted); }
.tl-count b { color: var(--text); font-weight: 700; }
.tl-sort { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.tl-sort select { border: 1px solid var(--line-strong); background: var(--surface); border-radius: var(--pill);
  padding: 8px 14px; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--text); cursor: pointer; }

/* Clean tuition cards */
.tl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tl-card { position: relative; display: flex; flex-direction: column; gap: 13px; padding: 20px;
  border-radius: var(--r3); border: 1px solid var(--line-strong); background: var(--surface);
  box-shadow: var(--sh-1); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.tl-card:hover { transform: translateY(-6px); border-color: var(--blue-soft); box-shadow: var(--sh-2); }

.tl-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.tl-class { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; margin-bottom: 5px; }
.tl-inst { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); font-weight: 500; }
.tl-inst .icon { color: var(--muted); flex: none; }
.tl-salary { flex: none; text-align: right; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; color: var(--success); white-space: nowrap; }
.tl-salary small { font-family: var(--body); font-weight: 500; font-size: 11.5px; color: var(--muted); margin-left: 1px; }

.tl-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tl-tag { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: var(--pill);
  background: var(--surface-2); border: 1px solid var(--line); font-size: 11.5px; font-weight: 600; color: var(--muted); }
.tl-tag-new { color: var(--blue-soft); background: color-mix(in srgb, var(--blue) 14%, transparent); border-color: transparent; }
.tl-tag-hot { color: #4ade80; background: color-mix(in srgb, var(--success) 15%, transparent); border-color: transparent; }
.tl-tag-alert { color: #fbbf24; background: color-mix(in srgb, var(--warning) 16%, transparent); border-color: transparent; }

.tl-info { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.tl-info li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); }
.tl-info li .icon { color: var(--blue-soft); flex: none; }

.tl-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto;
  padding-top: 14px; border-top: 1px solid var(--line); }
.tl-code { font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--muted); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.pg { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--surface); backdrop-filter: blur(12px); font-family: var(--display);
  font-weight: 600; font-size: 15px; color: var(--text); transition: transform .3s var(--ease), border-color .3s, background .3s, color .3s; }
.pg:hover { transform: translateY(-3px); border-color: var(--blue-soft); color: var(--blue-soft); }
.pg.is-active { background: linear-gradient(120deg, var(--blue), #3b82f6); color: #fff; border-color: transparent; box-shadow: var(--glow); }
.pg-nav { font-size: 18px; }
.pg-dots { color: var(--muted); padding: 0 4px; letter-spacing: 2px; }

/* ---------- JOBS ---------- */
.jobs { border-top: 1px solid var(--line); }
.job { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 24px; align-items: center; padding: 28px 12px; border-bottom: 1px solid var(--line); position: relative; transition: padding .35s var(--ease); }
.job::before { content: ""; position: absolute; inset: 0; background: var(--surface-2); opacity: 0; transition: opacity .35s; z-index: -1; border-radius: var(--r2); border: 1px solid var(--line); }
.job:hover { padding-left: 24px; padding-right: 24px; }
.job:hover::before { opacity: 1; }
.job .jt { font-family: var(--display); font-weight: 600; font-size: 21px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.job .js { font-size: 13.5px; color: var(--muted); margin-top: 5px; }
.job .jc { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.job .jsal { font-family: var(--display); font-weight: 600; font-size: 24px; color: #4ade80; }
.job .jact { display: flex; gap: 8px; }

/* ---------- QUOTE BAND ---------- */
.quote-band { background: linear-gradient(125deg, rgba(37,99,235,.16), rgba(20,184,166,.10)); border: 1px solid var(--line-strong); border-radius: var(--r3); padding: 78px 60px; text-align: center; position: relative; overflow: hidden; backdrop-filter: blur(16px); }
.quote-band::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.35), transparent 60%); top: -180px; left: -130px; }
.quote-band q { font-family: var(--serif); font-style: italic; font-size: clamp(28px, 3.8vw, 46px); line-height: 1.25; position: relative; display: block; max-width: 900px; margin: 0 auto; }
.quote-band .by { margin-top: 30px; font-size: 15px; color: var(--muted); position: relative; }

/* ---------- TESTIMONIALS (review carousel) ---------- */
.review-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.review-carousel { position: relative; display: flex; align-items: center; gap: 14px; width: 100%; }
.rc-viewport { overflow: hidden; flex: 1; padding: 8px 4px 14px; }
.rc-track { display: flex; gap: 20px; transition: transform .55s var(--ease); will-change: transform; }

/* Screenshot-style review card */
.shot { flex: 0 0 calc((100% - 40px) / 3); margin: 0; border-radius: var(--r3); border: 1px solid var(--line-strong);
  background: var(--surface); box-shadow: var(--sh-2); overflow: hidden; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.shot:hover { transform: translateY(-6px); border-color: var(--blue-soft); box-shadow: 0 30px 60px -28px rgba(0,0,0,.6); }
.shot-bar { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line);
  background: var(--surface-2); }
.shot-bar .dots { display: inline-flex; gap: 6px; }
.shot-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.shot-bar .dots i:first-child { background: #f87171; }
.shot-bar .dots i:nth-child(2) { background: #fbbf24; }
.shot-bar .dots i:nth-child(3) { background: #4ade80; }
.shot-url { font-size: 11px; color: var(--muted); letter-spacing: .02em; }
.shot-body { padding: 18px 18px 20px; }
.shot-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.shot-top img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; border: 1px solid var(--line); flex: none; }
.shot-id { flex: 1; min-width: 0; }
.shot-nm { display: flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 700; font-size: 15px; }
.shot-nm .verified { width: 15px; height: 15px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--success); }
.shot-nm .verified .icon { width: 10px; height: 10px; }
.shot-rl { font-size: 12px; color: var(--muted); margin-top: 1px; }
.shot-rate { display: inline-flex; align-items: center; gap: 4px; font-family: var(--display); font-weight: 700; font-size: 14px;
  color: #fbbf24; white-space: nowrap; }
.shot-rate .icon { color: #fbbf24; }
.shot-stars { color: #fbbf24; font-size: 14px; letter-spacing: 3px; margin-bottom: 12px; }
.shot-q { font-size: 14.5px; line-height: 1.5; color: var(--text); margin-bottom: 16px; }
.shot-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.shot-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--teal-soft);
  background: color-mix(in srgb, var(--teal) 14%, transparent); padding: 4px 10px; border-radius: var(--pill); }
.shot-tag .icon { color: var(--teal-soft); }
.shot-time { font-size: 11.5px; color: var(--muted); }

/* Arrows */
.rc-arrow { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; cursor: none;
  border: 1px solid var(--line-strong); background: var(--surface); backdrop-filter: blur(12px); color: var(--text);
  box-shadow: var(--sh-1); transition: transform .3s var(--ease), border-color .3s, background .3s, color .3s; }
.rc-arrow .icon { width: 20px; height: 20px; }
.rc-arrow:hover { transform: scale(1.08); border-color: var(--blue-soft); color: #fff; background: linear-gradient(120deg, var(--blue), #3b82f6); box-shadow: var(--glow); }
.rc-arrow:disabled { opacity: .38; cursor: not-allowed; transform: none; background: var(--surface); color: var(--muted); box-shadow: var(--sh-1); }

/* Dots */
.rc-dots { display: flex; justify-content: center; gap: 9px; margin-top: 6px; width: 100%; }
.rc-dots .rd { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: none; background: var(--line-strong); transition: width .35s var(--ease), background .35s; }
.rc-dots .rd.is-active { width: 26px; border-radius: 6px; background: linear-gradient(120deg, var(--blue), var(--teal)); }

@media (max-width: 980px) {
  .shot { flex: 0 0 calc((100% - 26px) / 2); }
}
@media (max-width: 560px) {
  .shot { flex: 0 0 100%; }
  .rc-arrow { width: 46px; height: 46px; }
}

/* ---------- PRICING ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r3); padding: 40px 34px; backdrop-filter: blur(16px); box-shadow: var(--sh-1); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s; position: relative; }
.price:hover { transform: translateY(-8px); box-shadow: var(--sh-2); }
.price.feature { border-color: var(--blue-soft); box-shadow: var(--glow); background: linear-gradient(160deg, rgba(37,99,235,.14), var(--surface)); }
.price .flag { position: absolute; top: 28px; right: 30px; }
.price .pn { font-family: var(--display); font-weight: 600; font-size: 24px; }
.price .pd { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.price .pp { font-family: var(--display); font-weight: 700; font-size: 52px; letter-spacing: -.03em; }
.price .pp small { font-size: 15px; color: var(--muted); font-weight: 400; }
.price ul { margin: 24px 0; display: flex; flex-direction: column; gap: 13px; }
.price li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; }
.price li .ck { color: var(--success); flex: none; margin-top: 2px; }
.price li.off { color: var(--muted); opacity: .5; }
.price li.off .ck { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.acc { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; font-family: var(--display); font-weight: 500; font-size: 18px; text-align: left; cursor: none; }
.acc-head .pm { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; flex: none; transition: .35s var(--ease); color: var(--muted); }
.acc.open .acc-head .pm { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(135deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body p { padding: 0 4px 20px; color: var(--muted); font-size: 15px; max-width: 660px; }

/* ---------- FOUNDER & ABOUT ---------- */
.founder-panel { position: relative; overflow: hidden; border-radius: var(--r3); padding: 34px;
  border: 1px solid var(--line-strong); box-shadow: var(--sh-2); backdrop-filter: blur(18px);
  background: linear-gradient(135deg, color-mix(in srgb, var(--blue) 16%, var(--surface)), color-mix(in srgb, var(--teal) 7%, var(--surface)) 120%); }
.founder-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image: radial-gradient(var(--line-strong) 1px, transparent 1.4px); background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 78% 12%, #000, transparent 58%); mask-image: radial-gradient(circle at 78% 12%, #000, transparent 58%); }
.founder-panel::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(440px circle at var(--cx, 65%) var(--cy, 0%), color-mix(in srgb, var(--blue) 16%, transparent), transparent 60%); }
.founder-panel:hover::after { opacity: 1; }
.fp-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; pointer-events: none; top: -210px; right: -150px;
  background: radial-gradient(circle, rgba(37,99,235,.42), rgba(20,184,166,.16) 45%, transparent 66%); }
.fp-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 300px 1fr; gap: 38px; align-items: center; }

/* Founder */
.fp-founder { display: flex; flex-direction: column; align-items: center; text-align: center; }
.fp-photo { position: relative; width: 168px; height: 168px; margin-bottom: 18px; }
.fp-photo img { width: 100%; height: 100%; border-radius: 28px; object-fit: cover; border: 1px solid var(--line-strong); box-shadow: var(--sh-2); }
.fp-ring { position: absolute; inset: -12px; border-radius: 40px; border: 2px dashed var(--blue-soft); opacity: .55; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.fp-name { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -.02em; margin-bottom: 7px; }
.fp-role { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--blue-soft);
  background: color-mix(in srgb, var(--blue) 14%, transparent); padding: 6px 14px; border-radius: var(--pill); margin-bottom: 14px; }
.fp-quote { font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.55; color: var(--text); max-width: 280px; margin-bottom: 8px; }
.fp-sign { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--blue-soft); margin-bottom: 14px; }
.fp-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.fp-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line-strong); padding: 6px 12px; border-radius: var(--pill); }
.fp-chip .icon { color: var(--teal-soft); }

/* Detail column */
.fp-detail { display: flex; flex-direction: column; gap: 18px; }
.fp-about { position: relative; padding: 24px 26px; border-radius: var(--r3); border: 1px solid var(--line-strong); background: var(--surface); box-shadow: var(--sh-1); }
.fp-title { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.fp-title .icon { color: var(--blue-soft); }
.fp-text { font-size: 15px; line-height: 1.65; color: var(--text); }
.fp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fp-card { position: relative; padding: 22px 22px; border-radius: var(--r3); border: 1px solid var(--line-strong); background: var(--surface); box-shadow: var(--sh-1); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.fp-card:hover { transform: translateY(-6px); border-color: var(--blue-soft); box-shadow: var(--sh-2); }
.fp-ic { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: #fff; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: var(--glow); }
.fp-ic .icon { width: 20px; height: 20px; }
.fp-h { font-family: var(--display); font-weight: 700; font-size: 16.5px; margin-bottom: 8px; }
.fp-p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.fp-list { display: flex; flex-direction: column; gap: 10px; }
.fp-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); }
.fp-list li .icon { color: var(--blue-soft); flex: none; }
.fp-list li span { color: var(--muted); }
.fp-list li b { color: var(--text); font-weight: 600; margin-left: auto; text-align: right; }

/* ---------- PAYMENT METHODS ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pay-card { position: relative; display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--r3);
  border: 1px solid var(--line-strong); background: var(--surface); box-shadow: var(--sh-1); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.pay-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--brand); opacity: .85; }
.pay-card:hover { transform: translateY(-6px); border-color: var(--blue-soft); box-shadow: var(--sh-2); }
.pay-logo { height: 48px; padding: 0 16px; border-radius: 13px; display: grid; place-items: center; flex: none; color: var(--brand);
  background: #fff; border: 1px solid var(--line-strong); box-shadow: 0 10px 24px -14px rgba(0,0,0,.5); }
.pay-logo svg { height: 20px; width: auto; display: block; }
.pay-body { min-width: 0; flex: 1; }
.pay-method { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -.01em; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.pay-kind { font-family: var(--body); font-size: 12px; font-weight: 500; color: var(--muted); }
.pay-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; color: var(--success);
  background: color-mix(in srgb, var(--success) 15%, transparent); padding: 3px 9px; border-radius: var(--pill); }
.pay-number { display: flex; align-items: center; gap: 9px; margin-top: 6px; font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--text); letter-spacing: .01em; }
.pay-number .icon { color: var(--brand); flex: none; }
.pay-num { white-space: nowrap; }
.pay-copy { flex: none; width: 32px; height: 32px; border-radius: 10px; border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--muted); display: grid; place-items: center; cursor: none; transition: .25s; }
.pay-copy:hover { color: var(--blue-soft); border-color: var(--blue-soft); transform: translateY(-2px); }
.pay-copy.copied { color: var(--success); border-color: var(--success); }
.pay-card--bank { grid-column: 1 / -1; flex-direction: column; align-items: stretch; gap: 14px;
  background: linear-gradient(120deg, color-mix(in srgb, var(--success) 8%, var(--surface)), var(--surface) 60%); }
.pay-top { display: flex; align-items: center; gap: 16px; }
.pay-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.pf { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.pf span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.pf b { font-size: 14px; font-weight: 600; color: var(--text); word-break: break-word; display: flex; align-items: center; gap: 8px; }
.pf--num b .pay-copy { width: 28px; height: 28px; }
.pay-note { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding: 14px 20px; border-radius: var(--r2);
  background: var(--surface-2); border: 1px solid var(--line-strong); font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.pay-note .icon { color: var(--teal-soft); flex: none; }

/* ---------- APPLY FOR A TUTOR (FORM) ---------- */
.form-panel { position: relative; max-width: 780px; margin: 0 auto; padding: 34px; border-radius: var(--r3);
  border: 1px solid var(--line-strong); background: var(--surface); box-shadow: var(--sh-1); }
.form-panel .fp-head { margin-bottom: 26px; }
.form-panel .fp-head h3 { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 3.2vw, 30px); letter-spacing: -.02em; }
.form-panel .fp-head p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.form-panel .fp-head p b { color: var(--blue-soft); font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field > label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.field .req { color: var(--danger); margin-left: 2px; }
.field input, .field textarea, .field select { width: 100%; font-family: inherit; font-size: 14.5px; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: var(--r1);
  padding: 12px 14px; outline: none; transition: border-color .25s, box-shadow .25s; }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B95A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-soft);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 18%, transparent); }
.field .hint { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.form-section { margin-bottom: 30px; }
.form-section:last-of-type { margin-bottom: 0; }
.form-section-title { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600;
  font-size: 17px; letter-spacing: -.01em; color: var(--text); padding-bottom: 12px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line); }
.form-section-title .icon { color: var(--blue-soft); }
.check-field { flex-direction: row; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-field input[type="checkbox"] { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--blue);
  cursor: pointer; }
.check-field b { font-size: 13.5px; font-weight: 600; color: var(--text); }
.form-actions { margin-top: 26px; }
.form-actions .btn { width: 100%; }

/* ---------- OUR TEACHERS ---------- */
.tsearch { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 22px; margin-bottom: 20px;
  border-radius: var(--r3); border: 1px solid var(--line-strong); background: var(--surface); box-shadow: var(--sh-1); }
.tsearch .ts-field { position: relative; display: flex; align-items: center; gap: 10px; padding: 0 14px;
  border-radius: var(--r1); border: 1px solid var(--line-strong); background: var(--surface-2); transition: border-color .25s; }
.tsearch .ts-field:focus-within { border-color: var(--blue-soft); }
.tsearch .ts-field > .icon { color: var(--muted); flex: none; }
.tsearch .ts-field input { flex: 1; min-width: 0; border: none; background: none; outline: none; font-family: inherit;
  font-size: 14px; color: var(--text); padding: 12px 0; }
.tsearch .ts-field input::placeholder { color: var(--muted); }
.tsearch .ts-general { grid-column: 1 / -1; }
.tsearch .ts-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ts-gender { display: inline-flex; gap: 6px; padding: 4px; border-radius: var(--pill); border: 1px solid var(--line-strong); background: var(--surface-2); }
.ts-gender label { position: relative; }
.ts-gender input { position: absolute; opacity: 0; pointer-events: none; }
.ts-gender span { display: inline-block; padding: 8px 18px; border-radius: var(--pill); font-size: 13.5px; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: background .25s, color .25s; }
.ts-gender input:checked + span { background: linear-gradient(120deg, var(--blue), #3b82f6); color: #fff; box-shadow: var(--glow); }

.tch-resultbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.tch-count { font-size: 15px; color: var(--muted); }
.tch-count b { color: var(--text); font-weight: 700; }

.tch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tch-card { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 22px; overflow: hidden;
  border-radius: var(--r3); border: 1px solid var(--line-strong); background: var(--surface); box-shadow: var(--sh-1);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.tch-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 84px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--blue) 22%, transparent), color-mix(in srgb, var(--teal) 14%, transparent));
  opacity: .8; pointer-events: none; }
.tch-card:hover { transform: translateY(-8px); border-color: var(--blue-soft); box-shadow: var(--sh-2); }

.tch-top { position: relative; display: flex; align-items: flex-start; gap: 14px; padding-top: 22px; }
.tch-photo { position: relative; flex: none; width: 76px; height: 76px; border-radius: 50%; padding: 3px;
  background: linear-gradient(135deg, var(--blue), var(--teal)); }
.tch-photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg-2); }
.tch-id { flex: 1; min-width: 0; padding-top: 6px; }
.tch-name { display: flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.tch-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: var(--pill);
  background: color-mix(in srgb, var(--success) 18%, transparent); color: #4ade80; font-size: 10.5px; font-weight: 700;
  letter-spacing: .02em; flex: none; }
.tch-badge .icon { width: 12px; height: 12px; }
.tch-code { font-family: var(--display); font-size: 12.5px; font-weight: 600; color: var(--blue-soft); margin-top: 3px; }
.tch-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tch-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: var(--pill);
  background: var(--surface-2); border: 1px solid var(--line); font-size: 11.5px; font-weight: 600; color: var(--muted); }
.tch-chip .icon { width: 13px; height: 13px; color: var(--blue-soft); }

.tch-block { display: flex; flex-direction: column; gap: 6px; }
.tch-block-title { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); }
.tch-block-title .icon { width: 14px; height: 14px; color: var(--teal-soft); }
.tch-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.tch-row span { color: var(--muted); flex: none; }
.tch-row b { color: var(--text); font-weight: 600; text-align: right; }
.tch-results { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tch-result { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: var(--r1);
  background: var(--surface-2); border: 1px solid var(--line); }
.tch-result span { font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.tch-result b { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--success); }
.tch-bio { font-size: 13px; color: var(--muted); line-height: 1.6; }
.tch-divider { height: 1px; background: var(--line); }
.tch-foot { display: flex; gap: 10px; margin-top: auto; }
.tch-foot .btn { flex: 1; }

.load-more-wrap { display: flex; justify-content: center; margin-top: 34px; }
.tch-empty { display: none; text-align: center; padding: 60px 20px; color: var(--muted); font-size: 15px; }
.tch-empty.show { display: block; }

/* ---------- HIRE MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 4000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.show { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(2,4,10,.72); backdrop-filter: blur(8px); }
.modal-card { position: relative; width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: var(--r3); box-shadow: var(--sh-2); padding: 32px; animation: modalIn .35s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  font-size: 24px; line-height: 1; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); transition: color .25s, background .25s, transform .25s; }
.modal-close:hover { color: var(--text); background: var(--surface); transform: rotate(90deg); }
.modal-title { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 3vw, 28px); letter-spacing: -.02em; margin-bottom: 20px; padding-right: 40px; }
.modal-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.modal-meta div { display: flex; flex-direction: column; gap: 5px; padding: 12px 14px; border-radius: var(--r1); background: var(--surface); border: 1px solid var(--line); }
.modal-meta span { font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.modal-meta b { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--text); }
.hire-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hire-form .field.full { grid-column: 1 / -1; }
.hire-form .form-actions { grid-column: 1 / -1; display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }
@media (max-width: 560px) {
  .modal-card { padding: 24px 18px; }
  .modal-meta { grid-template-columns: 1fr; }
  .hire-form { grid-template-columns: 1fr; }
  .hire-form .form-actions { flex-direction: column-reverse; }
  .hire-form .form-actions .btn { width: 100%; }
}

/* ---------- LEGAL / TERMS ---------- */
.legal-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; max-width: 1080px; margin: 0 auto; }

/* Sticky table of contents */
.legal-toc { position: sticky; top: 100px; }
.toc-inner { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r3); padding: 22px 20px; box-shadow: var(--sh-1); }
.toc-title { display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc-nav { display: flex; flex-direction: column; gap: 2px; }
.toc-nav a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--r2); font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: background .2s var(--ease), color .2s var(--ease); }
.toc-nav a:hover { background: var(--surface-2); color: var(--text); }
.toc-n { font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--blue-soft); }

/* Section cards */
.legal-stack { display: flex; flex-direction: column; gap: 26px; }
.legal-card { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r3); box-shadow: var(--sh-1); overflow: hidden; scroll-margin-top: 100px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.legal-card:hover { border-color: var(--blue); box-shadow: var(--sh-2); }
.lc-head { display: flex; align-items: center; gap: 16px; padding: 24px clamp(20px, 3vw, 34px); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--surface-2), transparent); }
.lc-icon { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border-radius: var(--r2); background: color-mix(in srgb, var(--blue) 12%, transparent); color: var(--blue-soft); border: 1px solid var(--line-strong); }
.lc-icon .icon { width: 24px; height: 24px; }
.lc-num { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-soft); margin-bottom: 3px; }
.lc-title h2 { font-family: var(--display); font-weight: 600; font-size: clamp(19px, 2.4vw, 24px); letter-spacing: -.02em; margin: 0; line-height: 1.2; }
.lc-body { padding: 26px clamp(20px, 3vw, 34px) 30px; }
.lc-body h3 { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -.01em; margin: 26px 0 12px; color: var(--text); }
.lc-body p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.lc-body > p:first-child { margin-top: 0; }
.lc-body ol { list-style: none; counter-reset: item; padding-left: 0; margin: 0 0 14px; }
.lc-body ol > li { counter-increment: item; position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--text); font-weight: 600; font-size: 15px; line-height: 1.6; }
.lc-body ol > li::before { content: counter(item); position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--blue-soft); background: color-mix(in srgb, var(--blue) 12%, transparent); border-radius: 7px; }
.lc-body ol > li p, .lc-body ol > li ul, .lc-body ol > li ol { font-weight: 400; }
.lc-body ol ol { counter-reset: subitem; padding-left: 0; margin: 10px 0 4px; }
.lc-body ol ol > li { counter-increment: subitem; padding-left: 30px; color: var(--muted); font-weight: 400; }
.lc-body ol ol > li::before { content: counter(item) "." counter(subitem); width: auto; height: auto; background: none; top: 1px; }
.lc-body ul { list-style: none; padding-left: 0; margin: 6px 0 14px; }
.lc-body ul li { position: relative; padding-left: 26px; color: var(--muted); font-weight: 400; font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.lc-body ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-soft); }
.lc-highlight { background: color-mix(in srgb, var(--blue) 12%, transparent); border: 1px solid var(--line-strong); border-left: 3px solid var(--blue); border-radius: var(--r2); padding: 16px 18px; margin: 4px 0 16px; }
.lc-highlight p { margin-bottom: 6px; color: var(--text); }
.lc-highlight p:last-child { margin-bottom: 0; }
.lc-highlight strong { color: var(--blue-soft); }
.lc-contact { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r2); padding: 16px 18px; margin-top: 6px; }
.lc-contact p { margin-bottom: 6px; }
.lc-contact p:last-child { margin-bottom: 0; }
.lc-contact a { color: var(--blue-soft); text-decoration: none; }
.lc-contact a:hover { text-decoration: underline; }
.lc-contact .fc-label { color: var(--text); font-weight: 600; }
.lc-body .updated { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--teal-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }

@media (max-width: 900px) {
  .legal-wrap { grid-template-columns: 1fr; gap: 22px; }
  .legal-toc { position: static; }
  .toc-nav { flex-direction: row; flex-wrap: wrap; }
  .toc-nav a { flex: 1 1 auto; }
}

/* ---------- VALUES ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { position: relative; overflow: hidden; padding: 34px 30px 30px; border-radius: var(--r3); background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-strong); box-shadow: var(--sh-1); transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); }
.value-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.value-card:hover { transform: translateY(-8px); border-color: var(--blue-soft); box-shadow: var(--sh-2); }
.value-card:hover::before { transform: scaleX(1); }
.value-glow { position: absolute; width: 260px; height: 260px; top: -120px; right: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.35), transparent 68%); opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.value-card:hover .value-glow { opacity: 1; }
.value-index { position: absolute; top: 22px; right: 26px; font-family: var(--serif); font-style: italic; font-size: 44px; line-height: 1; color: var(--text); opacity: .08; transition: opacity .45s var(--ease), color .45s var(--ease); }
.value-card:hover .value-index { opacity: .18; color: var(--blue-soft); }
.value-ic { position: relative; z-index: 1; width: 60px; height: 60px; display: grid; place-items: center; border-radius: 18px; margin-bottom: 22px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: 0 14px 30px -12px rgba(37,99,235,.7); }
.value-ic .icon { width: 28px; height: 28px; stroke-width: 2; }
.value-card h3 { position: relative; z-index: 1; font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -.02em; margin-bottom: 12px; }
.value-card p { position: relative; z-index: 1; color: var(--muted); font-size: 15px; line-height: 1.7; }

@media (max-width: 820px) {
  .values { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- REFERRAL PROGRAM ---------- */
.ref-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.benefit-card { position: relative; overflow: hidden; text-align: center; padding: 40px 32px 34px; border-radius: var(--r3); background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-strong); box-shadow: var(--sh-1); transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--sh-2); border-color: var(--blue-soft); }
.benefit-feat { border-color: color-mix(in srgb, var(--blue) 40%, transparent); background: linear-gradient(180deg, color-mix(in srgb, var(--blue) 14%, var(--surface-2)), var(--surface)); }
.benefit-glow { position: absolute; width: 300px; height: 300px; top: -150px; left: 50%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.4), transparent 68%); opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.benefit-card:hover .benefit-glow { opacity: 1; }
.benefit-ic { position: relative; z-index: 1; width: 66px; height: 66px; display: inline-grid; place-items: center; border-radius: 20px; margin-bottom: 20px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: 0 16px 34px -14px rgba(37,99,235,.8); }
.benefit-ic .icon { width: 30px; height: 30px; }
.benefit-tag { position: relative; z-index: 1; display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-soft); margin-bottom: 10px; }
.benefit-amount { position: relative; z-index: 1; font-family: var(--display); font-weight: 700; font-size: clamp(38px, 6vw, 54px); letter-spacing: -.03em; line-height: 1; background: linear-gradient(120deg, var(--blue-soft), var(--teal-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.benefit-amount span { -webkit-text-fill-color: var(--text); display: inline-block; font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin-left: 4px; }
.benefit-note { position: relative; z-index: 1; color: var(--muted); font-size: 14px; margin: 8px 0 22px; }

/* Reward banner */
.reward-banner { display: flex; align-items: center; gap: 20px; padding: 24px 28px; border-radius: var(--r3); border: 1px solid color-mix(in srgb, var(--blue) 40%, transparent); background: linear-gradient(120deg, color-mix(in srgb, var(--blue) 18%, transparent), color-mix(in srgb, var(--blue) 4%, transparent)); box-shadow: var(--sh-1); }
.reward-teal { border-color: color-mix(in srgb, var(--teal) 40%, transparent); background: linear-gradient(120deg, color-mix(in srgb, var(--teal) 18%, transparent), color-mix(in srgb, var(--teal) 4%, transparent)); }
.reward-ic { flex-shrink: 0; width: 60px; height: 60px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: 0 14px 30px -12px rgba(37,99,235,.7); }
.reward-teal .reward-ic { background: linear-gradient(135deg, var(--teal), var(--blue)); }
.reward-ic .icon { width: 28px; height: 28px; }
.reward-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.reward-amount { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 4vw, 32px); letter-spacing: -.02em; line-height: 1.1; }
.reward-amount span { display: block; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-top: 4px; }

/* Checklist */
.checklist { list-style: none; padding-left: 0; margin: 6px 0 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; padding-left: 0; color: var(--text); font-size: 15px; line-height: 1.6; margin-bottom: 12px; font-weight: 500; }
.checklist li::before { display: none; }
.checklist .ck { flex-shrink: 0; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: var(--teal-soft); background: color-mix(in srgb, var(--teal) 16%, transparent); border: 1px solid color-mix(in srgb, var(--teal) 30%, transparent); }
.checklist .ck .icon { width: 15px; height: 15px; }

/* Contact numbers */
.ref-contact { max-width: 960px; margin: 26px auto 0; text-align: center; padding: 24px; border-radius: var(--r3); border: 1px dashed var(--line-strong); background: var(--surface); }
.rc-label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.rc-label .icon { color: var(--teal-soft); }
.rc-nums { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.rc-nums a { font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: .02em; color: var(--text); text-decoration: none; padding: 10px 22px; border-radius: var(--pill); border: 1px solid var(--line-strong); background: var(--surface-2); transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.rc-nums a:hover { border-color: var(--blue-soft); color: var(--blue-soft); transform: translateY(-3px); }

/* Referral CTA */
.ref-cta { max-width: 720px; margin: 36px auto 0; text-align: center; }
.ref-cta p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 22px; }

@media (max-width: 720px) {
  .ref-benefits { grid-template-columns: 1fr; }
  .reward-banner { flex-direction: column; text-align: center; }
}

/* ---------- REVIEWS SLIDER ---------- */
.review-wrap { width: 100%; }
.review-carousel .rc-track { display: flex; gap: 26px; transition: transform .55s var(--ease); will-change: transform; }
.review-card { flex: 0 0 calc((100% - 78px) / 4); position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 28px 26px 24px; border-radius: var(--r3); background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-strong); box-shadow: var(--sh-1); transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); }
.review-card:hover { transform: translateY(-8px); border-color: var(--blue-soft); box-shadow: var(--sh-2); }
.rv-glow { position: absolute; width: 220px; height: 220px; top: -120px; right: -70px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.32), transparent 68%); opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.review-card:hover .rv-glow { opacity: 1; }
.rv-mark { position: absolute; top: 8px; right: 20px; font-family: var(--serif); font-size: 90px; line-height: 1; color: var(--blue-soft); opacity: .12; pointer-events: none; }
.rv-stars { position: relative; z-index: 1; color: #fbbf24; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.rv-text { position: relative; z-index: 1; flex: 1; color: var(--text); font-size: 14.5px; line-height: 1.72; margin-bottom: 22px; }
.rv-foot { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.rv-foot img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid color-mix(in srgb, var(--blue) 30%, transparent); flex-shrink: 0; }
.rv-name { display: flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.rv-check { width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; flex-shrink: 0; }
.rv-check .icon { width: 11px; height: 11px; stroke-width: 3; }
.rv-role { color: var(--muted); font-size: 12.5px; margin-top: 2px; }

@media (max-width: 1080px) {
  .review-card { flex: 0 0 calc((100% - 52px) / 3); }
}
@media (max-width: 780px) {
  .review-card { flex: 0 0 calc((100% - 26px) / 2); }
}
@media (max-width: 560px) {
  .review-card { flex: 0 0 100%; }
}

/* ---------- FOOTER ---------- */
.footer { padding: 42px 0 28px; position: relative; z-index: 2; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 34px; }
.footer-brand { min-width: 0; }
.footer-groups { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-group { display: flex; flex-direction: column; gap: 3px; padding: 11px 16px; border-radius: var(--r1); border: 1px solid var(--line); background: var(--surface); transition: border-color .25s, background .25s, transform .25s; }
.footer-group:hover { border-color: var(--blue-soft); background: var(--surface-2); transform: translateY(-2px); }
.footer-group .fg-label { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.footer-group .fg-name { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); }
.footer-group .fg-name .icon { color: var(--blue-soft); }
.footer-col { min-width: 0; }
.footer-contact { gap: 14px; }
.footer-contact li { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.footer-contact .fc-label { color: var(--text); font-weight: 700; margin-right: 6px; }
.footer-contact a { color: var(--blue-soft); }
.footer-contact a:hover { text-decoration: underline; }
.footer .brand { margin-bottom: 18px; }
.footer .about { color: var(--muted); font-size: 15px; max-width: 320px; margin-bottom: 18px; }
.footer h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14.5px; color: var(--text); opacity: .8; transition: opacity .2s, color .2s; }
.footer ul a:hover { opacity: 1; color: var(--blue-soft); }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: .25s; cursor: none; }
.social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-3px); }
.wordmark { font-family: var(--display); font-weight: 700; font-size: clamp(64px, 18vw, 250px); line-height: .9; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.4px color-mix(in srgb, var(--text) 22%, transparent); text-align: center; user-select: none; margin-bottom: 30px; white-space: nowrap; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 14px; color: var(--muted); }
.footer-bottom a { color: var(--muted); text-decoration: none; transition: color .25s var(--ease); }
.footer-bottom a:hover { color: var(--blue-soft); }

/* ---------- MOBILE NAV / FAB ---------- */
.bottom-nav { display: none; }
@media (max-width: 860px) {
  .bottom-nav { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-top: 1px solid var(--line); justify-content: space-around; padding: 8px 4px calc(8px + env(safe-area-inset-bottom)); }
  .bottom-nav a { position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 600; color: var(--muted); padding: 2px 4px; transition: color .2s; }
  .bottom-nav a svg { width: 22px; height: 22px; }
  .bottom-nav a.active { color: var(--blue-soft); }
  .bottom-nav a.active::before { content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); width: 22px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
  body { padding-bottom: 66px; }
  .nav-inner { gap: 14px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { margin: 24px auto 0; max-width: 460px; min-height: auto; }
  .glass-card.mini { position: static; width: 100%; left: auto; bottom: auto; margin-top: 18px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .hs:nth-child(2) { border-right: none; }
  .hero-stats .hs:nth-child(1), .hero-stats .hs:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .metric-ribbon { grid-template-columns: repeat(2, 1fr); }
  .mr-cell:nth-child(2) { border-right: none; }
  .mr-cell:nth-child(1), .mr-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .promo-cards { grid-template-columns: 1fr; }
  .promo-card { padding: 34px; }
  .process { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .price-grid { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  .nav-inner { gap: 16px; }
  .menu { gap: 2px; margin-left: 0; }
  .menu > li > a { padding: 10px 11px; font-size: 14px; }
  .nav-actions { gap: 8px; }
}
@media (max-width: 860px) {
  .menu, .nav-actions .btn:not(.btn-primary) { display: none; }
  .burger { display: flex; }
  .job { grid-template-columns: 1fr auto; gap: 12px 18px; }
  .job .jc { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .section { padding: 36px 0; }
  .tl-toolbar { flex-direction: column; }
  .tl-select select, .tl-search-btn { width: 100%; }
  .form-panel { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .tsearch { grid-template-columns: 1fr 1fr; }
  .tch-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-panel { padding: 32px 24px; }
  .fp-grid { grid-template-columns: 1fr; gap: 34px; }
  .fp-cards { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-band { padding: 54px 30px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .float-chip { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .hs { border-right: none; border-bottom: 1px solid var(--line); }
  .hero-stats .hs:last-child { border-bottom: none; }
  .stat:last-child { border-bottom: none; }
  .search { flex-direction: column; align-items: stretch; }
  .search .sf { width: 100%; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 22px 18px; margin-bottom: 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer .brand { margin-bottom: 12px; }
  .footer .about { font-size: 14px; max-width: none; margin-bottom: 14px; }
  .footer-groups { flex-direction: row; }
  .footer-group { flex: 1; padding: 10px 14px; }
  .footer h4 { margin-bottom: 12px; font-size: 12px; }
  .footer ul { gap: 9px; }
  .footer ul a { font-size: 14px; }
  .footer-col { min-width: 0; }
  .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .footer-contact li { font-size: 13px; line-height: 1.5; }
  .footer-contact li:first-child { grid-column: 1 / -1; }
  .footer-contact .fc-label { display: block; font-size: 11px; margin-bottom: 2px; opacity: .8; }
  .wordmark { font-size: clamp(56px, 26vw, 120px); margin-bottom: 22px; }
  .footer-bottom { padding-top: 20px; font-size: 12.5px; }
  .tutor { flex: 0 0 84vw; }
  .hero-center .hero-cta .btn { width: 100%; }
  .fx { font-size: 20px !important; }
  .f6, .f8, .f11, .f13, .geo.g3, .geo.g4 { display: none; }
  .metric-ribbon { grid-template-columns: 1fr; }
  .mr-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .mr-cell:last-child { border-bottom: none; }
  .tl-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .pay-fields { grid-template-columns: 1fr; gap: 14px; }
  .tsearch { grid-template-columns: 1fr; }
  .tsearch .ts-foot { flex-direction: column; align-items: stretch; }
  .ts-gender { justify-content: space-between; }
  .tch-grid { grid-template-columns: 1fr; }
}

/* ---------- LOGIN MODAL (two-role) — premium ---------- */
.login-modal .modal-card { position: relative; z-index: 2; max-width: 468px; overflow: hidden; padding: 38px 32px 30px; background: color-mix(in srgb, var(--bg-2) 86%, transparent); border: 1px solid var(--line-strong); box-shadow: 0 50px 120px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.04) inset; }
.login-modal .modal-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(160deg, color-mix(in srgb, var(--blue) 60%, transparent), transparent 38%, color-mix(in srgb, var(--teal) 45%, transparent)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.login-glow { position: fixed; z-index: 1; top: 50%; left: 50%; width: 520px; height: 520px; transform: translate(-50%, -54%); border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.30), rgba(20,184,166,.16) 45%, transparent 70%); filter: blur(40px); pointer-events: none; opacity: 0; transition: opacity .4s var(--ease); }
.login-modal.show .login-glow { opacity: 1; }
.login-brand { display: grid; place-items: center; margin-bottom: 18px; }
.login-brand svg { width: 52px; height: 52px; border-radius: 15px; box-shadow: 0 18px 40px -16px rgba(37,99,235,.7); }
.login-step { animation: loginStep .4s var(--ease); }
@keyframes loginStep { from { opacity: 0; transform: translateY(12px) scale(.99); } to { opacity: 1; transform: none; } }
.login-head { text-align: center; margin-bottom: 24px; }
.login-head .login-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--pill); background: color-mix(in srgb, var(--blue) 14%, transparent); color: var(--blue-soft); font-size: 12px; font-weight: 600; letter-spacing: .04em; margin-bottom: 16px; }
.login-head h3 { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 3.4vw, 27px); letter-spacing: -.025em; line-height: 1.2; }
.login-head h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; background: linear-gradient(120deg, var(--blue-soft), var(--teal-soft)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.login-head p { color: var(--muted); font-size: 14.5px; margin-top: 10px; line-height: 1.6; }

.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.role-card { position: relative; display: flex; flex-direction: column; gap: 11px; padding: 22px 18px 18px; border-radius: var(--r2); border: 1px solid var(--line-strong); background: var(--surface); cursor: none; text-align: left; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s; overflow: hidden; }
.role-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--blue) 18%, transparent), transparent 60%); opacity: 0; transition: opacity .3s; }
.role-card > * { position: relative; z-index: 1; }
.role-card:hover { transform: translateY(-5px); border-color: var(--blue-soft); box-shadow: 0 24px 50px -24px rgba(37,99,235,.6); }
.role-card:hover::before { opacity: 1; }
.role-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; box-shadow: 0 14px 30px -12px rgba(37,99,235,.7); }
.role-ico .icon { width: 23px; height: 23px; }
.role-card b { font-family: var(--display); font-size: 16.5px; font-weight: 600; }
.role-card span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.role-card .role-go { margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--blue-soft); display: inline-flex; align-items: center; gap: 6px; }
.role-check { position: absolute; top: 14px; right: 14px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(120deg, var(--blue), var(--teal)); color: #fff; opacity: 0; transform: scale(.5); transition: opacity .3s var(--ease), transform .3s var(--ease); z-index: 2; }
.role-check .icon { width: 14px; height: 14px; }
.role-card.selected { border-color: var(--blue-soft); background: color-mix(in srgb, var(--blue) 10%, var(--surface)); box-shadow: 0 22px 50px -24px rgba(37,99,235,.6); }
.role-card.selected .role-check { opacity: 1; transform: scale(1); }

.login-back { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; color: var(--muted); font-size: 13.5px; font-weight: 500; cursor: none; padding: 0; margin-bottom: 16px; transition: color .2s, gap .2s; }
.login-back:hover { color: var(--text); gap: 10px; }
.login-form { display: grid; gap: 15px; }
.login-form .field { display: grid; gap: 8px; }
.login-form label { font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--muted); padding-left: 2px; }
.login-form input { width: 100%; height: 52px; padding: 0 18px; border-radius: var(--r1); border: 1px solid var(--line-strong); background: color-mix(in srgb, var(--surface) 70%, transparent); color: var(--text); font-size: 15px; font-family: inherit; transition: border-color .25s, box-shadow .25s, background .25s; }
.login-form input::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }
.login-form input:focus { outline: none; border-color: var(--blue-soft); background: var(--surface); box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 18%, transparent); }
.login-submit { height: 52px; width: 100%; margin-top: 4px; font-size: 15px; font-weight: 600; }
.login-divider { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 12px; font-weight: 500; }
.login-divider::before, .login-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.login-social { width: 100%; font-weight: 500; }
.login-hint { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.6; }
.login-hint b { color: var(--blue-soft); }

/* Role chip (logged in state) */
.user-chip { display: inline-flex; align-items: center; gap: 10px; padding: 7px 8px 7px 14px; border-radius: var(--pill); border: 1px solid var(--line-strong); background: var(--surface); cursor: none; font-size: 14px; font-weight: 500; color: var(--text); transition: border-color .2s, background .2s; }
.user-chip:hover { border-color: var(--blue-soft); }
.user-chip .uc-role { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: #fff; background: linear-gradient(120deg, var(--blue), var(--teal)); }
.user-chip .uc-avatar { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--blue-soft); }
.user-menu { position: absolute; top: calc(100% + 12px); right: 0; min-width: 210px; background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: var(--r2); box-shadow: var(--sh-2); padding: 8px; z-index: 1200; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; }
.user-chip-wrap { position: relative; }
.user-chip-wrap.open .user-menu { opacity: 1; visibility: visible; transform: none; }
.user-menu a, .user-menu button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 11px 12px; border: none; background: none; border-radius: var(--r1); color: var(--text); font-size: 14px; font-weight: 500; cursor: none; text-align: left; transition: background .2s, color .2s; }
.user-menu a:hover, .user-menu button:hover { background: var(--surface-2); color: var(--blue-soft); }
.user-menu .um-sep { height: 1px; background: var(--line); margin: 6px 6px; }

/* Toast */
.toast-wrap { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 5000; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast { display: inline-flex; align-items: center; gap: 11px; padding: 13px 18px; border-radius: 14px; background: var(--bg-2); border: 1px solid var(--line-strong); box-shadow: var(--sh-2); color: var(--text); font-size: 14.5px; font-weight: 500; animation: toastIn .35s var(--ease); max-width: 90vw; }
.toast .t-ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; color: #fff; background: linear-gradient(120deg, var(--blue), var(--teal)); }
.toast.out { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(16px); } }

/* Role-tailored nav emphasis */
body[data-role="guardian"] .menu > li > a[href="find-tutor.html"],
body[data-role="guardian"] .mobile-menu a[href="find-tutor.html"] { color: var(--blue-soft); }
body[data-role="tutor"] .menu > li > a[href="tuitions.html"],
body[data-role="tutor"] .mobile-menu a[href="tuitions.html"] { color: var(--blue-soft); }

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

/* ---------- PRELOADER / WELCOME ---------- */
/* Safety fallback: if main.js fails to load, the overlay still fades out and
   stops blocking clicks so the site is never trapped behind the loader. */
.preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--bg); overflow: hidden; transition: opacity .7s var(--ease), visibility .7s; animation: preSafety 0s linear 4.5s forwards; pointer-events: auto; }
.preloader.fallback-hide { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes preSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.preloader-glow { position: absolute; top: 50%; left: 50%; width: 560px; height: 560px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.30), rgba(20,184,166,.16) 45%, transparent 70%); filter: blur(50px); animation: preGlow 3.4s ease-in-out infinite; }
@keyframes preGlow { 0%,100% { transform: translate(-50%, -50%) scale(1); opacity: .7; } 50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; } }
.preloader-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 26px; padding: 24px; text-align: center; }
.preloader-stage { position: relative; width: 132px; height: 132px; display: grid; place-items: center; }
.preloader-stage::before { content: ""; position: absolute; width: 132px; height: 132px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.22), transparent 65%); filter: blur(26px); animation: preGlow 3.4s ease-in-out infinite; }
.preloader-svg { width: 132px; height: 132px; overflow: visible; }
.preloader-svg [class^="pl-"] { fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* stroke-draw */
.pl-tile, .pl-node, .pl-line, .pl-ring { stroke-dasharray: 1; stroke-dashoffset: 1; }
.pl-tile { stroke-width: 3; animation: plDraw .9s .15s var(--ease) forwards; }
.pl-a { stroke-width: 3.4; animation: plDraw .6s .6s var(--ease) forwards; }
.pl-b { stroke-width: 3.4; animation: plDraw .6s .8s var(--ease) forwards; }
.pl-line { stroke-width: 3.4; animation: plDraw .85s 1s var(--ease) forwards; }
.pl-ring { stroke-width: 2; opacity: .5; animation: plDraw 1.7s .35s linear forwards; }
@keyframes plDraw { to { stroke-dashoffset: 0; } }

/* glowing comet travelling the signature path */
.pl-comet { fill: #fff; filter: drop-shadow(0 0 6px var(--blue-soft)) drop-shadow(0 0 12px var(--teal-soft)); offset-path: path('M28 28 L54 52 L66 28'); offset-rotate: 0deg; opacity: 0; animation: plComet .85s 1s var(--ease) forwards; }
@keyframes plComet {
  0% { offset-distance: 0%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* wordmark — letter by letter + shimmer */
.preloader-word { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 9vw, 54px); letter-spacing: -.04em; display: flex; }
.preloader-word span { display: inline-block; opacity: 0; transform: translateY(26px) rotateX(-60deg); transform-origin: bottom; background: linear-gradient(120deg, var(--text) 30%, var(--blue-soft) 50%, var(--text) 70%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: plLetter .6s var(--ease) forwards, plShimmer 2.4s 2s linear infinite; }
.preloader-word span.acc { -webkit-text-fill-color: var(--blue-soft); background: none; }
@keyframes plLetter { to { opacity: 1; transform: none; } }
@keyframes plShimmer { to { background-position: -220% 0; } }
.preloader-tag { font-size: 14px; color: var(--muted); letter-spacing: .02em; opacity: 0; transform: translateY(10px); animation: plTag .7s 2s var(--ease) forwards; }
@keyframes plTag { to { opacity: 1; transform: none; } }

.preloader.done { opacity: 0; visibility: hidden; }
.preloader.done .preloader-inner { transform: scale(1.04); opacity: 0; transition: transform .6s var(--ease), opacity .6s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  .preloader-svg [class^="pl-"], .preloader-comet, .preloader-word span, .preloader-tag { animation: none !important; }
  .pl-tile, .pl-node, .pl-line, .pl-ring { stroke-dashoffset: 0; }
  .pl-comet { display: none; }
  .preloader-word span { opacity: 1; transform: none; -webkit-text-fill-color: var(--text); background: none; }
  .preloader-word span.acc { -webkit-text-fill-color: var(--blue-soft); }
  .preloader-tag { opacity: 1; transform: none; }
}
