/* ============================================================
   Home Page Styles
   home.css
   ============================================================ */

/* ── TFS Hero (jobs homepage) ── */
.tfs-hero {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.tfs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.tfs-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,217,.18) 0%, transparent 68%);
  pointer-events: none;
}
.tfs-hero__body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.tfs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.tfs-hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}
.tfs-hero__headline {
  font-family: 'DM Serif Display', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.tfs-hero__headline em {
  font-style: italic;
  color: var(--blue-light);
}
.tfs-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.tfs-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tfs-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s;
}
.tfs-hero__cta-primary:hover {
  background: #0057c8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,87,217,.3);
}
.tfs-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: all .18s;
}
.tfs-hero__cta-secondary:hover {
  border-color: var(--blue-light);
  color: #fff;
  transform: translateY(-1px);
}
.tfs-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.tfs-hero__stat { text-align: center; }
.tfs-hero__stat-num {
  font-family: 'DM Serif Display', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.tfs-hero__stat-num span { color: var(--blue-light); }
.tfs-hero__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  margin-top: 3px;
  font-weight: 500;
}
.tfs-hero__stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.1);
}
@media (max-width: 640px) {
  .tfs-hero { padding: 52px 0 40px; }
  .tfs-hero__stat-div { display: none; }
  .tfs-hero__stats { gap: 16px 24px; }
}

