/* ============================================================
   Uverin - technology-led growth agency
   Design system (ink + gold + indigo, Inter)
   ============================================================ */

:root {
  /* Palette */
  --ink: #0b1020;
  --ink-soft: #1b2440;
  --ink-5: #0b10200d;
  --ink-10: #0b10201a;
  --ink-15: #0b102026;
  --ink-20: #0b102033;
  --ink-30: #0b10204d;
  --ink-40: #0b102066;
  --ink-50: #0b102080;
  --ink-60: #0b102099;
  --ink-70: #0b1020b3;
  --accent: #ffd43b;
  --accent-soft: #fff3bf;
  --brand-700: #3730a3;
  --brand-600: #4338ca;
  --brand-500: #4f46e5;
  --brand-400: #818cf8;
  --brand-200: #c7d2fe;
  --brand-100: #e0e7ff;
  --brand-50: #eef2ff;
  --mint: #12b886;
  --mint-soft: #c3fae8;
  --danger: #dc2626;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-card: 1.5rem;
  --radius-field: 1rem;
  --shadow-soft: 0 4px 24px -8px #0b10201f;
  --shadow-card: 0 10px 40px -12px #0b10202e;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--brand-700); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-500); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
h1, .h-display { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 900; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

/* ---------- Layout ---------- */
.container-x {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container-x { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container-x { padding-inline: 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 640px) { .section { padding: 5rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

.section--tint { background: rgba(238, 242, 255, 0.6); }

/* Section head — left aligned, like the original */
.s-head { max-width: 42rem; }
.s-head h2 { margin-top: 12px; margin-bottom: 0; font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 900; letter-spacing: -0.02em; }
.s-head p { margin-top: 16px; margin-bottom: 0; color: var(--ink-60); }
.s-head--center { margin-inline: auto; text-align: center; }
.s-head--center p { margin-inline: auto; }

.split-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-600);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0;
}

.text-brand { color: var(--brand-600); }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons (pill) ---------- */
.btn {
  border-radius: 9999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); color: #fff; box-shadow: var(--shadow-soft); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { filter: brightness(0.95); box-shadow: var(--shadow-soft); color: var(--ink); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--ink-15); }
.btn-outline:hover { border-color: var(--ink-40); color: var(--ink); }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink-5); color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: rgba(255,255,255,0.9); color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

.link-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; font-size: 0.875rem; font-weight: 600; color: var(--brand-700);
}
.link-btn:hover { text-decoration: underline; color: var(--brand-700); }

/* ---------- Chips, taglines, badges ---------- */
.chip {
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.chip--mint { background: var(--mint-soft); color: #087f5b; }
.chip--accent { background: var(--accent-soft); color: #92610a; }
.chip--ink { background: var(--ink-5); color: var(--ink-70); }

/* Squared slogan chip on service/product cards */
.tagline {
  display: inline-flex;
  width: fit-content;
  border-radius: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tagline--brand { background: var(--brand-50); color: var(--brand-700); }
.tagline--mint { background: var(--mint-soft); color: #087f5b; }
.tagline--accent { background: var(--accent-soft); color: var(--ink); }
.tagline--ink { background: var(--ink-5); color: var(--ink); }

.badge { border-radius: 9999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; display: inline-flex; align-items: center; }
.badge--remote { background: var(--mint-soft); color: #087f5b; }
.badge--hybrid { background: var(--brand-50); color: var(--brand-700); }
.badge--onsite { background: var(--accent-soft); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-10);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px -12px #0b102033; }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.125rem; color: var(--ink); letter-spacing: -0.02em; }
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 36px; height: 36px; border-radius: 0.75rem;
  background: var(--ink); color: var(--accent);
  display: grid; place-items: center; font-weight: 900; font-size: 1.05rem;
}

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-70);
}
.nav a:hover { color: var(--ink); }
.nav a.is-active { background: var(--ink-5); color: var(--ink); }
.header-actions { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .header-actions { display: flex; }
}

.nav-toggle {
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--ink-10); cursor: pointer;
  width: 40px; height: 40px; border-radius: 0.75rem;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 2.5px auto; transition: var(--transition); }
@media (min-width: 900px) { .nav-toggle { display: none; } }
.site-header.open .nav {
  display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 64px; left: 0; right: 0;
  background: #fff; padding: 16px 20px; border-bottom: 1px solid var(--ink-10); gap: 4px;
}
.site-header.open .header-actions { display: flex; position: absolute; top: 246px; left: 20px; right: 20px; flex-direction: column; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: #fff; }
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; padding: 6rem 0; }
}
.hero h1 { margin-top: 20px; }
.hero p.lead { font-size: 1.125rem; color: var(--ink-60); max-width: 36rem; margin-top: 24px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
@media (min-width: 640px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
.hero__stats .stat b { display: block; font-size: 1.875rem; font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
.hero__stats .stat span { display: block; margin-top: 4px; color: var(--ink-60); font-size: 0.875rem; }

/* Decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none; }
.hero .blob { animation: blobFloat 16s ease-in-out infinite; }
.hero .blob:nth-of-type(2) { animation-delay: -5s; }
.hero .blob:nth-of-type(3) { animation-delay: -9s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.06); }
}

/* Dark dashboard card (hero) */
.dash-wrap { position: relative; }
.dash {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  animation: cardFloat 7s ease-in-out infinite;
}
.dash__head { display: flex; align-items: center; justify-content: space-between; }
.dash__head > span { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.dash__live { border-radius: 9999px; background: rgba(18,184,134,0.2); color: #5ce8b5; padding: 4px 12px; font-size: 0.75rem; font-weight: 700; }
.dash__bars { display: flex; align-items: flex-end; gap: 12px; margin-top: 24px; height: 96px; }
.dash__bars > div { flex: 1; }
.dash__bars i {
  display: block; width: 100%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, var(--brand-500), var(--accent));
  transform-origin: bottom;
  animation: barGrow 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.dash__bars > div:nth-child(1) i { animation-delay: 0.1s; }
.dash__bars > div:nth-child(2) i { animation-delay: 0.2s; }
.dash__bars > div:nth-child(3) i { animation-delay: 0.3s; }
.dash__bars > div:nth-child(4) i { animation-delay: 0.4s; }
.dash__bars > div:nth-child(5) i { animation-delay: 0.5s; }
.dash__bars > div:nth-child(6) i { animation-delay: 0.6s; }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.dash__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.dash__metrics b { display: block; font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; }
.dash__metrics span { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; }

.float-card {
  position: absolute;
  bottom: -24px; left: -24px;
  z-index: 3;
  background: var(--accent);
  color: var(--ink);
  border-radius: 1rem;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: none;
}
@media (min-width: 640px) { .float-card { display: block; } }
.float-card span { display: block; font-size: 0.75rem; font-weight: 600; }
.float-card b { display: block; font-size: 1.25rem; font-weight: 900; letter-spacing: -0.02em; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Marquee ---------- */
.marquee-band { padding: 2.5rem 0; border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10); background: #fff; }
.marquee-band p { text-align: center; color: var(--ink-40); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 2rem; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee-rtl 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  margin-inline: 2rem;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink-30);
  transition: color var(--transition);
  cursor: default;
}
@media (min-width: 640px) { .marquee__track span { margin-inline: 3rem; font-size: 1.875rem; } }
.marquee__track span:hover { color: var(--ink-70); }
@keyframes marquee-rtl { to { transform: translate(-50%); } }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  color: var(--ink);
}
.card-hover:hover { transform: translateY(-0.25rem); box-shadow: var(--shadow-card); }
.card--link { display: flex; flex-direction: column; }
.card--link h2, .card--link h3 { margin-top: 16px; transition: color var(--transition); }
.card--link:hover h2, .card--link:hover h3 { color: var(--brand-700); }
.card--link .desc { margin-top: 8px; color: var(--ink-60); font-size: 0.875rem; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; border-top: 1px solid var(--ink-10); padding-top: 16px; }
.card__foot .price { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.card__foot .learn { font-size: 0.875rem; font-weight: 600; color: var(--brand-700); transition: transform var(--transition); display: inline-block; }
.card--link:hover .learn { transform: translateX(3px); }

/* Process steps */
.step b.step__num { display: block; font-size: 2.25rem; font-weight: 900; color: var(--brand-200); letter-spacing: -0.02em; margin-bottom: 16px; }

/* Perks */
.perk { font-size: 1.75rem; display: block; margin-bottom: 12px; }

/* ---------- Forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.label, .field label { display: block; color: var(--ink); margin-bottom: 0.375rem; font-size: 0.875rem; font-weight: 600; }
.field .hint { font-size: 0.8rem; color: var(--ink-40); }
input, select, textarea {
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink-15);
  border-radius: var(--radius-field);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 2px var(--brand-200);
}
textarea { resize: vertical; min-height: 120px; }
.field .error-msg { color: var(--danger); font-size: 0.8rem; display: none; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--danger); }
.field.has-error .error-msg { display: block; }

.check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.9rem; cursor: pointer; color: var(--ink-70); }
.check:hover { color: var(--ink); }
.check input { width: auto; accent-color: var(--brand-600); }
.check--error { color: var(--danger); }
.check--error a { color: var(--danger); text-decoration: underline; }

/* ---------- Careers filter bar ---------- */
.filterbar { position: sticky; top: 80px; z-index: 10; }
.filterbar__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .filterbar__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1024px) { .filterbar__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; } }
.filterbar .field { margin-bottom: 0; }

.results-row { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; }
.results-count { color: var(--ink-60); font-size: 0.875rem; font-weight: 600; }

/* ---------- Job cards ---------- */
.job-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  color: var(--ink);
}
.job-card:hover { transform: translateY(-0.25rem); box-shadow: var(--shadow-card); color: var(--ink); }
.job-card__chips { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.job-card h3 { margin: 16px 0 0; font-size: 1.25rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.3; transition: color var(--transition); }
.job-card:hover h3 { color: var(--brand-700); }
.job-card .desc { margin-top: 8px; flex: 1; font-size: 0.875rem; color: var(--ink-60); }
.job-card__meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: 0.875rem; color: var(--ink-70); }
.job-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-card__foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--ink-10); padding-top: 16px; }
.job-card__foot .salary { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.job-card__foot .view { font-size: 0.875rem; font-weight: 600; color: var(--brand-700); transition: transform var(--transition); display: inline-block; }
.job-card:hover .view { transform: translateX(3px); }

.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Vacancy detail ---------- */
.detail-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .detail-layout { grid-template-columns: 1fr 340px; } }
.detail-main h1 { margin-bottom: 8px; }
.detail-main h3 { margin-top: 28px; }
.detail-main ul { padding-left: 0; list-style: none; }
.detail-main li { margin-bottom: 10px; padding-left: 28px; position: relative; }
.detail-main li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-500); font-weight: 800; }
.detail-side {
  background: #fff; border: 1px solid var(--ink-10); border-radius: var(--radius-card);
  padding: 1.5rem; box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .detail-side { position: sticky; top: 96px; } }
.detail-side .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--ink-5); font-size: 0.9rem; }
.detail-side .row:last-of-type { border-bottom: none; }
.detail-side .row span:first-child { color: var(--ink-50); }
.detail-side .row span:last-child { font-weight: 700; color: var(--ink); }

