/* KLIRI Career Tour — Shared styles for home + hubs */

:root {
  --navy: #143A6B;
  --navy-deep: #0a1f3d;
  --teal: #1FA89A;
  --mint: #5FE3C7;
  --mint-pale: #E8F4F2;
  --mint-pale-2: #BFD9D5;
  --red-live: #FF3B30;
  --ink: #0a1f3d;
  --ink-2: #4a5568;
  --paper: #ffffff;
  --paper-2: #f7f8f9;
  --border: #e6e8eb;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
p { margin: 0 0 12px; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* Topbar */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; max-width: 1240px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy); font-weight: 800; text-decoration: none;
  letter-spacing: 0.02em;
}
.brand img { width: 36px; height: 36px; }
.brand-text { font-size: 15px; font-family: 'Inter', sans-serif; }
.brand-text .pipe { color: var(--border); margin: 0 6px; }
.brand-text .sub { color: var(--ink-2); font-weight: 500; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.nav-links a:hover { color: var(--teal); text-decoration: none; }
.nav-cta {
  background: var(--teal); color: white !important;
  padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
}
.nav-cta:hover { background: var(--navy); }

/* Hero — used in home + hubs */
.hero-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%, #1c5494 100%);
  color: white; padding: 96px 0 110px;
  position: relative; overflow: hidden;
}
.hero-section::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 80% 20%, rgba(95,227,199,0.20), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Background-image variant */
.hero-section--bg { background: var(--navy-deep); padding: 104px 0 120px; }
.hero-section--bg .hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-section--bg .hero-bg-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  display: block;
}
.hero-bg-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,31,61,0.55) 0%, rgba(10,31,61,0.78) 60%, rgba(10,31,61,0.92) 100%),
    radial-gradient(900px 500px at 85% 20%, rgba(95,227,199,0.22), transparent 70%);
}
.hero-section--bg .hero-inner { position: relative; z-index: 2; }

.audience-prompt {
  text-align: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint);
  margin: 8px 0 22px;
  opacity: 0.92;
}

/* Pill buttons (clearer, more clickable) */
.audience-grid--pills {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px; margin: 0 auto;
}
.audience-pill {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 14px 40px -16px rgba(0,0,0,0.4), 0 4px 14px -8px rgba(0,0,0,0.25);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  min-height: 96px;
}
.audience-pill:hover {
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 22px 50px -16px rgba(0,0,0,0.5), 0 6px 18px -6px rgba(0,0,0,0.3);
}
.audience-pill--candidate {
  background: #ffffff;
  color: var(--navy-deep);
  border-color: rgba(255,255,255,0.85);
}
.audience-pill--candidate:hover { background: #f4fffb; border-color: var(--mint); }
.audience-pill--employer {
  background: linear-gradient(135deg, var(--teal) 0%, var(--mint) 100%);
  color: var(--navy-deep);
  border-color: rgba(255,255,255,0.0);
}
.audience-pill--employer:hover { filter: brightness(1.04); }
.audience-pill__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(10,31,61,0.10);
  color: var(--navy-deep);
  flex-shrink: 0;
}
.audience-pill--employer .audience-pill__icon { background: rgba(10,31,61,0.15); }
.audience-pill__body {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 0;
  text-align: left;
}
.audience-pill__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(10,31,61,0.62);
}
.audience-pill__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px; font-weight: 700; line-height: 1.15;
  color: var(--navy-deep);
}
.audience-pill__sub {
  font-size: 13.5px; font-weight: 500;
  color: rgba(10,31,61,0.74);
  margin-top: 2px;
}
.audience-pill__arrow {
  font-size: 26px; font-weight: 700;
  color: var(--navy-deep);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.audience-pill:hover .audience-pill__arrow { transform: translateX(4px); }
@media (max-width: 768px) {
  .audience-grid--pills { grid-template-columns: 1fr; gap: 12px; }
  .audience-pill { padding: 18px 18px; min-height: 84px; }
  .audience-pill__icon { width: 44px; height: 44px; }
  .audience-pill__title { font-size: 21px; }
}
.hero-inner {
  position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--mint); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(95,227,199,0.18); }
.hero-section h1 { color: white; max-width: 920px; margin: 0 auto 18px; }
.hero-section h1 em {
  font-style: italic; color: var(--mint);
  font-weight: 400;
}
.hero-section .lede {
  max-width: 680px; margin: 0 auto 36px;
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(255,255,255,0.86);
}

/* Audience selector buttons */
.audience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 760px; margin: 0 auto;
}
.audience-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  padding: 28px 28px;
  border-radius: 18px;
  display: block; text-decoration: none; color: white;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
  text-align: left;
}
.audience-card:hover {
  transform: translateY(-3px); text-decoration: none;
  background: rgba(95,227,199,0.10);
  border-color: rgba(95,227,199,0.45);
}
.audience-card .tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--mint); text-transform: uppercase;
  margin-bottom: 12px;
}
.audience-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px; color: white; margin-bottom: 8px;
}
.audience-card p {
  color: rgba(255,255,255,0.78); font-size: 14px; margin: 0 0 16px;
}
.audience-card .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--mint);
}

