@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ═══════════════════════════════════════════
   SOCLAD v2 — CLEAN LIGHT SYSTEM
   Palette: White · Black · Yellow · Green · Sky Blue · Navy Blue
   ═══════════════════════════════════════════ */
:root {
  --ink: #ffffff;
  --ink2: #f4f7fb;
  --ink3: #e8edf5;
  --panel: #dce4f0;
  --wire: #c8d4e8;
  --wire2: #a0b4d0;
  --gold: #f5c400;
  --gold2: #ffd740;
  --gold-dim: #b8920a;
  --cyan: #0ea5e9;
  --red: #e53e3e;
  --green: #16a34a;
  --slate: #4a5568;
  --mist: #1a2340;
  --snow: #f0f4fa;
  --white: #ffffff;
  --navy: #0f2057;
  --navy2: #1a3480;
  --navy3: #1e3a8a;
  --black: #0a0a0a;
  --r4: 4px;
  --r8: 8px;
  --r12: 12px;
  --r20: 20px;
  --sh: 0 2px 12px rgba(15, 32, 87, 0.10);
  --sh2: 0 8px 32px rgba(15, 32, 87, 0.14);
  --glow: 0 0 20px rgba(245, 196, 0, 0.22);
  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-b);
  background: var(--mist);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  font-family: var(--font-b)
}

input,
select,
textarea {
  font-family: var(--font-b)
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--ink3)
}

::-webkit-scrollbar-thumb {
  background: var(--wire2);
  border-radius: 3px
}

::selection {
  background: var(--gold);
  color: var(--navy)
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(15, 32, 87, 0.08);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-d);
}

.nav-logo span {
  color: var(--navy2)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r8);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--ink3)
}

.nav-links a.active {
  color: var(--navy2);
  font-weight: 700
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--r8) !important;
  border: 2px solid var(--navy) !important;
  transition: background .2s, transform .15s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
}

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.nav-ham span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s
}

.mob-drawer {
  display: none;
  position: fixed;
  top: 68px;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--white);
  border-left: 2px solid var(--gold);
  z-index: 999;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -4px 0 24px rgba(15, 32, 87, 0.12);
}

.mob-drawer.open {
  transform: translateX(0)
}

.mob-drawer a {
  padding: 0.75rem 1rem;
  border-radius: var(--r8);
  font-size: 1rem;
  font-weight: 500;
  color: var(--mist);
  border: 1px solid transparent;
  transition: all .2s;
}

.mob-drawer a:hover {
  background: var(--ink3);
  border-color: var(--wire);
  color: var(--navy)
}

.mob-drawer .mob-cta {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
  border: none;
  border-radius: var(--r8);
}

.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  z-index: 998
}

.mob-overlay.open {
  display: block
}

/* UTILITIES */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem
}

.pt-nav {
  padding-top: 68px
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy2);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px
}

.display-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.display-title em {
  color: var(--navy2);
  font-style: normal
}

.display-title .gold {
  color: var(--gold)
}

.display-title .outline {
  -webkit-text-stroke: 1.5px var(--navy);
  color: transparent
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 560px
}

.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--wire) 1px, transparent 1px),
    linear-gradient(90deg, var(--wire) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.45;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none
}

.orb-gold {
  background: rgba(245, 196, 0, 0.18)
}

.orb-cyan {
  background: rgba(14, 165, 233, 0.12)
}

.orb-navy {
  background: rgba(15, 32, 87, 0.07)
}

/* CARDS */
.card {
  background: var(--white);
  border: 1.5px solid var(--wire);
  border-radius: var(--r12);
  padding: 1.5rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow);
  transform: translateY(-2px)
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--r8);
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold)
}

.btn-gold:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 196, 0, 0.35)
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy)
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white)
}

.btn-sky {
  background: var(--cyan);
  color: var(--white);
  border: 2px solid var(--cyan)
}

.btn-sky:hover {
  background: #0284c7;
  border-color: #0284c7;
  transform: translateY(-1px)
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green)
}

.btn-green:hover {
  background: #15803d;
  border-color: #15803d;
  transform: translateY(-1px)
}

.btn-ghost {
  background: transparent;
  color: var(--slate)
}

.btn-ghost:hover {
  color: var(--navy)
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important
}

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600
}

.badge-remote {
  background: #dcfce7;
  color: #15803d
}

.badge-onsite {
  background: #e0f2fe;
  color: #0369a1
}

.badge-hybrid {
  background: #fef9c3;
  color: #a16207
}

