:root{
  --bg:#060912;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.66);
  --muted2: rgba(255,255,255,.52);
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --r: 22px;

  /* Cleverly-ish accents */
  --a: #7c5cff;   /* purple */
  --b: #23d5ab;   /* teal */
  --c: #00a3ff;   /* blue */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }

.bg{ position:fixed; inset:0; z-index:-1; overflow:hidden; }
.stars{
  position:absolute; inset:0;
  background:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,.25), transparent 60%),
    radial-gradient(1px 1px at 75% 35%, rgba(255,255,255,.28), transparent 60%),
    radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,.18), transparent 60%);
  opacity:.65;
}
.grid{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 360px at 18% 10%, rgba(124,92,255,.14), transparent 60%),
    radial-gradient(900px 360px at 80% 20%, rgba(35,213,171,.12), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 72px);
  opacity:.9;
}
.glow{
  position:absolute;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  filter: blur(60px);
  opacity:.45;
}
.g1{ left:-140px; top:100px; background: rgba(124,92,255,.85); }
.g2{ right:-160px; top:160px; background: rgba(35,213,171,.65); }

.container{
  width:min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 50px;
}

.topbar{
  position: sticky; top:0; z-index:30;
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items:center;
  gap:16px;
  padding: 14px 20px;
  background: rgba(6,9,18,.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar .brand{
  justify-self: start;
}

.topbar .nav{
  justify-self: center;
}

.brand{ display:flex; align-items:center; gap:10px; font-weight: 800; }
.brand-dot{
  width: 12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--a), var(--b));
  box-shadow: 0 0 0 7px rgba(124,92,255,.10);
}
.brand-text{ letter-spacing:-.02em; }

.nav{ display:flex; gap:14px; }
.nav-link{
  color: var(--muted);
  font-weight:700;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 150ms ease, color 150ms ease;
}
.nav-link:hover{ background: rgba(255,255,255,.06); color: var(--text); }
.nav-link.active{ background: rgba(255,255,255,.07); color: var(--text); }

.nav-toggle{
  display:none;
  width:44px; height:40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  justify-self: end;
}
.nav-toggle span{
  display:block;
  height:2px;
  margin: 6px 10px;
  background: rgba(255,255,255,.82);
  border-radius:999px;
}

.nav-mobile{
  display:none;
  padding: 12px 20px 16px;
  background: rgba(6,9,18,.75);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.nav-mobile.open{ display:grid; gap:10px; }

.hero{
  display:flex; justify-content:space-between; gap:18px;
  padding: 26px 0 10px;
  flex-wrap: wrap;
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight:700;
}
.pill-dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--b);
  box-shadow: 0 0 0 6px rgba(35,213,171,.10);
}

