@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@700;800;900&display=swap");

:root {
  --navy: #10233f;
  --navy-dark: #071225;
  --blue: #2457d6;
  --teal: #0f9f8f;
  --red: #d93a2e;
  --gold: #d79b2b;
  --plum: #3d4f88;
  --ink: #121826;
  --muted: #5f6f86;
  --line: #d8e0ec;
  --soft: #f4f7fb;
  --surface: #ffffff;
  --white: #ffffff;
  --shadow: 0 18px 54px rgba(16, 35, 63, 0.12);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 42%, #ffffff 100%),
    var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 43%, rgba(8, 184, 200, 0.25), transparent 19rem),
    radial-gradient(circle at 58% 52%, rgba(236, 18, 53, 0.18), transparent 16rem),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  animation: loaderFade 2.05s var(--ease) forwards;
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 9px 6vw;
  color: #eff6ff;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  font-size: 12px;
  font-weight: 700;
}

.top-strip span {
  color: var(--teal);
  font-weight: 900;
}

.top-strip a {
  color: var(--white);
}

.site-loader p {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: loaderText 1.15s var(--ease) infinite alternate;
}

.loader-scene {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
}

.loader-scene img {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
  animation: mascotFloat 1.35s var(--ease) infinite alternate;
}

.loader-orbit {
  position: absolute;
  inset: 11px;
  z-index: 1;
  border: 7px solid transparent;
  border-top-color: var(--red);
  border-left-color: var(--red);
  border-bottom-color: var(--teal);
  border-radius: 50%;
  transform: rotate(-138deg);
  animation: magnifierSemiCircle 1.55s var(--ease) infinite;
}

.loader-orbit::after {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 38px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff5470);
  transform: rotate(45deg);
  transform-origin: left center;
  box-shadow: 0 8px 22px rgba(236, 18, 53, 0.34);
}

.loader-handle {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: loaderHalo 1.55s var(--ease) infinite;
  pointer-events: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 6vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  animation: slideDown 0.7s var(--ease) both;
}

.site-header::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(15, 159, 143, 0.65), rgba(217, 58, 46, 0.55), transparent);
  animation: lineTravel 5.2s var(--ease) infinite;
}

.brand img {
  width: 174px;
  transition: transform 0.35s var(--ease);
}

.brand:hover img {
  transform: translateY(-2px) scale(1.02);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover,
.text-link {
  color: var(--red);
}

.nav a {
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  font-weight: 900;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 35, 63, 0.16);
}

.secondary:hover {
  border-color: var(--red);
  box-shadow: 0 14px 30px rgba(3, 27, 54, 0.12);
}

.primary,
.header-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #b92d24);
}

.secondary-cta {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 72px 6vw;
  background:
    linear-gradient(120deg, rgba(3, 23, 51, 0.95), rgba(18, 104, 243, 0.52), rgba(236, 18, 53, 0.22)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.portal-hero {
  min-height: 700px;
  display: grid;
  place-items: center;
  padding: 92px 6vw 104px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(7, 18, 37, 0.94) 0%, rgba(16, 35, 63, 0.86) 46%, rgba(16, 35, 63, 0.48) 100%),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1900&q=80") center/cover;
  position: relative;
  overflow: hidden;
}

.portal-hero::after {
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: min(1200px, 90vw);
  height: 240px;
  content: "";
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
  filter: blur(2px);
}

.portal-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 118px);
  animation: lightSweep 8s var(--ease) infinite;
}

.portal-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.portal-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  animation: textRise 0.85s var(--ease) both;
}

.portal-hero .lead {
  max-width: 720px;
  color: #eaf1f8;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
}

.job-search-card {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  width: min(980px, 100%);
  margin: 32px 0 18px;
  padding: 14px;
  border: 1px solid rgba(216, 224, 236, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 70px rgba(7, 18, 37, 0.22);
  animation: fadeScale 0.9s var(--ease) 0.18s both;
}

.job-search-card input {
  border-radius: 10px;
  background: #f8fbff;
}

.job-search-card label {
  color: var(--navy);
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
  animation: fadeUp 0.9s var(--ease) 0.32s both;
}

.popular-searches span {
  color: #dbeafe;
  font-weight: 900;
}

.popular-searches a {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.popular-searches a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.28);
}

.portal-stats {
  width: min(1120px, 88vw);
  margin: -58px auto 0;
  position: relative;
  z-index: 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(7, 18, 37, 0.16);
}

.portal-stats div {
  position: relative;
}

.portal-stats div::before {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  content: "";
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(36, 87, 214, 0.12), rgba(15, 159, 143, 0.12));
}

.trust-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  width: min(1180px, 88vw);
  margin: 44px auto 0;
  padding: 36px;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 252, 0.9)),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: 0 18px 54px rgba(16, 35, 63, 0.1);
  overflow: hidden;
  position: relative;
}

.trust-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  pointer-events: none;
}

.trust-band > * {
  position: relative;
  z-index: 1;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.client-logo-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(220, 229, 242, 0.9);
  border-radius: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(16, 35, 63, 0.07);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head .eyebrow,
.content-section > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(36, 87, 214, 0.08);
}

.section-head h2 {
  max-width: 720px;
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-showcase article,
.insight-grid article,
.portal-job {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
  box-shadow: 0 12px 34px rgba(16, 35, 63, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.category-showcase article::after,
.insight-grid article::after,
.portal-job::after {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 166, 0.16), transparent 68%);
}

.category-showcase article:hover,
.insight-grid article:hover,
.portal-job:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(3, 23, 51, 0.14);
}

.jobs-highlight {
  background:
    linear-gradient(110deg, rgba(244, 247, 251, 0.95), rgba(236, 242, 249, 0.9)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1800&q=80") center/cover;
  position: relative;
  overflow: hidden;
}

.jobs-highlight::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 88% 20%, rgba(215, 155, 43, 0.16), transparent 15rem),
    radial-gradient(circle at 12% 82%, rgba(15, 159, 143, 0.12), transparent 18rem);
  pointer-events: none;
}

.jobs-highlight > * {
  position: relative;
  z-index: 1;
}

.category-showcase span,
.insight-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-size: 12px;
  font-weight: 900;
}

.about-band,
.cv-cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  padding: 92px 6vw;
  background:
    linear-gradient(180deg, #ffffff, var(--soft));
}

.about-band img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-band h2,
.cv-cta h2 {
  color: var(--navy);
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.about-band {
  position: relative;
  overflow: hidden;
}

.about-band img.reveal {
  opacity: 0;
  transform: translateX(-70px) scale(0.98);
  filter: blur(10px) saturate(0.9);
}

.about-band > div.reveal {
  opacity: 0;
  transform: translateX(70px);
  filter: blur(10px);
}

.about-band img.reveal.is-visible,
.about-band > div.reveal.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0) saturate(1);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease), filter 0.95s var(--ease);
}

.about-band > div.reveal.is-visible {
  transition-delay: 0.12s;
}

.about-band::before {
  position: absolute;
  right: 4vw;
  top: 60px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 111, 33, 0.15), transparent 68%);
}