.breadcrumbs { font-size: 0.85rem; color: var(--ink-40); margin-bottom: 20px; }
.breadcrumbs a { color: var(--ink-50); }
.breadcrumbs a:hover { color: var(--ink); }

/* ---------- Page band (interior pages) ---------- */
.page-band {
  position: relative;
  overflow: hidden;
  background: rgba(238, 242, 255, 0.6);
}
.page-band__blob {
  position: absolute;
  right: -80px; top: -96px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--brand-100);
  filter: blur(64px);
  pointer-events: none;
}
.page-band__inner { position: relative; padding: 4rem 0; }
@media (min-width: 640px) { .page-band__inner { padding: 5rem 0; } }
.page-band h1 { margin-top: 12px; margin-bottom: 0; font-size: clamp(2.25rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: -0.02em; max-width: 48rem; }
.page-band p.lead { margin-top: 20px; margin-bottom: 0; color: var(--ink-60); font-size: 1.125rem; max-width: 42rem; }

/* ---------- Auth / sign-in ---------- */
.auth-wrap { position: relative; min-height: calc(100vh - 64px); display: grid; place-items: center; background: #fafafc; padding: 48px 24px; overflow: hidden; }
.auth-grid { position: relative; z-index: 2; display: grid; gap: 3rem; align-items: center; width: 100%; max-width: 980px; }
@media (min-width: 900px) { .auth-grid { grid-template-columns: 1fr 440px; } }
.auth-card {
  position: relative; z-index: 2;
  width: 100%; max-width: 440px; background: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.8);
  border-radius: 2rem; padding: 40px; box-shadow: 0 30px 64px -16px #0b102033; backdrop-filter: blur(14px) saturate(130%);
}
.auth-card h1 { font-size: 1.6rem; text-align: center; font-weight: 900; letter-spacing: -0.02em; }
.auth-card .sub { text-align: center; color: var(--ink-50); margin-bottom: 28px; font-size: 0.95rem; }

/* Decorative blurred colour blobs + soft shapes */
.auth-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.auth-bg .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; animation: floaty 14s ease-in-out infinite; }
.auth-bg .blob--red   { width: 360px; height: 360px; background: #ef4444; top: -80px; left: -60px; animation-delay: 0s; }
.auth-bg .blob--blue  { width: 420px; height: 420px; background: #3b82f6; bottom: -120px; right: -80px; animation-delay: 3s; }
.auth-bg .blob--green { width: 300px; height: 300px; background: #22c55e; bottom: 40px; left: 8%; animation-delay: 6s; }
.auth-bg .shape { position: absolute; filter: blur(2px); opacity: 0.35; animation: floaty 18s ease-in-out infinite; }
.auth-bg .shape--square { width: 90px; height: 90px; border-radius: 22px; background: rgba(59,130,246,0.5); top: 18%; right: 12%; transform: rotate(18deg); }
.auth-bg .shape--square.shape--sm { width: 54px; height: 54px; border-radius: 16px; background: rgba(239,68,68,0.5); bottom: 16%; right: 22%; animation-delay: 4s; }
.auth-bg .shape--circle { width: 70px; height: 70px; border-radius: 50%; background: rgba(34,197,94,0.5); top: 26%; left: 14%; animation-delay: 2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(8deg); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.shake { animation: shake 0.35s ease-in-out; }

/* Google Sign-in button (official-style) */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 999px;
  font-family: "Roboto", var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
}
.google-btn:hover { background: #f7f8f8; box-shadow: 0 1px 3px rgba(60,64,67,0.2); border-color: #d2d5da; }
.google-btn:active { background: #f1f3f4; }
.google-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(66,133,244,0.35); }
.google-btn:disabled { opacity: 0.6; cursor: wait; box-shadow: none; background: #f7f8f8; }
.google-btn svg { flex: none; }

.alert { padding: 12px 16px; border-radius: var(--radius-field); font-size: 0.88rem; margin-bottom: 16px; }
.alert--success { background: var(--mint-soft); color: #087f5b; border: 1px solid #96e8c9; }
.alert--error { background: #fee2e2; color: var(--danger); border: 1px solid #fecaca; }
.alert--accent { background: var(--accent-soft); color: #92610a; border: 1px solid #ffe08a; }

.narrow { max-width: 760px; margin-inline: auto; }

/* Perks list (signin) */
.perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.perks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-70); font-size: 1rem; }
.perks .tick {
  flex: none; width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center;
  background: var(--mint-soft); color: #087f5b; font-weight: 800; font-size: 0.85rem; margin-top: 2px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--brand-600);
  color: #fff; border-radius: 2rem; padding: 4rem 2rem; text-align: center;
}
@media (min-width: 640px) { .cta-band { padding: 4rem 4rem; } }
.cta-band::before {
  content: ""; position: absolute; left: -64px; top: -64px; width: 256px; height: 256px;
  border-radius: 50%; background: rgba(79, 70, 229, 0.5); filter: blur(64px);
}
.cta-band::after {
  content: ""; position: absolute; right: -40px; bottom: -80px; width: 288px; height: 288px;
  border-radius: 50%; background: rgba(255, 212, 59, 0.2); filter: blur(64px);
}
.cta-band h2 { color: #fff; position: relative; max-width: 42rem; margin-inline: auto; font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 36rem; margin: 16px auto 0; position: relative; }
.cta-band .hero__cta { justify-content: center; position: relative; margin-top: 32px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a5adc4; padding: 2.25rem 0; border-top: 1px solid var(--ink-10); }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-brand { color: #fff; }
.footer-brand .brand__mark { background: #fff; color: var(--ink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; padding-top: 1.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom .legal a { color: rgba(255,255,255,0.5); }
.footer-bottom .legal a:hover { color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2rem; }
.muted { color: var(--ink-50); }
.hidden { display: none !important; }
.spinner { width: 34px; height: 34px; border: 3px solid var(--ink-10); border-top-color: var(--brand-600); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 40px auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-50); grid-column: 1 / -1; }

/* ---------- Detail hero band (service/product) ---------- */
.band-hero { color: #fff; }
.band-hero__inner { padding: 3.5rem 0; }
@media (min-width: 640px) { .band-hero__inner { padding: 5rem 0; } }
.band-hero--brand { background: var(--brand-600); }
.band-hero--accent { background: var(--accent); }
.band-hero--mint { background: var(--mint); }
.band-hero .back { color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 600; }
.band-hero .back:hover { color: #fff; }
.band-hero .tagline-hero { display: block; margin-top: 24px; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.7); }
.band-hero h1 { margin: 12px 0 0; max-width: 48rem; font-size: clamp(2.25rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: -0.02em; color: #fff; }
.band-hero p.lead { margin: 20px 0 0; max-width: 42rem; font-size: 1.125rem; color: rgba(255,255,255,0.85); }
.band-hero .hero__cta { margin-top: 32px; }
.band-hero .note { margin: 16px 0 0; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-soft); color: #fff; }

/* ---------- Stats band ---------- */
.stats-band { border-bottom: 1px solid var(--ink-10); background: #fff; }
.stats-band__grid { display: grid; gap: 1.5rem; padding: 2.5rem 0; grid-template-columns: 1fr; }
@media (min-width: 640px) { .stats-band__grid { grid-template-columns: repeat(3, 1fr); } }
.stats-band .num { font-size: 1.875rem; font-weight: 900; letter-spacing: -0.02em; color: var(--brand-600); }
@media (min-width: 640px) { .stats-band .num { font-size: 2.25rem; } }
.stats-band .lbl { margin-top: 4px; font-size: 0.875rem; color: var(--ink-60); }

/* ---------- Detail layout (service/product) ---------- */
.detail-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 1.6fr 1fr; } }
.detail-flow > * + * { margin-top: 2.5rem; }
.detail-flow h2 { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 0; }
.detail-flow h2 + p, .detail-flow h2 + ul, .detail-flow h2 + div { margin-top: 1rem; }
.detail-flow p { color: var(--ink-60); margin-bottom: 0; }
.detail-flow p + p { margin-top: 1rem; }
.detail-aside { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .detail-aside { position: sticky; top: 96px; } }
.aside-title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-40); margin-bottom: 16px; }

/* ---------- Check list (What's included / capabilities) ---------- */
.check-list { display: grid; gap: 12px; grid-template-columns: 1fr; list-style: none; padding: 0; margin: 0; }
@media (min-width: 640px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li { display: flex; align-items: center; gap: 12px; border-radius: 1rem; background: rgba(238,242,255,0.6); padding: 12px 16px; font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 999px; background: var(--brand-600); color: #fff; font-size: 0.75rem; }

/* ---------- Value callout ---------- */
.value-callout { border-radius: 2rem; background: rgba(238,242,255,0.7); padding: 2rem; }

/* ---------- FAQ accordion ---------- */
details.faq { transition: var(--transition); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; font-weight: 700; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { color: var(--brand-600); font-weight: 700; transition: transform 0.2s ease; font-size: 1.1rem; line-height: 1; }
.faq[open] summary .plus { transform: rotate(45deg); }
.faq p { margin: 12px 0 0; font-size: 0.875rem; color: var(--ink-60); }

/* ---------- Pricing plans ---------- */
.plan-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 16px; }
@media (min-width: 640px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-btn { border-radius: 1rem; border: 1px solid var(--ink-15); background: #fff; padding: 20px; text-align: left; cursor: pointer; transition: var(--transition); font-family: inherit; color: var(--ink); }
.plan-btn:hover { border-color: var(--ink-40); }
.plan-btn.is-active { border-color: var(--ink); background: var(--ink); color: #fff; box-shadow: var(--shadow-card); }
.plan-btn .plan-name { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-40); }
.plan-btn.is-active .plan-name { color: rgba(255,255,255,0.5); }
.plan-btn .plan-price { display: block; margin-top: 8px; font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; color: var(--brand-700); }
.plan-btn.is-active .plan-price { color: var(--accent); }
.plan-btn .plan-note { display: block; margin-top: 4px; font-size: 0.875rem; color: var(--ink-60); }
.plan-btn.is-active .plan-note { color: rgba(255,255,255,0.7); }
.plan-detail { margin-top: 20px; border-radius: 1rem; border: 1px solid var(--ink-10); background: rgba(238,242,255,0.6); padding: 24px; }
.plan-detail__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; }
.plan-detail__head h3 { margin: 0; font-size: 1.125rem; font-weight: 900; letter-spacing: -0.02em; }
.plan-detail__head span { font-size: 1.125rem; font-weight: 900; color: var(--brand-700); }
.plan-detail > p { margin: 8px 0 0; font-size: 0.875rem; color: var(--ink-60); }
.plan-detail ul { margin: 16px 0 0; display: grid; gap: 8px; grid-template-columns: 1fr; list-style: none; padding: 0; }
@media (min-width: 640px) { .plan-detail ul { grid-template-columns: 1fr 1fr; } }
.plan-detail li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.plan-detail li::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; flex: none; border-radius: 999px; background: var(--brand-600); color: #fff; font-size: 0.625rem; }
.pricing-note { margin: 12px 0 0; font-size: 0.75rem; color: var(--ink-40); }

/* ---------- Aside link list & CTA card ---------- */
.aside-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.aside-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 0.75rem; padding: 8px 12px; font-size: 0.875rem; font-weight: 600; color: var(--ink-70); transition: var(--transition); }
.aside-links a:hover { background: var(--ink-5); color: var(--ink); }
.aside-links a span { color: var(--brand-600); }
.aside-cta { background: var(--ink); color: #fff; }
.aside-cta h3 { color: #fff; font-size: 1.125rem; font-weight: 900; letter-spacing: -0.01em; margin: 0; }
.aside-cta p { margin: 8px 0 0; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.aside-cta .btn { margin-top: 20px; width: 100%; }
.aside-cta .note { margin: 12px 0 0; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ---------- Who-it's-for bullets ---------- */
.who-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.who-list li { display: flex; gap: 8px; font-size: 0.875rem; color: var(--ink-60); }
.who-list li::before { content: "•"; color: var(--brand-600); font-weight: 700; }

/* ---------- Services list rows ---------- */
.svc-row { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
  .svc-row { grid-template-columns: 1fr 1.2fr; align-items: center; }
  .svc-row--flip .svc-row__text { order: 2; }
  .svc-row--flip .svc-row__list { order: 1; }
}
.svc-row h2 { margin: 16px 0 0; font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 900; letter-spacing: -0.02em; }
.svc-row h2 a { color: var(--ink); }
.svc-row h2 a:hover { color: var(--brand-700); }
.svc-row p { margin: 12px 0 0; color: var(--ink-60); }
.learn-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 4px; font-size: 0.875rem; font-weight: 600; color: var(--brand-700); }
.learn-link:hover { text-decoration: underline; color: var(--brand-700); }

/* ---------- Vacancy detail (role page) ---------- */
.role-band { background: rgba(238, 242, 255, 0.6); border-bottom: 1px solid var(--ink-10); }
.role-band__inner { padding: 3rem 0; }
@media (min-width: 640px) { .role-band__inner { padding: 4rem 0; } }
.role-band .back { color: var(--brand-700); font-size: 0.875rem; font-weight: 600; }
.role-band .back:hover { text-decoration: underline; color: var(--brand-700); }
.role-head { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 24px; }
.role-head h1 { margin: 16px 0 0; font-size: clamp(1.9rem, 3.5vw, 2.5rem); font-weight: 900; letter-spacing: -0.02em; max-width: 44rem; }
.role-head .sub { margin: 12px 0 0; max-width: 42rem; font-size: 1.125rem; color: var(--ink-60); }
.role-meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 0.875rem; font-weight: 600; color: var(--ink-70); }

/* tick list (What you'll do) */
.tick-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; }
.tick-list li { display: flex; gap: 12px; color: var(--ink-60); }
.tick-list li::before { content: "✓"; margin-top: 2px; display: grid; place-items: center; width: 20px; height: 20px; flex: none; border-radius: 999px; background: var(--brand-600); color: #fff; font-size: 10px; }
/* star list (What we're looking for) */
.star-list li::before { content: "★"; background: var(--ink); }
/* numbered list (first 90 days) */
.num-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; counter-reset: step; }
.num-list li { display: flex; gap: 12px; color: var(--ink-60); counter-increment: step; }
.num-list li::before { content: counter(step); margin-top: 2px; display: grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 999px; background: var(--brand-600); color: #fff; font-size: 0.75rem; font-weight: 700; }

.tool-chip { border-radius: 999px; border: 1px solid var(--ink-10); background: #fff; padding: 8px 16px; font-size: 0.875rem; font-weight: 600; color: var(--ink); display: inline-flex; }
.perk-chip { border-radius: 999px; background: var(--mint-soft); color: #087f5b; padding: 8px 16px; font-size: 0.875rem; font-weight: 600; display: inline-flex; }
.perk-grid { margin-top: 16px; display: grid; gap: 8px; font-size: 0.875rem; color: var(--ink-60); list-style: none; padding: 0; }
@media (min-width: 640px) { .perk-grid { grid-template-columns: 1fr 1fr; } }
.note-callout { margin-top: 20px; border-radius: 1rem; background: rgba(195, 250, 232, 0.5); padding: 16px 20px; font-size: 0.875rem; color: var(--ink-60); }

/* hiring process */
.hiring-grid { display: grid; gap: 12px; margin-top: 16px; }
@media (min-width: 640px) { .hiring-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hiring-grid { grid-template-columns: repeat(5, 1fr); } }
.hiring-grid .card { padding: 16px; }
.hiring-grid .num { font-size: 1.5rem; font-weight: 900; color: var(--brand-200); letter-spacing: -0.02em; }
.hiring-grid h3 { margin: 8px 0 0; font-size: 0.875rem; font-weight: 900; letter-spacing: -0.01em; }
.hiring-grid p { margin: 4px 0 0; font-size: 0.75rem; color: var(--ink-60); }

/* role details sidebar */
.role-dl { margin: 16px 0 0; display: grid; gap: 12px; }
.role-dl > div { display: flex; justify-content: space-between; gap: 16px; font-size: 0.875rem; }
.role-dl dt { color: var(--ink-50); }
.role-dl dd { margin: 0; text-align: right; font-weight: 600; color: var(--ink); }
.career-path { margin-top: 20px; border-top: 1px solid var(--ink-10); padding-top: 16px; }
.career-path .cap { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-40); }
.career-path p { margin: 8px 0 0; font-size: 0.875rem; color: var(--ink-60); }

/* gold apply card */
.apply-card { background: var(--accent); color: var(--ink); border: none; }
.apply-card h3 { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.01em; margin: 0; }
.apply-card p { margin: 8px 0 0; font-size: 0.875rem; color: var(--ink-70); }
.apply-card .btn { margin-top: 20px; width: 100%; padding: 1rem; font-size: 1rem; }

/* ---------- Compliant recruitment role ---------- */
.role-labels { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.role-head--compliance { align-items: center; }
.salary-disclaimer { max-width: 48rem; margin: 16px 0 0; color: var(--ink-60); font-size: 0.9rem; }
.role-compliance-page .detail-flow > section + section { margin-top: 2.75rem; }
.info-table { margin: 20px 0; border: 1px solid var(--ink-10); border-radius: 1rem; overflow: hidden; }
.info-table > div { display: grid; grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr); gap: 16px; padding: 14px 16px; border-bottom: 1px solid var(--ink-10); }
.info-table > div:last-child { border-bottom: 0; }
.info-table dt { color: var(--ink-60); font-weight: 600; }
.info-table dd { margin: 0; color: var(--ink); font-weight: 700; overflow-wrap: anywhere; }
.note-callout--important { background: var(--accent-soft); color: var(--ink-70); border: 1px solid #ffe08a; }
.control-callout, .safety-callout { border-radius: 1.5rem; padding: 2rem; }
.control-callout { background: var(--brand-50); border: 1px solid var(--brand-100); }
.safety-callout { background: var(--ink); color: #fff; }
.safety-callout h2 { color: #fff; }
.safety-callout p, .safety-callout li { color: rgba(255,255,255,0.82); }
.safety-callout ul { margin: 16px 0; padding-left: 1.25rem; }
.safety-callout li + li { margin-top: 8px; }
.safety-callout a { color: var(--accent); }
.milestone-list { display: grid; gap: 12px; margin-top: 16px; }
.milestone-list article { border-left: 3px solid var(--brand-500); padding: 4px 0 4px 18px; }
.milestone-list h3 { margin: 0; font-size: 1rem; }
.milestone-list p { margin: 5px 0 0; }
.tool-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tools-note, .submission-note { margin-top: 14px; color: var(--ink-60); font-size: 0.875rem; }
.application-panel { scroll-margin-top: 88px; border-top: 1px solid var(--ink-10); padding-top: 2.75rem; }
.application-panel form { margin-top: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-choice { margin: 0 0 18px; padding: 16px; border: 1px solid var(--ink-15); border-radius: var(--radius-field); }
.form-choice legend { padding: 0 6px; font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.form-choice label { display: inline-flex; align-items: center; gap: 8px; margin: 6px 18px 0 0; color: var(--ink-70); }
.form-choice input { width: auto; accent-color: var(--brand-600); }
.application-consent { align-items: flex-start; margin: 20px 0; }
.application-consent input { margin-top: 5px; }
.form-error { color: var(--danger); font-size: 0.875rem; font-weight: 600; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.apply-card--compliance p { color: var(--ink-70); }

@media (max-width: 640px) {
  .role-head--compliance .btn { width: 100%; }
  .info-table > div { grid-template-columns: 1fr; gap: 4px; }
  .control-callout, .safety-callout { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Apply wizard ---------- */
.wizard { max-width: 42rem; margin-inline: auto; padding: 4rem 0 6rem; }
@media (min-width: 640px) { .wizard { padding: 6rem 0; } }
.wizard__role { display: inline-flex; margin-bottom: 24px; }
.wizard__top { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 600; color: var(--ink-40); }
.wizard__bar { margin-top: 8px; height: 6px; border-radius: 999px; background: var(--ink-10); overflow: hidden; }
.wizard__bar i { display: block; height: 100%; border-radius: 999px; background: var(--ink); transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.wizard h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin: 32px 0 0; }
.wizard .hint2 { color: var(--ink-50); margin-top: 8px; font-size: 0.95rem; }
.wizard__body { margin-top: 32px; max-width: 28rem; }
.wizard__actions { margin-top: 24px; display: flex; gap: 12px; align-items: center; }
.wizard .back-link { font-size: 0.875rem; font-weight: 600; color: var(--ink-50); background: none; border: none; cursor: pointer; font-family: inherit; padding: 0; }
.wizard .back-link:hover { color: var(--ink); }

/* option buttons (single/multi choice) */
.option-grid { display: grid; gap: 10px; }
.option-btn { display: flex; align-items: center; gap: 12px; border: 1px solid var(--ink-15); border-radius: 1rem; padding: 14px 18px; background: #fff; font-size: 0.95rem; font-weight: 600; color: var(--ink); cursor: pointer; text-align: left; transition: var(--transition); font-family: inherit; width: 100%; }
.option-btn:hover { border-color: var(--ink-40); }
.option-btn.is-active { border-color: var(--ink); background: var(--ink); color: #fff; box-shadow: var(--shadow-soft); }
.option-btn .dot { width: 18px; height: 18px; flex: none; border-radius: 999px; border: 2px solid var(--ink-30); display: grid; place-items: center; font-size: 10px; color: transparent; transition: var(--transition); }
.option-btn.is-active .dot { border-color: var(--accent); background: var(--accent); color: var(--ink); }

/* review rows */
.review-list { display: grid; gap: 10px; }
.review-list > div { display: flex; justify-content: space-between; gap: 16px; border: 1px solid var(--ink-10); border-radius: 1rem; padding: 12px 16px; font-size: 0.9rem; }
.review-list dt { color: var(--ink-50); }
.review-list dd { margin: 0; font-weight: 600; text-align: right; }

/* wizard step transition */
.wizard-step { animation: stepIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }

/* ---------- Motion & micro-interactions ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in-view { opacity: 1; transform: none; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.job-card { animation: cardIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: calc(var(--i, 0) * 40ms); }

@keyframes popIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.auth-card { animation: popIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both; }

.btn:active { transform: scale(0.97); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .job-card, .auth-card, .hero .blob, .dash, .dash__bars i, .auth-bg .blob, .auth-bg .shape, .marquee__track { animation: none !important; }
}
