:root {
  --bg: #070707;
  --line: rgba(255,255,255,0.07);
  --line-soft: rgba(255,255,255,0.045);
  --txt: #ffffff;
  --txt-dim: rgba(255,255,255,0.65);
  --txt-faint: rgba(255,255,255,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
@view-transition { navigation: auto; }
@keyframes jcrp-old-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-32px); }
}
@keyframes jcrp-new-in {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes jcrp-nav-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
::view-transition-group(root) {
  animation-duration: 0.8s;
  animation-timing-function: var(--ease);
}
::view-transition-old(root) {
  animation: jcrp-old-out 0.8s var(--ease) both;
}
::view-transition-new(root) {
  animation: jcrp-new-in 0.8s var(--ease) both;
}
::view-transition-old(jcrp-nav) {
  animation: jcrp-nav-out 0.18s var(--ease) both;
  height: 100%;
}
::view-transition-new(jcrp-nav) {
  animation: none;
  height: 100%;
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root) { animation: jcrp-old-out 0.25s ease both; }
  ::view-transition-new(root) { animation: none; }
}
.vt-nav .hero-logo-wrap,
.vt-nav .hero-logo-subtitle-top,
.vt-nav .hero-logo-subtitle-bot,
.vt-nav .hero-logo-fallback,
.vt-nav .hero-sub,
.vt-nav .hero-btns { animation: none !important; opacity: 1 !important; transform: none !important; }
.vt-nav .hero-logo { animation: none !important; clip-path: inset(0 0 0 0) !important; opacity: 1 !important; transform: none !important; }
.vt-nav .hero-logo-frame::after { display: none !important; }
.vt-nav .hero-wings { display: none !important; }
.vt-nav .hero-scroll { animation: none !important; opacity: 0.9 !important; }
.vt-nav .page-hero-eyebrow,
.vt-nav .page-hero h1,
.vt-nav .page-hero p,
.vt-nav .page-hero-wings { animation: none !important; opacity: 1 !important; transform: none !important; }
.vt-nav .mk-hero-tag,
.vt-nav .mk-hero h1,
.vt-nav .mk-hero-sub,
.vt-nav .mk-hero-imp,
.vt-nav .mk-hero-btns { animation: none !important; opacity: 1 !important; transform: none !important; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: #fff; color: #070707; }
:focus-visible { outline: 1px solid rgba(255,255,255,0.5); outline-offset: 3px; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scrollbar-gutter: stable both-edges; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.14) transparent; }
html::-webkit-scrollbar { width: 9px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 100px; border: 2px solid #070707; }
html::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.24); }
body {
  background: var(--bg);
  font-family: 'Josefin Sans', sans-serif;
  color: var(--txt);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: clamp(0.9rem, 0.5rem + 1vw, 1.05rem);
  min-height: 100vh;
  min-height: 100svh;
}
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.053) 0.75px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.053) 0.75px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
  transform: translateZ(0);
}
.bg-glow {
  position: fixed; z-index: 0; pointer-events: none;
  top: -30vh; left: 50%; transform: translate(-50%, 0) translateZ(0);
  width: 90vw; height: 90vw; max-width: 1100px; max-height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  filter: blur(40px);
}
.bg-noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.015;
  transform: translateZ(0);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 300;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), #fff);
  transition: width 0.1s linear; pointer-events: none;
}
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  background: transparent; border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  font-size: clamp(0.65rem,0.8vw,0.74rem); letter-spacing: 2.5px; padding: 0.95em 2em;
  text-transform: uppercase; border-radius: 8px; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center;
  justify-content: center; gap: 0.6em; white-space: nowrap;
  transition: color 0.55s var(--ease), border-color 0.55s var(--ease), transform 0.4s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(30,30,30,0.3); z-index: -2;
}
.btn-fill {
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; border-radius: 50%; background: #fff;
  transform: translate(-50%, -50%);
  transition: width 0.75s var(--ease) 0.1s, height 0.75s var(--ease) 0.1s;
  pointer-events: none; z-index: -1;
}
.btn:active { transform: translateY(0); }
.btn-ico { width: 17px; height: 17px; object-fit: contain; flex-shrink: 0; transition: filter 0.45s var(--ease); }
@media (hover: hover) {
  .btn:hover { color: var(--bg); border-color: #fff; transform: translateY(-2px); }
  .btn:hover .btn-fill { width: 760px; height: 760px; }
  .btn:hover .btn-ico { filter: brightness(0); }
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(0.9rem,1.6vw,1.3rem) clamp(1.2rem,3.5vw,3.5rem);
  border-bottom: 1px solid transparent; background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 0.8s var(--ease), border-color 0.8s var(--ease), backdrop-filter 0.8s var(--ease);
  view-transition-name: jcrp-nav;
}
.nav.scrolled { background: rgba(7,7,7,0.7); border-bottom-color: var(--line); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.brand { display: flex; align-items: baseline; gap: 0.7rem; text-decoration: none; }
.brand-mark { font-size: clamp(0.75rem,0.95vw,0.85rem); letter-spacing: 5px; font-weight: 700; text-transform: uppercase; color: #fff; transition: letter-spacing 0.8s var(--ease), text-shadow 0.8s var(--ease); }
.brand:hover .brand-mark { letter-spacing: 8px; text-shadow: 0 0 18px rgba(255,255,255,0.4); }
.brand-sub { font-size: clamp(0.55rem,0.62vw,0.6rem); letter-spacing: 3px; text-transform: uppercase; color: var(--txt-faint); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: clamp(1.1rem,2.4vw,2.4rem); }
.nav-link { font-size: clamp(0.6rem,0.7vw,0.68rem); letter-spacing: 2.5px; text-transform: uppercase; color: var(--txt-dim); text-decoration: none; font-weight: 500; position: relative; transition: color 0.4s ease; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0; background: #fff; transition: width 0.4s var(--ease); }
.nav-link:hover { color: #fff; } .nav-link:hover::after { width: 100%; }
.nav-link.active { color: #fff; } .nav-link.active::after { width: 100%; }
@media (max-width: 920px) {
  .nav-link { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .brand-sub { display: none; }
}
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px;
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; cursor: pointer; padding: 0; flex-shrink: 0;
  transition: border-color 0.3s ease;
}
.nav-hamburger:hover { border-color: rgba(255,255,255,0.5); }
.nav-hamburger span {
  display: block; width: 16px; height: 1.5px; background: #fff; border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 190;
  width: min(300px, 85vw);
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 5rem 2rem 2.5rem;
  gap: 0.4rem;
  transform: translateX(100%) translateZ(0);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}
.mobile-drawer.open { transform: translateX(0); pointer-events: all; }
.mobile-drawer-link {
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--txt-dim); text-decoration: none; font-weight: 500;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  transition: color 0.3s ease;
}
.mobile-drawer-link:hover, .mobile-drawer-link.active { color: #fff; }
.mobile-drawer-cta {
  margin-top: 1.5rem; width: 100%; justify-content: center;
}
.drawer-overlay {
  position: fixed; inset: 0; z-index: 185;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.hero {
  position: relative; z-index: 1; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: clamp(6rem,14vh,11rem) clamp(1.2rem,5vw,5rem) clamp(3rem,8vh,5rem);
  padding: clamp(6rem,14svh,11rem) clamp(1.2rem,5vw,5rem) clamp(3rem,8svh,5rem);
  overflow: hidden;
}
.hero-logo-wrap {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
  opacity: 0;
  animation: fadeInLogoWrap 0.1s ease 0.3s forwards;
}
@keyframes fadeInLogoWrap { to { opacity: 1; } }
.hero-wings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0; z-index: 0; pointer-events: none;
}
.hero-ring {
  position: absolute; top: 50%; left: 50%;
  width: min(46vw, 420px); height: min(46vw, 420px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  -webkit-mask: radial-gradient(closest-side, transparent 58%, #000 84%, transparent 100%);
          mask: radial-gradient(closest-side, transparent 58%, #000 84%, transparent 100%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.22);
  animation: ringPing 2.6s cubic-bezier(0.16,0.84,0.36,1) forwards;
}
.hero-ring:nth-child(1) { animation-delay: 0.3s; }
.hero-ring:nth-child(2) { animation-delay: 0.52s; border-color: rgba(255,255,255,0.4); }
.hero-ring:nth-child(3) { animation-delay: 0.74s; border-color: rgba(255,255,255,0.28); }
@keyframes ringPing {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.22); }
  22%  { opacity: 0.5; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}
.hero-logo-subtitle-top,
.hero-logo-subtitle-bot {
  font-size: clamp(0.52rem, 2.2vw, 0.72rem);
  letter-spacing: clamp(3px, 1.5vw, 8px);
  text-transform: uppercase;
  color: var(--txt-faint);
  font-weight: 600;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 0 0.5rem;
}
.hero-logo-subtitle-top {
  margin-bottom: clamp(0.6rem, 2vw, 1.4rem);
  transform: translateY(-112px);
  animation: slideDown 0.9s var(--ease) 0.85s forwards;
}
.hero-logo-subtitle-bot {
  margin-top: clamp(0.6rem, 2vw, 1.4rem);
  transform: translateY(112px);
  animation: slideUp 0.9s var(--ease) 0.85s forwards;
}
@keyframes slideDown { to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp   { to { opacity: 1; transform: translateY(0); } }
.hero-logo-frame { position: relative; display: inline-block; }
.hero-logo-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.75) 50%, transparent 60%);
  background-size: 230% 100%; background-repeat: no-repeat; background-position: 0% 0;
  -webkit-mask: url('/static/jcrpLogo.png') center / contain no-repeat;
          mask: url('/static/jcrpLogo.png') center / contain no-repeat;
  mix-blend-mode: screen; opacity: 0;
  animation: logoGlint 1.5s var(--ease) 1.2s forwards;
}
@keyframes logoGlint {
  0%   { background-position: 0% 0; opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { background-position: 100% 0; opacity: 0; }
}
.hero-logo {
  width: 100%;
  max-width: clamp(180px, 72vw, 560px);
  height: auto; display: block;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(18px) scale(1.06);
  animation: logoReveal 1.4s cubic-bezier(0.77,0,0.18,1) 0.4s forwards, logoGlow 7s ease-in-out 2.6s infinite;
  transition: transform 0.8s var(--ease);
}
@keyframes logoReveal {
  0%   { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(18px) scale(1.06); }
  55%  { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0) scale(1); }
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255,255,255,0.05)); }
  50% { filter: drop-shadow(0 0 36px rgba(255,255,255,0.14)); }
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-particle {
  position: absolute; bottom: -12px; border-radius: 50%;
  background: rgba(255,255,255,0.6); opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: var(--po, 0.3); }
  88% { opacity: var(--po, 0.3); }
  100% { transform: translateY(calc(-100vh - 60px)) translateX(var(--px, 0px)); opacity: 0; }
}
.hero-scroll {
  position: absolute; bottom: clamp(1.4rem,3.5vh,2.6rem); bottom: clamp(1.4rem,3.5svh,2.6rem); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0; animation: heroScrollIn 1s var(--ease) 1.8s forwards;
  transition: opacity 0.8s var(--ease);
}
@keyframes heroScrollIn { to { opacity: 0.9; } }
.hero-scroll.hidden { opacity: 0 !important; pointer-events: none; }
.hero-scroll-label {
  font-size: 0.52rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--txt-faint); font-weight: 600;
}
.hero-scroll-line { width: 1px; height: 44px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: scrollDrip 2.2s var(--ease) infinite;
}
@keyframes scrollDrip { 0% { top: -50%; } 100% { top: 110%; } }
.hero-logo-fallback {
  display: none; font-size: clamp(3rem, 12vw, 9rem); font-weight: 700;
  letter-spacing: clamp(-3px,-0.6vw,-7px); line-height: 0.85; text-transform: uppercase;
  opacity: 0; animation: rise 1.1s var(--ease) 0.35s forwards;
}
.hero-sub {
  margin-top: clamp(1.4rem,4vw,3rem); max-width: 52ch;
  font-size: clamp(0.88rem,1.2vw,1.15rem); font-weight: 300; line-height: 1.8;
  color: var(--txt-dim); letter-spacing: 0.3px;
  opacity: 0; animation: rise 1s var(--ease) 1.1s forwards;
  padding: 0 0.25rem;
}
.hero-btns {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
  margin-top: clamp(1.4rem,4vw,3rem);
  opacity: 0; animation: rise 1s var(--ease) 1.25s forwards;
  width: 100%;
}
@media (max-width: 400px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btn { width: 100%; max-width: 260px; }
}
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reviews-strip {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.reviews-track {
  display: inline-flex; gap: 1.2rem; padding: 1.4rem 0;
  will-change: transform;
}
.review-card {
  flex-shrink: 0; width: clamp(220px, 70vw, 280px);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.reviews-track:hover .review-card { opacity: 0.35; transform: scale(0.96); }
.reviews-track .review-card:hover {
  opacity: 1; transform: scale(1.06);
  border-color: rgba(255,255,255,0.18);
}
.review-header { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  object-fit: cover; flex-shrink: 0;
}
.review-username {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.review-stars { display: flex; gap: 3px; align-items: center; }
.review-stars img { width: 14px; height: 14px; object-fit: contain; opacity: 0.9; transition: transform 0.4s var(--ease); }
.review-card:hover .review-stars img { transform: translateY(-2px) scale(1.12); }
.review-card:hover .review-stars img:nth-child(2) { transition-delay: 0.04s; }
.review-card:hover .review-stars img:nth-child(3) { transition-delay: 0.08s; }
.review-card:hover .review-stars img:nth-child(4) { transition-delay: 0.12s; }
.review-card:hover .review-stars img:nth-child(5) { transition-delay: 0.16s; }
.review-text {
  font-size: 0.82rem; font-weight: 300; line-height: 1.7;
  color: var(--txt-dim);
}
.wrap { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.2rem,3.5vw,3.5rem); }
.h2 { font-size: clamp(2rem,5vw,4rem); font-weight: 700; letter-spacing: -2px; line-height: 0.98; }
.section-divider {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0;
  margin: 0; overflow: hidden;
}
.section-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.08) 70%, transparent);
}
.section-divider-node {
  display: flex; align-items: center; gap: 8px; padding: 0 20px;
}
.section-divider-dot {
  width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2);
  animation: dividerPulse 3s ease-in-out infinite;
}
.section-divider-dot:nth-child(2) { animation-delay: 0.4s; }
.section-divider-dot:nth-child(3) { animation-delay: 0.8s; }
@keyframes dividerPulse {
  0%, 100% { background: rgba(255,255,255,0.15); transform: scale(1); }
  50% { background: rgba(255,255,255,0.55); transform: scale(1.3); }
}
.stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(1rem,2vw,2rem); margin: clamp(3.5rem,8vw,7rem) 0; text-align: center;
}
.stat { padding: clamp(1.2rem,2vw,1.8rem) 0; border-top: 1px solid var(--line); transition: border-color 0.8s var(--ease), transform 0.8s var(--ease); }
.stat:hover { border-top-color: rgba(255,255,255,0.35); transform: translateY(-4px); }
.stat-n { font-size: clamp(2.2rem,5.5vw,4.5rem); font-weight: 700; letter-spacing: -3px; line-height: 0.9; transition: text-shadow 0.8s var(--ease); }
.stat:hover .stat-n { text-shadow: 0 0 32px rgba(255,255,255,0.35); }
.stat-l { font-size: clamp(0.58rem,0.72vw,0.66rem); letter-spacing: 3px; text-transform: uppercase; color: var(--txt-faint); font-weight: 500; margin-top: 0.8rem; }
.stat-online {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: clamp(0.5rem,0.62vw,0.58rem); letter-spacing: 2px; text-transform: uppercase;
  color: rgba(120,220,120,0.55); font-weight: 500; margin-top: 0.45rem;
}
.stat-online-dot {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(120,220,120,0.7);
  animation: blink 2s ease-in-out infinite; flex-shrink: 0;
}
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) {
  .stat-n { letter-spacing: -2px; }
  .stat-l { letter-spacing: 1.5px; }
}
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,5rem); align-items: start; margin: clamp(3.5rem,8vw,8rem) 0; }
.about-lead { font-size: clamp(1.35rem,2.8vw,2.6rem); font-weight: 300; line-height: 1.35; letter-spacing: -0.5px; color: rgba(255,255,255,0.75); }
.about-lead b { color: #fff; font-weight: 400; }
.about-body p { font-size: clamp(0.9rem,1.1vw,1.05rem); font-weight: 300; line-height: 1.9; color: var(--txt-dim); }
.about-body p + p { margin-top: 1.4rem; }
.pillars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; margin-top: clamp(2rem,4vw,3rem); background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pillar { background: var(--bg); padding: clamp(1.2rem,2.5vw,2rem); transition: background 0.5s ease; }
.pillar:hover { background: rgba(255,255,255,0.025); }
.pillar-i { font-size: 0.72rem; letter-spacing: 3px; color: var(--txt-faint); font-weight: 600; transition: color 0.5s var(--ease); }
.pillar:hover .pillar-i { color: #fff; }
.pillar-t { font-size: clamp(0.9rem,1.25vw,1.15rem); font-weight: 600; margin: 0.9rem 0 0.5rem; }
.pillar-d { font-size: clamp(0.8rem,0.95vw,0.9rem); font-weight: 300; line-height: 1.7; color: var(--txt-dim); }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } .pillars { grid-template-columns: 1fr; } }
.dept { margin: clamp(3.5rem,8vw,8rem) 0; }
.dept-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem,4vw,3rem); }
.dept-head p { max-width: 42ch; font-size: clamp(0.9rem,1.05vw,1rem); font-weight: 300; line-height: 1.7; color: var(--txt-dim); margin-top: 1rem; }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: clamp(1rem, 2vw, 1.5rem); will-change: transform; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7,7,7,0.75); border: 1px solid rgba(255,255,255,0.4);
  color: #fff; border-radius: 8px; cursor: pointer; padding: 0;
  transition: background 0.55s var(--ease), border-color 0.55s var(--ease), transform 0.4s var(--ease);
}
.carousel-arrow svg { width: 40%; height: 40%; stroke: #fff; stroke-width: 2.4; fill: none; transition: stroke 0.45s var(--ease); }
@media (hover: hover) {
  .carousel-arrow:hover { background: #fff; border-color: #fff; transform: translateY(-50%) scale(1.06); }
  .carousel-arrow:hover svg { stroke: var(--bg); }
}
.carousel-arrow:active { transform: translateY(-50%) scale(0.98); }
.carousel-arrow.prev { left: clamp(0.4rem, 1.5vw, 1.2rem); }
.carousel-arrow.next { right: clamp(0.4rem, 1.5vw, 1.2rem); }
.dept-hint { display: flex; align-items: center; gap: 0.7rem; font-size: clamp(0.56rem,0.7vw,0.64rem); letter-spacing: 2.5px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: clamp(1.6rem,3vw,2.4rem); }
.dept-hint::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem,1.4vw,1.2rem); }
@media (max-width: 900px) { .dept-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .dept-grid { grid-template-columns: 1fr; } }
.dcard { font-family: 'Josefin Sans', sans-serif; text-align: left; cursor: pointer; position: relative; border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem,2.3vw,2rem); background: rgba(255,255,255,0.014); display: flex; flex-direction: column; min-height: clamp(210px,22vw,240px); transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease); }
.dcard::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: radial-gradient(220px circle at var(--x,50%) var(--y,50%), var(--dc, rgba(255,255,255,0.7)), transparent 65%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; opacity: 0; transition: opacity 0.45s var(--ease); pointer-events: none; }
.dcard::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(260px circle at var(--x,50%) var(--y,50%), color-mix(in srgb, var(--dc, #fff) 9%, transparent), transparent 60%); opacity: 0; transition: opacity 0.45s var(--ease); pointer-events: none; }
.dept-grid:hover .dcard::before { opacity: 0.5; }
.dcard:hover { transform: translateY(-4px); background: rgba(255,255,255,0.028); border-color: rgba(255,255,255,0.16); }
.dcard:hover::before, .dcard:hover::after { opacity: 1; }
.dcard:focus-visible { outline: 1px solid rgba(255,255,255,0.4); outline-offset: 2px; }
.dcard > * { position: relative; z-index: 1; }
.dcard-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.dcard-logo-wrap { width: clamp(52px,5.6vw,64px); height: clamp(52px,5.6vw,64px); border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dcard-logo { width: 60%; height: 60%; object-fit: contain; filter: grayscale(100%); transition: filter 0.5s var(--ease); }
.dcard:hover .dcard-logo { filter: grayscale(0%); }
.dcard-logo-fb { display: none; font-size: 0.85rem; font-weight: 700; color: #fff; }
.dcard-access { display: inline-flex; align-items: center; gap: 6px; font-size: 0.5rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: var(--txt-faint); white-space: nowrap; }
.dcard-access .ad { width: 6px; height: 6px; border-radius: 50%; background: var(--txt-faint); flex-shrink: 0; }
.dcard-access.yes { color: rgba(255,255,255,0.85); }
.dcard-access.yes .ad { background: var(--dc, #fff); box-shadow: 0 0 8px var(--dc, #fff); }
.dcard-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(1.1rem,2vw,1.5rem) 0; }
.dcard-ab { font-size: clamp(1.6rem,2.8vw,2.1rem); font-weight: 700; letter-spacing: -1px; color: #fff; line-height: 1; }
.dcard-name { font-size: clamp(0.78rem,0.95vw,0.88rem); font-weight: 400; color: var(--txt-dim); margin-top: 0.6rem; letter-spacing: -0.2px; line-height: 1.4; }
.dcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; padding-top: clamp(0.9rem,1.5vw,1.1rem); border-top: 1px solid var(--line); }
.dcard-type { display: flex; align-items: center; gap: 0.5rem; font-size: 0.5rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--txt-faint); }
.dcard-type .td { width: 5px; height: 5px; border-radius: 50%; background: var(--dc, rgba(255,255,255,0.4)); flex-shrink: 0; }
.dcard-view { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--txt-faint); display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.4s var(--ease), gap 0.4s var(--ease); }
.dcard:hover .dcard-view { color: #fff; gap: 0.6rem; }
.dcard.coming { cursor: not-allowed; overflow: hidden; }
.dcard.coming::before, .dcard.coming::after { display: none; }
.dcard.coming:hover { transform: none; background: rgba(255,255,255,0.014); border-color: var(--line); }
.dcard.coming .dcard-logo { filter: grayscale(100%); }
.dcard.coming .dcard-view { color: var(--txt-faint); }
.dcard-veil { position: absolute; inset: 0; border-radius: inherit; background: rgba(8,8,8,0.55); -webkit-backdrop-filter: grayscale(60%); backdrop-filter: grayscale(60%); z-index: 2; }
.dcard-tape { position: absolute; z-index: 3; top: 50%; left: -12%; width: 124%; transform: translateY(-50%) rotate(-13deg); background: repeating-linear-gradient(45deg, #f4d400 0 18px, #1a1a1a 18px 22px); border-top: 1.5px solid rgba(0,0,0,0.85); border-bottom: 1.5px solid rgba(0,0,0,0.85); box-shadow: 0 6px 22px rgba(0,0,0,0.55); padding: 0.42rem 0; overflow: hidden; pointer-events: none; }
.dcard-tape.two { transform: translateY(-50%) rotate(13deg); }
.dcard-tape span { display: block; text-align: center; white-space: nowrap; font-size: clamp(0.66rem,1.3vw,0.82rem); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #0a0a0a; background: #f4d400; padding: 3px 0; }
.dept-overlay { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: clamp(1rem,4vw,2.5rem); background: rgba(0,0,0,0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity 0.8s var(--ease); }
.dept-overlay.open { opacity: 1; pointer-events: auto; }
.dept-modal { position: relative; width: min(580px, 100%); max-height: 88vh; max-height: 88svh; overflow-y: auto; background: #0a0a0a; border: 1px solid var(--line); border-radius: 22px; transform: translateY(24px) scale(0.97); opacity: 0; transition: transform 0.8s var(--ease), opacity 0.8s var(--ease); scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent; }
.dept-modal::-webkit-scrollbar { width: 4px; }
.dept-modal::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.dept-overlay.open .dept-modal { transform: none; opacity: 1; }
.dept-modal-accent { height: 3px; border-radius: 22px 22px 0 0; background: linear-gradient(90deg, transparent, var(--dc, rgba(255,255,255,0.6)), transparent); }
.dept-modal-close { position: absolute; top: clamp(1.1rem,2vw,1.6rem); right: clamp(1.1rem,2vw,1.6rem); z-index: 2; width: 42px; height: 42px; border-radius: 8px; background: rgba(30,30,30,0.3); border: 1px solid rgba(255,255,255,0.4); color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.dept-modal-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.dept-modal-head { display: flex; align-items: center; gap: clamp(1rem,2.2vw,1.6rem); padding: clamp(1.8rem,3.2vw,2.6rem) clamp(1.6rem,3vw,2.6rem) clamp(1.4rem,2.5vw,1.8rem); border-bottom: 1px solid var(--line); }
.dept-modal-logo-wrap { width: clamp(70px,9vw,96px); height: clamp(70px,9vw,96px); border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dept-modal-logo { width: 62%; height: 62%; object-fit: contain; }
.dept-modal-logo-fb { display: none; font-size: clamp(1rem,1.8vw,1.4rem); font-weight: 700; color: #fff; }
.dept-modal-heads { min-width: 0; }
.dept-modal-type { display: inline-flex; align-items: center; gap: 0.5rem; font-size: clamp(0.5rem,0.64vw,0.58rem); letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: var(--txt-faint); margin-bottom: 0.7rem; }
.dept-modal-type .td { width: 6px; height: 6px; border-radius: 50%; background: var(--dc, rgba(255,255,255,0.5)); flex-shrink: 0; }
.dept-modal-ab { font-size: clamp(1.8rem,3.4vw,2.8rem); font-weight: 700; letter-spacing: -1.5px; line-height: 0.95; color: #fff; }
.dept-modal-name { font-size: clamp(0.85rem,1.1vw,1rem); font-weight: 400; color: var(--txt-dim); margin-top: 0.5rem; letter-spacing: -0.2px; }
.dept-modal-body { padding: clamp(1.6rem,3vw,2.4rem) clamp(1.6rem,3vw,2.6rem); }
.dept-modal-desc { font-size: clamp(0.88rem,1.1vw,1rem); font-weight: 300; line-height: 1.9; color: var(--txt-dim); }
.dept-modal-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: clamp(1.6rem,2.8vw,2.2rem); }
@media (max-width: 520px) { .dept-modal-meta { grid-template-columns: 1fr; } }
.dept-modal-cell { background: rgba(255,255,255,0.012); padding: clamp(1rem,1.8vw,1.3rem) clamp(1rem,1.8vw,1.4rem); }
.dept-modal-cell-l { font-size: clamp(0.5rem,0.64vw,0.56rem); letter-spacing: 2.5px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 0.6rem; }
.dept-modal-cell-v { font-size: clamp(0.88rem,1.05vw,0.98rem); font-weight: 400; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 0.5rem; }
.dept-modal-cell-v .vd { width: 7px; height: 7px; border-radius: 50%; background: var(--dc, rgba(255,255,255,0.4)); flex-shrink: 0; }
.dept-modal-foot { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: clamp(1.6rem,2.8vw,2.2rem); }
.dept-modal-foot .btn { flex: 1; min-width: 140px; }
.dcard-foot.end { justify-content: flex-end; }
.page-applications .dcard-logo { filter: none; opacity: 0.72; transition: opacity 0.5s var(--ease); }
.page-applications .dcard:hover .dcard-logo { opacity: 1; }
.app-note { display: flex; gap: 0.8rem; margin-top: 1.6rem; padding: clamp(0.9rem,1.6vw,1.2rem) clamp(1rem,1.8vw,1.4rem); border: 1px solid var(--line); border-left: 2px solid var(--dc, rgba(255,255,255,0.4)); border-radius: 10px; background: rgba(255,255,255,0.015); font-size: clamp(0.8rem,0.98vw,0.9rem); font-weight: 300; line-height: 1.7; color: var(--txt-dim); }
.app-note b { color: rgba(255,255,255,0.85); font-weight: 600; }
.app-reqs { list-style: none; margin-top: 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
@media (max-width: 520px) { .app-reqs { grid-template-columns: 1fr; } }
.app-reqs li { display: flex; align-items: center; gap: 0.7rem; padding: clamp(0.8rem,1.4vw,1rem) clamp(0.9rem,1.6vw,1.2rem); background: rgba(255,255,255,0.012); font-size: clamp(0.8rem,0.98vw,0.9rem); font-weight: 300; color: var(--txt-dim); }
.app-reqs li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--dc, rgba(255,255,255,0.4)); flex-shrink: 0; }
.dept-card { flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; min-height: 420px; }
@media (max-width: 700px) { .dept-card { grid-template-columns: 1fr; min-height: auto; } }
.dept-card-left {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--line); background: rgba(255,255,255,0.015);
}
.dept-card-logo-wrap { display: flex; align-items: center; justify-content: center; flex: 1; padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.dept-card-logo {
  width: clamp(80px, 14vw, 240px);
  height: clamp(80px, 14vw, 240px);
  object-fit: contain; filter: drop-shadow(0 0 60px rgba(255,255,255,0.192));
}
.dept-card-logo-fb {
  width: clamp(90px, 14vw, 160px); height: clamp(90px, 14vw, 160px);
  display: none; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 16px;
  font-size: clamp(1rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: 1px;
  color: var(--txt-dim); background: rgba(255,255,255,0.03);
}
.dept-card-ab { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -2px; line-height: 0.9; color: #fff; }
@media (max-width: 700px) {
  .dept-card-left {
    border-right: none; border-bottom: 1px solid var(--line);
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: row; align-items: center; justify-content: flex-start; gap: 1.2rem;
  }
  .dept-card-logo-wrap { flex: 0 0 auto; padding: 0; }
  .dept-card-ab { font-size: clamp(2rem, 8vw, 3.5rem); }
  .dept-card-logo { width: clamp(60px, 18vw, 90px); height: clamp(60px, 18vw, 90px); }
}
.dept-card-right { padding: clamp(1.5rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
.dept-card-name { font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 700; letter-spacing: -0.5px; line-height: 1.1; color: #fff; }
.dept-card-desc { font-size: clamp(0.85rem, 1.05vw, 1rem); font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.6); flex: 1; }
.dept-card-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.dept-meta-cell { background: rgba(255,255,255,0.02); padding: 14px 16px; }
.dept-meta-cell-label { font-size: clamp(0.6rem,0.72vw,0.68rem); letter-spacing: 2.5px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 5px; }
.dept-meta-cell-val { font-size: clamp(0.82rem,0.95vw,0.9rem); font-weight: 400; color: rgba(255,255,255,0.75); }
.dept-meta-cell-val.wl-yes { color: rgba(255,255,255,0.9); }
.dept-meta-cell-val.wl-no  { color: rgba(255,255,255,0.55); }
.dept-card-progress { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--line); pointer-events: none; }
.dept-card-progress-fill { height: 125%; background: rgba(255,255,255,0.6); width: 0%; transition: width 0.1s linear; }
.carousel-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: clamp(1.5rem, 3vw, 2rem); flex-wrap: wrap; }
.carousel-dot { border-radius: 100px; background: rgba(255,255,255,0.2); cursor: pointer; transition: width 0.4s var(--ease), background 0.4s var(--ease); height: 6px; width: 6px; border: none; padding: 0; }
.carousel-dot.active { background: #fff; width: 35px; }
.sessions { margin: clamp(3.5rem,8vw,8rem) 0; }
.sessions-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; margin-top: clamp(2rem,4vw,3rem);
}
.sess { background: var(--bg); padding: clamp(1.8rem,4vw,3.5rem); transition: background 0.5s ease; }
.sess:hover { background: rgba(255,255,255,0.012); }
.sess-l { font-size: clamp(0.58rem,0.72vw,0.66rem); letter-spacing: 4px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; }
.sess-d { font-size: clamp(0.8rem,0.98vw,0.92rem); font-weight: 300; color: var(--txt-dim); margin: 1.2rem 0 0.8rem; letter-spacing: 0.5px; }
.sess-t { font-size: clamp(2.2rem,6vw,5rem); font-weight: 700; letter-spacing: -3px; line-height: 0.85; }
.sess-tz { font-size: clamp(0.58rem,0.78vw,0.72rem); letter-spacing: 3px; text-transform: uppercase; color: var(--txt-faint); font-weight: 500; margin-top: 0.8rem; }
.sess-note {
  grid-column: 1 / -1; background: var(--bg);
  padding: clamp(1rem,2vw,1.6rem) clamp(1.5rem,4vw,3.5rem);
  display: flex; align-items: flex-start; gap: 1rem; border-top: 1px solid var(--line);
}
.sess-note .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); animation: blink 2.5s ease-in-out infinite; flex-shrink: 0; margin-top: 5px; }
.sess-note p { font-size: clamp(0.78rem,0.95vw,0.9rem); font-weight: 300; color: var(--txt-dim); line-height: 1.6; }
.sess-note b { color: rgba(255,255,255,0.8); font-weight: 500; }
@media (max-width: 700px) {
  .sessions-grid { grid-template-columns: 1fr; }
  .sess { padding: 1.6rem 1.4rem; }
  .sess-t { letter-spacing: -2px; }
}
.tz-link {
  color: rgba(255,255,255,0.85); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tz-link:hover { color: #fff; border-bottom-color: #fff; }
.cta {
  position: relative; margin: clamp(3.5rem,8vw,8rem) 0 clamp(3rem,6vw,5rem);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  padding: clamp(2.5rem,7vw,6rem) clamp(1.5rem,5vw,5rem); text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% -20%, rgba(255,255,255,0.07), transparent 60%);
  pointer-events: none;
}
.cta::after {
  content: ''; position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 200px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(255,255,255,0.06), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.cta-glow-tl, .cta-glow-br {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.cta-glow-tl { top: -80px; left: -80px; }
.cta-glow-br { bottom: -80px; right: -80px; }
.cta-shimmer {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.025) 40%, rgba(255,255,255,0.045) 50%, rgba(255,255,255,0.025) 60%, transparent);
  animation: shimmerSweep 6s ease-in-out infinite 2s;
  pointer-events: none;
}
@keyframes shimmerSweep { 0% { left: -100%; } 100% { left: 200%; } }
.cta-h {
  font-size: clamp(2rem,7vw,6rem); font-weight: 700;
  letter-spacing: clamp(-1px,-0.3vw,-3px);
  line-height: 0.98; position: relative; z-index: 1;
}
.cta-h em { font-style: normal; color: rgba(255,255,255,0.4); }
.cta-h-glow {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.cta-h-glow::after {
  content: '';
  display: block; width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  filter: blur(20px);
}
.cta-title-wrap { position: relative; z-index: 1; }
.cta-p {
  margin: 1.4rem auto 2rem; max-width: 46ch;
  font-size: clamp(0.88rem,1.05vw,1rem); font-weight: 300; line-height: 1.75;
  color: var(--txt-dim); position: relative; z-index: 1;
}
.cta-btns {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.8rem; position: relative; z-index: 1; width: 100%; margin: 0 auto;
}
@media (max-width: 480px) {
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 280px; }
}
.page-home .cta-h { font-size: clamp(2rem,7vw,6rem); }
.page-about .cta-h,
.page-departments .cta-h,
.page-applications .cta-h { font-size: clamp(1.8rem,6vw,4.5rem); }
.page-hero {
  position: relative; z-index: 1; text-align: center;
  padding: clamp(8rem,18vh,12rem) clamp(1.2rem,5vw,5rem) clamp(2.5rem,6vh,4rem);
  padding: clamp(8rem,18svh,12rem) clamp(1.2rem,5vw,5rem) clamp(2.5rem,6svh,4rem);
}
.page-hero-eyebrow {
  font-size: clamp(0.55rem,0.7vw,0.68rem); letter-spacing: clamp(4px,1vw,7px);
  text-transform: uppercase; color: var(--txt-faint); font-weight: 600;
  opacity: 0; animation: rise 0.9s var(--ease) 0.15s forwards;
}
.page-hero h1 {
  margin-top: clamp(1rem,2vw,1.6rem);
  font-size: clamp(2.6rem,9vw,7rem); font-weight: 700;
  letter-spacing: clamp(-2px,-0.5vw,-5px); line-height: 0.92;
  opacity: 0; animation: rise 1s var(--ease) 0.3s forwards;
}
.page-hero h1 em { font-style: normal; color: rgba(255,255,255,0.4); }
.page-hero p {
  margin: clamp(1.4rem,3vw,2.2rem) auto 0; max-width: 56ch;
  font-size: clamp(0.9rem,1.15vw,1.1rem); font-weight: 300; line-height: 1.8;
  color: var(--txt-dim); padding: 0 0.25rem;
  opacity: 0; animation: rise 1s var(--ease) 0.45s forwards;
}
.page-hero-wings {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: clamp(1.6rem,3vw,2.4rem);
  opacity: 0; animation: rise 1s var(--ease) 0.6s forwards;
}
.page-hero-wing { height: 1px; width: clamp(40px,12vw,120px); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35)); }
.page-hero-wing.right { background: linear-gradient(270deg, transparent, rgba(255,255,255,0.35)); }
.page-hero-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6); flex-shrink: 0; }
.tier { margin: clamp(3rem,7vw,6rem) 0; }
.tier-head { margin-bottom: clamp(2rem,4vw,3rem); }
.tier-label { font-size: clamp(0.58rem,0.72vw,0.66rem); letter-spacing: 4px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; }
.tier-title { font-size: clamp(1.8rem,4.5vw,3.4rem); font-weight: 700; letter-spacing: -1.5px; line-height: 1; margin-top: 0.8rem; }
.tier-desc { max-width: 52ch; font-size: clamp(0.88rem,1.05vw,1rem); font-weight: 300; line-height: 1.75; color: var(--txt-dim); margin-top: 1rem; }
.team-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: clamp(1rem,2vw,1.4rem);
}
.member {
  position: relative; overflow: hidden;
  flex: 0 0 300px; width: 300px; max-width: 100%;
  background: rgba(255,255,255,0.022);
  border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(1.6rem,3vw,2.4rem) clamp(1.4rem,2.5vw,2rem);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
@media (max-width: 360px) { .member { flex-basis: 100%; } }
.member::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(255,255,255,0.05), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.member:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.18); transform: translateY(-4px); }
.member:hover::before { opacity: 1; }
.member-avatar {
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 40px rgba(255,255,255,0.06);
  filter: grayscale(100%);
  transition: filter 0.8s var(--ease);
}
.member:hover .member-avatar { filter: grayscale(0%); }
.member-avatar-fb {
  border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  display: none; align-items: center; justify-content: center;
  font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.7);
  box-shadow: 0 0 40px rgba(255,255,255,0.06);
}
.member-avatar, .member-avatar-fb { width: 96px; height: 96px; font-size: 1.5rem; }
.member-body { display: flex; flex-direction: column; align-items: center; }
.member-name { font-size: clamp(1.05rem,1.5vw,1.35rem); font-weight: 600; letter-spacing: -0.3px; margin-top: 1.1rem; }
.member-role { font-size: clamp(0.6rem,0.74vw,0.68rem); letter-spacing: 2.5px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-top: 0.5rem; }
.member-bio { font-size: clamp(0.8rem,0.95vw,0.9rem); font-weight: 300; line-height: 1.7; color: var(--txt-dim); margin-top: 0.9rem; }
.member-socials { display: flex; gap: 0.5rem; margin-top: 1.1rem; flex-wrap: wrap; justify-content: center; }
.member-social {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 8px;
  background: rgba(30,30,30,0.3);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.member-social:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.member-social img { width: 15px; height: 15px; object-fit: contain; opacity: 0.85; }
.member-social-text {
  font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  color: var(--txt-dim);
}
.mk-hero {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(8rem,18vh,12rem) clamp(1.2rem,5vw,5rem) clamp(2.5rem,6vh,4rem);
  padding: clamp(8rem,18svh,12rem) clamp(1.2rem,5vw,5rem) clamp(2.5rem,6svh,4rem);
  overflow: hidden;
}
.mk-hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: clamp(0.56rem,0.72vw,0.66rem); letter-spacing: 4px; text-transform: uppercase;
  color: var(--txt-faint); font-weight: 600;
  opacity: 0; animation: rise 1s var(--ease) 0.2s forwards;
}
.mk-hero-tag .live { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.6); animation: blink 2.4s ease-in-out infinite; }
.mk-hero h1 {
  margin-top: clamp(1.2rem,3vw,2rem);
  font-size: clamp(2.6rem,9vw,7rem); font-weight: 700;
  letter-spacing: clamp(-2px,-0.6vw,-5px); line-height: 0.9;
  opacity: 0; animation: rise 1.1s var(--ease) 0.35s forwards;
}
.mk-hero-sub {
  margin-top: clamp(1.3rem,3vw,2.2rem); max-width: 56ch;
  font-size: clamp(0.88rem,1.15vw,1.1rem); font-weight: 300; line-height: 1.8;
  color: var(--txt-dim); letter-spacing: 0.3px;
  opacity: 0; animation: rise 1s var(--ease) 0.55s forwards;
}
.mk-hero-imp {
  margin-top: clamp(1.3rem,3vw,2.2rem); max-width: 56ch;
  font-size: clamp(0.88rem,1.15vw,1.1rem); font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.85); letter-spacing: 0.3px;
  opacity: 0; animation: rise 1s var(--ease) 0.55s forwards;
}
.mk-hero-btns {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
  margin-top: clamp(1.4rem,3vw,2.4rem);
  opacity: 0; animation: rise 1s var(--ease) 0.7s forwards;
}
.policy {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  margin: clamp(2rem,5vw,4rem) 0 clamp(1rem,2vw,2rem);
}
.policy-cell { background: var(--bg); padding: clamp(1.2rem,2.4vw,2rem) clamp(1.1rem,2vw,1.7rem); transition: background 0.5s ease; }
.policy-cell:hover { background: rgba(255,255,255,0.015); }
.policy-l { font-size: clamp(0.56rem,0.7vw,0.64rem); letter-spacing: 3px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 0.8rem; }
.policy-t { font-size: clamp(0.82rem,0.98vw,0.94rem); font-weight: 300; line-height: 1.6; color: var(--txt-dim); }
.policy-t code { background: rgba(255,255,255,0.07); padding: 1px 6px; border-radius: 4px; font-size: 0.9em; color: rgba(255,255,255,0.9); font-family: 'Josefin Sans', sans-serif; }
@media (max-width: 860px) { .policy { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .policy { grid-template-columns: 1fr; } }
.mk-section { margin: clamp(3.5rem,8vw,7rem) 0; }
.mk-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(1.8rem,4vw,2.8rem); }
.mk-head-label { font-size: clamp(0.58rem,0.72vw,0.66rem); letter-spacing: 4px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 0.9rem; }
.mk-head p { max-width: 46ch; font-size: clamp(0.88rem,1.05vw,1rem); font-weight: 300; line-height: 1.7; color: var(--txt-dim); margin-top: 1rem; }
.mk-head p code { background: rgba(255,255,255,0.07); padding: 1px 6px; border-radius: 4px; font-size: 0.9em; color: rgba(255,255,255,0.85); font-family: 'Josefin Sans', sans-serif; }
.mk-head p a { text-decoration: none; }
.mk-head p a code { border-bottom: 1px solid rgba(255,255,255,0.2); transition: background 0.3s ease, border-color 0.3s ease; }
.mk-head p a:hover code { background: rgba(255,255,255,0.14); border-bottom-color: rgba(255,255,255,0.5); }
.mk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.mk-card {
  background: var(--bg); padding: clamp(1.5rem,2.6vw,2.4rem) clamp(1.3rem,2.2vw,2rem);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: background 0.5s ease;
}
.mk-card:hover { background: rgba(255,255,255,0.018); }
.mk-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease); pointer-events: none; }
.mk-card:hover::after { transform: scaleX(1); }
.mk-type { font-size: clamp(0.56rem,0.7vw,0.64rem); letter-spacing: 3.5px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: clamp(0.9rem,1.6vw,1.4rem); transition: color 0.4s ease; }
.mk-card:hover .mk-type { color: rgba(255,255,255,0.6); }
.mk-name { font-size: clamp(1.15rem,1.8vw,1.5rem); font-weight: 700; letter-spacing: -0.5px; color: #fff; margin-bottom: 0.6rem; line-height: 1.1; }
.mk-desc { font-size: clamp(0.82rem,0.98vw,0.9rem); font-weight: 300; color: var(--txt-dim); line-height: 1.7; flex-grow: 1; }
.mk-foot { margin-top: clamp(1.4rem,2.4vw,2.2rem); padding-top: clamp(1rem,1.8vw,1.5rem); border-top: 1px solid var(--line); }
.mk-checkout { display: flex; flex-direction: column; gap: 0.85rem; width: 100%; }
.mk-prices { display: flex; align-items: center; gap: clamp(0.7rem,1.4vw,1.3rem); }
.mk-price-item { text-align: left; }
.mk-price-item .pl { font-size: clamp(0.48rem,0.6vw,0.56rem); letter-spacing: 3px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; display: block; margin-bottom: 4px; }
.mk-price-item .pv { font-size: clamp(1.1rem,1.9vw,1.7rem); font-weight: 700; letter-spacing: -1px; color: #fff; line-height: 1; display: flex; align-items: center; gap: 4px; }
.mk-price-item .pv .robux-icon { width: 0.75em; height: 0.75em; }
.mk-sep { width: 1px; height: 30px; background: var(--line); flex-shrink: 0; }
.mk-btns { display: flex; gap: 0.45rem; width: 100%; }
.mk-btns .btn { flex: 1; min-width: 0; }
.priority-checkout { margin-top: clamp(1.2rem,2vw,1.8rem); }
@media (max-width: 820px) { .mk-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .mk-grid { grid-template-columns: 1fr; } }
.robux-icon {
  width: 0.7em; height: 0.7em; display: inline-flex; align-self: center; flex-shrink: 0;
  background: url('/static/robuxMono.png') center / contain no-repeat;
  transition: background-image 0.3s ease;
}
.mk-card:hover .robux-icon,
.priority:hover .robux-icon { background-image: url('/static/robux.png'); }
.tier-wrap { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.tier-layout { display: grid; grid-template-columns: clamp(170px,20vw,260px) 1fr; }
.tier-sidebar { border-right: 1px solid var(--line); background: rgba(255,255,255,0.012); }
.tier-sidebar-head { padding: clamp(1rem,1.8vw,1.6rem) clamp(1rem,1.8vw,1.8rem) 0.8rem; font-size: 0.56rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; border-bottom: 1px solid var(--line); }
.tier-row { display: flex; align-items: stretch; width: 100%; text-align: left; cursor: pointer; border: none; background: transparent; font-family: 'Josefin Sans', sans-serif; border-bottom: 1px solid var(--line); transition: background 0.3s ease; padding: 0; }
.tier-row:hover { background: rgba(255,255,255,0.025); }
.tier-row.active { background: rgba(255,255,255,0.04); }
.tier-row[data-tier="bronze"]   { --tc: #c87941; }
.tier-row[data-tier="silver"]   { --tc: #b0b0b0; }
.tier-row[data-tier="gold"]     { --tc: #e8c040; }
.tier-row[data-tier="platinum"] { --tc: #c8c0e0; }
.tier-row[data-tier="diamond"]  { --tc: #60d8f0; }
.tier-row[data-tier="compare"]  { --tc: #8ca0ff; }
.tr-bar { width: 3px; background: var(--tc); flex-shrink: 0; opacity: 0; transition: opacity 0.3s ease; }
.tier-row.active .tr-bar { opacity: 1; }
.tier-row:hover .tr-bar { opacity: 0.4; }
.tr-body { padding: clamp(0.9rem,1.5vw,1.3rem) clamp(0.9rem,1.5vw,1.5rem); flex: 1; display: flex; flex-direction: column; gap: 3px; }
.tr-name { font-size: clamp(0.66rem,0.9vw,0.8rem); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--txt-faint); transition: color 0.3s ease; }
.tier-row.active .tr-name { color: #fff; }
.tier-row:hover .tr-name { color: var(--txt-dim); }
.tr-price { font-size: clamp(0.58rem,0.74vw,0.7rem); font-weight: 300; color: rgba(255,255,255,0.22); transition: color 0.3s ease; }
.tier-row.active .tr-price { color: var(--txt-faint); }
.tier-content { min-height: clamp(420px,52vw,560px); }
.tier-panel, .compare-panel { display: none; }
.tier-panel.active { display: flex; flex-direction: column; animation: panelIn 0.45s var(--ease); }
.compare-panel.active { display: block; animation: panelIn 0.45s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
.tp-head { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: clamp(1rem,2vw,2rem); padding: clamp(1.6rem,3vw,3rem) clamp(1.4rem,3vw,3.5rem); border-bottom: 1px solid var(--line); }
.tp-label { font-size: clamp(0.54rem,0.66vw,0.62rem); letter-spacing: 4px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 0.6rem; }
.tp-name { font-size: clamp(2.2rem,5.5vw,5rem); font-weight: 700; letter-spacing: -3px; line-height: 0.9; }
.tp-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; padding-top: 0.4rem; }
.tp-prices { display: flex; align-items: center; gap: clamp(0.7rem,1.4vw,1.3rem); }
.tp-price-item { text-align: right; }
.tp-price-item .pl { font-size: clamp(0.48rem,0.6vw,0.56rem); letter-spacing: 3px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; display: block; margin-bottom: 4px; }
.tp-price-item .pv { font-size: clamp(1.1rem,1.9vw,1.7rem); font-weight: 700; letter-spacing: -1px; color: #fff; line-height: 1; display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.tp-price-item .pv .robux-icon { width: 0.75em; height: 0.75em; }
.tp-sep { width: 1px; height: 30px; background: var(--line); }
.tp-btns { display: flex; gap: 0.45rem; }
.tp-perks { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem,2.5vw,2rem) clamp(1.6rem,4vw,4rem); padding: clamp(1.4rem,3vw,2.6rem) clamp(1.4rem,3vw,3.5rem); }
.perk-group-title { font-size: clamp(0.5rem,0.64vw,0.58rem); letter-spacing: 3.5px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 0.9rem; padding-bottom: 0.55rem; border-bottom: 1px solid var(--line); }
.perk-item { display: flex; align-items: baseline; gap: 0.7rem; padding: 0.42rem 0; border-bottom: 1px solid var(--line-soft); }
.perk-item:last-child { border-bottom: none; }
.perk-dash { width: 10px; height: 1px; background: var(--tier-accent, rgba(255,255,255,0.25)); flex-shrink: 0; margin-top: 0.55rem; transition: width 0.4s var(--ease); }
.perk-item:hover .perk-dash { width: 22px; }
.perk-label { font-size: clamp(0.78rem,0.96vw,0.88rem); font-weight: 300; color: var(--txt-dim); line-height: 1.4; transition: color 0.3s ease; }
.perk-item:hover .perk-label { color: #fff; }
@media (max-width: 620px) {
  .tier-layout { grid-template-columns: 1fr; }
  .tier-sidebar { border-right: none; border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; }
  .tier-sidebar-head { display: none; }
  .tier-row { flex: 1 1 auto; min-width: 84px; border-right: 1px solid var(--line); border-bottom: none; }
  .tr-bar, .tr-price { display: none; }
  .tp-head { grid-template-columns: 1fr; }
  .tp-right { align-items: flex-start; }
  .tp-perks { grid-template-columns: 1fr; }
}
.compare-wrap { overflow-x: auto; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.08) transparent; }
.compare-wrap::-webkit-scrollbar { height: 3px; }
.compare-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
.compare-table { width: 100%; min-width: 580px; border-collapse: collapse; font-family: 'Josefin Sans', sans-serif; }
.compare-table th { padding: 1.2rem 0.8rem 1rem; font-size: clamp(0.6rem,0.8vw,0.74rem); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; text-align: center; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #0b0b0b; z-index: 3; }
.compare-table th:first-child { text-align: left; padding-left: 1.5rem; color: var(--txt-faint); min-width: 150px; }
.compare-table th .th-name { display: block; margin-bottom: 3px; }
.compare-table th .th-price { display: block; font-size: clamp(0.5rem,0.64vw,0.58rem); color: var(--txt-faint); font-weight: 300; letter-spacing: 1px; }
.compare-table th.col-bronze { color: #c87941; } .compare-table th.col-silver { color: #b0b0b0; }
.compare-table th.col-gold { color: #e8c040; } .compare-table th.col-platinum { color: #c8c0e0; }
.compare-table th.col-diamond { color: #60d8f0; }
.compare-table td { padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line-soft); text-align: center; font-size: clamp(0.72rem,0.9vw,0.82rem); font-weight: 300; color: var(--txt-dim); transition: background 0.2s, color 0.2s; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { text-align: left; padding-left: 1.5rem; color: rgba(255,255,255,0.5); }
.compare-table tr.sr td { padding: 1.1rem 0.8rem 0.4rem; font-size: clamp(0.48rem,0.6vw,0.56rem); letter-spacing: 3.5px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; border-bottom: none; background: rgba(255,255,255,0.012); }
.compare-table tr:not(.sr):hover td { background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.85); }
.compare-table td.col-bronze { background: rgba(200,121,65,0.04); } .compare-table td.col-silver { background: rgba(176,176,176,0.03); }
.compare-table td.col-gold { background: rgba(232,192,64,0.04); } .compare-table td.col-platinum { background: rgba(200,192,224,0.03); }
.compare-table td.col-diamond { background: rgba(96,216,240,0.04); }
.cyes { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.col-bronze .cyes { color: #c87941; } .col-silver .cyes { color: #b0b0b0; } .col-gold .cyes { color: #e8c040; }
.col-platinum .cyes { color: #c8c0e0; } .col-diamond .cyes { color: #60d8f0; }
.cno { display: inline-block; width: 10px; height: 1px; background: rgba(255,255,255,0.12); border-radius: 1px; vertical-align: middle; }
.compare-table td.bc { padding: 0.8rem 0.6rem; }
.compare-table td.bc .btn { display: flex; width: 100%; padding: 0.8em 0.4em; letter-spacing: 1.5px; margin-bottom: 0.35rem; }
.tier-disclaimer { padding: 1.2rem 1.5rem; font-size: clamp(0.7rem,0.85vw,0.78rem); font-weight: 300; color: var(--txt-faint); font-style: italic; border-top: 1px solid var(--line); text-align: center; }
.priority { display: grid; grid-template-columns: clamp(220px,28vw,360px) 1fr; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.priority-left { border-right: 1px solid var(--line); background: rgba(255,255,255,0.015); padding: clamp(1.8rem,3.5vw,3.5rem) clamp(1.4rem,2.8vw,3rem); display: flex; flex-direction: column; justify-content: space-between; gap: clamp(1.4rem,2.5vw,2.4rem); }
.priority-label { font-size: clamp(0.54rem,0.66vw,0.62rem); letter-spacing: 4px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 0.8rem; }
.priority-left h2 { font-size: clamp(1.8rem,3.6vw,2.8rem); font-weight: 700; letter-spacing: -2px; line-height: 0.95; margin-bottom: 1rem; }
.priority-left p { font-size: clamp(0.84rem,1vw,0.94rem); font-weight: 300; color: var(--txt-dim); line-height: 1.7; }
.priority-right { padding: clamp(0.6rem,1.5vw,1.5rem); display: flex; align-items: center; }
.pp-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; width: 100%; background: var(--line); }
.pp-feat { background: var(--bg); padding: clamp(1.3rem,2.4vw,2rem) clamp(1.3rem,2.2vw,2rem); transition: background 0.5s ease; }
.pp-feat:hover { background: rgba(255,255,255,0.015); }
.pp-feat-t { font-size: clamp(0.86rem,1.05vw,1rem); font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.pp-feat-d { font-size: clamp(0.78rem,0.92vw,0.86rem); font-weight: 300; color: var(--txt-dim); line-height: 1.6; }
@media (max-width: 760px) {
  .priority { grid-template-columns: 1fr; }
  .priority-left { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 460px) { .pp-feats { grid-template-columns: 1fr; } }
.sec-label { font-size: clamp(0.58rem,0.72vw,0.66rem); letter-spacing: 4px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 0.9rem; }
.join-steps { margin: clamp(3.5rem,8vw,8rem) 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: clamp(2rem,4vw,3rem); }
.step { position: relative; display: flex; flex-direction: column; align-items: flex-start; background: var(--bg); padding: clamp(1.4rem,2.4vw,2.2rem) clamp(1.2rem,2vw,1.8rem); transition: background 0.5s ease; }
.step:hover { background: rgba(255,255,255,0.02); }
.step-n { font-size: clamp(1.7rem,3.2vw,2.6rem); font-weight: 700; letter-spacing: -1.5px; line-height: 1; color: rgba(255,255,255,0.14); transition: color 0.6s var(--ease), text-shadow 0.6s var(--ease); }
.step:hover .step-n { color: #fff; text-shadow: 0 0 24px rgba(255,255,255,0.35); }
.step-t { font-size: clamp(0.95rem,1.2vw,1.12rem); font-weight: 600; margin: clamp(1rem,1.8vw,1.4rem) 0 0.55rem; }
.step-d { font-size: clamp(0.8rem,0.95vw,0.9rem); font-weight: 300; line-height: 1.7; color: var(--txt-dim); flex: 1; }
.step-go { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.1rem; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--txt-faint); text-decoration: none; transition: color 0.4s var(--ease), gap 0.4s var(--ease); }
.step-go:hover { color: #fff; gap: 0.7rem; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }
.faq { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,5rem); align-items: start; margin: clamp(3.5rem,8vw,8rem) 0; }
.faq-head p { margin-top: 1.2rem; max-width: 38ch; font-size: clamp(0.88rem,1.05vw,1rem); font-weight: 300; line-height: 1.8; color: var(--txt-dim); }
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.012); transition: border-color 0.5s var(--ease), background 0.5s var(--ease), transform 0.5s var(--ease); }
.faq-item::before { content: ''; position: absolute; left: 0; top: 12%; bottom: 12%; width: 2px; border-radius: 2px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.7), transparent); transform: scaleY(0); transform-origin: center; transition: transform 0.55s var(--ease); }
.faq-item:hover { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.022); }
.faq-item.open { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }
.faq-item.open::before { transform: scaleY(1); }
.faq-q { width: 100%; display: flex; align-items: center; gap: clamp(0.9rem,1.6vw,1.3rem); text-align: left; background: transparent; border: none; cursor: pointer; font-family: 'Josefin Sans', sans-serif; color: rgba(255,255,255,0.82); font-size: clamp(0.92rem,1.12vw,1.05rem); font-weight: 500; letter-spacing: -0.2px; padding: clamp(1.05rem,1.9vw,1.45rem) clamp(1.2rem,2.2vw,1.7rem); transition: color 0.4s ease; }
.faq-q:hover { color: #fff; }
.faq-item.open .faq-q { color: #fff; }
.faq-num { font-size: clamp(0.62rem,0.78vw,0.72rem); font-weight: 700; letter-spacing: 1.5px; color: var(--txt-faint); flex-shrink: 0; min-width: 1.6em; transition: color 0.5s var(--ease), text-shadow 0.5s var(--ease); }
.faq-item:hover .faq-num, .faq-item.open .faq-num { color: #fff; text-shadow: 0 0 18px rgba(255,255,255,0.35); }
.faq-q-t { flex: 1; }
.faq-icon { position: relative; flex-shrink: 0; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.02); transition: border-color 0.45s var(--ease), background 0.45s var(--ease), transform 0.6s var(--ease); }
.faq-item:hover .faq-icon { border-color: rgba(255,255,255,0.3); }
.faq-item.open .faq-icon { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); transform: rotate(135deg); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: rgba(255,255,255,0.6); border-radius: 2px; transition: background 0.4s ease; }
.faq-icon::before { width: 11px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 11px; transform: translate(-50%, -50%); }
.faq-item:hover .faq-icon::before, .faq-item:hover .faq-icon::after,
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.6s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; min-height: 0; }
.faq-a p { padding: 0 clamp(1.2rem,2.2vw,1.7rem) clamp(1.2rem,2vw,1.5rem); margin-left: calc(1.6em + clamp(0.9rem,1.6vw,1.3rem)); border-left: 1px solid var(--line); padding-left: clamp(1rem,1.8vw,1.4rem); font-size: clamp(0.82rem,0.98vw,0.92rem); font-weight: 300; line-height: 1.8; color: var(--txt-dim); }
.faq-a a { color: rgba(255,255,255,0.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); transition: color 0.4s var(--ease), border-color 0.4s var(--ease); }
.faq-a a:hover { color: #fff; border-bottom-color: #fff; }
@media (max-width: 860px) { .faq { grid-template-columns: 1fr; gap: 1.8rem; } }
@media (max-width: 520px) { .faq-a p { margin-left: 0; border-left: none; padding-left: clamp(1.2rem,2.2vw,1.7rem); } }
footer { position: relative; z-index: 1; border-top: 1px solid var(--line); }
.footer-top { border-bottom: 1px solid var(--line); }
.footer-main { max-width: 1280px; margin: 0 auto; padding: clamp(2.5rem,5vw,4.5rem) clamp(1.2rem,3.5vw,3.5rem); display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem,4vw,4.5rem); }
.footer-brand-mark { font-size: 0.85rem; letter-spacing: 5px; font-weight: 700; text-transform: uppercase; color: #fff; }
.footer-brand-sub { margin-top: 1.1rem; max-width: 36ch; font-size: clamp(0.8rem,0.95vw,0.9rem); font-weight: 300; line-height: 1.8; color: var(--txt-dim); }
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.footer-social { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; background: rgba(30,30,30,0.3); transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease); }
.footer-social:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.footer-social img { width: 16px; height: 16px; object-fit: contain; opacity: 0.85; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-col-t { font-size: clamp(0.56rem,0.7vw,0.64rem); letter-spacing: 3px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; margin-bottom: 1.1rem; }
.footer-link { display: inline-flex; align-items: center; width: fit-content; font-size: clamp(0.8rem,0.95vw,0.88rem); font-weight: 300; color: var(--txt-dim); text-decoration: none; padding: 0.32rem 0; transition: color 0.4s ease; }
.footer-link::before { content: ''; width: 0; height: 1px; background: #fff; transition: width 0.4s var(--ease), margin-right 0.4s var(--ease); }
.footer-link:hover { color: #fff; }
.footer-link:hover::before { width: 14px; margin-right: 0.55rem; }
@media (max-width: 760px) { .footer-main { grid-template-columns: 1fr; gap: 2.2rem; } }
.page-market footer { margin-top: clamp(3rem,6vw,5rem); }
.footer-l a { color: rgba(255,255,255,0.75); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); transition: color 0.4s var(--ease), border-color 0.4s var(--ease); }
.footer-l a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
.footer-in {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(1.4rem,2.5vw,2.2rem) clamp(1.2rem,3.5vw,3.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-l { font-size: clamp(0.72rem,0.88vw,0.82rem); font-weight: 300; color: var(--txt-dim); }
.footer-r { font-size: clamp(0.58rem,0.68vw,0.64rem); letter-spacing: 3px; text-transform: uppercase; color: var(--txt-faint); font-weight: 600; transition: color 0.8s var(--ease), letter-spacing 0.8s var(--ease); }
.footer-r:hover { color: rgba(255,255,255,0.7); letter-spacing: 4.5px; }
@media (max-width: 500px) {
  .footer-in { flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
}
.to-top {
  position: fixed; bottom: clamp(1.2rem,3vw,2rem); right: clamp(1.2rem,3vw,2rem); z-index: 180;
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(30,30,30,0.3); border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-3px); }
.to-top svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2.2; fill: none; }
.reveal { opacity: 0; transform: translateY(24px); will-change: opacity, transform; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; will-change: auto; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@keyframes blink { 0%,100% { opacity: 0.35; box-shadow: 0 0 0 0 rgba(255,255,255,0); } 50% { opacity: 1; box-shadow: 0 0 0 4px rgba(255,255,255,0.08); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .hero-logo { clip-path: none !important; opacity: 1 !important; transform: none !important; }
  .hero-wings { display: none !important; }
  .hero-logo-wrap, .hero-logo-subtitle-top, .hero-logo-subtitle-bot { opacity: 1 !important; transform: none !important; }
  .hero-sub, .hero-btns { opacity: 1 !important; transform: none !important; }
  .page-hero-eyebrow, .page-hero h1, .page-hero p, .page-hero-wings { opacity: 1 !important; transform: none !important; }
  .mk-hero-tag, .mk-hero h1, .mk-hero-sub, .mk-hero-btns { opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-scroll { opacity: 0.9 !important; }
  .hero-particles { display: none; }
}