/* ======================================================================
   PHILADELPHIA VIRTUAL CAREER FAIR — KLIRI Editorial
   ====================================================================== */

:root {
  --ink: #0a1f3d;           /* deep navy ink */
  --ink-2: #143A6B;
  --paper: #ffffff;
  --paper-warm: #f0fafa;    /* light teal wash */
  --paper-dark: #0a1f3d;    /* deep KLIRI navy */
  --muted: #5a6b7a;
  --muted-light: #c7d2dd;
  --rule: #d8e4ec;
  --rule-dark: #1a3a5c;

  --accent: #1FA89A;        /* KLIRI teal */
  --accent-hover: #178B7E;
  --accent-2: #143A6B;      /* KLIRI navy */
  --accent-3: #5FE3C7;      /* bright teal accent */
  --palm: #1A6BC0;          /* KLIRI blue */
  --highlight: #5FE3C7;     /* bright teal highlight */

  --font-display: 'Inter', -apple-system, system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================= HEADER ============================= */
.site-header {
  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(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 14px;
}
.logo-text { white-space: nowrap; }
.logo-dot { color: var(--accent); padding: 0 2px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a { color: var(--muted); transition: color .2s; }
.site-nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--accent);
  color: var(--paper) !important;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-employer-link {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  border-left: 1px solid var(--rule);
  padding-left: 1rem;
  margin-left: 0.25rem;
  transition: color 0.18s ease;
  white-space: nowrap;
}
.nav-employer-link:hover { color: var(--accent); }
@media (max-width: 760px) { .nav-employer-link { display: none; } }

@media (max-width: 900px) {
  .site-nav { display: none; }
}

/* ============================= HERO ============================= */
.hero {
  padding: clamp(28px, 4vw, 64px) 0 clamp(28px, 3.5vw, 56px);
  position: relative;
  background: #0a1f3d;
  color: var(--paper);
  overflow: hidden;
}

/* Philadelphia skyline photo as hero background — visible, with gradient for text contrast */
.hero-skyline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(10,31,61,0.62) 0%, rgba(10,31,61,0.42) 45%, rgba(10,31,61,0.85) 100%),
    url("images/philadelphia-skyline.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.8);
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero .eyebrow {
  color: var(--paper);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow.dark { color: var(--paper); border-color: var(--rule-dark); background: transparent; }
.eyebrow-dot.dark { background: var(--highlight); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(0.9); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--paper);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hero-title .accent {
  color: var(--accent-3);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
  word-spacing: 0.06em;
  display: inline-block;
  padding-top: 0.08em;
}

.hero-subtitle {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 0 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

/* Hero feature badges (video interviews / chat) */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge svg { color: var(--accent-3); flex-shrink: 0; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero .btn-ghost {
  color: var(--paper);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}
.hero .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 4px 12px rgba(31,168,154,0.28);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(31,168,154,0.38);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.btn-large {
  padding: 22px 40px;
  font-size: 17px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.9vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--paper);
}
.stat-num-text {
  color: var(--accent-3);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* Hero stats — large protagonist version */
.hero-stats-hero {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  margin: 24px 0 28px;
  border: 1px solid rgba(95,227,199,0.28);
  border-top: 1px solid rgba(95,227,199,0.28);
  background: linear-gradient(135deg, rgba(20,58,107,0.55) 0%, rgba(10,31,61,0.35) 100%);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.45);
}
.hero-stats-hero .stat-big{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.hero-stats-hero .stat-num-xl{
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--paper);
  background: linear-gradient(180deg, #ffffff 0%, #BFD9D5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats-hero .stat-num-date{
  color: var(--accent-3);
  background: linear-gradient(180deg, #5FE3C7 0%, #1FA89A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats-hero .stat-num-text{
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--accent-3);
  background: linear-gradient(180deg, #5FE3C7 0%, #1FA89A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats-hero .stat-label{
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
  font-weight: 600;
}
.stat-divider{
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(95,227,199,0.35), transparent);
}

.hero-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(11,31,35,0.35);
}
.hero-media {
  border: 4px solid rgba(255,255,255,0.18);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero-media-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(11,31,35,0.85);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-media-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3B30;
  animation: pulse 1.5s ease-in-out infinite;
}
.hero-media-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(11,31,35,0.65);
  padding: 10px 14px;
  backdrop-filter: blur(8px);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media img { aspect-ratio: 4/3; }
  .hero-stats { gap: 24px; }
}

/* ============================= MARQUEE ============================= */
.marquee {
  overflow: hidden;
  background: var(--accent-2);
  color: var(--paper);
  padding: 20px 0;
  border-top: 1px solid var(--accent-2);
  border-bottom: 1px solid var(--accent-2);
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
}
.marquee-track span:nth-child(even) { color: var(--highlight); font-family: var(--font-display); font-style: normal; font-weight: 300; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================= SECTIONS ============================= */
.section {
  padding: clamp(36px, 4.5vw, 68px) 0;
}
.section-dark {
  background: var(--paper-dark);
  color: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  margin-bottom: 28px;
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-weight: 500;
}
.section-dark .section-label { color: var(--muted-light); border-color: var(--rule-dark); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 22ch;
}
.section-heading .highlight {
  background: linear-gradient(to bottom, transparent 62%, var(--highlight) 62%);
  padding: 0 4px;
}
.section-dark .section-heading .highlight {
  color: var(--ink);
}

.section-body {
  max-width: 68ch;
  text-align: left;
}
.section-body p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
  text-align: left;
}
.section-body p:last-child { margin-bottom: 0; }
.section-dark .section-body p { color: var(--muted-light); }

@media (max-width: 720px) {
  .section-grid { grid-template-columns: 1fr; }
}

/* ============================= HOW IT WORKS ============================= */
.section-how {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(28px, 3.5vw, 56px) 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.how-step {
  background: var(--paper);
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: 6px;
  border: 1px solid var(--rule);
  text-align: left;
}
.how-illustration {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  overflow: hidden;
}
.how-illustration svg { width: 100%; height: 100%; display: block; }
.how-illustration-1 { background: linear-gradient(135deg, #E8F4F2 0%, #BFE9DF 100%); }
.how-illustration-2 { background: linear-gradient(135deg, #BFE9DF 0%, #5FE3C7 100%); }
.how-illustration-3 { background: linear-gradient(135deg, #143A6B 0%, #0a1f3d 100%); }
.how-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 6px;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.how-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 860px) { .how-grid { grid-template-columns: 1fr; } }

/* ============================= BENEFITS ============================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
}
.benefit-card {
  background: var(--paper-dark);
  padding: 32px 28px;
  transition: background .3s;
}
.benefit-card:hover { background: #122e36; }
.benefit-illustration {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  overflow: hidden;
}
.benefit-illustration svg { width: 100%; height: 100%; display: block; }
.benefit-num {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent-3);
  font-weight: 600;
  margin-bottom: 10px;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--paper);
}
.benefit-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-light);
  margin: 0;
}

@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ============================= EMPLOYERS BANNER ============================= */
.universities-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--paper-warm);
  padding: clamp(40px, 6vw, 80px);
  border-radius: 4px;
  border: 1px solid var(--rule);
}
.universities-copy .eyebrow { margin-bottom: 24px; }
.universities-copy .section-heading {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
  max-width: 18ch;
}
.universities-copy p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 48ch;
  margin: 0;
}
.universities-visual {
  text-align: center;
  border-left: 1px solid var(--rule);
  padding-left: 48px;
}
.univ-number {
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--ink);
}
.univ-number span { color: var(--accent); }
.logo-img { height: 32px; width: auto; }
.univ-label {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 820px) {
  .universities-banner { grid-template-columns: 1fr; text-align: left; }
  .universities-visual { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 32px; text-align: left; }
}

/* ============================= TESTIMONIAL ============================= */
.testimonial-section {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.testimonial-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.testimonial { margin: 0; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 24px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--muted);
}
.testimonial-author strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 720px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================= FORM ============================= */
.section-form {
  background: var(--paper-dark);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 10% 0%, rgba(255,107,53,0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(78,187,184,0.10), transparent 60%);
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.form-copy .eyebrow { margin-bottom: 32px; }
.form-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 24px;
  color: var(--paper);
}
.form-heading .accent {
  color: var(--accent-3);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  word-spacing: 0.06em;
  display: inline-block;
  padding-top: 0.08em;
}
.form-desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted-light);
  margin: 0 0 32px;
  max-width: 46ch;
}
.form-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.form-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--paper);
  line-height: 1.5;
}
.form-benefits li strong { color: var(--paper); font-weight: 700; }
.form-benefit-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.registration-form {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 6px;
  display: grid;
  gap: 18px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
}
.form-row { display: grid; gap: 18px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-required-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.02em;
}
.req-star {
  color: var(--accent);
  font-weight: 700;
  margin-left: 2px;
}
.optional {
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  margin-left: 4px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select {
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 15px;
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,168,154,0.18);
}
/* Highlight required fields with a left accent bar */
.form-field input[required],
.form-field select[required] {
  border-left: 3px solid var(--accent);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5 L6 6.5 L11 1.5' stroke='%23333' stroke-width='1.5' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form-checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
.form-checkbox label {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  margin-top: 8px;
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 6px 16px rgba(31,168,154,0.32);
}
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:disabled { opacity: 0.6; cursor: wait; }

.form-privacy {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

.form-success {
  background: var(--paper);
  color: var(--ink);
  padding: 48px 32px;
  border-radius: 4px;
  text-align: center;
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.form-success p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================= RESOURCES (candidates) ============================= */
.section-resources {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.resources-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}
.resources-head .eyebrow { margin-bottom: 20px; }
.resources-head .section-heading {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 12px;
  max-width: 22ch;
}
.resources-intro {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.resource-card {
  background: var(--paper);
  padding: 24px 24px 28px;
  border-radius: 6px;
  border: 1px solid var(--rule);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.resource-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(11,31,35,0.18);
}
.resource-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.resource-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--ink);
}
.resource-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .resources-grid { grid-template-columns: 1fr; } }

/* ============================= CHECKBOX PILLS (form) ============================= */
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .15s;
  user-select: none;
}
.check-pill input { width: 14px; height: 14px; accent-color: var(--accent); margin: 0; }
.check-pill:hover { border-color: var(--accent); }
.check-pill:has(input:checked) {
  background: rgba(31,168,154,0.10);
  border-color: var(--accent);
  color: var(--accent-2);
  font-weight: 600;
}

/* ============================= FLOATING CTA ============================= */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #E53935;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(229,57,53,0.45), 0 2px 6px rgba(229,57,53,0.25);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.floating-cta:hover {
  background: #C62828;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229,57,53,0.55), 0 4px 10px rgba(229,57,53,0.3);
}
.floating-cta-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 1.8s ease-in-out infinite;
}
@media (max-width: 560px) {
  .floating-cta { bottom: 14px; right: 14px; padding: 12px 18px; font-size: 13px; }
}