.h1{
  margin: 14px 0 10px;
  font-size: clamp(2.2rem, 3.4vw, 3.0rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.grad{
  background: linear-gradient(90deg, var(--a), var(--b), var(--c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub{ max-width: 65ch; color: var(--muted); line-height:1.6; }

.hero-right{ display:flex; gap:10px; align-items:stretch; }
.mini-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 12px 14px;
  min-width: 160px;
}
.mini-title{ color: var(--muted2); font-weight:800; font-size:.9rem; }
.mini-value{ margin-top:8px; font-weight:900; }

.roles{ margin-top: 18px; }
.roles-wrap{ display:grid; gap:18px; }

.role-card{
  position:relative;
  border-radius: 30px;
  padding: 26px 26px;
  background: radial-gradient(1200px 400px at 10% 0%, rgba(255,255,255,.05), transparent 55%), var(--card);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.role-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(700px 220px at 18% 10%, rgba(124,92,255,.18), transparent 55%),
              radial-gradient(700px 220px at 85% 55%, rgba(35,213,171,.12), transparent 55%);
  opacity: 0;
  transition: opacity 170ms ease;
  pointer-events:none;
}

.role-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  background: radial-gradient(1200px 400px at 10% 0%, rgba(255,255,255,.07), transparent 55%), var(--card2);
}
.role-card:hover::before{ opacity: 1; }

.role-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
}

.role-title{
  font-size: 2.0rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.role-title.purple{ color: rgba(170,120,255,.95); }
.role-title.blue{ color: rgba(120,190,255,.95); }
.role-title.teal{ color: rgba(120,255,210,.95); }

.role-salary{ color: var(--muted2); font-weight: 800; margin-left: 8px; font-size: 1.1rem; }
.role-desc{ margin-top: 10px; color: var(--muted); font-weight:650; max-width: 80ch; }

.pills{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top: 16px;
}
.tag{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: .95rem;
}
.ico{
  width: 26px; height: 26px;
  display:grid; place-items:center;
  border-radius: 10px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}

.view{
  display:flex; align-items:center; gap:12px;
  color: rgba(255,255,255,.86);
  font-weight: 900;
  white-space: nowrap;
  margin-top: 8px;
}
.arrow{
  width: 44px; height: 44px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform 170ms ease, background 170ms ease;
}
.role-card:hover .arrow{ transform: translateX(2px); background: rgba(255,255,255,.08); }

.role-click{
  position:absolute;
  inset:0;
  border-radius: 30px;
  /* makes entire card clickable */
}
.role-click:focus-visible{
  outline: 3px solid rgba(124,92,255,.65);
  outline-offset: 4px;
}

.footer{ margin-top: 26px; }
.footer .footer-inner{
  padding: 16px 0;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.62);
  font-weight: 700;
  border-top: 1px solid rgba(255,255,255,.08);
}
.muted{ color: rgba(255,255,255,.55); }

.footer-instagram{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-instagram:hover{
  color: #fff;
}

.footer-instagram svg{
  width: 17px;
  height: 17px;
}

/* Responsive */
@media (max-width: 720px){
  .topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .nav{ display:none; }
  .nav-toggle{ display:block; }
  .hero-right{ width:100%; }
  .mini-card{ flex:1; min-width: 0; }
  .role-title{ font-size: 1.55rem; }
  .role-row{ align-items:flex-start; }
}

.brand-logo{
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 0 14px rgba(124,92,255,0.28));
}

/* ============================= */
/* SHARED NAV (match index/subs) */
/* ============================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    to bottom,
    rgba(226, 232, 240, 0.95),
    rgba(226, 232, 240, 0.9),
    rgba(226, 232, 240, 0.75),
    transparent
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1.25rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 48px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: #0f172a;
}

/* NAV LINKS */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: #475569;
  padding: 0.15rem 0;
  transition: color 0.15s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
  color: #111827;
}

/* ACTIVE PAGE (blue like subscriptions) */
.site-nav a[aria-current="page"] {
  color: #1d4ed8;
  font-weight: 600;
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Mobile spacing parity */
@media (max-width: 640px) {
  .header-inner {
    padding-block: 0.6rem;
  }

  .site-nav {
    gap: 1rem;
  }
}

/* Cleverly light visual refresh */
:root {
  --bg: #e5edff;
  --text: #0f172a;
  --muted: #526175;
  --muted2: #718096;
  --card: rgba(255, 255, 255, 0.78);
  --card2: rgba(255, 255, 255, 0.96);
  --border: rgba(96, 165, 250, 0.24);
  --shadow: 0 22px 55px rgba(37, 99, 235, 0.13);
  --a: #6366f1;
  --b: #0ea5e9;
  --c: #2563eb;
}

body {
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 8% 8%, rgba(59, 130, 246, 0.2), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(99, 102, 241, 0.14), transparent 32%),
    linear-gradient(180deg, #edf4ff 0%, #dce9ff 52%, #edf4ff 100%);
  background-attachment: fixed;
}

.bg {
  opacity: 1;
}

.stars {
  display: none;
}

.grid {
  background:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
  opacity: 0.55;
}

.glow {
  filter: blur(90px);
  opacity: 0.18;
}

.g1 { background: #60a5fa; }
.g2 { background: #818cf8; }

.topbar {
  padding: 0.7rem max(20px, calc((100vw - 1100px) / 2));
  background: linear-gradient(to bottom, rgba(238, 245, 255, 0.96), rgba(229, 237, 255, 0.82));
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.06);
}

.brand {
  color: #0f172a;
}

.brand-logo {
  width: 42px;
  height: 48px;
  border-radius: 0;
  filter: drop-shadow(0 7px 12px rgba(37, 99, 235, 0.2));
}

.brand-text {
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.nav {
  gap: 1.35rem;
}

.nav-link {
  position: relative;
  color: #526175;
  padding: 0.35rem 0;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-link:hover {
  color: #0f172a;
  background: transparent;
}

.nav-link.active {
  color: #1d4ed8;
  background: transparent;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
}

.nav-toggle {
  border-color: rgba(59, 130, 246, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span {
  background: #334155;
}

.nav-mobile {
  background: rgba(238, 245, 255, 0.96);
  border-bottom-color: rgba(148, 163, 184, 0.24);
}

.container {
  width: min(1120px, calc(100% - 40px));
  padding-bottom: 2.5rem;
}

.hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 2rem;
  align-items: flex-end;
}

.hero-left {
  max-width: 720px;
}

.pill {
  padding: 0.55rem 0.85rem;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(59, 130, 246, 0.22);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.pill-dot {
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.h1 {
  margin: 1rem 0 0.85rem;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.grad {
  background-image: linear-gradient(100deg, #2563eb, #6366f1 58%, #0ea5e9);
}

.sub {
  margin: 0;
  color: #526175;
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-right {
  gap: 0.8rem;
}

.mini-card {
  min-width: 150px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.09);
  backdrop-filter: blur(14px);
}

.mini-title {
  color: #718096;
}

.mini-value {
  color: #0f172a;
}

.roles {
  margin-top: 1.25rem;
}

.role-card {
  border-radius: 1.5rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.82));
  border: 1px solid rgba(96, 165, 250, 0.24);
  box-shadow: var(--shadow);
}

.role-card::before {
  background:
    radial-gradient(700px 220px at 12% 0%, rgba(99, 102, 241, 0.1), transparent 60%),
    radial-gradient(700px 220px at 88% 80%, rgba(14, 165, 233, 0.1), transparent 60%);
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.45);
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.18);
}

.role-title {
  color: #0f172a;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
}

.role-title.purple,
.role-title.blue,
.role-title.teal {
  color: #3730a3;
}

.role-desc {
  color: #526175;
  font-weight: 500;
  line-height: 1.65;
}

.tag {
  padding: 0.55rem 0.75rem;
  color: #334155;
  background: rgba(239, 246, 255, 0.9);
  border-color: rgba(96, 165, 250, 0.2);
  font-weight: 650;
}

.ico {
  background: #ffffff;
  border-color: rgba(96, 165, 250, 0.18);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}

.view {
  color: #1d4ed8;
}

.arrow {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

.role-card:hover .arrow {
  background: linear-gradient(135deg, #1d4ed8, #4f46e5);
}

.role-click:focus-visible {
  outline-color: #2563eb;
}

.footer {
  margin-top: 2.5rem;
}

.footer .footer-inner {
  max-width: none;
  margin: 0;
  padding: 1.25rem 0;
  align-items: center;
  color: #64748b;
  border-top-color: rgba(148, 163, 184, 0.3);
}

.muted {
  color: #718096;
}

.footer-instagram {
  color: #526175;
}

.footer-instagram:hover {
  color: #1d4ed8;
}

.footer-support-link {
  color: #526175;
  font-weight: 650;
  text-decoration: none;
}

.footer-support-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .topbar {
    padding-inline: 20px;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-right {
    margin-top: 0.75rem;
  }

  .role-row {
    flex-direction: column;
  }

  .view {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero-right {
    flex-direction: column;
  }

  .mini-card {
    width: 100%;
  }

  .view span:first-child {
    display: none;
  }
}
