/* =========================================================
   Hire Wisely — shared stylesheet
   Brand: teal #00C7BD · dark teal #243E40 · near-black teal #1B3436
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --teal: #00c7bd;
  --teal-600: #00a59d; /* hover/darker */
  --teal-700: #088b84;
  --teal-soft: #e4faf8; /* tint surface */
  --teal-tint: #f1fcfb;
  --dark-teal: #243e40;
  --dark-teal-2: #1b3436; /* near-black teal */
  --dark-teal-3: #15282a;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f7faf9;
  --slate-50: #f6f8f8;
  --slate-100: #eef2f2;
  --slate-200: #e2e9e9;
  --slate-300: #cdd8d8;
  --slate-500: #647273;
  --slate-600: #4b5859;
  --slate-700: #344042;
  --slate-900: #142224;

  /* Semantic (light) */
  --color-bg: var(--white);
  --color-surface: var(--off-white);
  --color-text: var(--slate-900);
  --color-text-muted: var(--slate-500);
  --color-border: var(--slate-200);

  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.6vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4.5vw, 4.75rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(20, 34, 36, 0.06), 0 1px 3px rgba(20, 34, 36, 0.05);
  --shadow-md: 0 8px 24px rgba(20, 34, 36, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 34, 36, 0.12);
  --shadow-teal: 0 16px 40px rgba(0, 199, 189, 0.25);

  --content: 1200px;
  --content-narrow: 760px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 220ms var(--ease);

  --font-display: 'General Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--slate-900);
}
p {
  text-wrap: pretty;
}
::selection {
  background: rgba(0, 199, 189, 0.22);
}
:focus-visible {
  outline: 2px solid var(--teal-700);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.section--tight {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--teal);
}
.eyebrow--center::before {
  display: none;
}
.lead {
  font-size: var(--text-lg);
  color: var(--slate-600);
  line-height: 1.55;
}
.muted {
  color: var(--color-text-muted);
}
.center {
  text-align: center;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center {
  margin-inline: auto;
}
.section-head h2 {
  font-size: var(--text-2xl);
  margin: var(--space-4) 0 var(--space-4);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-full);
  transition:
    transform var(--t),
    background var(--t),
    box-shadow var(--t),
    color var(--t),
    border-color var(--t);
  white-space: nowrap;
}
.btn svg {
  width: 1.05em;
  height: 1.05em;
}
.btn-primary {
  background: var(--teal);
  color: var(--dark-teal-2);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #1ad3c9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.btn-dark {
  background: var(--dark-teal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-teal-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--slate-900);
  border: 1.5px solid var(--slate-300);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-700);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--dark-teal-2);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline-light:hover {
  border-color: var(--teal);
  background: rgba(0, 199, 189, 0.12);
}
.btn-lg {
  padding: 1rem 1.8rem;
  font-size: var(--text-base);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--teal-700);
}
.link-arrow svg {
  width: 1em;
  height: 1em;
  transition: transform var(--t);
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--t),
    box-shadow var(--t),
    background var(--t);
}
.site-header.scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.brand .mono {
  width: 38px;
  height: 38px;
  color: var(--teal);
  flex-shrink: 0;
}
.brand .wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1.02rem;
  color: var(--slate-900);
  line-height: 1;
}
.brand .wordmark span {
  color: var(--teal-700);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}
.nav-links > li > a,
.nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--slate-700);
  transition:
    color var(--t),
    background var(--t);
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a[aria-current='page'] {
  color: var(--teal-700);
  background: var(--teal-tint);
}
.nav-cta {
  margin-left: var(--space-2);
}
/* dropdown */
.has-dropdown {
  position: relative;
}
.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
}
.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown:focus-within .dropdown-toggle svg {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--t),
    transform var(--t),
    visibility var(--t);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-md);
  transition: background var(--t);
}
.dropdown a:hover {
  background: var(--teal-tint);
}
.dropdown .di {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-700);
}
.dropdown .di svg {
  width: 18px;
  height: 18px;
}
.dropdown b {
  display: block;
  font-size: var(--text-sm);
  color: var(--slate-900);
  font-weight: 600;
}
.dropdown small {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
}
.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--slate-900);
}
.burger svg {
  width: 26px;
  height: 26px;
  margin-inline: auto;
}

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  z-index: 55;
  background: var(--white);
  padding: var(--space-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  color: var(--slate-900);
}
.mobile-nav .sub a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--slate-600);
  padding-left: var(--space-4);
}
.mobile-nav .m-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-700);
  margin-top: var(--space-6);
  font-weight: 700;
}
.mobile-nav .btn {
  width: 100%;
  margin-top: var(--space-6);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--dark-teal-2);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--dark-teal-2) 18%,
    rgba(27, 52, 54, 0.7) 48%,
    rgba(27, 52, 54, 0.15) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 12vw, 9rem);
  max-width: 760px;
}
.hero h1 {
  color: var(--white);
  font-size: var(--text-3xl);
  font-weight: 600;
  margin: var(--space-5) 0;
}
.hero h1 .accent {
  color: var(--teal);
}
.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.hero-eyebrow {
  color: var(--teal);
}
.hero-eyebrow::before {
  background: var(--teal);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--teal);
  font-weight: 600;
}
.hero-stats div span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: var(--space-6);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-100);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.05);
}
.card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.card-body h3 {
  font-size: var(--text-lg);
}
.card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex: 1;
}
.card-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
}

