/* Hire Route – Static HTML styles */
:root {
  --bg: #faf7f2;
  --cream: #f3ede2;
  --card: #ffffff;
  --border: #e6dfd2;
  --fg: #1a1a1a;
  --muted: #6b6558;
  --primary: #0f5e46;
  --primary-fg: #ffffff;
  --emerald-glow: #3fd68b;
  --ink: #0a1f19;
  --ink-fg: #f3ede2;
  --gradient-hero: radial-gradient(1200px 600px at 15% 10%, #eaf5ef 0%, transparent 60%),
                   radial-gradient(900px 500px at 90% 20%, #faf7f2 0%, transparent 55%),
                   #faf7f2;
  --shadow-glow: 0 10px 40px -10px rgba(15,94,70,0.45);
  --font-display: "Instrument Serif", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

.font-display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.italic { font-style: italic; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-emerald { color: var(--emerald-glow); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(250,247,242,0.72);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  gap: 1.25rem;
}
.brand { font-family: var(--font-display); font-size: 1.5rem; }
.brand em { color: var(--primary); }
.brand-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo img { display: block; width: auto; height: 36px; object-fit: contain; }
.nav-links {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 1.15rem;
  margin: 0 1rem;
}
.nav-links a { font-size: 0.8rem; font-weight: 500; color: var(--fg); opacity: 0.75; transition: opacity .2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--primary); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: var(--primary-fg);
  padding: .55rem 1.1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; transition: box-shadow .2s;
}
.nav-cta:hover { box-shadow: var(--shadow-glow); }
.nav-actions {
  display: none;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.menu-btn { display: inline-flex; padding: .5rem; }
.mobile-menu {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(250,247,242,0.95);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .6rem 0; font-size: 1rem; }
.mobile-menu .mobile-cta {
  margin-top: .4rem; padding: .75rem 1rem; border-radius: 999px;
  background: var(--primary); color: var(--primary-fg); text-align: center; font-weight: 600;
}
@media (min-width: 1200px) {
  .nav { max-width: 1760px; }
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .menu-btn { display: none; }
  .mobile-menu { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  transition: box-shadow .2s, transform .2s, background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { box-shadow: var(--shadow-glow); }
.btn-outline { border: 1px solid rgba(26,26,26,0.2); background: rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: rgba(26,26,26,0.4); }
.btn-emerald { background: var(--emerald-glow); color: var(--ink); }
.btn-emerald:hover { box-shadow: var(--shadow-glow); }
.btn-whatsapp {
  border: 1px solid #25D366; background: rgba(37,211,102,0.1); color: #128C7E;
}
.btn-whatsapp:hover { background: rgba(37,211,102,0.2); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Social links */
.social-follow { margin-top: 1.35rem; display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.social-label { color: var(--muted); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.social-buttons { display: flex; flex-wrap: wrap; gap: .55rem; }
.social-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 36px; padding: .5rem .8rem;
  border: 1px solid rgba(15,94,70,.22); border-radius: 999px;
  background: rgba(255,255,255,.55); color: var(--primary);
  font-size: .75rem; font-weight: 600;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.social-btn:hover { border-color: var(--primary); background: rgba(15,94,70,.1); color: var(--primary); transform: translateY(-2px); }
.social-mark { min-width: 18px; text-align: center; font-size: .8rem; font-weight: 700; line-height: 1; }
.social-btn.is-disabled { cursor: not-allowed; border-color: var(--border); color: var(--muted); opacity: .62; }
.social-btn.is-disabled:hover { background: rgba(255,255,255,.55); border-color: var(--border); color: var(--muted); transform: none; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); pointer-events: none; }
.hero-inner {
  position: relative; z-index: 2;
  padding: 5rem 1.5rem 6rem;
  max-width: 1200px; margin: 0 auto;
}
.hero-min { min-height: 92vh; display: flex; flex-direction: column; justify-content: center; }
.eyebrow {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.28em; color: var(--primary);
}
h1.display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.02; letter-spacing: -0.01em;
  margin-top: 1.5rem;
}
h2.display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1; margin-top: 1rem;
}
h3.display {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.5rem;
}
.lead {
  margin-top: 2rem; max-width: 620px;
  font-size: 1.1rem; color: var(--muted);
}
.cta-row { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* 3D canvas layer */
#hero3d {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse at 70% 50%, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, #000 40%, transparent 75%);
}
@media (max-width: 1024px) { #hero3d { display: none; } }

/* Stats */
.stats {
  margin-top: 5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: grid; gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; }
.stat-lbl { margin-top: .5rem; font-size: .7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); font-weight: 500; }

/* Marquee */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.5); padding: 1.25rem 0; overflow: hidden;
  backdrop-filter: blur(8px);
}
.marquee {
  display: flex; gap: 3.5rem; width: max-content;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  color: var(--muted); font-size: .9rem; font-weight: 500;
  padding: 0 1.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Clients */
.clients-section {
  position: relative; overflow: hidden;
  padding: 5rem 0; border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.clients-glow {
  position: absolute; width: 22rem; height: 22rem; right: -8rem; top: -10rem;
  border-radius: 50%; background: rgba(15,94,70,.08); filter: blur(70px);
  pointer-events: none;
}
.clients-inner { position: relative; }
.clients-layout { display: grid; gap: 2.75rem; align-items: center; }
.clients-heading { max-width: 500px; text-align: left; }
.clients-heading h2 { margin-top: .85rem; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.06; }
.clients-heading > p { margin-top: 1.25rem; color: var(--muted); line-height: 1.75; }
.clients-note {
  display: block; margin-top: 1.75rem; padding-left: 1rem;
  border-left: 2px solid var(--primary); color: var(--primary);
  font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.client-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden; border: 1px solid var(--border); border-radius: 24px;
  background: rgba(255,255,255,.68); box-shadow: 0 24px 60px -42px rgba(20,40,32,.55);
}
.client-logo-card {
  min-width: 0; height: 9rem; display: flex; align-items: center; justify-content: center;
  padding: 1.1rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: transparent;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.client-logo-card:nth-child(2n) { border-right: 0; }
.client-logo-card:last-child { border-bottom: 0; }
.client-logo-card:hover {
  transform: none; background: #fff;
  box-shadow: inset 0 -3px 0 rgba(15,94,70,.7);
}
.client-logo-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.client-logo { display: block; width: auto; height: auto; max-width: 88%; max-height: 4.5rem; object-fit: contain; transition: transform .25s ease; }
.client-logo-card:hover .client-logo { transform: scale(1.04); }
.client-logo--rr { max-height: 7rem; max-width: 7rem; }
.client-logo--gcw { max-height: 5.5rem; }
.client-logo--wide { max-width: 94%; }
@media (min-width: 700px) {
  .client-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .client-logo-card { height: 10.5rem; padding: 1.4rem; }
  .client-logo-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .client-logo-card:nth-child(3n) { border-right: 0; }
}
@media (min-width: 960px) {
  .clients-layout { grid-template-columns: minmax(280px,.8fr) minmax(560px,1.35fr); gap: clamp(3rem,6vw,6.5rem); }
  .client-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .client-logo-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .client-logo-card:nth-child(4n) { border-right: 0; }
  .client-logo-card:nth-last-child(-n+3) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .clients-section { padding: 4rem 0; }
  .client-logo-card { height: 8rem; padding: .85rem; }
}

/* Sections */
section.pad { padding: 6rem 0; }
.cream { background: var(--cream); }
.dark {
  background: var(--ink); color: var(--ink-fg);
}
.dark .eyebrow { color: var(--emerald-glow); }
.dark h2.display, .dark h3.display { color: var(--ink-fg); }
.dark .muted { color: rgba(243,237,226,0.7); }

.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: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15,94,70,0.2);
  border-color: rgba(15,94,70,0.3);
}
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(15,94,70,0.1); color: var(--primary);
  border-radius: 12px; transition: background .2s, color .2s;
}
.card:hover .icon-badge { background: var(--primary); color: var(--primary-fg); }
.card h3 { margin-top: 1.5rem; font-size: 1.15rem; font-weight: 600; }
.card p { margin-top: .5rem; font-size: .92rem; color: var(--muted); }

.dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.dark .card:hover { border-color: rgba(63,214,139,0.6); background: rgba(255,255,255,0.07); }
.dark .card p { color: rgba(243,237,226,0.7); }

/* Step numbers */
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(15,94,70,0.25);
}
.tag {
  display: inline-block;
  font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--emerald-glow);
}

/* Section header row */
.section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Blogs */
.blog-template-hero {
  position: relative; isolation: isolate;
  display: grid; place-items: center; min-height: 500px;
  overflow: hidden; background: var(--ink);
}
.blog-template-hero::before {
  content: ""; position: absolute; z-index: -2; inset: 0;
  background: url("hiring-journal-bg.png") center 42% / cover no-repeat;
  filter: saturate(.72); transform: scale(1.015);
}
.blog-template-hero::after {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: linear-gradient(90deg, rgba(5,35,27,.88), rgba(8,62,45,.75), rgba(5,31,24,.84));
}
.blog-template-hero-content { max-width: 850px; padding: 4rem 1.5rem; text-align: center; color: var(--ink-fg); }
.blog-template-hero-content p {
  color: var(--emerald-glow); font-size: .72rem; font-weight: 700;
  letter-spacing: .27em; text-transform: uppercase;
}
.blog-template-hero-content h1 {
  margin-top: 1rem; color: white;
  font: 400 clamp(4.8rem,10vw,8.8rem)/.9 var(--font-display);
  letter-spacing: -.045em;
}
.blog-template-hero-content span {
  display: block; margin-top: 1.5rem; color: rgba(255,255,255,.76);
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
}
.blog-template-content { padding: 0; background: var(--bg); }
.blog-template-content > .container { display: flex; flex-direction: column; }
.blog-template-content .blog-categories { order: -1; }
.blog-template-content + section .cta-band { margin-top: 3rem; }
.blog-index-intro { margin: 4.5rem 0 3.5rem; }
.blog-index-intro .display { max-width: 780px; }
.blogs-hero {
  position: relative; overflow: hidden;
  padding: 7rem 0 6rem;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
}
.blogs-hero::after {
  content: ""; position: absolute; right: -8rem; bottom: -12rem;
  width: 34rem; height: 34rem; border-radius: 50%;
  border: 1px solid rgba(15,94,70,.12);
  box-shadow: 0 0 0 4rem rgba(15,94,70,.035), 0 0 0 8rem rgba(15,94,70,.025);
  pointer-events: none;
}
.blogs-hero .container { position: relative; z-index: 1; }
.blogs-hero .display { max-width: 920px; margin-top: 1.25rem; }
.blogs-hero-copy {
  max-width: 620px; margin-top: 1.5rem;
  color: var(--muted); font-size: 1.08rem; line-height: 1.75;
}
.blog-feature {
  display: grid; overflow: hidden;
  background: var(--ink); color: var(--ink-fg);
  border-radius: 28px; min-height: 430px;
}
.blog-feature-art {
  position: relative; min-height: 280px; overflow: hidden;
  background: linear-gradient(145deg, #174c3c, #0a1f19);
}
.blog-feature-art::before {
  content: ""; position: absolute; width: 360px; height: 360px;
  left: -80px; bottom: -160px; border-radius: 50%;
  border: 1px solid rgba(63,214,139,.16);
  box-shadow: 0 0 0 48px rgba(63,214,139,.045), 0 0 0 96px rgba(63,214,139,.025);
}
.blog-feature-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.035), transparent 42%);
  pointer-events: none;
}
.feature-map-label {
  position: absolute; z-index: 3; left: 1.7rem; top: 1.6rem;
  color: var(--emerald-glow); font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.feature-map-label::before {
  content: ""; display: inline-block; width: 22px; height: 1px;
  margin: 0 .55rem .2rem 0; background: var(--emerald-glow);
}
.feature-map {
  position: absolute; z-index: 2; inset: 4.4rem 2.2rem 3.8rem;
  border: 1px solid rgba(243,237,226,.11); border-radius: 30px 50px 38px 55px;
  background: rgba(255,255,255,.025);
}
.map-route {
  position: absolute; height: 1px; transform-origin: left;
  background: repeating-linear-gradient(90deg, rgba(63,214,139,.55) 0 5px, transparent 5px 10px);
}
.route-one { width: 47%; left: 27%; top: 34%; transform: rotate(22deg); }
.route-two { width: 46%; left: 28%; top: 37%; transform: rotate(112deg); }
.map-city {
  position: absolute; display: grid; grid-template-columns: 14px 1fr; column-gap: .45rem;
  color: var(--ink-fg); font-size: .7rem;
}
.map-city i {
  grid-row: 1 / 3; align-self: center; width: 10px; height: 10px; border-radius: 50%;
  background: var(--emerald-glow); box-shadow: 0 0 0 6px rgba(63,214,139,.12), 0 0 18px rgba(63,214,139,.45);
}
.map-city b { font-size: .72rem; font-weight: 600; }
.map-city small { margin-top: .1rem; color: rgba(243,237,226,.48); font-size: .55rem; white-space: nowrap; }
.city-delhi { left: 17%; top: 20%; }
.city-noida { right: 7%; top: 47%; }
.city-gurugram { left: 15%; bottom: 10%; }
.city-noida i { width: 13px; height: 13px; background: var(--ink-fg); box-shadow: 0 0 0 7px rgba(63,214,139,.2), 0 0 24px rgba(63,214,139,.55); }
.feature-map-note {
  position: absolute; z-index: 3; right: 1.7rem; bottom: 1.35rem;
  color: rgba(243,237,226,.48); font: italic 1rem var(--font-display);
}
.blog-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 2.5rem; }
.blog-kicker {
  color: var(--primary); font-size: .7rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase;
}
.blog-feature .blog-kicker { color: var(--emerald-glow); }
.blog-feature h2 { margin-top: 1rem; font: 400 2.5rem/1.05 var(--font-display); letter-spacing: -.02em; }
.blog-feature p { margin-top: 1rem; color: rgba(243,237,226,.7); max-width: 540px; }
.blog-meta { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin-top: 1.5rem; color: var(--muted); font-size: .78rem; }
.blog-feature .blog-meta { color: rgba(243,237,226,.52); }
.journal-carousel {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 590px; border-radius: 30px; background: var(--ink);
  box-shadow: 0 30px 65px -35px rgba(10,31,25,.7);
}
.journal-carousel::before {
  content: ""; position: absolute; z-index: -2; inset: 0;
  background: url("hiring-journal-bg.png") center / cover no-repeat;
  transform: scale(1.015);
}
.journal-carousel::after {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: linear-gradient(90deg, rgba(5,43,32,.96) 0%, rgba(7,57,42,.9) 42%, rgba(8,58,43,.58) 72%, rgba(8,48,37,.42) 100%);
}
.journal-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  padding: 4.5rem 5rem 6rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .7s ease, visibility .7s;
}
.journal-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.journal-slide-content { max-width: 760px; color: var(--ink-fg); }
.journal-slide-content > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .65s cubic-bezier(.16,1,.3,1);
}
.journal-slide.is-active .journal-slide-content > * { opacity: 1; transform: translateY(0); }
.journal-slide.is-active .journal-slide-content > *:nth-child(2) { transition-delay: .08s; }
.journal-slide.is-active .journal-slide-content > *:nth-child(3) { transition-delay: .16s; }
.journal-slide.is-active .journal-slide-content > *:nth-child(4) { transition-delay: .24s; }
.journal-kicker {
  color: var(--emerald-glow); font-size: .69rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.journal-slide h2 {
  margin-top: 1.25rem; max-width: 750px;
  color: var(--ink-fg); font: 400 clamp(2.75rem,5vw,5.1rem)/.98 var(--font-display);
  letter-spacing: -.035em; text-wrap: balance;
}
.journal-slide h2 span { color: var(--emerald-glow); font-style: italic; }
.journal-slide-content > p:not(.journal-kicker) {
  max-width: 640px; margin-top: 1.35rem;
  color: rgba(243,237,226,.76); font-size: 1rem; line-height: 1.7;
}
.journal-slide .btn { margin-top: 2rem; }
.journal-controls {
  position: absolute; z-index: 5; left: 5rem; right: 5rem; bottom: 2.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.journal-dots { display: flex; align-items: center; gap: .6rem; }
.journal-dots button {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.36); transition: width .3s, background .3s;
}
.journal-dots button.is-active { width: 32px; background: var(--emerald-glow); }
.journal-arrows { display: flex; gap: .55rem; }
.journal-arrows button {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  background: rgba(3,29,22,.3); color: white; transition: background .2s, border-color .2s, transform .2s;
}
.journal-arrows button:hover { background: var(--emerald-glow); border-color: var(--emerald-glow); color: var(--ink); transform: translateY(-2px); }
.journal-progress { position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.1); }
.journal-progress span { display: block; width: 0; height: 100%; background: var(--emerald-glow); }
.journal-carousel.is-playing .journal-progress span { animation: journal-progress 6s linear forwards; }
@keyframes journal-progress { from { width: 0; } to { width: 100%; } }
@media (max-width: 760px) {
  .blog-template-hero { min-height: 390px; }
  .blog-template-hero::before { background-position: 62% center; }
  .blog-template-hero-content h1 { font-size: 4.5rem; }
  .blog-template-hero-content span { line-height: 1.8; }
  .blog-index-intro { margin: 3.5rem 0 2.5rem; }
  .journal-carousel { min-height: 620px; border-radius: 24px; }
  .journal-carousel::before { background-position: 62% center; }
  .journal-carousel::after { background: linear-gradient(90deg, rgba(5,43,32,.96), rgba(7,57,42,.78)); }
  .journal-slide { align-items: flex-end; padding: 3rem 1.6rem 6.5rem; }
  .journal-slide h2 { font-size: 2.65rem; }
  .journal-controls { left: 1.6rem; right: 1.6rem; bottom: 1.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .journal-slide, .journal-slide-content > * { transition: none; }
  .journal-carousel.is-playing .journal-progress span { animation: none; width: 100%; }
}
.blog-categories {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .75rem 2.2rem; margin: 0 0 1rem; padding: 1.5rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.blog-categories span { color: var(--primary); font: italic 1.25rem var(--font-display); }
.blog-categories a {
  position: relative; color: var(--muted); font-size: .67rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; transition: color .2s;
}
.blog-categories a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.35rem;
  height: 1px; background: var(--primary); transform: scaleX(0); transition: transform .25s;
}
.blog-categories a:hover { color: var(--primary); }
.blog-categories a:hover::after { transform: scaleX(1); }
.blog-categories a.is-active { color: var(--primary); }
.blog-categories a.is-active::after { transform: scaleX(1); }
.blog-card[hidden] { display: none !important; }
.blog-grid {
  display: grid; align-items: stretch; gap: 3.2rem 1.6rem;
  grid-template-columns: 1fr;
}
.blog-card {
  display: flex; flex-direction: column; overflow: hidden;
  min-height: 100%; background: transparent;
  border: 0; border-radius: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.blog-card:hover {
  transform: translateY(-5px); box-shadow: none;
}
.blog-card .blog-card-art {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  width: 100%; height: auto; aspect-ratio: 3 / 2; overflow: hidden; padding: 1.35rem;
  border-radius: 2px;
  background: linear-gradient(135deg, #e4f1eb, #f8f1e5);
}
.blog-card-art > img {
  position: absolute; z-index: 1; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.blog-card-art.has-article-image { background: #f7f5f0; }
.blog-card-art.has-article-image::before,
.blog-card-art.has-article-image::after { display: none; }
.blog-card-art.has-article-image > img { object-fit: cover; }
.blog-card-art.blog-card-art--full-image {
  aspect-ratio: 16 / 9;
  padding: 0;
  background: #fff;
}
.blog-card-art.blog-card-art--full-image > img {
  object-fit: contain;
  object-position: center;
}
.blog-card-art::before, .blog-card-art::after {
  content: ""; position: absolute; border-radius: 50%;
}
.blog-card-art::before {
  width: 150px; height: 150px; right: -15px; top: -35px;
  background: rgba(15,94,70,.13); border: 1px solid rgba(15,94,70,.14);
}
.blog-card-art::after {
  width: 100px; height: 100px; left: 30px; bottom: -40px;
  background: rgba(63,214,139,.17); border: 1px solid rgba(15,94,70,.12);
}
.blog-card:nth-child(2) .blog-card-art { background: linear-gradient(135deg, #f1e8d8, #e7f4ed); }
.blog-card:nth-child(3) .blog-card-art { background: linear-gradient(135deg, #dfeee8, #f4e9dc); }
.blog-card:nth-child(4) .blog-card-art { background: linear-gradient(135deg, #eef1df, #e2efe9); }
.blog-card-art > * { position: relative; z-index: 2; }
.blog-card-art .art-label {
  position: absolute; top: 1.25rem; left: 1.35rem;
  color: var(--primary); font-size: .61rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.blog-card-art .art-value {
  color: var(--primary); font: 400 4rem/.8 var(--font-display);
  letter-spacing: -.045em;
}
.blog-card-art .art-value small { font: italic 1.7rem var(--font-display); }
.blog-card-art .art-unit {
  margin-top: .6rem; color: rgba(15,94,70,.72);
  font-size: .67rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.blog-art-checklist .art-lines {
  position: absolute; right: 1.5rem; bottom: 1.25rem;
  display: flex; flex-direction: column; gap: .55rem; width: 45%;
}
.blog-art-checklist .art-lines i { position: relative; display: block; height: 1px; background: rgba(15,94,70,.3); }
.blog-art-checklist .art-lines i::before {
  content: "✓"; position: absolute; left: -1.25rem; top: -.6rem;
  color: var(--primary); font-size: .72rem; font-style: normal; font-weight: 700;
}
.blog-art-ncr .art-route {
  position: absolute; right: 1.6rem; bottom: 1.35rem;
  width: 42%; height: 74px; border: 1px dashed rgba(15,94,70,.32);
  border-left: 0; border-bottom: 0; border-radius: 0 45px 0 0;
}
.blog-art-ncr .art-route i {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 0 5px rgba(15,94,70,.1);
}
.blog-art-ncr .art-route i:nth-child(1) { left: -4px; bottom: -4px; }
.blog-art-ncr .art-route i:nth-child(2) { left: 48%; top: -5px; }
.blog-art-ncr .art-route i:nth-child(3) { right: -5px; bottom: 10px; background: var(--emerald-glow); }
.blog-art-time::after, .blog-art-fees::after { width: 180px; height: 180px; left: auto; top: auto; right: -65px; bottom: -85px; border: 1px solid rgba(15,94,70,.15); background: transparent; box-shadow: 0 0 0 22px rgba(15,94,70,.035), 0 0 0 44px rgba(15,94,70,.025); }
.blog-art-time .art-value { font-size: 3.8rem; }
.blog-art-fees .art-value { font-size: 3.15rem; }
.blog-card-content { display: flex; flex: 1; flex-direction: column; padding: 1.4rem .45rem 0; text-align: left; }
.blog-card h3 {
  margin-top: .85rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
}
.blog-card p { margin-top: .85rem; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.blog-card h3,
.blog-card-content > p:not(.blog-kicker) {
  text-align: left;
  text-align-last: auto;
  text-justify: auto;
  word-spacing: normal;
  hyphens: auto;
  overflow-wrap: break-word;
}
.blog-card .blog-kicker { text-align: left; }
.blog-card .blog-meta { justify-content: flex-start; margin-top: auto; padding-top: 1.5rem; text-align: left; }
.blog-card-link { display: flex; flex: 1; flex-direction: column; }
.blog-card-link:focus-visible { outline: 3px solid var(--emerald-glow); outline-offset: 3px; border-radius: 22px; }
.blog-read-link { display: inline-flex; align-items: center; align-self: flex-start; gap: .45rem; margin-top: 1.2rem; color: var(--primary); font: italic 1.02rem var(--font-display); }
.blog-read-link span { transition: transform .2s; }
.blog-card:hover .blog-read-link span { transform: translateX(4px); }
.blogs-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 3rem; padding: 1.35rem 1.5rem;
  border: 1px solid var(--border); border-radius: 16px; background: var(--cream);
}
.blogs-note p { color: var(--muted); font-size: .9rem; }
@media (min-width: 720px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .blog-feature { grid-template-columns: .9fr 1.1fr; }
  .blog-feature-copy { padding: 4rem; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-card-featured-list { grid-column: 1 / -1; min-height: 500px; margin-bottom: 2rem; }
  .blog-card-featured-list .blog-card-link {
    position: relative; display: block; min-height: 500px;
  }
  .blog-card-featured-list .blog-card-art {
    width: 67%; height: 500px; aspect-ratio: auto; border-radius: 0;
  }
  .blog-card-featured-list .blog-card-art.has-article-image > img { object-fit: cover; }
  .blog-card-featured-list .blog-card-content {
    position: absolute; z-index: 3; right: 0; top: 50%; transform: translateY(-50%);
    display: flex; justify-content: center; width: 46%; min-height: 360px;
    padding: 3.4rem; text-align: left;
    background: var(--card); border: 1px solid var(--border);
    box-shadow: 0 30px 55px -35px rgba(10,31,25,.4);
  }
  .blog-card-featured-list h3 { font-size: 2.55rem; text-align-last: left; }
  .blog-card-featured-list .blog-card-content > p:not(.blog-kicker) { text-align-last: left; }
  .blog-card-featured-list .blog-meta { justify-content: flex-start; margin-top: 1.35rem; padding-top: 0; text-align: left; }
  .blog-card-featured-list .blog-read-link { align-self: flex-start; }
  .blog-card-featured-list .art-value { font-size: 8rem; }
  .blog-card-featured-list .art-lines { right: 9%; width: 48%; bottom: 4rem; }
}
@media (max-width: 600px) {
  .blogs-hero { padding: 5rem 0 4rem; }
  .blog-feature h2 { font-size: 2.05rem; }
}

/* Newsroom */
.newsroom-page {
  width: 100%;
  margin: 0;
  padding: 0 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(15,94,70,.08), transparent 32%),
    #f4efe7;
}
.newsroom-shell {
  width: 100%;
  max-width: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0 0 2.25rem;
}
.newsroom-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.4rem 1.5rem 3.6rem;
  min-height: 420px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(90deg, rgba(5,35,27,.88), rgba(8,62,45,.75), rgba(5,31,24,.84)),
    url("hiring-journal-bg.png") center 42% / cover no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.newsroom-topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,38,29,.72), rgba(7,58,42,.54), rgba(7,49,37,.62));
  pointer-events: none;
}
.newsroom-brandblock {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}
.newsroom-brandblock p {
  color: var(--emerald-glow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .27em;
  text-transform: uppercase;
}
.newsroom-brandblock h1 {
  margin-top: 1.15rem;
  color: #f9f6ef;
  font: 400 clamp(4rem, 8vw, 7rem)/.92 var(--font-display);
  letter-spacing: -.03em;
  animation: newsroom-masthead-float 1.2s cubic-bezier(.16,1,.3,1) both;
}
.newsroom-hero-intro {
  max-width: 760px;
  margin: 1.55rem auto 0;
  color: rgba(249,246,239,.74);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .18em;
  text-transform: none;
  text-transform: uppercase;
}
.newsroom-hero-intro p {
  margin: 0;
}
@keyframes newsroom-masthead-float {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.96);
    letter-spacing: .08em;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: .02em;
  }
}
.newsroom-kicker,
.newsroom-story-copy p,
.newsroom-feature-copy p {
  color: #167358;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.newsroom-layout {
  display: grid;
  gap: 2rem;
  padding: 2.2rem 2rem 0;
  align-items: start;
}
.newsroom-sidebar {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}
.newsroom-sidebar-card {
  padding: 1.35rem;
  border: 1px solid rgba(15,94,70,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 45px -36px rgba(10,31,25,.38);
  backdrop-filter: blur(8px);
}
.newsroom-sidebar-card--soft {
  background: linear-gradient(180deg, rgba(15,94,70,.05), rgba(255,255,255,.78));
}
.newsroom-sidebar-head h3 {
  margin-top: .55rem;
  color: #101010;
  font: 400 2rem/1.05 var(--font-display);
}
.newsroom-filter-list {
  display: grid;
  gap: .45rem;
  margin-top: 1.25rem;
}
.newsroom-filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(244,239,231,.88);
  color: #33413a;
  font-size: .95rem;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.newsroom-filter-list a span {
  min-width: 2rem;
  padding: .18rem .55rem;
  border-radius: 999px;
  background: rgba(15,94,70,.08);
  color: var(--primary);
  font-size: .78rem;
  text-align: center;
}
.newsroom-filter-list a:hover,
.newsroom-filter-list a.active {
  transform: translateX(4px);
  border-color: rgba(15,94,70,.18);
  background: #fff;
  color: var(--primary);
}
.newsroom-sidebar-points {
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
  padding-left: 1.1rem;
  color: #5f665f;
}
.newsroom-sidebar-points li {
  line-height: 1.65;
}
.newsroom-content {
  min-width: 0;
}
.newsroom-story-card a,
.newsroom-latest-item,
.newsroom-feature-link { display: block; }
.newsroom-story-card {
  height: 100%;
}
.newsroom-story-card a {
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(15,94,70,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 24px 60px -42px rgba(9,27,21,.45);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.newsroom-story-card a:hover {
  transform: translateY(-6px);
  border-color: rgba(15,94,70,.22);
  box-shadow: 0 28px 70px -40px rgba(9,27,21,.58);
}
.newsroom-story-card img,
.newsroom-latest-item img,
.newsroom-feature img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: #f7f3eb;
  border-radius: 22px;
}
.newsroom-story-copy { padding-top: 1.05rem; }
.newsroom-story-copy h3 {
  margin-top: .55rem;
  color: #141414;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
}
.newsroom-story-copy span,
.newsroom-feature-meta {
  display: block;
  margin-top: .7rem;
  color: #7d847f;
  font-size: .82rem;
  letter-spacing: .04em;
}
.newsroom-story-copy div,
.newsroom-latest-item small {
  display: block;
  margin-top: .75rem;
  color: #666d67;
  font-size: .95rem;
  line-height: 1.7;
}
.newsroom-section-head h2 {
  color: #111;
  margin-top: .45rem;
  font: 400 clamp(2rem, 4vw, 3rem)/1.08 var(--font-display);
}
.newsroom-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-right: .35rem;
}
.newsroom-grid {
  display: grid;
  gap: 1.5rem;
}
.newsroom-story-card img {
  aspect-ratio: 1.08 / .72;
  padding: .65rem;
}
.newsroom-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-top: 1px solid var(--border);
  background: #f4efe7;
}
.newsroom-footer-cta p {
  color: #167358;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.newsroom-footer-cta h2 {
  margin-top: .5rem;
  color: #121212;
  font: 400 clamp(2rem, 4vw, 3rem)/1.05 var(--font-display);
}
@media (min-width: 980px) {
  .newsroom-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 2.2rem;
  }
  .newsroom-sidebar {
    position: sticky;
    top: 100px;
  }
  .newsroom-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 979px) {
  .newsroom-shell {
    width: 100%;
    max-width: none;
    padding: 1rem 0 1.6rem;
  }
  .newsroom-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsroom-topbar,
  .newsroom-layout,
  .newsroom-footer-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .newsroom-topbar {
    min-height: 360px;
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }
  .newsroom-story-card a {
    padding: .85rem;
  }
  .newsroom-section-head {
    margin-bottom: 1.1rem;
  }
  .newsroom-hero-intro {
    max-width: 100%;
    font-size: .72rem;
    letter-spacing: .14em;
  }
}

/* Blog article */
.article-hero { padding: 1.4rem 0; background: var(--gradient-hero); border-bottom: 1px solid var(--border); }
.article-back { display: inline-flex; align-items: center; gap: .45rem; color: var(--primary); font-size: .82rem; font-weight: 600; }
.article-intro h1 { max-width: 760px; margin-top: 1.15rem; font: 400 clamp(2.5rem,4vw,4rem)/1.02 var(--font-display); letter-spacing: -.035em; }
.article-dek { max-width: 720px; margin-top: 1.5rem; color: var(--muted); font-size: 1.1rem; line-height: 1.75; }
.article-meta { display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; margin-top: 1.5rem; color: var(--muted); font-size: .8rem; }
.article-cover { margin-top: 2.5rem; overflow: hidden; border-radius: 24px; box-shadow: 0 24px 60px -36px rgba(15,94,70,.5); }
.article-cover img { display: block; width: 100%; max-height: 620px; object-fit: cover; }
.article-intro .article-cover {
  width: 100%; margin: 0 0 1.8rem; border: 1px solid rgba(15,94,70,.12);
  border-radius: 22px; background: var(--card);
}
.article-intro .article-cover img {
  width: 100%; height: auto; max-height: none; aspect-ratio: 3 / 2;
  object-fit: contain; object-position: center; background: var(--card);
}
.article-intro .article-cover + .eyebrow { margin-top: 0 !important; }
.article-intro { padding-bottom: 2.25rem; border-bottom: 1px solid var(--border); }
.article-main { min-width: 0; max-width: 760px; }
.article-main .article-body { margin-top: 0; padding-top: .5rem; }
.article-main h1,
.article-main h2,
.article-main h3,
.article-aside h2,
.article-aside h3,
.more-blogs h2,
.more-blogs h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.02em;
}
@media (max-width: 700px) {
  .article-hero { padding: 1rem 0; }
  .article-intro .article-cover { margin: 0 0 1.5rem; border-radius: 16px; }
  .article-intro .article-cover img { height: auto; aspect-ratio: 3 / 2; object-fit: contain; }
}
.article-shell { display: grid; gap: 3.5rem; padding-top: 2.5rem; padding-bottom: 3rem; }
.article-aside { display: none; }
.article-toc {
  position: relative; overflow: hidden;
  padding: 0 0 1rem; background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,94,70,.14); border-radius: 22px;
  box-shadow: 0 20px 45px -30px rgba(15,94,70,.42);
  backdrop-filter: blur(12px);
}
.article-toc::before {
  content: ""; position: absolute; top: 66px; bottom: 33px; left: 35px;
  width: 1px; background: linear-gradient(var(--emerald-glow), rgba(15,94,70,.08));
}
.article-toc p {
  position: relative; margin: 0; padding: 1.25rem 1.35rem;
  background: var(--ink); color: var(--ink-fg);
  font-size: .68rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
}
.article-toc p::after {
  content: ""; position: absolute; right: 1.15rem; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-glow);
  box-shadow: 0 0 0 5px rgba(63,214,139,.13);
}
.article-toc ol {
  position: relative; z-index: 1; margin: 0; padding: 1rem .8rem 0;
  list-style: none; counter-reset: article-nav;
  color: var(--muted); font-size: .78rem;
}
.article-toc li { counter-increment: article-nav; padding: 0; }
.article-toc li + li { margin-top: .25rem; }
.article-toc a {
  display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: .55rem;
  min-height: 42px; padding: .38rem .45rem; border-radius: 12px;
  line-height: 1.35; transition: color .2s, background .2s, transform .2s;
}
.article-toc a::before {
  content: counter(article-nav, decimal-leading-zero);
  display: grid; place-items: center; width: 29px; height: 29px;
  border: 1px solid rgba(15,94,70,.16); border-radius: 50%;
  background: var(--card); color: var(--primary);
  font-size: .58rem; font-weight: 700; letter-spacing: .04em;
  transition: background .2s, color .2s, border-color .2s;
}
.article-toc a:hover {
  color: var(--primary); background: rgba(15,94,70,.065);
  transform: translateX(2px);
}
.article-toc a:hover::before {
  background: var(--primary); border-color: var(--primary); color: var(--primary-fg);
}
.article-body { max-width: 760px; }
.article-body > .eyebrow { margin-top: 1.5rem; }
.article-body > h1 {
  max-width: 760px;
  margin-top: 1rem;
  font: 400 clamp(2.4rem,4vw,3.9rem)/1.02 var(--font-display);
  letter-spacing: -.035em;
}
.article-body > .article-dek {
  max-width: 720px;
  margin-top: 1.35rem;
}
.article-body > .article-meta {
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}
.article-body > p:first-child { font-size: 1.18rem; color: var(--fg); }
.article-body p { margin-top: 1.15rem; color: #47433b; line-height: 1.82; }
.article-body h2 { scroll-margin-top: 100px; margin-top: 3.4rem; font: 400 2.45rem/1.08 var(--font-display); letter-spacing: -.02em; }
.article-body h3 { margin-top: 2.2rem; font: 400 1.65rem/1.15 var(--font-display); }
.article-body ul, .article-body ol { margin: 1.2rem 0 0 1.35rem; color: #47433b; }
.article-body li { padding-left: .35rem; line-height: 1.75; }
.article-body li + li { margin-top: .65rem; }
.article-body strong { color: var(--fg); }
.article-body a:not(.btn) {
  color: #0969da;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .2s, background-color .2s;
}
.article-body a:not(.btn):visited { color: #6f42c1; }
.article-body a:not(.btn):hover {
  color: #034ea2;
  background: rgba(9,105,218,.08);
}
.article-callout { margin: 2rem 0; padding: 1.5rem; border-left: 4px solid var(--primary); background: var(--cream); border-radius: 0 16px 16px 0; }
.article-callout p { margin: 0; color: var(--fg); font-size: 1.05rem; }
.article-table-wrap { overflow-x: auto; margin-top: 1.5rem; border: 1px solid var(--border); border-radius: 16px; }
.article-table { width: 100%; border-collapse: collapse; background: var(--card); font-size: .9rem; }
.article-table th, .article-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.article-table th { background: var(--cream); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.article-table tr:last-child td { border-bottom: 0; }
.article-cta { margin-top: 3rem; padding: 2rem; background: var(--ink); color: var(--ink-fg); border-radius: 22px; }
.article-cta h2 { margin: 0; color: var(--ink-fg); }
.article-cta p { color: rgba(243,237,226,.7); }
.article-cta .cta-row { margin-top: 1.5rem; }
.faq-list { margin-top: 1.5rem; border-top: 1px solid var(--border); }
.faq-item { padding: 1.35rem 0; border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0; font: 600 1rem/1.4 var(--font-sans); }
.faq-item p { margin-top: .55rem; }
.article-categories {
  margin-top: 1.25rem; padding: 1.35rem;
  border: 1px solid var(--border); border-radius: 20px; background: var(--card);
}
.article-categories h2, .more-blogs h2 {
  margin: 0 0 1rem; font: 400 1.65rem/1.1 var(--font-display);
}
.article-categories a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 0; border-bottom: 1px solid var(--border);
  color: var(--muted); font-size: .78rem; transition: color .2s, padding-left .2s;
}
.article-categories a:last-child { border-bottom: 0; }
.article-categories a::after { content: "→"; color: var(--primary); }
.article-categories a:hover { padding-left: .3rem; color: var(--primary); }
.more-blogs { display: none; align-self: start; }
.more-blogs-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.more-blogs-head h2 { margin: 0; }
.more-blogs-head > a { color: var(--primary); font-size: .72rem; font-weight: 600; }
.more-blog-card {
  display: block; overflow: hidden; margin-bottom: 1.15rem;
  border: 1px solid var(--border); border-radius: 18px; background: var(--card);
  box-shadow: 0 18px 40px -34px rgba(15,94,70,.55);
  transition: transform .2s, box-shadow .2s;
}
.more-blog-card:hover { transform: translateY(-3px); box-shadow: 0 22px 45px -30px rgba(15,94,70,.6); }
.more-blog-card img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.more-blog-card-content { padding: 1rem; }
.more-blog-card .blog-kicker { margin: 0 0 .45rem; font-size: .62rem; }
.more-blog-card h3 { font: 400 1.2rem/1.12 var(--font-display); }
.more-blog-card span { display: block; margin-top: .65rem; color: var(--muted); font-size: .68rem; }
@media (min-width: 1000px) {
  .article-shell { grid-template-columns: 220px minmax(0,760px); justify-content: center; align-items: start; }
  .article-aside {
    display: block; position: sticky; top: 92px; align-self: start;
    max-height: calc(100vh - 112px); overflow-y: auto; overscroll-behavior: contain;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .article-aside::-webkit-scrollbar, .more-blogs::-webkit-scrollbar { display: none; width: 0; height: 0; }
}
/* Typing test */
.typing-page { background: #f8f6f1; }
.typing-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(3.5rem,6vw,5.5rem) 0; color: #fff; background: linear-gradient(120deg,#062d23 0%,#0b513d 52%,#117052 100%); border-bottom: 1px solid rgba(255,255,255,.12); }
.typing-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 78% 22%,rgba(89,232,160,.25),transparent 34%),linear-gradient(135deg,transparent 55%,rgba(63,214,139,.09)); }
.typing-hero::after { content: "TYPE  •  LEARN  •  GROW"; position: absolute; z-index: -1; right: -2%; bottom: -2%; color: rgba(255,255,255,.035); font: 700 clamp(2.3rem,5vw,5rem)/1 var(--font-sans); letter-spacing: .08em; white-space: nowrap; transform: rotate(-3deg); }
.typing-hero-grid { position: relative; z-index: 2; display: grid; gap: 2.5rem; align-items: center; }
.typing-hero .eyebrow { color: var(--emerald-glow); }
.typing-hero h1 { color: #fff; }
.typing-hero h1 .text-primary { color: #72e6ad; }
.typing-hero p:not(.eyebrow) { color: #fff; }
.typing-keyboard-scene { position: relative; width: 100%; max-width: 590px; justify-self: end; padding: 1.15rem; border: 1px solid rgba(255,255,255,.19); border-radius: 28px; background: linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.055)); box-shadow: 0 34px 65px -35px rgba(0,0,0,.65),inset 0 1px 0 rgba(255,255,255,.16); backdrop-filter: blur(14px); transform: perspective(900px) rotateX(4deg) rotateY(-5deg); }
.typing-screen-line { display: flex; align-items: center; gap: .6rem; height: 42px; margin: 0 .3rem 1rem; padding: 0 .9rem; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(3,30,23,.42); }
.typing-screen-line span { width: 68%; height: 6px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.12); }
.typing-screen-line span::after { content: ""; display: block; width: 48%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--emerald-glow),#a6f4ca); animation: typing-line-progress 3.6s ease-in-out infinite; }
.typing-screen-line i { width: 3px; height: 20px; border-radius: 5px; background: var(--emerald-glow); box-shadow: 0 0 12px rgba(63,214,139,.7); animation: typing-caret 1s steps(1) infinite; }
.typing-keyboard { padding: 1rem; border-radius: 19px; background: rgba(3,30,23,.5); box-shadow: inset 0 1px 8px rgba(0,0,0,.28); }
.typing-keyboard-row { display: flex; justify-content: center; gap: clamp(4px,.55vw,8px); }
.typing-keyboard-row + .typing-keyboard-row { margin-top: clamp(4px,.55vw,8px); }
.typing-keyboard kbd { display: grid; place-items: center; width: clamp(31px,3.1vw,46px); height: clamp(31px,3.1vw,46px); border: 1px solid rgba(255,255,255,.18); border-bottom-width: 3px; border-radius: 8px; color: rgba(255,255,255,.78); background: linear-gradient(145deg,rgba(255,255,255,.16),rgba(255,255,255,.07)); box-shadow: 0 5px 9px rgba(0,0,0,.18); font: 600 clamp(.58rem,.8vw,.72rem) var(--font-sans); animation: typing-key-press 4.8s ease-in-out infinite; }
.typing-keyboard-row kbd:nth-child(2) { animation-delay: .25s; }
.typing-keyboard-row kbd:nth-child(3) { animation-delay: .5s; }
.typing-keyboard-row kbd:nth-child(4) { animation-delay: .75s; }
.typing-keyboard-row kbd:nth-child(5) { animation-delay: 1s; }
.typing-keyboard-row kbd:nth-child(6) { animation-delay: 1.25s; }
.typing-keyboard-row kbd:nth-child(7) { animation-delay: 1.5s; }
.typing-keyboard-row kbd:nth-child(8) { animation-delay: 1.75s; }
.typing-keyboard-row kbd:nth-child(9) { animation-delay: 2s; }
.typing-keyboard-row kbd:nth-child(10) { animation-delay: 2.25s; }
.typing-keyboard .row-middle { padding-left: 18px; padding-right: 18px; }
.typing-keyboard .row-bottom { padding-left: 46px; padding-right: 46px; }
.typing-keyboard .row-space kbd { width: 52%; height: 35px; color: rgba(255,255,255,.42); letter-spacing: .15em; animation-delay: 2.5s; }
@keyframes typing-key-press { 0%,82%,100% { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.18); background: linear-gradient(145deg,rgba(255,255,255,.16),rgba(255,255,255,.07)); transform: translateY(0); } 86%,92% { color: #062d23; border-color: #9ff0c7; background: var(--emerald-glow); box-shadow: 0 0 20px rgba(63,214,139,.48); transform: translateY(2px); } }
@keyframes typing-line-progress { 0% { transform: translateX(-105%); } 55%,80% { transform: translateX(110%); } 100% { transform: translateX(110%); } }
@keyframes typing-caret { 50% { opacity: .15; } }
.typing-hero-decoration { position: absolute; z-index: 0; left: 18%; top: 50%; width: min(72vw,1050px); height: 430px; opacity: .2; transform: translateY(-50%) rotate(-7deg) scale(1.12); pointer-events: none; }
.typing-key-row { position: absolute; display: flex; gap: 12px; }
.typing-key-row span { display: grid; place-items: center; width: clamp(54px,5vw,78px); aspect-ratio: 1.08; border: 1px solid rgba(15,94,70,.11); border-radius: 15px; color: rgba(15,94,70,.18); background: linear-gradient(145deg,rgba(255,255,255,.88),rgba(232,244,237,.52)); box-shadow: 0 16px 28px -20px rgba(15,94,70,.42), inset 0 -4px 0 rgba(15,94,70,.055); font: 600 clamp(1.1rem,2vw,1.65rem) var(--font-sans); }
.typing-key-row-one { left: 0; top: 8px; }
.typing-key-row-two { left: 70px; top: 112px; }
.typing-key-row-three { left: 145px; top: 216px; }
.typing-key-row-two span:nth-child(2), .typing-key-row-two span:nth-child(3), .typing-key-row-three span:nth-child(3) { color: rgba(255,255,255,.72); border-color: rgba(15,94,70,.15); background: linear-gradient(145deg,rgba(15,94,70,.48),rgba(15,94,70,.23)); }
.typing-cursor-mark { position: absolute; left: 430px; bottom: 28px; width: 240px; height: 6px; border-radius: 99px; background: linear-gradient(90deg,var(--primary),var(--emerald-glow)); box-shadow: 0 0 24px rgba(63,214,139,.42); }
.typing-cursor-mark::after { content: ""; position: absolute; right: 0; bottom: 0; width: 5px; height: 58px; border-radius: 99px; background: var(--emerald-glow); box-shadow: 0 0 18px rgba(63,214,139,.52); animation: typing-cursor-blink 1.15s steps(1) infinite; }
@keyframes typing-cursor-blink { 50% { opacity: .18; } }
.typing-hero h1 { max-width: 820px; margin-top: 1rem; font: 400 clamp(3rem,6vw,5.7rem)/.98 var(--font-display); letter-spacing: -.045em; }
.typing-hero p:not(.eyebrow) { max-width: 690px; margin-top: 1.4rem; color: #fff; font-size: 1.05rem; line-height: 1.75; }
.typing-hero-stats { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(255,255,255,.09); box-shadow: 0 24px 60px -38px rgba(0,0,0,.55); backdrop-filter: blur(14px); }
.typing-hero-stats div { padding: 1.25rem; }
.typing-hero-stats div + div { border-left: 1px solid rgba(255,255,255,.16); }
.typing-hero-stats strong, .typing-hero-stats span { display: block; }
.typing-hero-stats strong { color: #fff; font: 400 2rem var(--font-display); }
.typing-hero-stats span { margin-top: .25rem; color: rgba(255,255,255,.65); font-size: .68rem; }
.typing-section { padding: 3rem 0 6rem; }
.typing-app { overflow: hidden; border: 1px solid rgba(15,94,70,.14); border-radius: 28px; background: var(--card); box-shadow: 0 28px 80px -52px rgba(8,47,37,.65); }
.typing-controls { display: grid; gap: 1rem; padding: 1.35rem; background: var(--ink); color: var(--ink-fg); }
.typing-control-group { min-width: 0; }
.typing-control-label { display: block; margin-bottom: .55rem; color: rgba(243,237,226,.65); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.typing-segmented { display: grid; grid-template-columns: repeat(3,1fr); gap: .35rem; padding: .3rem; border-radius: 12px; background: rgba(255,255,255,.08); }
.typing-segmented button, .typing-new-btn, .typing-controls select, .typing-controls input { min-height: 44px; border: 1px solid transparent; border-radius: 9px; font: 600 .78rem var(--font-sans); }
.typing-segmented button { padding: 0 .8rem; color: rgba(255,255,255,.7); background: transparent; cursor: pointer; }
.typing-segmented button.is-active { color: var(--primary); background: var(--emerald-glow); }
.typing-controls select { width: 100%; padding: 0 2.2rem 0 .8rem; border-color: rgba(255,255,255,.15); color: var(--ink-fg); background: #123d32; cursor: pointer; }
.typing-controls input { width: 100%; padding: 0 .85rem; border-color: rgba(255,255,255,.2); color: #fff; background: #123d32; outline: none; }
.typing-controls input::placeholder { color: rgba(255,255,255,.48); }
.typing-controls input:focus { border-color: var(--emerald-glow); box-shadow: 0 0 0 3px rgba(63,214,139,.13); }
.typing-controls input.is-invalid { border-color: #ff9b8f; box-shadow: 0 0 0 3px rgba(255,120,104,.13); }
.typing-new-btn { align-self: end; padding: 0 1.1rem; color: var(--ink-fg); border-color: rgba(255,255,255,.25); background: transparent; cursor: pointer; }
.typing-new-btn:hover { border-color: var(--emerald-glow); color: var(--emerald-glow); }
.typing-dashboard { display: grid; grid-template-columns: repeat(2,1fr); border-bottom: 1px solid var(--border); }
.typing-stat { padding: 1.2rem; text-align: center; }
.typing-stat:nth-child(even) { border-left: 1px solid var(--border); }
.typing-stat:nth-child(n+3) { border-top: 1px solid var(--border); }
.typing-stat span, .typing-stat small { display: block; color: var(--muted); }
.typing-stat span { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.typing-stat strong { display: inline-block; margin-top: .2rem; color: var(--primary); font: 400 2.35rem var(--font-display); }
.typing-stat small { font-size: .62rem; }
.typing-progress { height: 5px; background: #e6e7df; }
.typing-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--primary),var(--emerald-glow)); transition: width .15s; }
.typing-copy-wrap { margin: 1.5rem; border: 1px solid var(--border); border-radius: 18px; background: #fbfaf7; }
.typing-copy-head { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); font-size: .68rem; font-weight: 600; }
.typing-copy { height: 185px; overflow: auto; padding: 1.25rem; color: #746f65; font: 500 1.35rem/2.05 ui-monospace,SFMono-Regular,Consolas,monospace; letter-spacing: .02em; white-space: pre-wrap; overflow-wrap: anywhere; scroll-behavior: smooth; }
.typing-copy span { border-radius: 3px; }
.typing-copy .is-correct { color: #0b7b53; background: rgba(63,214,139,.11); }
.typing-copy .is-wrong { color: #b42318; background: #fee4e2; text-decoration: underline; }
.typing-copy .is-current { color: var(--fg); background: #d8f6e6; box-shadow: inset 2px 0 var(--primary); }
.typing-input-label { display: block; margin: 0 1.5rem .55rem; color: var(--fg); font-size: .75rem; font-weight: 700; }
#typing-input { display: block; width: calc(100% - 3rem); min-height: 130px; margin: 0 1.5rem; padding: 1rem; resize: vertical; border: 2px solid var(--border); border-radius: 15px; color: var(--fg); background: #fff; font: 500 1.05rem/1.7 ui-monospace,SFMono-Regular,Consolas,monospace; outline: none; }
#typing-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(15,94,70,.09); }
#typing-input:disabled { color: var(--muted); background: #f1f0eb; }
.typing-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem 1.5rem; }
.typing-actions p { color: var(--muted); font-size: .78rem; }
.typing-result { margin-top: 2rem; overflow: hidden; padding: clamp(1.5rem,4vw,3rem); border-radius: 28px; color: var(--ink-fg); background: linear-gradient(135deg,#082f25,#0f5e46); box-shadow: 0 28px 80px -48px rgba(8,47,37,.8); }
.typing-result[hidden] { display: none; }
.typing-result .eyebrow { color: var(--emerald-glow); }
.typing-result h2 { margin-top: .55rem; color: #fff; font: 400 clamp(2.4rem,5vw,4rem)/1 var(--font-display); }
.typing-result-copy > p:last-child { max-width: 620px; margin-top: .8rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.typing-score-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; overflow: hidden; margin-top: 2rem; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.12); }
.typing-score-grid div { padding: 1.25rem; background: rgba(4,33,25,.7); }
.typing-score-grid strong, .typing-score-grid span { display: block; }
.typing-score-grid strong { color: #fff; font: 400 2.7rem var(--font-display); }
.typing-score-grid span { margin-top: .25rem; color: rgba(255,255,255,.58); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.typing-result-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.typing-result .btn-outline { color: #fff; border-color: rgba(255,255,255,.3); background: transparent; }
.typing-social-btn, .typing-retry { min-height: 44px; padding: 0 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff; background: rgba(255,255,255,.08); font-weight: 600; cursor: pointer; }
.typing-social-btn:hover { border-color: var(--emerald-glow); color: var(--emerald-glow); }
.typing-retry { margin-left: auto; border-color: transparent; background: transparent; text-decoration: underline; }
.typing-how { display: grid; gap: 1px; overflow: hidden; margin-top: 2.5rem; border: 1px solid var(--border); border-radius: 22px; background: var(--border); }
.typing-how > div { padding: 1.5rem; background: var(--card); }
.typing-how span { color: var(--primary); font-size: .68rem; font-weight: 700; letter-spacing: .13em; }
.typing-how h2 { margin-top: .55rem; font: 400 1.7rem var(--font-display); }
.typing-how p { margin-top: .55rem; color: var(--muted); font-size: .82rem; line-height: 1.65; }
@media (min-width: 720px) {
  .typing-controls { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .typing-dashboard { grid-template-columns: repeat(4,1fr); }
  .typing-stat + .typing-stat { border-left: 1px solid var(--border); }
  .typing-stat:nth-child(n+3) { border-top: 0; }
  .typing-score-grid { grid-template-columns: repeat(4,1fr); }
  .typing-how { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 1180px) {
  .typing-controls { grid-template-columns: minmax(190px,.9fr) minmax(300px,1.45fr) minmax(120px,.62fr) minmax(135px,.68fr) minmax(105px,auto); align-items: end; }
  .typing-new-btn { width: 100%; white-space: nowrap; }
}
@media (min-width: 980px) {
  .typing-hero-grid { grid-template-columns: minmax(0,1.25fr) minmax(380px,.75fr); }
}
@media (max-width: 600px) {
  .typing-hero { padding-top: 3.5rem; }
  .typing-hero::after { display: none; }
  .typing-keyboard-scene { padding: .75rem; border-radius: 20px; transform: none; }
  .typing-keyboard { padding: .7rem; }
  .typing-keyboard kbd { width: min(8vw,38px); height: min(8vw,38px); }
  .typing-hero-stats { grid-template-columns: 1fr; }
  .typing-hero-stats div + div { border-top: 1px solid var(--border); border-left: 0; }
  .typing-copy-wrap { margin: 1rem; }
  .typing-copy { height: 165px; padding: 1rem; font-size: 1.08rem; }
  .typing-input-label { margin-left: 1rem; }
  #typing-input { width: calc(100% - 2rem); margin: 0 1rem; }
  .typing-actions { padding: 1rem; }
  .typing-actions .btn { width: 100%; justify-content: center; }
  .typing-retry { margin-left: 0; }
}

@media (min-width: 1280px) {
  .article-shell { grid-template-columns: 210px minmax(0,700px) 270px; gap: 2rem; max-width: 1260px; }
  .more-blogs {
    display: block; position: sticky; top: 92px;
    max-height: calc(100vh - 112px); overflow-y: auto; overscroll-behavior: contain;
    padding-right: .35rem; scrollbar-width: none; -ms-overflow-style: none;
  }
}
@media (max-width: 1279px) {
  .more-blogs.article-related-mobile { display: block; grid-column: 2; position: static; }
}
@media (max-width: 999px) {
  .article-shell { padding-top: 2rem; }
  .article-aside { display: block; order: 2; }
  .article-main { order: 1; }
  .more-blogs.article-related-mobile { grid-column: auto; order: 3; }
  .article-toc { display: none; }
  .article-categories { margin-top: 0; }
  .article-aside, .more-blogs {
    position: static; max-height: none; overflow: visible; overscroll-behavior: auto; padding-right: 0;
  }
}

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.chip {
  padding: .3rem .75rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg);
  font-size: .75rem; color: rgba(26,26,26,0.75);
}

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--ink-fg);
  border-radius: 28px;
  padding: 4rem 2rem;
  margin: 6rem auto;
  max-width: 1200px;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; filter: blur(80px); opacity: 0.25; pointer-events: none;
}
.cta-band::before { top: -100px; right: -100px; background: var(--emerald-glow); }
.cta-band::after { bottom: -140px; left: -140px; background: var(--primary); opacity: 0.4; }
.cta-band > * { position: relative; z-index: 1; }
@media (min-width: 768px) { .cta-band { padding: 6rem 4rem; } }

/* Form */
.form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 2rem;
}
@media (min-width: 700px) { .form { padding: 2.5rem; } }
.field { display: grid; gap: .5rem; margin-top: 1.25rem; }
.field label {
  font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted);
}
.field input, .field textarea {
  border: 1px solid var(--border); background: var(--bg);
  border-radius: 10px; padding: .85rem 1rem;
  font-size: .95rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,94,70,0.15);
}
.resume-field { display: none; }
.resume-field input[type="file"] { padding: .65rem; color: var(--muted); cursor: pointer; }
.resume-field input[type="file"]::file-selector-button {
  margin-right: .8rem; border: 0; border-radius: 999px;
  background: rgba(15,94,70,.1); color: var(--primary);
  padding: .65rem 1rem; font: inherit; font-weight: 600; cursor: pointer;
}
.resume-field small { color: var(--muted); font-size: .75rem; }
.toggle {
  display: inline-flex; padding: 4px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 999px;
}
.toggle button {
  padding: .5rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 500;
  color: rgba(26,26,26,0.7);
}
.toggle button.active { background: var(--primary); color: var(--primary-fg); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { margin-top: 1rem; color: var(--muted); font-size: .8rem; }
.form-status.success { color: var(--primary); font-weight: 600; }
.form-status.error { color: #b42318; font-weight: 600; }
.submission-popup { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.submission-popup.open { display: flex; }
.submission-popup-backdrop { position: absolute; inset: 0; background: rgba(18, 31, 27, .68); backdrop-filter: blur(5px); }
.submission-popup-card { position: relative; width: min(100%, 430px); padding: 2.25rem; border-radius: 24px; background: var(--card); text-align: center; box-shadow: 0 24px 80px rgba(0,0,0,.25); }
.submission-popup-card p { margin: .75rem auto 1.5rem; color: var(--muted); line-height: 1.65; }
.submission-popup-check { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(15,94,70,.12); color: var(--primary); font-size: 2rem; font-weight: 700; }
.form button:disabled { cursor: wait; opacity: .7; }

/* Candidate resume modal */
body.modal-open { overflow: hidden; }
.candidate-modal { position: fixed; inset: 0; z-index: 100; display: none; padding: 1rem; align-items: center; justify-content: center; }
.candidate-modal.open { display: flex; }
.candidate-modal-backdrop { position: absolute; inset: 0; background: rgba(4,35,26,.66); backdrop-filter: blur(5px); }
.candidate-modal-card {
  position: relative; z-index: 1; width: min(620px, 100%); max-height: calc(100vh - 2rem); overflow-y: auto;
  border: 1px solid var(--border); border-radius: 24px; background: var(--card);
  padding: 2rem; box-shadow: 0 28px 80px rgba(4,35,26,.28);
}
.candidate-modal-card h2 { margin-top: .6rem; font-size: clamp(2.2rem, 7vw, 3.4rem); }
.candidate-modal-intro { margin-top: .7rem; color: var(--muted); line-height: 1.6; }
.candidate-modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15,94,70,.08); color: var(--primary); font-size: 1.6rem; line-height: 1;
}
.candidate-modal-close:hover { background: rgba(15,94,70,.16); }
.modal-resume-field input[type="file"] { padding: .65rem; color: var(--muted); cursor: pointer; }
.modal-resume-field input[type="file"]::file-selector-button { margin-right: .8rem; border: 0; border-radius: 999px; background: rgba(15,94,70,.1); color: var(--primary); padding: .65rem 1rem; font: inherit; font-weight: 600; cursor: pointer; }
.modal-resume-field small { color: var(--muted); font-size: .75rem; }
.candidate-modal-submit { margin-top: 1.5rem; }
.candidate-modal-status { min-height: 1.2rem; }
@media (max-width: 600px) { .candidate-modal-card { padding: 1.5rem; border-radius: 20px; } }

/* Contact info cards */
.info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.info-card .badge {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(15,94,70,0.1); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-card .lbl { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }
.info-card .val { margin-top: .25rem; font-size: 1.05rem; }
.story-link { position: relative; }
.story-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.story-link:hover::after { transform: scaleX(1); transform-origin: left; }
.phone-list { display: flex; flex-direction: column; gap: .25rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border); padding: 3rem 0 2rem;
  background: var(--bg);
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer .brand-line { font-family: var(--font-display); font-size: 1.35rem; }
.footer-logo { display: inline-block; margin-bottom: .75rem; }
.footer-logo img { display: block; width: 64px; height: 64px; object-fit: contain; }
.site-footer p { color: var(--muted); font-size: .9rem; margin-top: .5rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: var(--muted); font-size: .9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-social { margin-top: 1rem; }
.site-footer .social-btn { background: rgba(255,255,255,.35); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: .8rem; text-align: center;
}

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.55);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

@media (min-width: 1024px) {
  .wa-float { right: 4rem; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.shown { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .8s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }

/* Beliefs / feature-row cards */
.belief {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.75rem;
}
.belief .check {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--primary); color: var(--primary-fg);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.belief p { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3; }

.two-col { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .two-col { grid-template-columns: 1fr 1.2fr; } }
.two-col-l { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .two-col-l { grid-template-columns: 1fr 1.4fr; } }

/* Contact 2-col */
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

/* Legal page */
.legal-page { background: var(--bg); }
.legal-shell { width: 100%; background: #fff; }
.legal-hero { min-height: 560px; display: flex; align-items: center; justify-content: center; padding: 4rem 1.5rem; text-align: center; color: #fff; background: linear-gradient(rgba(0,55,39,.83), rgba(0,45,33,.9)), url("hiring-journal-bg.png") center/cover no-repeat; }
.legal-hero-inner { max-width: 1100px; }
.legal-badge { display: inline-block; padding: .55rem 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.82); font-size: .68rem; font-weight: 650; letter-spacing: .22em; text-transform: uppercase; }
.legal-hero h1 { margin: 0; color: #fff; font-family: var(--font-display); font-size: clamp(3rem,7vw,6rem); font-weight: 400; line-height: .96; animation: legal-rise .9s cubic-bezier(.16,1,.3,1) both; }
.legal-hero h1 span, .legal-hero h1 em, .legal-hero h1 b { display: block; }
.legal-hero h1 b { margin: .4rem 0; color: rgba(255,255,255,.65); font-family: var(--font-display); font-size: .48em; font-weight: 400; }
.legal-hero h1 em { color: var(--emerald-glow); font-weight: 400; }
.legal-hero p { margin-top: 2.5rem; color: rgba(255,255,255,.72); animation: legal-rise .9s .18s cubic-bezier(.16,1,.3,1) both; }
.legal-meta { margin-top: 1.7rem; color: rgba(255,255,255,.55); font-size: .78rem; font-weight: 600; animation: legal-fade .8s .45s ease both; }
.legal-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 4rem; padding: 5rem 1.5rem; align-items: start; animation: legal-rise .9s .28s cubic-bezier(.16,1,.3,1) both; }
.legal-nav { position: sticky; top: 7rem; }
.legal-nav strong { display: block; margin-bottom: 1rem; color: var(--muted); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.legal-nav a { display: block; margin: .5rem 0; padding: .8rem 1rem; border: 1px solid var(--border); border-radius: 9px; font-size: .76rem; font-weight: 650; }
.legal-nav a.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.legal-doc { max-width: 780px; }
.legal-part { scroll-margin-top: 7rem; }
.legal-part + .legal-part { margin-top: 5rem; padding-top: 3rem; border-top: 2px solid var(--primary); }
.legal-part > h2 { margin: .35rem 0 2rem; font-size: clamp(2.3rem,5vw,3.5rem); }
.legal-section { padding: 1.55rem 0; border-top: 1px solid var(--border); }
.legal-section:first-of-type { border-top: 0; padding-top: 0; }
.legal-section h3 { margin: 0 0 .8rem; font-size: 1.55rem; }
.legal-section p, .legal-section li { color: #4f5e58; font-size: .98rem; line-height: 1.8; }
.legal-section p { margin: .65rem 0; }
.legal-section ul { margin: .7rem 0; padding-left: 1.25rem; }
.legal-section li { margin: .35rem 0; padding-left: .3rem; }
.legal-section li::marker { color: var(--primary); }
@keyframes legal-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes legal-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .legal-hero h1, .legal-hero p, .legal-meta, .legal-layout { animation: none; } }
@media (max-width: 800px) { .legal-hero { min-height: 420px; } .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.25rem; } .legal-nav { position: static; } .legal-nav a { display: inline-block; margin-right: .35rem; } }

/* Account deletion page */
.delete-account-page { background: var(--bg); }
.delete-account-hero { min-height: 430px; display: flex; align-items: center; justify-content: center; padding: 5rem 1.5rem; text-align: center; color: #fff; background: linear-gradient(rgba(0,55,39,.86), rgba(0,45,33,.93)), url("hiring-journal-bg.png") center/cover no-repeat; }
.delete-account-hero-inner { max-width: 760px; }
.delete-account-hero h1 { margin: 1.5rem 0 0; color: #fff; font-family: var(--font-display); font-size: clamp(3.2rem,7vw,5.5rem); font-weight: 400; line-height: 1; animation: legal-rise .9s cubic-bezier(.16,1,.3,1) both; }
.delete-account-hero h1 em { color: var(--emerald-glow); font-weight: 400; }
.delete-account-hero p { max-width: 610px; margin: 1.5rem auto 0; color: rgba(255,255,255,.72); line-height: 1.75; }
.delete-account-content { max-width: 780px; margin: 0 auto; padding: 4rem 1.5rem 5rem; }
.delete-account-card { padding: 0; }
.delete-account-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: rgba(23,128,90,.1); font-size: 1.35rem; }
.delete-account-card h2 { margin: 1.35rem 0 .8rem; font-size: clamp(2rem,5vw,2.7rem); }
.delete-account-card > p, .delete-account-note p { color: #4f5e58; line-height: 1.75; }
.delete-account-email { display: inline-flex; align-items: center; justify-content: center; margin-top: 1.5rem; padding: .95rem 1.2rem; border-radius: 11px; background: var(--primary); color: #fff; font-size: .9rem; font-weight: 650; }
.delete-account-note { display: flex; gap: .8rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.delete-account-note > span { flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: #fff; font-size: .75rem; font-weight: 700; }
.delete-account-note p { margin: 0; font-size: .9rem; }
.delete-account-warning { margin: 1.4rem auto 0; color: var(--muted); font-size: .78rem; line-height: 1.6; text-align: center; }
@media (max-width: 600px) { .delete-account-hero { min-height: 380px; } .delete-account-content { padding-top: 2.5rem; } .delete-account-email { width: 100%; font-size: .78rem; } }