/* ============================= FINAL CTA ============================= */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #1FA89A 0%, #0a1f3d 55%, #143A6B 100%);
  color: var(--paper);
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.final-cta-skyline {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 80' fill='none'><path d='M0 80 L0 60 L20 60 L20 35 L40 35 L40 50 L60 50 L60 25 L80 25 L80 15 L100 15 L100 8 L110 8 L110 30 L130 30 L130 45 L150 45 L150 20 L170 20 L170 12 L190 12 L190 38 L210 38 L210 28 L230 28 L230 50 L250 50 L250 32 L270 32 L270 42 L290 42 L290 55 L320 55 L320 80 Z' fill='%235FE3C7' opacity='0.15'/><circle cx='105' cy='6' r='3' fill='%235FE3C7' opacity='0.5'/></svg>");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  pointer-events: none;
  opacity: 0.9;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}
.final-cta-desc {
  font-size: 18px;
  color: var(--muted-light);
  margin: 0 0 40px;
  max-width: 54ch;
  margin-inline: auto;
}

/* ============================= FOOTER ============================= */
.site-footer {
  background: var(--paper-dark);
  color: var(--paper);
  padding: 48px 0 32px;
  border-top: 1px solid var(--rule-dark);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-brand .logo { color: var(--paper); }
.footer-brand p {
  font-size: 13px;
  color: var(--muted-light);
  margin: 12px 0 0;
}
.footer-meta {
  text-align: right;
  font-size: 12px;
  color: var(--muted-light);
}
.footer-meta p { margin: 0 0 12px; }
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted-light);
  transition: color .15s;
}
.footer-links a:hover { color: var(--paper); }