.job-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portal-job small {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--gold));
  font-weight: 900;
}

.portal-job h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.portal-job div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}

.portal-job span {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.portal-job a {
  color: var(--red);
  font-weight: 900;
}

.cv-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 200, 87, 0.24), transparent 18rem),
    radial-gradient(circle at 10% 80%, rgba(0, 183, 168, 0.22), transparent 18rem),
    linear-gradient(135deg, #080f24, #182b55 62%, #273f7e);
}

.cv-cta h2 {
  color: var(--white);
}

.cv-cta .resume-panel h3 {
  margin-top: 0;
  color: var(--navy);
}

.logo-strip {
  padding: 34px 0;
  overflow: hidden;
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.logo-strip p {
  margin: 0 6vw 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.logo-marquee {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marqueeMove 25s linear infinite;
}

.logo-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(18, 38, 74, 0.06);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(16, 35, 63, 0.08);
  position: relative;
}

.testimonial-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(18, 38, 74, 0.13);
}

.testimonial-grid article::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 22px;
  color: rgba(243, 111, 33, 0.16);
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-grid h3 {
  margin: 20px 0 2px;
  color: var(--navy);
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.page-search {
  margin: 0 0 28px;
}

.search-result-note {
  margin: 0 0 22px;
  padding: 13px 16px;
  border: 1px solid rgba(18, 104, 243, 0.16);
  border-radius: 12px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(18, 104, 243, 0.08), rgba(8, 184, 200, 0.08));
  font-weight: 900;
}

.preview-job-list {
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: -20%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.13) 36%, transparent 48%),
    radial-gradient(circle at 20% 80%, rgba(8, 184, 200, 0.22), transparent 20rem);
  animation: lightSweep 8s var(--ease) infinite;
}

.hero::after {
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  z-index: -1;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.04);
  animation: orbDrift 6.5s var(--ease) infinite alternate;
}

.hero-copy {
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: 0;
  animation: textRise 0.85s var(--ease) both;
}

.hero h1 {
  background: linear-gradient(90deg, #ffffff, #dff7ff, #ffffff);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textRise 0.85s var(--ease) both, textShimmer 4.8s linear infinite;
}

.lead {
  color: #dfe8f3;
  font-size: 26px;
  font-weight: 700;
}

.hero .lead {
  animation: softPulse 2.6s var(--ease) 1.1s infinite;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  animation: textRise 0.75s var(--ease) 0.05s both;
}

.hero .eyebrow,
.page-hero .eyebrow,
.map-info .eyebrow,
.gradient-section .eyebrow {
  color: #ffccd4;
}

.hero-copy p:not(.eyebrow):not(.lead),
.content-section > p,
.split p,
.empty-state p {
  color: inherit;
  max-width: 760px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.resume-panel,
.card-form,
.contact-card,
.admin-card,
.login-card {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.resume-panel {
  padding: 28px;
  animation: fadeScale 0.9s var(--ease) 0.25s both;
  position: relative;
  overflow: hidden;
}

.resume-panel::before,
.card-form::before,
.contact-card::before,
.founder-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: translateX(-120%);
  animation: cardShine 5.6s var(--ease) infinite;
  pointer-events: none;
}

.resume-panel h2,
.card-form h2,
.contact-card h2 {
  margin: 0 0 6px;
  color: var(--navy);
}

.form-grid,
.card-form,
.admin-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(228, 8, 36, 0.1);
  transform: translateY(-1px);
}

.file-input {
  margin: 14px 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.required-note {
  margin: 0 0 4px;
  padding: 12px 14px;
  border: 1px solid rgba(236, 18, 53, 0.18);
  border-radius: 6px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(236, 18, 53, 0.07), rgba(8, 184, 200, 0.08));
  font-size: 13px;
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats div {
  padding: 32px 6vw;
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.stats div:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(3, 27, 54, 0.1);
}

.stats strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
}

.stats span,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 76px 6vw;
}

.split {
  position: relative;
  isolation: isolate;
}

.split::before,
.content-section::before {
  position: absolute;
  inset: auto 6vw 18px auto;
  z-index: -1;
  width: 90px;
  height: 90px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 184, 200, 0.16), transparent 68%);
  animation: sectionFloat 7s var(--ease) infinite alternate;
}

.split img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  box-shadow: 0 18px 50px rgba(16, 35, 63, 0.14);
}

.split img:hover {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.split h2,
.content-section h2,
.empty-state h2 {
  color: var(--navy);
  font-size: 36px;
  line-height: 1.16;
  margin: 0 0 16px;
}

.text-link {
  font-weight: 900;
}

.page-hero {
  padding: 92px 6vw;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(7, 18, 37, 0.94), rgba(16, 35, 63, 0.82)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
  animation: heroWash 0.9s var(--ease) both;
}

.recruitment-bg {
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 0.9), rgba(16, 35, 63, 0.72)),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.resume-bg {
  background:
    linear-gradient(90deg, rgba(3, 27, 54, 0.88), rgba(6, 43, 85, 0.7)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.content-section {
  padding: 76px 6vw;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 8%, rgba(36, 87, 214, 0.026), transparent 16rem);
}

.light-section {
  background:
    linear-gradient(180deg, #f7f9fc, #eef3f8);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.process-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.process-grid div:hover span {
  background: var(--red);
  transform: rotate(-6deg) scale(1.08);
}

.process-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.category-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
  box-shadow: 0 10px 26px rgba(16, 35, 63, 0.06);
}

.category-grid span:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.feature-grid article,
.job-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(36, 87, 214, 0.18), rgba(15, 159, 143, 0.14), rgba(217, 58, 46, 0.12)) border-box;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.feature-grid article::after,
.job-card::after,
.process-grid div::after {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.feature-grid article:hover::after,
.job-card:hover::after,
.process-grid div:hover::after {
  transform: scaleX(1);
}

.gradient-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(15, 159, 143, 0.12), transparent 22rem),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

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

.gradient-section article {
  color: var(--ink);
}

.founder-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.founder-profile-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff, #f6f8fb);
}

.founder-photo-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-photo-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(7, 18, 37, 0.18));
  pointer-events: none;
}

.founder-photo-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
}

.founder-profile-section h2 {
  margin-bottom: 8px;
}

.founder-email {
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 800;
}

.founder-card {
  padding: 30px;
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(215, 155, 43, 0.28), transparent 8rem),
    linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: var(--shadow);
}

.founder-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-card h3 {
  color: var(--white);
  font-size: 28px;
  line-height: 1.12;
}

.feature-grid article:hover,
.job-card:hover,
.process-grid div:hover {
  transform: translateY(-7px);
  border-color: rgba(228, 8, 36, 0.35);
  box-shadow: 0 18px 45px rgba(3, 27, 54, 0.12);
}

.feature-grid h3,
.job-card h2 {
  margin-top: 0;
  color: var(--navy);
}

.empty-state {
  padding: 46px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  animation: softGlow 4s var(--ease) infinite alternate;
}