/* product card (icon based) */
.prod-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.prod-ico {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-700);
}
.prod-ico svg {
  width: 26px;
  height: 26px;
}
.prod-card h3 {
  font-size: var(--text-lg);
}
.prod-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex: 1;
}

/* feature item */
.feat {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.feat .fi {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-700);
}
.feat .fi svg {
  width: 24px;
  height: 24px;
}
.feat h3 {
  font-size: var(--text-lg);
}
.feat p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- Dark band ---------- */
.band-dark {
  background: var(--dark-teal-2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.band-dark h2,
.band-dark h3 {
  color: var(--white);
}
.band-dark .muted,
.band-dark p {
  color: rgba(255, 255, 255, 0.72);
}
.band-dark .eyebrow {
  color: var(--teal);
}
.band-dark .eyebrow::before {
  background: var(--teal);
}
.band-dark .feat .fi {
  background: rgba(0, 199, 189, 0.14);
  color: var(--teal);
}
.guide-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--t),
    transform var(--t),
    background var(--t);
}
.guide-card:hover {
  border-color: rgba(0, 199, 189, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.guide-card h3 {
  color: var(--white);
  font-size: var(--text-lg);
}
.guide-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  flex: 1;
}
.guide-card .prod-ico {
  background: rgba(0, 199, 189, 0.14);
  color: var(--teal);
}
.guide-meta {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.guide-card .link-arrow {
  color: var(--teal);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(0, 199, 189, 0.35), transparent 70%);
  pointer-events: none;
}
.glow-1 {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
}
.glow-2 {
  width: 420px;
  height: 420px;
  bottom: -200px;
  left: -140px;
}

/* dark feature card */
.dcard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition:
    transform var(--t),
    background var(--t),
    border-color var(--t);
}
.dcard:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 199, 189, 0.5);
}
.dcard .fi {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: rgba(0, 199, 189, 0.14);
  color: var(--teal);
}
.dcard .fi svg {
  width: 24px;
  height: 24px;
}
.dcard h3 {
  font-size: var(--text-lg);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-teal-2) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  font-size: var(--text-2xl);
  max-width: 640px;
  margin: 0 auto var(--space-4);
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto var(--space-8);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse .split-media {
  order: 2;
}
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--slate-700);
}
.check-list .ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--teal-soft);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.check-list .ck svg {
  width: 13px;
  height: 13px;
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--color-border);
  padding-block: clamp(4rem, 9vw, 7rem) clamp(3rem, 6vw, 4.5rem);
}
.page-hero h1 {
  font-size: var(--text-2xl);
  margin: var(--space-4) 0;
  max-width: 16ch;
}
.page-hero .lead {
  max-width: 600px;
}
.page-hero.dark {
  background: var(--dark-teal-2);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.page-hero.dark h1 {
  color: var(--white);
}
.page-hero.dark .lead {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero.dark .eyebrow {
  color: var(--teal);
}
.page-hero.dark .eyebrow::before {
  background: var(--teal);
}

/* breadcrumb */
.crumb {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.crumb a:hover {
  color: var(--teal-700);
}
.page-hero.dark .crumb {
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: var(--space-6);
  counter-reset: step;
}
.step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.step .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--dark-teal-2);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
  display: grid;
  place-items: center;
}
.step h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- Stat tiles ---------- */
.stat-tile {
  text-align: center;
  padding: var(--space-6);
}
.stat-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--teal-700);
  font-weight: 600;
}
.stat-tile span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- Blog / article ---------- */
.article {
  max-width: var(--content-narrow);
  margin-inline: auto;
}
.article-hero img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--slate-900);
}
.author-chip .av {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--dark-teal-2);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}
.prose {
  font-size: var(--text-base);
  color: var(--slate-700);
  line-height: 1.75;
}
.prose > * + * {
  margin-top: var(--space-5);
}
.prose h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-12);
  color: var(--slate-900);
}
.prose h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-8);
  color: var(--slate-900);
}
.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.prose ul li {
  position: relative;
  padding-left: 1.5rem;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--teal);
}
.prose blockquote {
  border-left: 3px solid var(--teal);
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-lg);
  font-family: var(--font-display);
  color: var(--slate-900);
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.prose strong {
  color: var(--slate-900);
}
.prose a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- FAQ accordion ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--slate-900);
}
.faq-q .pm {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--teal-soft);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  transition: transform var(--t);
}
.faq-item.open .faq-q .pm {
  transform: rotate(45deg);
}
.faq-q .pm svg {
  width: 16px;
  height: 16px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
}
.faq-a-inner {
  padding-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 70ch;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.field {
  margin-bottom: var(--space-5);
}
.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--slate-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  font-size: var(--text-sm);
  transition:
    border-color var(--t),
    box-shadow var(--t);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 199, 189, 0.16);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.info-card {
  background: var(--off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.info-card .ii {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--teal-soft);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.info-card .ii svg {
  width: 20px;
  height: 20px;
}
.info-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.info-card p,
.info-card a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.info-card a:hover {
  color: var(--teal-700);
}
.map-card {
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-teal-2) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}
.map-card h3 {
  color: var(--white);
  font-size: var(--text-base);
}
.map-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
}
.form-note {
  margin-top: var(--space-4);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--teal-soft);
  color: var(--teal-700);
  border: 1px solid rgba(0, 199, 189, 0.3);
  font-size: var(--text-sm);
  font-weight: 500;
}
.form-note[hidden] {
  display: none;
}