.badge-visa {
  background: #e0e7ff;
  color: #4338ca
}

.badge-new {
  background: #fee2e2;
  color: #b91c1c
}

.badge-hot {
  background: #fef3c7;
  color: #92400e
}

.badge-navy {
  background: #dbeafe;
  color: var(--navy)
}

.badge-green {
  background: #dcfce7;
  color: var(--green)
}

.chip {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  background: var(--ink3);
  color: var(--slate);
  border: 1px solid var(--wire)
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wire), transparent);
  margin: 4rem 0
}

/* FORMS */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 2px solid var(--wire);
  border-radius: var(--r8);
  color: var(--mist);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15)
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--wire2)
}

.field select option {
  background: var(--white);
  color: var(--mist)
}

/* STATS */
.stat-num {
  font-family: var(--font-d);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1
}

.stat-num span {
  color: var(--gold)
}

/* PILL FILTERS */
.pill-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  color: var(--slate);
  border: 2px solid var(--wire);
  cursor: pointer;
  transition: all .2s;
}

.pill-filter:hover {
  border-color: var(--cyan);
  color: var(--navy)
}

.pill-filter.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-weight: 700
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 4rem 0 2rem;
  margin-top: 6rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  color: var(--white)
}

.footer-brand .nav-logo span {
  color: var(--gold)
}

.footer-brand .nav-logo-mark {
  background: var(--gold);
  color: var(--navy)
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px
}

.footer-col h4 {
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--white)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55)
}

.footer-bottom a:hover {
  color: var(--gold)
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

.fade-up {
  animation: fadeUp .6s ease both
}

.fade-up-2 {
  animation: fadeUp .6s .1s ease both
}

.fade-up-3 {
  animation: fadeUp .6s .2s ease both
}

.fade-up-4 {
  animation: fadeUp .6s .3s ease both
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite
}

.skeleton {
  background: linear-gradient(90deg, var(--ink3) 0%, var(--panel) 50%, var(--ink3) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r4);
}

/* SPINNER */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--wire);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .8s linear infinite
}

/* PROGRESS BAR */
.progress-track {
  height: 5px;
  background: var(--ink3);
  border-radius: 3px;
  overflow: hidden
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy2), var(--cyan));
  border-radius: 3px;
  transition: width .4s ease;
  width: 0%
}

/* HERO (dark navy sections) */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, #1e40af 100%);
  color: var(--white);
  position: relative;
  overflow: hidden
}

.hero-section .grid-bg::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  opacity: 1
}

.hero-section .section-label {
  color: var(--gold)
}

.hero-section .section-label::before {
  background: var(--gold)
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.70)
}

/* SECTION VARIANTS */
.section-white {
  background: var(--white)
}

.section-tint {
  background: var(--ink2)
}

.section-navy {
  background: var(--navy);
  color: var(--white)
}

.section-navy .section-label {
  color: var(--gold)
}

.section-navy .section-label::before {
  background: var(--gold)
}

.section-navy h2,
.section-navy h3 {
  color: var(--white)
}

.section-navy p {
  color: rgba(255, 255, 255, 0.65)
}

.section-sky {
  background: #e0f2fe;
  border-top: 1px solid #bae6fd;
  border-bottom: 1px solid #bae6fd
}

.section-yellow {
  background: var(--gold);
  color: var(--navy)
}

.section-yellow h2,
.section-yellow p {
  color: var(--navy)
}

/* SCORE COLOURS */
.score-excellent {
  color: var(--green)
}

.score-strong {
  color: var(--cyan)
}

.score-moderate {
  color: #d97706
}

.score-weak {
  color: var(--red)
}

.kw-found {
  background: #dcfce7;
  color: #15803d;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600
}

.kw-miss {
  background: #fee2e2;
  color: #b91c1c;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.8
}

/* CARD ACCENT BORDERS */
.card-accent-yellow {
  border-top: 3px solid var(--gold)
}

.card-accent-green {
  border-top: 3px solid var(--green)
}

.card-accent-sky {
  border-top: 3px solid var(--cyan)
}

.card-accent-navy {
  border-top: 3px solid var(--navy)
}

/* RESPONSIVE */
@media(max-width:900px) {
  .nav-links {
    display: none
  }

  .nav-ham {
    display: flex
  }

  .mob-drawer {
    display: flex
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .wrap {
    padding: 0 1.2rem
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .display-title {
    font-size: 2rem
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem
  }
}