/* ── Hero ── */
.hero-section {
  padding: 80px 48px 60px;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background: var(--navy, #0b1120);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
/* grid texture */

/* radial glow */
.hero-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  margin-bottom: 26px;
}
.eyebrow-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.eyebrow-dot [data-lucide] { width: 10px; height: 10px; color: #fff; }
.hero-title {
  font-family: 'DM Serif Display', sans-serif;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: italic;
  color: var(--blue-light, var(--brand));
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue-light, var(--brand));
  border-radius: 2px;
  opacity: 0.45;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 34px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
/* ghost btn on dark hero */
.hero-actions .btn-ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: 'DM Serif Display', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-num .accent { color: var(--blue-light, var(--brand)); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 3px; }
.hero-stat-div { width: 1px; height: 34px; background: rgba(255,255,255,.1); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-bg-glow { display: none; }
/* Main card — dark glass */
.hero-card-main {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,.4);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.hc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hc-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }
.hc-count { font-size: 12px; color: rgba(255,255,255,.3); }
/* Job row cards inside the hero card */
.job-preview-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px;
  margin-bottom: 9px;
  cursor: pointer;
  transition: all 0.18s;
}
.job-preview-card:last-child { margin-bottom: 0; }
.job-preview-card:hover { border-color: rgba(0,87,217,.55); background: rgba(0,87,217,.08); }
.jpc-logo {
  width: 40px; height: 40px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'DM Serif Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
}
.jpc-logo.blue   { background: rgba(0,87,217,.18); color: var(--blue-light, var(--brand)); }
.jpc-logo.green  { background: rgba(5,150,105,.18); color: #34d399; }
.jpc-logo.purple { background: rgba(124,58,237,.18); color: #a78bfa; }
.jpc-logo [data-lucide] { width: 18px; height: 18px; }
.jpc-info { flex: 1; min-width: 0; }
.jpc-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jpc-meta { font-size: 11px; color: rgba(255,255,255,.35); }
/* Float cards — dark glass */
.hero-float-card {
  position: absolute;
  background: rgba(13,24,41,.85);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 13px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}
.float-1 { top: -18px; right: -18px; animation-delay: 0s; }
.float-2 { bottom: -14px; left: -22px; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-label { font-size: 10px; color: rgba(255,255,255,.35); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .07em; }
.fc-value { font-family: 'DM Serif Display', sans-serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.fc-value span { color: var(--blue-light, var(--brand)); }
.fc-trend { font-size: 11px; color: #34d399; display: flex; align-items: center; gap: 2px; margin-top: 4px; }
.fc-trend [data-lucide] { width: 11px; height: 11px; }
/* "New" badges inside the hero dark card */
.hero-card-main .badge-brand {
  background: rgba(0,87,217,.22);
  color: var(--blue-light, var(--brand));
  border-color: rgba(0,87,217,.35);
}

/* ── Ticker ── */
.ticker-bar {
  background: var(--brand);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 52px;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.ticker-item [data-lucide] { width: 13px; height: 13px; color: rgba(255,255,255,.5); }

/* ── How It Works ── */
.how-section { background: var(--white); }
.how-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.how-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  transition: all 0.2s;
}
.how-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.how-card-accent {
  background: var(--brand);
  border-color: var(--brand-dark);
}
.how-card-accent .how-num { color: rgba(255,255,255,.3); }
.how-card-accent .how-title { color: #fff; }
.how-card-accent .how-desc { color: rgba(255,255,255,.75); }
.how-card-accent .how-icon { background: rgba(255,255,255,.15); color: #fff; }
.how-num { font-family: 'DM Serif Display', sans-serif; font-size: 40px; font-weight: 700; color: var(--border-dark); line-height: 1; margin-bottom: 14px; }
.how-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--brand);
}
.how-icon [data-lucide] { width: 22px; height: 22px; }
.how-title { font-family: 'DM Serif Display', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.how-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ── Categories ── */
.categories-section { background: var(--paper); }
.categories-section .section-desc { margin-bottom: 36px; }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.cat-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateX(4px); }
.cat-card-cta { background: var(--brand); border-color: var(--brand-dark); }
.cat-card-cta .cat-name { color: #fff; }
.cat-card-cta .cat-count { color: rgba(255,255,255,.65); }
.cat-card-cta .cat-icon { background: rgba(255,255,255,.15); color: #fff; }
.cat-card-cta .cat-arrow { color: rgba(255,255,255,.6); }
.cat-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--brand-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.cat-icon [data-lucide] { width: 20px; height: 20px; }
.cat-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.cat-count { font-size: 12px; color: var(--ink-muted); }
.cat-arrow { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink-muted); transition: transform 0.18s; }
.cat-card:hover .cat-arrow { transform: translateY(-50%) translateX(3px); }

/* ── Featured Jobs ── */
.featured-section { background: var(--white); }
.feat-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feat-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  cursor: pointer;
  transition: all 0.22s;
}
.feat-card:hover { border-color: var(--brand-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.feat-logo {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-pale), #c2dffb);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--brand);
}
.feat-title { font-family: 'DM Serif Display', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.feat-company { font-size: 13px; font-weight: 500; color: var(--brand); margin-bottom: 12px; }
.feat-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.feat-meta span { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--ink-muted); }
.feat-meta [data-lucide] { width: 11px; height: 11px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 5px; }

/* ── For Employers ── */
.employer-section { background: var(--paper); }
.employer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.employer-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0 28px; }
.employer-perks li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-soft); }
.employer-perks [data-lucide] { width: 17px; height: 17px; color: var(--success); flex-shrink: 0; }
.employer-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.ev-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; }
.ev-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ev-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.ev-role { margin-bottom: 16px; }
.ev-role-info { display: flex; justify-content: space-between; margin-bottom: 6px; }
.ev-role-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.ev-role-meta { font-size: 12px; color: var(--ink-muted); }
.ev-role-bar { height: 6px; background: var(--border-soft); border-radius: 3px; overflow: hidden; }
.ev-bar-fill { height: 100%; background: var(--brand); border-radius: 3px; }
.ev-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.ev-stat { text-align: center; padding: 12px; background: var(--paper); border-radius: 10px; }
.ev-stat-num { font-family: 'DM Serif Display', sans-serif; font-size: 24px; font-weight: 700; color: var(--brand); }
.ev-stat-lbl { font-size: 11px; color: var(--ink-muted); margin-top: 3px; }

/* ── Testimonials ── */
.testimonials-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.testi-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.testi-stars { font-size: 16px; color: #f59e0b; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-pale), #c2dffb);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--ink-muted); }

/* ── CTA Banner ── */
.cta-section { background: var(--paper); }
.cta-banner {
  background: var(--navy, #0b1120);
  border-radius: var(--r-2xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-title { font-family: 'DM Serif Display', sans-serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cta-desc { font-size: 15px; color: rgba(255,255,255,.7); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-section { padding: 60px 24px 50px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .how-grid, .cat-grid, .feat-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .employer-inner { grid-template-columns: 1fr; }
  .employer-visual { display: none; }
  .section { padding: 60px 24px; }
}
@media (max-width: 540px) {
  .how-grid, .cat-grid, .feat-grid, .testi-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ══ Newsletter Section ══ */
.nl {
  background: var(--navy, #0b1120);
  position: relative;
  overflow: hidden;
}

/* ── Layout ── */
.nl-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* ── Left panel ── */
.nl-left {
  padding: 80px 60px 80px 0;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nl-issue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.nl-issue-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #0173F2;
  background: rgba(1,115,242,.12);
  border: 1px solid rgba(1,115,242,.2);
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nl-issue-freq {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}

.nl-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
}
.nl-headline em {
  font-style: italic;
  color: var(--brand, #0173F2);
}

.nl-desc {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.nl-contents {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.nl-content-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nl-content-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  flex-shrink: 0;
  width: 20px;
}
.nl-content-text {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}
.nl-content-text strong {
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* ── Right panel ── */
.nl-right {
  padding: 80px 0 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nl-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.nl-avatars { display: flex; }
.nl-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--navy, #0b1120);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -7px;
  flex-shrink: 0;
}
.nl-avatar:first-child { margin-left: 0; }
.nl-proof-text {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.4;
}
.nl-proof-text strong {
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* Form card */
.nl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 20px;
}
.nl-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.nl-card-sub {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}

.nl-field {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color .15s;
}
.nl-field:focus-within {
  border-color: rgba(1,115,242,.6);
  background: rgba(1,115,242,.04);
}
.nl-input {
  flex: 1;
  padding: 11px 14px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  min-width: 0;
  border: none;
  outline: none;
  box-shadow: none;
}
.nl-input::placeholder { color: rgba(255,255,255,.2); }

.nl-submit {
  width: 100%;
  padding: 12px;
  background: #0173F2;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: .01em;
}
.nl-submit:hover {
  background: #0562cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(1,115,242,.35);
}
.nl-submit:disabled { opacity: .6; cursor: wait; transform: none; box-shadow: none; }
.nl-submit svg { width: 14px; height: 14px; flex-shrink: 0; }

.nl-recent-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.2);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.nl-recent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nl-issue-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 6px;
  cursor: default;
  transition: background .12s;
}
.nl-issue-preview:hover { background: rgba(255,255,255,.05); }
.nl-issue-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
  width: 52px;
}
.nl-issue-title {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nl-issue-arrow {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.nl-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.2);
  margin-top: 16px;
}
.nl-guarantee svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Success state */
.nl-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
  gap: 8px;
}
.nl-success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5,150,105,.15);
  border: 1px solid rgba(5,150,105,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.nl-success-icon svg { width: 18px; height: 18px; color: #34d399; }
.nl-success-title { font-size: 14px; font-weight: 600; color: #fff; }
.nl-success-sub { font-size: 12px; color: rgba(255,255,255,.35); }

@media (max-width: 800px) {
  .nl-wrap { grid-template-columns: 1fr; }
  .nl-left { padding: 56px 0 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nl-right { padding: 40px 0 56px; }
}