.job-list {
  display: grid;
  gap: 18px;
}

.job-board-section {
  padding: 38px 6vw 84px;
  background:
    linear-gradient(rgba(245, 248, 252, 0.92), rgba(238, 243, 248, 0.98)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1800&q=80") center top/cover fixed,
    linear-gradient(180deg, #f6f8fc, #eef3fb);
}

.openings-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  min-height: 300px;
  margin-bottom: 24px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(7, 18, 37, 0.92), rgba(16, 35, 63, 0.62)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1700&q=80") center/cover;
  box-shadow: 0 22px 60px rgba(7, 18, 37, 0.2);
  overflow: hidden;
  position: relative;
}

.openings-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: lightSweep 7s var(--ease) infinite;
  pointer-events: none;
}

.openings-banner > * {
  position: relative;
  z-index: 1;
}

.openings-banner h2 {
  max-width: 720px;
  margin: 10px 0;
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.08;
}

.openings-banner p {
  max-width: 680px;
  color: #e8f5ff;
  font-weight: 700;
}

.banner-actions,
.job-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner-actions {
  justify-content: end;
}

.job-board-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.filter-panel,
.company-panel,
.modern-job-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 42px rgba(16, 35, 63, 0.08);
}

.filter-panel,
.company-panel {
  position: sticky;
  top: 118px;
  overflow: hidden;
}

.filter-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.filter-title strong {
  color: var(--navy);
  font-size: 20px;
}

.filter-title a {
  color: var(--blue);
  font-weight: 900;
}

.filter-group {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.filter-group h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.filter-group label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.filter-group input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.job-board-main {
  display: grid;
  gap: 18px;
}

.job-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.job-board-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.sort-select {
  width: auto;
  min-width: 230px;
  border-radius: 10px;
  background: var(--white);
  font-weight: 800;
}

.modern-job-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.modern-job-card:hover,
.modern-job-card.is-featured {
  transform: translateY(-4px);
  border-color: rgba(64, 86, 244, 0.35);
  box-shadow: 0 22px 60px rgba(36, 87, 214, 0.12);
}

.job-logo {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-size: 24px;
  font-weight: 900;
}

.job-title-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.job-title-row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
}

.job-title-row span {
  padding: 6px 11px;
  border-radius: 8px;
  color: #2f9b49;
  background: #e7f9ec;
  font-size: 12px;
  font-weight: 900;
}

.job-company {
  margin: 4px 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 800;
}

.job-meta span::before {
  content: "•";
  margin-right: 8px;
  color: var(--blue);
}

.job-desc {
  color: var(--muted);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.job-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.job-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.job-action-buttons .btn {
  min-height: 42px;
  padding: 10px 16px;
}

.job-actions small {
  color: var(--muted);
  font-weight: 700;
}

.company-panel {
  padding: 26px;
}

.company-avatar {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-size: 24px;
  font-weight: 900;
}

.company-panel h2 {
  margin: 0;
  color: var(--navy);
}

.company-panel > p {
  margin: 6px 0 22px;
  color: var(--muted);
}

.company-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.company-stat span {
  min-width: 60px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.company-stat small {
  color: var(--muted);
  font-weight: 800;
}

.compact-empty {
  padding: 28px;
}

.contact-layout {
  align-items: start;
  background: var(--soft);
}

.map-section {
  padding: 70px 6vw;
  background: var(--white);
}

.map-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-info {
  padding: 30px;
  background:
    radial-gradient(circle at 90% 16%, rgba(215, 155, 43, 0.22), transparent 8rem),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(236, 18, 53, 0.28);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.contact-social {
  margin-bottom: 18px;
}

.map-info h2 {
  margin-top: 0;
  color: var(--white);
}

.map-info p {
  color: #dce8f8;
}

.service-hero {
  background:
    linear-gradient(120deg, rgba(7, 18, 37, 0.92), rgba(16, 35, 63, 0.62)),
    url("https://images.unsplash.com/photo-1581093458791-9d42e061b8d9?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-side-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 16%, rgba(215, 155, 43, 0.16), transparent 8rem),
    var(--white);
  box-shadow: 0 14px 42px rgba(16, 35, 63, 0.08);
}

.service-side-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.compact-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-link-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
}

.map-frame {
  min-height: 390px;
  width: 100%;
  border: 0;
}

.card-form,
.contact-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.3fr;
  gap: 38px;
  padding: 46px 6vw;
  border-top: 1px solid var(--line);
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent, rgba(36, 87, 214, 0.055), transparent);
  animation: lightSweep 9s var(--ease) infinite;
  pointer-events: none;
}

.chatbot-widget {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 80;
  font-family: inherit;
}

.floating-contact {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 79;
  display: flex;
  gap: 9px;
}

.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  box-shadow: 0 16px 38px rgba(7, 21, 44, 0.18);
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.floating-contact a:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(7, 21, 44, 0.24);
}

.floating-contact .whatsapp {
  background: #18a957;
}

.floating-contact .call {
  background: var(--blue);
}

.floating-contact .email {
  background: var(--red);
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 9px 16px 9px 9px;
  border: 1px solid rgba(36, 87, 214, 0.22);
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 18px 44px rgba(36, 87, 214, 0.26);
  cursor: pointer;
  animation: chatbotPulse 2.8s var(--ease) infinite;
}

.chatbot-toggle strong {
  font-size: 14px;
  font-weight: 900;
}

.bot-avatar {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 38px;
  border-radius: 16px;
  background: linear-gradient(145deg, #39d8ff, #0694db);
  box-shadow: inset 0 -7px 14px rgba(0, 49, 95, 0.18), 0 10px 24px rgba(8, 184, 200, 0.24);
  animation: botFloat 2.4s var(--ease) infinite alternate;
}

.bot-avatar::before {
  position: absolute;
  top: -10px;
  width: 13px;
  height: 13px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(145deg, #42e6ff, #0a91dd);
}

.bot-avatar::after {
  position: absolute;
  inset: 8px 7px;
  content: "";
  border-radius: 11px;
  background: #172333;
}

.bot-avatar span {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 12px;
}

.bot-avatar span::before,
.bot-avatar span::after {
  position: absolute;
  top: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--white);
}

.bot-avatar span::before {
  left: 1px;
}

.bot-avatar span::after {
  right: 1px;
}

.bot-avatar:hover {
  transform: scale(1.04);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(217, 228, 242, 0.96);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 72px rgba(16, 35, 63, 0.22);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.chatbot-widget.is-open .chatbot-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 176, 0, 0.28), transparent 8rem),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.chatbot-head h3 {
  margin: 0;
  font-size: 17px;
}

.chatbot-head p {
  margin: 3px 0 0;
  color: #dce8f8;
  font-size: 12px;
  line-height: 1.4;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  max-height: 292px;
  overflow-y: auto;
  padding: 16px;
  background:
    radial-gradient(circle at top left, rgba(8, 184, 200, 0.08), transparent 12rem),
    var(--white);
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.48;
  animation: chatPop 0.26s var(--ease) both;
}