/* Section */
.section { padding: 80px 0; }
.section-light { background: var(--paper-2); }
.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}
.section-head .label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 14px;
}
.section-head h2 { color: var(--navy); margin-bottom: 12px; }
.section-head p { color: var(--ink-2); font-size: 17px; }

/* City grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.city-card {
  position: relative;
  background: white; border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(20,58,107,0.16);
  text-decoration: none; border-color: var(--teal);
}
.city-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-deep);
  overflow: hidden;
}
.city-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.city-card:hover .city-card-image img { transform: scale(1.05); }
.city-card-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,31,61,0.65) 100%);
}
.city-card-body {
  padding: 22px 24px 26px;
}
.city-card-date {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 8px;
}
.city-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px; color: var(--navy); font-weight: 700;
  margin: 0 0 6px;
}
.city-card-meta { color: var(--ink-2); font-size: 14px; margin: 0; }
.city-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-weight: 700; font-size: 14px; color: var(--teal);
}
.city-card-status {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.94);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--navy); text-transform: uppercase;
}
.city-card-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
}
.city-card-status.live .dot { background: var(--red-live); box-shadow: 0 0 0 3px rgba(255,59,48,0.22); }
.city-card-status.upcoming .dot { background: var(--mint); }
.city-card-status.tba .dot { background: #9aa3ab; }

.city-card.disabled { pointer-events: auto; opacity: 0.92; }

/* Coming soon placeholder card */
.city-card--soon { border: 2px dashed rgba(95,227,199,0.55); background: linear-gradient(135deg, #F4FBF9 0%, #ECF4F2 100%); }
.city-card--soon:hover { border-color: var(--mint, #5FE3C7); transform: translateY(-3px); }
.city-card-image--soon {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #5FE3C7 0%, #2DB39E 100%);
  height: 180px;
}
.city-card-soon-mark {
  font-size: 88px; line-height: 1; font-weight: 300; color: white;
  text-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.city-card--soon .city-card-cta { color: #2DB39E; }

/* Pricing block (hub /employers) */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px; max-width: 980px; margin: 0 auto;
}
.pricing-card {
  background: white; border: 1px solid var(--border);
  padding: 28px 24px; border-radius: 18px;
  display: flex; flex-direction: column;
}
.pricing-card.feature {
  border-color: var(--teal); position: relative;
  box-shadow: 0 16px 38px rgba(31,168,154,0.16);
}
.pricing-card .ribbon {
  position: absolute; top: -12px; right: 20px;
  background: var(--teal); color: white; padding: 5px 12px;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
}
.pricing-card h3 { color: var(--navy); margin-bottom: 4px; font-size: 22px; }
.pricing-card .price {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 38px; color: var(--navy);
  margin: 14px 0 4px;
}
.pricing-card .unit { font-size: 13px; color: var(--ink-2); margin-bottom: 18px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0; flex: 1; }
.pricing-card li {
  padding-left: 24px; position: relative;
  font-size: 14px; color: var(--ink-2); margin-bottom: 8px;
}
.pricing-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 800;
}

/* Footer */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 56px 0 36px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px;
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
}
.footer-brand img { width: 40px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: white; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.7); font-size: 14px;
  margin-bottom: 10px; text-decoration: none;
}
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 36px; padding: 18px 32px 0;
  max-width: 1240px; margin-left: auto; margin-right: auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* Final CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--teal), var(--mint));
  color: var(--navy-deep);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--navy-deep); margin-bottom: 16px; }
.cta-strip p { font-size: 17px; color: rgba(10,31,61,0.78); margin-bottom: 28px; }
.cta-strip .btn {
  background: var(--navy-deep); color: white;
  padding: 16px 36px; border-radius: 999px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  display: inline-block; transition: transform 200ms ease;
}
.cta-strip .btn:hover { transform: translateY(-2px); }

/* Hero CTA (reusable for hero sections) */
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 28px;
}
.hero-cta-row .btn--hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint, #5FE3C7); color: var(--navy-deep, #0A1F3D);
  padding: 16px 32px; border-radius: 999px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  border: 2px solid transparent;
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.45);
}
.hero-cta-row .btn--hero:hover { transform: translateY(-2px); filter: brightness(1.04); }
.hero-cta-row .btn--hero--ghost {
  background: transparent; color: white; border-color: rgba(255,255,255,0.6);
}
.hero-cta-row .btn--hero--ghost:hover { background: rgba(255,255,255,0.08); }

/* Mobile */
@media (max-width: 768px) {
  .topbar-inner { padding: 14px 20px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .nav-links .nav-cta { padding: 8px 14px; }
  .container { padding: 0 20px; }
  .hero-section { padding: 64px 0 80px; }
  .audience-grid { grid-template-columns: 1fr; gap: 12px; }
  .audience-card { padding: 22px 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