@media (max-width: 600px) {
  .footer-meta, .footer-links { text-align: left; justify-content: flex-start; }
}

/* Security badges in footer */
.footer-security {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-sec-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-sec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  color: var(--paper);
  transition: background .15s, border-color .15s;
  text-decoration: none;
}
.sec-badge:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--accent-3);
}
.sec-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(95,227,199,0.16);
  color: var(--accent-3);
  flex-shrink: 0;
}
.sec-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sec-badge-text strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.sec-badge-text span {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 2px;
}
.footer-sec-infra {
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted-light);
  margin: 0;
  max-width: 80ch;
}
.footer-sec-infra strong { color: var(--paper); font-weight: 600; }
.footer-sec-infra a {
  color: var(--accent-3);
  text-decoration: none;
  white-space: nowrap;
}
.footer-sec-infra a:hover { text-decoration: underline; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================= ROUND 3 ADDITIONS ============================= */

/* Section 01 \u2014 The Fair with steps to the right */
.section-about{ padding-top: clamp(48px, 5vw, 80px); padding-bottom: clamp(48px, 5vw, 80px); }
.section-about .section-label{ margin-bottom: 28px; }
.about-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about-copy .section-heading{
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin: 0 0 18px;
}
.about-copy .section-body{
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
.about-copy .section-body p{ margin: 0 0 14px; max-width: 56ch; }

.about-steps{
  background: linear-gradient(160deg, #E8F4F2 0%, #ffffff 100%);
  border: 1px solid #BFD9D5;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  position: sticky;
  top: 96px;
}
.step-list{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step-list-item{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.step-list-num{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1FA89A 0%, #143A6B 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -8px rgba(20,58,107,0.45);
}
.step-list-item h3{
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.step-list-item p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: #25324a;
}
.about-steps-cta{
  display: block;
  text-align: center;
  width: 100%;
}

@media (max-width: 860px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-steps{ position: static; }
}

/* Section 02 \u2014 benefit cards with REAL images */
.benefit-image{
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
  position: relative;
}
.benefit-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.benefit-card:hover .benefit-image img{ transform: scale(1.03); }

/* Hide leftover SVG illustration blocks if present */
.benefit-card .benefit-illustration{ display: none; }

/* Resource cards as clickable links */
a.resource-card{
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
a.resource-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(20,58,107,0.15);
  border-color: #1FA89A;
}
.resource-cta{
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* Hero subtitle margin tightening to make room for big stats */
.hero-subtitle{ margin-bottom: 18px; }
.hero-badges{ margin-top: 18px; }

@media (max-width: 720px){
  .hero-stats-hero{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 20px;
  }
  .hero-stats-hero .stat-divider{ width: 60%; height: 1px; background: linear-gradient(90deg, transparent, rgba(95,227,199,0.35), transparent); justify-self: center; }
  .hero-stats-hero .stat-num-xl{ font-size: 44px; }
}

/* === Hero coming-soon card (v1.6) === */
.hero-media-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-coming-soon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(11,31,35,0.08);
  border-radius: 8px;
  box-shadow: 0 12px 32px -16px rgba(11,31,35,0.25);
  color: #0B1F23;
}
.hcs-avatars {
  display: inline-flex;
  align-items: center;
}
.hcs-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DDE6E8, #BFCBCE);
  color: rgba(11,31,35,0.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  filter: blur(0.4px);
}
.hcs-avatar + .hcs-avatar { margin-left: -10px; }
.hcs-avatar.hcs-a5 {
  background: #0B1F23;
  color: #fff;
  filter: none;
  font-size: 13px;
}
.hcs-text { min-width: 0; }
.hcs-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 2px;
}
.hcs-sub {
  font-size: 12px;
  color: rgba(11,31,35,0.65);
  line-height: 1.45;
}
.hcs-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0B1F23;
  background: rgba(11,31,35,0.06);
  padding: 6px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .hero-coming-soon {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "avatars status"
      "text text";
    gap: 12px;
  }
  .hcs-avatars { grid-area: avatars; }
  .hcs-status { grid-area: status; justify-self: end; }
  .hcs-text { grid-area: text; }
}
/* === end coming-soon === */

/* v1.6 hero-media adjustments */
.hero-media {
  overflow: visible !important; /* allow coming-soon card to render below */
}
.hero-media > img {
  border-radius: 4px;
}
.hero-media .hero-media-overlay,
.hero-media .hero-media-caption {
  /* already absolute - positioned over the image */
}
.hero-media .hero-coming-soon {
  margin-top: 16px;
}

/* v1.6 hero-media-frame restructure */
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  overflow: visible !important;
}
.hero-media-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(11,31,35,0.35);
  border: 4px solid rgba(255,255,255,0.18);
}
.hero-media-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .hero-media-frame img { aspect-ratio: 4/3; }
}