.typing-message {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 58px;
}

.typing-message span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: typingBounce 0.9s var(--ease) infinite;
}

.typing-message span:nth-child(2) {
  animation-delay: 0.12s;
}

.typing-message span:nth-child(3) {
  animation-delay: 0.24s;
}

.chat-message.bot {
  color: var(--ink);
  background: var(--soft);
  border-top-left-radius: 4px;
}

.chat-message.user {
  justify-self: end;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-top-right-radius: 4px;
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.chatbot-quick button {
  border: 1px solid rgba(18, 104, 243, 0.18);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(18, 104, 243, 0.06);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.chatbot-form input {
  min-height: 42px;
}

.chatbot-form button,
.chatbot-whatsapp {
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--red);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.chatbot-whatsapp {
  display: block;
  margin: 0 16px 16px;
  text-align: center;
  background: #18a957;
}

@keyframes chatbotPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes chatPop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes typingBounce {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
  }
}

@keyframes botFloat {
  from {
    transform: translateY(2px);
  }
  to {
    transform: translateY(-3px);
  }
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.site-footer .social-links a,
.contact-card .social-links a {
  display: inline-flex;
  color: var(--navy);
}

.site-footer .social-links a:hover,
.contact-card .social-links a:hover {
  color: var(--white);
}

.footer-logo {
  width: 210px;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.login-card {
  width: min(420px, 100%);
  padding: 30px;
}

.login-card img {
  width: 230px;
  margin-bottom: 20px;
}

.error,
.danger {
  color: var(--red);
  font-weight: 800;
}

.success {
  color: #0a7d3d;
  font-weight: 800;
}

.admin-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: var(--soft);
}

.admin-sidebar {
  padding: 24px;
  background: var(--navy-dark);
  color: var(--white);
}

.admin-sidebar img {
  width: 190px;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: 6px;
}

.admin-sidebar a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-main {
  padding: 34px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.admin-stats div,
.admin-row {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-stats strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
}

.admin-card {
  padding: 24px;
  margin-bottom: 22px;
}

.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 12px 0;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.feature-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2),
.category-grid .reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.feature-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3),
.category-grid .reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.feature-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4),
.category-grid .reveal:nth-child(4) {
  transition-delay: 0.18s;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes imageSlideIn {
  from {
    opacity: 0;
    transform: translateX(-34px) scale(0.985);
    filter: blur(8px) saturate(0.85);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes textRise {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes textShimmer {
  to {
    background-position: -220% center;
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-28%) rotate(0deg);
    opacity: 0;
  }
  28%, 65% {
    opacity: 1;
  }
  100% {
    transform: translateX(28%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes cardShine {
  0%, 54% {
    transform: translateX(-120%);
    opacity: 0;
  }
  68% {
    opacity: 0.55;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes orbDrift {
  from {
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  to {
    transform: translate3d(-32px, -24px, 0) scale(1.08);
  }
}

@keyframes sectionFloat {
  from {
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  to {
    transform: translate3d(-18px, -22px, 0) scale(1.12);
  }
}

@keyframes softGlow {
  from {
    box-shadow: 0 18px 50px rgba(18, 104, 243, 0.08);
  }
  to {
    box-shadow: 0 22px 65px rgba(236, 18, 53, 0.13);
  }
}

@keyframes lineTravel {
  0%, 100% {
    opacity: 0.35;
    transform: scaleX(0.25);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes softPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.82;
  }
}

@keyframes heroWash {
  from {
    background-position: 50% 46%;
  }
  to {
    background-position: 50% 50%;
  }
}

@keyframes loaderFade {
  0%, 76% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes magnifierSemiCircle {
  0% {
    transform: rotate(-150deg) scale(0.96);
  }
  50% {
    transform: rotate(18deg) scale(1.04);
  }
  100% {
    transform: rotate(210deg) scale(0.96);
  }
}

@keyframes mascotFloat {
  from {
    transform: translateY(5px) scale(0.97);
  }
  to {
    transform: translateY(-5px) scale(1.03);
  }
}

@keyframes loaderHalo {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes loaderText {
  from {
    opacity: 0.72;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 5vw;
  }

  .brand img {
    width: 154px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    animation: fadeUp 0.32s var(--ease) both;
  }

  .nav.is-open a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .hero,
  .portal-hero,
  .split,
  .contact-layout,
  .map-shell,
  .founder-section,
  .founder-profile-section,
  .about-band,
  .cv-cta,
  .site-footer,
  .admin-page {
    grid-template-columns: 1fr;
  }

  .top-strip {
    display: grid;
    gap: 5px;
    justify-content: start;
    padding: 8px 5vw;
    font-size: 11px;
  }

  .job-search-card,
  .category-showcase,
  .trust-band,
  .client-logo-grid,
  .job-grid,
  .insight-grid,
  .testimonial-grid,
  .preview-job-list,
  .job-board-layout,
  .modern-job-card,
  .openings-banner,
  .service-detail,
  .compact-tags {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .company-panel {
    position: static;
  }

  .job-board-head,
  .job-actions {
    display: grid;
    justify-content: stretch;
  }

  .banner-actions,
  .job-action-buttons,
  .floating-contact {
    justify-content: stretch;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-contact a {
    min-height: 40px;
    padding: 9px 8px;
    font-size: 12px;
  }

  .chatbot-widget {
    right: 12px;
    bottom: 66px;
  }

  .sort-select {
    width: 100%;
    min-width: 0;
  }

  .portal-stats {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .portal-hero {
    min-height: auto;
    padding: 58px 5vw 64px;
    place-items: start;
  }

  .portal-hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .portal-hero .lead {
    font-size: 17px;
  }

  .hero-trust {
    gap: 8px;
  }

  .hero-trust span,
  .popular-searches a {
    width: fit-content;
    min-height: 38px;
    font-size: 12px;
  }

  .trust-band,
  .openings-banner {
    width: auto;
    margin-inline: 5vw;
    padding: 24px;
    border-radius: 14px;
  }

  .openings-banner {
    min-height: 0;
    background-attachment: scroll;
  }

  .openings-banner h2 {
    font-size: 34px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .hero {
    padding: 48px 5vw;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 19px;
  }

  .stats,
  .feature-grid,
  .process-grid,
  .category-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .split.reverse img {
    order: 2;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-main {
    padding: 22px;
  }

  .chatbot-toggle strong {
    display: none;
  }
}

@media (max-width: 560px) {
  .top-strip div:nth-child(3) {
    display: none;
  }

  .portal-hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .job-search-card,
  .resume-panel,
  .card-form,
  .contact-card {
    padding: 18px;
    border-radius: 14px;
  }

  .content-section,
  .about-band,
  .cv-cta,
  .split,
  .contact-layout,
  .map-section {
    padding: 52px 5vw;
  }

  .stats div {
    padding: 24px 5vw;
  }

  .stats strong {
    font-size: 30px;
  }

  .about-band img,
  .founder-photo-wrap img,
  .split img {
    min-height: 260px;
    height: 300px;
  }

  .section-head h2,
  .content-section h2,
  .about-band h2,
  .cv-cta h2 {
    font-size: 30px;
  }
}

/* Premium creative redesign layer */
:root {
  --navy: #0c1b33;
  --navy-dark: #030815;
  --blue: #2563eb;
  --teal: #00a99d;
  --red: #ef3f35;
  --gold: #f4b740;
  --plum: #6d5dfc;
  --ink: #101828;
  --muted: #667085;
  --line: #d7deea;
  --soft: #f5f7fb;
  --surface: #ffffff;
  --shadow: 0 22px 60px rgba(12, 27, 51, 0.13);
}

body {
  background:
    linear-gradient(135deg, rgba(0, 169, 157, 0.06) 0 12%, transparent 12% 100%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 38%, #ffffff 100%);
  color: var(--ink);
}

.top-strip {
  background: linear-gradient(90deg, #030815, #0c1b33 62%, #12315a);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip span {
  color: #7ff4de;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 222, 234, 0.86);
  box-shadow: 0 10px 34px rgba(12, 27, 51, 0.06);
}

.site-header::after {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold), var(--red));
  opacity: 0.9;
}

.nav {
  gap: 22px;
  color: #172640;
}

.nav a::after {
  bottom: -11px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.primary,
.header-cta {
  background: linear-gradient(135deg, #ef3f35, #c92822);
  box-shadow: 0 14px 30px rgba(239, 63, 53, 0.22);
}

.secondary,
.secondary-cta {
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.btn,
.header-cta,
.ghost-link {
  border-radius: 12px;
}

.portal-hero {
  min-height: 730px;
  background:
    linear-gradient(107deg, rgba(3, 8, 21, 0.96) 0%, rgba(12, 27, 51, 0.9) 44%, rgba(12, 27, 51, 0.46) 100%),
    linear-gradient(135deg, rgba(0, 169, 157, 0.18), transparent 38%),
    url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1900&q=80") center/cover;
}

.portal-hero::before {
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 132px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 132px);
}

.portal-hero::after {
  left: auto;
  right: -16vw;
  bottom: -14vw;
  width: 44vw;
  height: 44vw;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 169, 157, 0.16), rgba(37, 99, 235, 0.12));
  transform: rotate(22deg);
  filter: none;
}

.portal-hero h1 {
  max-width: 940px;
  text-wrap: balance;
}

.portal-hero .lead {
  color: #edf5ff;
}

.job-search-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(3, 8, 21, 0.28);
}

.job-search-card input,
input,
select,
textarea {
  border-radius: 12px;
  background: #fbfdff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.11);
}

.popular-searches a,
.hero-trust span {
  border-radius: 12px;
}

.hero-trust span {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.portal-stats {
  border-radius: 20px;
  border: 1px solid rgba(215, 222, 234, 0.92);
}

.stats div {
  background:
    linear-gradient(180deg, #ffffff, #fbfcff);
}

.stats strong {
  color: var(--navy);
}

.trust-band {
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.78)),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.client-logo-grid span,
.logo-marquee span {
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.content-section {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.035) 0 18%, transparent 18% 100%);
}

.light-section {
  background:
    linear-gradient(180deg, #f8fbff, #eef4fb);
}

.section-head .eyebrow,
.content-section > .eyebrow {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.category-showcase article,
.insight-grid article,
.portal-job,
.feature-grid article,
.job-card,
.process-grid div,
.testimonial-grid article,
.resume-panel,
.card-form,
.contact-card,
.admin-card,
.login-card,
.service-side-card {
  border-radius: 18px;
  border-color: rgba(215, 222, 234, 0.92);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 16px 44px rgba(12, 27, 51, 0.08);
}

.category-showcase span,
.insight-grid span,
.portal-job small,
.founder-card span,
.job-title-row span,
.job-tags span,
.portal-job span {
  border-radius: 10px;
}

.category-showcase span,
.insight-grid span {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.portal-job small {
  background: linear-gradient(135deg, var(--red), var(--gold));
}

.category-showcase article:hover,
.insight-grid article:hover,
.portal-job:hover,
.feature-grid article:hover,
.job-card:hover,
.process-grid div:hover,
.testimonial-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 22px 60px rgba(12, 27, 51, 0.12);
}

.about-band {
  background:
    linear-gradient(120deg, #ffffff 0%, #f5f9ff 100%);
}

.about-band img,
.split img,
.founder-photo-wrap,
.map-shell {
  border-radius: 22px;
}

.cv-cta {
  background:
    linear-gradient(120deg, rgba(3, 8, 21, 0.94), rgba(12, 27, 51, 0.86)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.jobs-highlight {
  background:
    linear-gradient(110deg, rgba(248, 251, 255, 0.94), rgba(239, 244, 251, 0.86)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page-hero,
.recruitment-bg,
.service-hero {
  background:
    linear-gradient(116deg, rgba(3, 8, 21, 0.94), rgba(12, 27, 51, 0.72)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.job-board-section {
  background:
    linear-gradient(rgba(245, 248, 252, 0.9), rgba(239, 244, 251, 0.98)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1800&q=80") center top/cover fixed;
}

.openings-banner {
  border-radius: 22px;
  background:
    linear-gradient(112deg, rgba(3, 8, 21, 0.93), rgba(12, 27, 51, 0.62)),
    url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1700&q=80") center/cover;
}

.filter-panel,
.company-panel,
.modern-job-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 44px rgba(12, 27, 51, 0.08);
}

.modern-job-card:hover,
.modern-job-card.is-featured {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 22px 64px rgba(37, 99, 235, 0.12);
}

.job-logo,
.company-avatar {
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.founder-card,
.map-info,
.chatbot-head {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(12, 27, 51, 0.98));
}

.founder-profile-section {
  background:
    linear-gradient(120deg, #ffffff, #f3f8ff);
}

.site-footer {
  background: linear-gradient(180deg, #f8fbff, #eef3f9);
}

.floating-contact a,
.chatbot-toggle,
.chatbot-panel {
  border-radius: 14px;
}

.chatbot-toggle {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

@media (max-width: 900px) {
  .portal-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .portal-hero h1 {
    font-size: 40px;
  }

  .trust-band,
  .openings-banner {
    border-radius: 18px;
  }

  .job-board-section {
    background-attachment: scroll;
  }
}

@media (max-width: 560px) {
  .portal-hero h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .portal-hero {
    padding-top: 50px;
  }

  .hero-trust span,
  .popular-searches a {
    border-radius: 10px;
  }
}

/* 2026 full redesign: modern corporate manufacturing theme */
:root {
  --navy: #14213d;
  --navy-dark: #07111f;
  --blue: #1f6feb;
  --teal: #0f766e;
  --red: #d84f3f;
  --gold: #d9a441;
  --plum: #26385f;
  --ink: #111827;
  --muted: #687385;
  --line: #dde4ee;
  --soft: #f7f3eb;
  --surface: #ffffff;
  --white: #ffffff;
  --copper: #b85f38;
  --mint: #eaf8f4;
  --steel: #eef2f6;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.14);
}

body {
  font-family: "Manrope", "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 33, 61, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fbf8f2 0%, #f3f6f8 44%, #ffffff 100%);
  background-size: 74px 74px, auto;
}

.top-strip {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 34px;
  padding: 10px 6vw;
  background: #07111f;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.01em;
}

.top-strip span {
  color: #f2c86d;
}

.site-header {
  top: 0;
  grid-template-columns: 210px 1fr auto;
  padding: 15px 6vw;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(20, 33, 61, 0.1);
  box-shadow: 0 18px 50px rgba(20, 33, 61, 0.08);
}

.site-header::after {
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #d9a441, #d84f3f, #1f6feb);
  opacity: 1;
}

.brand img {
  width: 194px;
}

.nav {
  gap: 28px;
  font-size: 15px;
  color: #1e293b;
}

.nav a:hover,
.text-link {
  color: var(--teal);
}

.nav a::after {
  bottom: -14px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.header-cta,
.btn {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.header-cta,
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #1f6feb);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.24);
}

.secondary,
.secondary-cta,
.ghost-link {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(20, 33, 61, 0.16);
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.08);
}

.menu-toggle {
  border-radius: 999px;
  border: 1px solid rgba(20, 33, 61, 0.14);
  background: #fff;
  color: var(--navy);
}

.portal-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 88px 6vw 58px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(20, 33, 61, 0.92) 48%, rgba(20, 33, 61, 0.2) 100%),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1800&q=82") center right / cover no-repeat;
}

.portal-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 75% 22%, rgba(217, 164, 65, 0.28), transparent 22rem),
    linear-gradient(120deg, rgba(15, 118, 110, 0.16), transparent 42%);
  opacity: 1;
}

.portal-hero::after {
  position: absolute;
  right: 6vw;
  bottom: 52px;
  z-index: 1;
  width: min(450px, 34vw);
  min-height: 155px;
  padding: 24px;
  content: "Industrial hiring desk";
  display: flex;
  align-items: end;
  justify-content: start;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 17, 31, 0.82) 100%),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=900&q=82") center / cover no-repeat;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
  animation: imageSlideIn 1.05s var(--ease) 0.35s both, floatCard 5.5s ease-in-out 1.3s infinite;
}

.portal-hero-inner {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  max-width: none;
  color: #fff;
}

.portal-hero .eyebrow,
.page-hero .eyebrow,
.service-hero .eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: #f7d278;
  background: rgba(217, 164, 65, 0.13);
  border: 1px solid rgba(217, 164, 65, 0.28);
}

.portal-hero h1 {
  margin: 22px 0 18px;
  max-width: 720px;
  color: #fff;
  font-size: clamp(46px, 6.5vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.portal-hero .lead {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
}

.job-search-card {
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  padding: 12px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.32);
  backdrop-filter: blur(16px);
}

.job-search-card label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.job-search-card input,
input,
textarea,
select {
  border-radius: 18px;
  border: 1px solid rgba(20, 33, 61, 0.12);
  background: #fbfcfd;
  color: var(--ink);
}

.popular-searches {
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.popular-searches a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-trust span {
  min-height: 94px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.stats,
.portal-stats {
  width: min(1180px, 88vw);
  margin: -42px auto 80px;
  padding: 18px;
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats div {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f5f8fb);
}

.stats strong {
  color: var(--teal);
}

.content-section,
.trust-band,
.about-band,
.cv-cta,
.split,
.contact-layout,
.service-detail,
.founder-profile-section {
  width: min(1180px, 88vw);
  margin: 76px auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-section {
  padding: 0;
}

.section-head {
  align-items: end;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(20, 33, 61, 0.1);
  padding-bottom: 20px;
}

.content-section h2,
.about-band h2,
.cv-cta h2,
.page-hero h1,
.service-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.content-section > .eyebrow,
.section-head .eyebrow,
.split .eyebrow,
.about-band .eyebrow,
.cv-cta .eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--mint);
  border: 1px solid rgba(15, 118, 110, 0.18);
}

.trust-band {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 34px;
  padding: 42px;
  color: #fff;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.92), rgba(20, 33, 61, 0.78)),
    url("https://images.unsplash.com/photo-1581091215367-59ab6dcf6234?auto=format&fit=crop&w=1500&q=82") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.trust-band h2,
.trust-band p {
  color: #fff;
}

.client-logo-grid {
  gap: 14px;
}

.client-logo-grid span,
.category-showcase article,
.feature-grid article,
.process-grid div,
.insight-grid article,
.testimonial-grid article {
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(20, 33, 61, 0.08);
}

.client-logo-grid span {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-showcase article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
}

.category-showcase article::before {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 82px;
  height: 82px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(217, 164, 65, 0.24));
}

.category-showcase span {
  color: var(--copper);
  font-size: 36px;
}

.about-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 0;
}

.about-band::before {
  position: absolute;
  left: -38px;
  top: -38px;
  width: 180px;
  height: 180px;
  content: "";
  border: 18px solid rgba(217, 164, 65, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.about-band img,
.split img,
.founder-photo-wrap img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(20, 33, 61, 0.18);
}

.about-band > div,
.cv-cta > div,
.resume-panel,
.card-form,
.contact-card,
.founder-card,
.service-side-card {
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 55px rgba(20, 33, 61, 0.08);
}

.about-band > div {
  padding: 42px;
}

.light-section,
.jobs-highlight {
  position: relative;
  padding: 46px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 248, 244, 0.85)),
    url("https://images.unsplash.com/photo-1581091215367-59ab6dcf6234?auto=format&fit=crop&w=1500&q=82") center / cover no-repeat;
  background-blend-mode: screen;
  box-shadow: var(--shadow);
}

.job-grid {
  gap: 20px;
}

.job-card,
.portal-job {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 33, 61, 0.1);
}

.job-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--red));
}

.job-card small,
.modern-job-card .job-title-row span {
  color: #fff;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  border-radius: 999px;
}

.cv-cta {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  padding: 42px;
  color: #fff;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.93), rgba(15, 118, 110, 0.82)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1500&q=82") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.cv-cta h2,
.cv-cta p,
.cv-cta .eyebrow {
  color: #fff;
}

.cv-cta > div,
.cv-cta .resume-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.resume-panel h3 {
  color: #fff;
}

.page-hero,
.service-hero {
  min-height: 410px;
  display: grid;
  align-content: end;
  padding: 80px 6vw 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.95), rgba(20, 33, 61, 0.72)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}

.page-hero h1,
.service-hero h1 {
  max-width: 980px;
  color: #fff;
}

.job-board-section {
  width: min(1320px, 92vw);
  padding: 0;
  background: transparent;
}

.openings-banner {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 17, 31, 0.96) 0%, rgba(20, 33, 61, 0.88) 52%, rgba(20, 33, 61, 0.34) 100%),
    url("https://images.unsplash.com/photo-1581092919535-7146ff1a590b?auto=format&fit=crop&w=1500&q=82") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.openings-banner h2,
.openings-banner p {
  color: #fff;
}

.page-search {
  margin: -28px auto 34px;
  position: relative;
  z-index: 2;
  width: min(980px, 92%);
  box-shadow: 0 22px 55px rgba(20, 33, 61, 0.16);
}

.job-board-layout {
  grid-template-columns: 290px minmax(0, 1fr) 300px;
  gap: 22px;
}

.filter-panel,
.company-panel,
.modern-job-card {
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(20, 33, 61, 0.1);
}

.filter-panel {
  overflow: hidden;
}

.filter-title {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.filter-title a {
  color: #f7d278;
}

.modern-job-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-left: 7px solid var(--teal);
}

.modern-job-card::before {
  position: absolute;
  inset: 0;
  width: 110px;
  content: "";
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.1), rgba(217, 164, 65, 0.12));
}

.modern-job-card.is-featured,
.modern-job-card:hover {
  border-color: rgba(217, 164, 65, 0.65);
  border-left-color: var(--gold);
  box-shadow: 0 28px 72px rgba(20, 33, 61, 0.16);
}

.job-logo,
.company-avatar {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.25);
}

.job-tags span {
  border: 1px solid rgba(15, 118, 110, 0.16);
  color: var(--teal);
  background: var(--mint);
}

.company-panel {
  position: sticky;
  top: 116px;
  overflow: hidden;
}

.company-panel::before {
  height: 136px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.75), rgba(15, 118, 110, 0.62)),
    url("https://images.unsplash.com/photo-1581092919535-7146ff1a590b?auto=format&fit=crop&w=700&q=80") center / cover no-repeat;
}

.company-stat {
  border-radius: 18px;
  background: #f8fafc;
}

.feature-grid,
.process-grid,
.testimonial-grid,
.insight-grid {
  gap: 18px;
}

.feature-grid article,
.process-grid div,
.testimonial-grid article,
.insight-grid article {
  padding: 28px;
}

.feature-grid article h3,
.process-grid h3,
.testimonial-grid h3,
.insight-grid h3 {
  color: var(--navy);
}

.testimonial-grid article {
  position: relative;
  overflow: hidden;
}

.testimonial-grid article::before {
  color: rgba(15, 118, 110, 0.12);
}

.founder-profile-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 44px;
  border-radius: 36px;
  background: linear-gradient(135deg, #ffffff, #edf7f4);
  box-shadow: var(--shadow);
}

.founder-profile-section > div:last-child {
  padding: 0;
}

.gradient-section {
  padding: 46px;
  border-radius: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(184, 95, 56, 0.78)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1500&q=82") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.gradient-section h2,
.gradient-section p,
.gradient-section .eyebrow {
  color: #fff;
}

.site-footer {
  width: auto;
  margin: 92px 0 0;
  padding: 70px 6vw 90px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(20, 33, 61, 0.94)),
    url("https://images.unsplash.com/photo-1531973576160-7125cd663d86?auto=format&fit=crop&w=1500&q=82") center / cover no-repeat;
}

.site-footer h3 {
  color: #f7d278;
}

.site-footer a:hover {
  color: #fff;
}

.floating-contact a {
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(20, 33, 61, 0.18);
}

.chatbot-toggle {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

@keyframes imageSlideIn {
  from {
    opacity: 0;
    transform: translateX(80px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .portal-hero {
    min-height: 720px;
    background-position: center;
  }

  .portal-hero::after {
    display: none;
  }

  .hero-trust,
  .job-board-layout,
  .trust-band,
  .about-band,
  .cv-cta,
  .founder-profile-section {
    grid-template-columns: 1fr;
  }

  .category-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-search-card {
    grid-template-columns: 1fr;
  }

  .company-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .top-strip {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 4px;
  }

  .site-header {
    padding: 12px 5vw;
  }

  .brand img {
    width: 156px;
  }

  .portal-hero,
  .page-hero,
  .service-hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .portal-hero h1 {
    font-size: 44px;
  }

  .portal-hero .lead {
    font-size: 17px;
  }

  .hero-trust,
  .category-showcase,
  .stats {
    grid-template-columns: 1fr;
  }

  .content-section,
  .trust-band,
  .about-band,
  .cv-cta,
  .split,
  .contact-layout,
  .service-detail,
  .founder-profile-section,
  .job-board-section {
    width: min(92vw, 100%);
    margin: 52px auto;
  }

  .trust-band,
  .light-section,
  .cv-cta,
  .founder-profile-section,
  .gradient-section,
  .openings-banner {
    padding: 28px;
    border-radius: 28px;
  }

  .about-band > div {
    padding: 28px;
  }

  .content-section h2,
  .about-band h2,
  .cv-cta h2,
  .page-hero h1,
  .service-hero h1 {
    font-size: 36px;
  }

  .page-search {
    width: 100%;
  }
}

/* Client screenshot fixes: search pills, trust section, overview graphic, enquiry validation */
.popular-searches {
  flex-wrap: nowrap;
  width: max-content;
  max-width: calc(100vw - 12vw);
}

.popular-searches span {
  white-space: nowrap;
}

.popular-searches a {
  flex: 0 0 auto;
  padding: 11px 18px;
  font-size: 14px;
  white-space: nowrap;
}

.trust-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(247, 210, 120, 0.9), transparent 18rem),
    radial-gradient(circle at 56% 74%, rgba(20, 184, 166, 0.78), transparent 20rem),
    linear-gradient(135deg, #10233f 0%, #0f766e 48%, #b85f38 100%);
  animation: trustColorFlow 9s ease-in-out infinite alternate;
}

.trust-band::before {
  position: absolute;
  inset: -45%;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.24) 48%, transparent 55% 100%);
  transform: translateX(-35%);
  animation: trustShine 5.5s ease-in-out infinite;
}

.trust-band > * {
  position: relative;
  z-index: 1;
}

.trust-band h2 {
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.client-logo-grid span {
  color: #10233f;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 42px rgba(7, 17, 31, 0.18);
  animation: logoPop 3.8s ease-in-out infinite;
}

.client-logo-grid span:nth-child(2n) {
  background: rgba(247, 210, 120, 0.86);
}

.client-logo-grid span:nth-child(3n) {
  background: rgba(214, 244, 238, 0.9);
}

.client-logo-grid span:nth-child(4n) {
  background: rgba(255, 229, 222, 0.92);
}

.client-logo-grid span:nth-child(2) {
  animation-delay: 0.15s;
}

.client-logo-grid span:nth-child(3) {
  animation-delay: 0.3s;
}

.client-logo-grid span:nth-child(4) {
  animation-delay: 0.45s;
}

.client-logo-grid span:nth-child(5) {
  animation-delay: 0.6s;
}

.client-logo-grid span:nth-child(6) {
  animation-delay: 0.75s;
}

.client-logo-grid span:nth-child(7) {
  animation-delay: 0.9s;
}

.client-logo-grid span:nth-child(8) {
  animation-delay: 1.05s;
}

.founder-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 42px 250px 42px 42px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(15, 118, 110, 0.82)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=900&q=82") center / cover no-repeat;
}

.founder-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.26)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px);
}

.founder-card::after {
  position: absolute;
  right: 34px;
  top: 50%;
  width: 170px;
  height: 170px;
  content: "";
  border: 18px solid rgba(247, 210, 120, 0.9);
  border-right-color: rgba(20, 184, 166, 0.92);
  border-bottom-color: rgba(216, 79, 63, 0.88);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 28px rgba(255, 255, 255, 0.12),
    0 28px 64px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
  animation: overviewOrbit 7s linear infinite;
}

.founder-card span,
.founder-card h3,
.founder-card p {
  position: relative;
  z-index: 1;
}

.founder-card span {
  color: #f7d278;
  background: rgba(247, 210, 120, 0.14);
  border: 1px solid rgba(247, 210, 120, 0.3);
}

.founder-card h3 {
  color: #ffffff;
}

.founder-card p {
  color: rgba(255, 255, 255, 0.86);
}

.field-error {
  display: block;
  margin-top: 8px;
  color: #c9281d;
  font-size: 13px;
  font-weight: 900;
}

input.has-error,
textarea.has-error,
select.has-error {
  border-color: #d84f3f !important;
  box-shadow: 0 0 0 4px rgba(216, 79, 63, 0.14);
}

@keyframes trustColorFlow {
  from {
    filter: saturate(1) hue-rotate(0deg);
  }
  to {
    filter: saturate(1.2) hue-rotate(8deg);
  }
}

@keyframes trustShine {
  0%, 42% {
    transform: translateX(-45%) rotate(0.001deg);
  }
  78%, 100% {
    transform: translateX(45%) rotate(0.001deg);
  }
}

@keyframes logoPop {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.035);
  }
}

@keyframes overviewOrbit {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media (max-width: 980px) {
  .popular-searches {
    flex-wrap: wrap;
    width: auto;
    max-width: 100%;
  }

  .founder-card {
    padding: 34px;
  }

  .founder-card::after {
    position: relative;
    right: auto;
    top: auto;
    display: block;
    margin-top: 24px;
    transform: none;
  }
}

/* Final overlap and empty-card correction */
.portal-hero::after {
  right: 4vw;
  bottom: 30px;
  z-index: 0;
  width: min(310px, 24vw);
  min-height: 94px;
  padding: 18px;
  font-size: 11px;
  opacity: 0.78;
  pointer-events: none;
}

.portal-hero-inner {
  position: relative;
  z-index: 3;
}

.popular-searches {
  width: 100%;
  max-width: 100%;
  gap: 10px;
}

.popular-searches a {
  padding: 10px 15px;
  font-size: 13px;
}

.founder-section .founder-card,
.content-section .founder-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 320px;
  padding: 46px 260px 46px 46px;
  color: #ffffff !important;
  border: 1px solid rgba(20, 33, 61, 0.12);
  background:
    radial-gradient(circle at 84% 42%, rgba(247, 210, 120, 0.95), transparent 8rem),
    radial-gradient(circle at 72% 68%, rgba(20, 184, 166, 0.95), transparent 11rem),
    linear-gradient(135deg, #07111f 0%, #14213d 48%, #0f766e 100%) !important;
}

.founder-section .founder-card::before,
.content-section .founder-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.76), rgba(7, 17, 31, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 46px);
}

.founder-section .founder-card::after,
.content-section .founder-card::after {
  position: absolute;
  right: 36px;
  top: 50%;
  z-index: -1;
  width: 178px;
  height: 178px;
  content: "";
  border: 18px solid #f7d278;
  border-right-color: #14b8a6;
  border-bottom-color: #d84f3f;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 34%, transparent 35%),
    conic-gradient(from 45deg, rgba(255, 255, 255, 0.28), transparent 38%, rgba(255, 255, 255, 0.22) 70%, transparent);
  box-shadow:
    inset 0 0 0 28px rgba(255, 255, 255, 0.08),
    0 28px 64px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  animation: overviewOrbit 6.5s linear infinite;
}

.founder-section .founder-card span,
.founder-section .founder-card h3,
.founder-section .founder-card p,
.content-section .founder-card span,
.content-section .founder-card h3,
.content-section .founder-card p {
  color: #ffffff !important;
  opacity: 1;
}

.founder-section .founder-card span,
.content-section .founder-card span {
  display: inline-flex;
  color: #f7d278 !important;
  background: rgba(247, 210, 120, 0.16);
  border: 1px solid rgba(247, 210, 120, 0.38);
}

@media (max-width: 1280px) {
  .portal-hero::after {
    display: none;
  }

  .popular-searches {
    flex-wrap: wrap;
  }
}

@media (max-width: 980px) {
  .founder-section .founder-card,
  .content-section .founder-card {
    padding: 34px;
  }

  .founder-section .founder-card::after,
  .content-section .founder-card::after {
    right: 22px;
    top: auto;
    bottom: 22px;
    width: 92px;
    height: 92px;
    border-width: 11px;
    opacity: 0.45;
    transform: none;
  }
}

/* Real visible overview graphic inside the card */
.founder-section .overview-card,
.content-section .overview-card,
.overview-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 24px;
  min-height: 320px;
  padding: 42px !important;
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(15, 118, 110, 0.88)),
    url("https://images.unsplash.com/photo-1581091215367-59ab6dcf6234?auto=format&fit=crop&w=900&q=82") center / cover no-repeat !important;
}

.overview-copy,
.overview-motion {
  position: relative;
  z-index: 3;
}

.overview-copy span {
  color: #f7d278 !important;
}

.overview-copy h3,
.overview-copy p {
  color: #ffffff !important;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.overview-motion {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.motion-ring {
  position: absolute;
  width: 112px;
  height: 112px;
  border: 14px solid #f7d278;
  border-right-color: #14b8a6;
  border-bottom-color: #d84f3f;
  border-radius: 50%;
  animation: overviewOrbit 4.8s linear infinite;
}

.motion-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
  animation: motionPulse 2.4s ease-in-out infinite;
}

.dot-one {
  top: 34px;
  right: 42px;
}

.dot-two {
  left: 34px;
  bottom: 42px;
  background: #f7d278;
  animation-delay: 0.45s;
}

.motion-line {
  position: absolute;
  left: 34px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform-origin: left;
  animation: motionBars 2.8s ease-in-out infinite;
}

.line-one {
  bottom: 54px;
  width: 112px;
}

.line-two {
  bottom: 34px;
  width: 82px;
  background: rgba(247, 210, 120, 0.9);
  animation-delay: 0.25s;
}

.line-three {
  bottom: 74px;
  width: 58px;
  background: rgba(20, 184, 166, 0.95);
  animation-delay: 0.5s;
}

@keyframes motionPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.24);
    opacity: 1;
  }
}

@keyframes motionBars {
  0%, 100% {
    transform: scaleX(0.72);
  }
  50% {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .founder-section .overview-card,
  .content-section .overview-card,
  .overview-card {
    grid-template-columns: 1fr;
  }

  .overview-motion {
    width: 150px;
    height: 150px;
  }
}