/* ---------- Founder spotlight ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.founder-card {
  background: linear-gradient(160deg, var(--dark-teal) 0%, var(--dark-teal-2) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  background: rgba(0, 199, 189, 0.16);
  border: 2px solid rgba(0, 199, 189, 0.4);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-5);
}
.founder-card h3 {
  color: var(--white);
  font-size: var(--text-xl);
}
.founder-card .role {
  color: var(--teal);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.founder-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
}

/* values */
.value {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition:
    border-color var(--t),
    transform var(--t);
}
.value:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}
.value .vn {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--teal-700);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.value h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}
.value p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* pill badges */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--teal-soft);
  color: var(--teal-700);
}

/* comparison table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
table.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
table.cmp th,
table.cmp td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-border);
}
table.cmp thead th {
  background: var(--off-white);
  font-family: var(--font-display);
  color: var(--slate-900);
  font-weight: 600;
}
table.cmp tbody tr:last-child td {
  border-bottom: none;
}
table.cmp td:first-child {
  font-weight: 600;
  color: var(--slate-900);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-teal-3);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(3.5rem, 7vw, 5rem) var(--space-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .flogo {
  margin-bottom: var(--space-4);
}
.footer-brand .flogo img {
  width: 200px;
  height: auto;
}
.footer-brand p {
  font-size: var(--text-sm);
  max-width: 38ch;
  margin-bottom: var(--space-5);
}
.footer-news {
  display: flex;
  gap: 0.5rem;
  max-width: 320px;
}
.footer-news input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: var(--text-sm);
}
.footer-news input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.footer-news input:focus {
  outline: none;
  border-color: var(--teal);
}
.footer-news button {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--teal);
  color: var(--dark-teal-2);
  display: grid;
  place-items: center;
  transition:
    background var(--t),
    transform var(--t);
}
.footer-news button:hover {
  transform: translateY(-2px);
  background: #1ad3c9;
}
.footer-news button svg {
  width: 18px;
  height: 18px;
}
.footer-col h4 {
  color: var(--white);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--t);
}
.footer-col a:hover {
  color: var(--teal);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-8);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}
.socials {
  display: flex;
  gap: var(--space-2);
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    color var(--t),
    border-color var(--t),
    background var(--t);
}
.socials a:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(0, 199, 189, 0.1);
}
.socials svg {
  width: 18px;
  height: 18px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay='1'] {
  transition-delay: 0.08s;
}
.reveal[data-delay='2'] {
  transition-delay: 0.16s;
}
.reveal[data-delay='3'] {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10) var(--space-8);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .founder {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .founder-card {
    order: -1;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: grid;
    place-items: center;
  }
  .mobile-nav {
    display: block;
  }
}
@media (max-width: 560px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
