:root {
  --blue: #0f5fce;
  --blue-dark: #073f91;
  --navy: #10233f;
  --orange: #f47a1f;
  --ink: #1d2939;
  --muted: #667085;
  --line: #dbe3ef;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(16, 35, 63, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -120px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.top-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

.top-strip-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.top-strip a,
.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 227, 239, 0.8);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-link img {
  width: 178px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: #344054;
  font-weight: 650;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-dark);
  background: #edf5ff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  min-width: 148px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 10px 22px rgba(7, 63, 145, 0.22);
}

.btn-primary:hover {
  background: var(--blue);
}

.btn-secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: #b9cce8;
}

.btn-secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 20px rgba(16, 35, 63, 0.08);
}

.btn-text {
  color: var(--blue-dark);
  padding-inline: 0;
  min-height: auto;
  min-width: 0;
}

.btn-text:hover {
  transform: none;
}

.banner-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.banner-slides,
.banner-slide {
  position: absolute;
  inset: 0;
}

.banner-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.banner-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 31, 67, 0.94) 0%, rgba(8, 31, 67, 0.75) 44%, rgba(8, 31, 67, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 31, 67, 0.12), rgba(8, 31, 67, 0.58));
}

.banner-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  align-content: center;
  max-width: min(var(--max), calc(100% - 40px));
}

.banner-content h1 {
  max-width: 820px;
  color: var(--white);
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.banner-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.banner-content .kicker {
  color: #ff9b4a;
}

.banner-content .btn-secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.banner-controls {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.banner-dot,
.testimonial-dot {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.banner-dot.is-active {
  background: var(--orange);
}

.kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

.page-header p,
.section-intro p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.section {
  padding-block: 86px;
}

.soft-section {
  background: var(--soft);
}

.section-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-action {
  margin-top: 34px;
}

.source-note,
.integration-note,
.assumption-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.source-note {
  max-width: 780px;
  margin: -10px 0 22px;
}

.integration-note,
.assumption-note {
  margin: 4px 0 0;
  padding: 12px;
  border: 1px dashed #b9cce8;
  border-radius: var(--radius);
  background: #f7fbff;
}

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

.one-column {
  grid-template-columns: 1fr;
}

.info-card,
.specialization-card,
.testimonial-card,
.job-card,
.inquiry-form,
.contact-panel,
.job-detail,
.jobs-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.05);
}

.info-card,
.specialization-card,
.testimonial-card,
.job-card,
.jobs-aside {
  padding: 24px;
}

.info-card p,
.specialization-card p,
.testimonial-card span,
.job-card p,
.jobs-aside p {
  color: var(--muted);
}

.card-rule {
  width: 44px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--blue-dark), var(--orange));
}

.specialization-card ul,
.terms-list,
.job-detail ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.specialization-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  color: #344054;
}

.specialization-card li svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--orange);
}

.process-section {
  background: linear-gradient(180deg, var(--white), #f8fbff);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-step > span {
  color: var(--orange);
  font-size: 1.8rem;
  font-weight: 850;
}

.process-step p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.partner-logo img {
  max-height: 54px;
  object-fit: contain;
}

.audience-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.audience-cta {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.05);
}

.audience-cta:first-child {
  background: linear-gradient(140deg, #ffffff, #f2f7ff);
}

.audience-cta p {
  color: var(--muted);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 63, 145, 0.1), rgba(244, 122, 31, 0.08)),
    #f4f8ff;
  box-shadow: 0 24px 70px rgba(7, 63, 145, 0.14);
}

.testimonial-track {
  position: relative;
  min-height: 310px;
}

.testimonial-card {
  margin: 0;
}

.testimonial-pane {
  position: absolute;
  inset: 0;
  display: block;
  padding: 42px 48px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.testimonial-content {
  max-width: 900px;
  padding-left: 22px;
  border-left: 5px solid var(--orange);
}

.testimonial-pane.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.55;
}

.testimonial-card figcaption strong,
.testimonial-card figcaption span {
  display: block;
}

.testimonial-card figcaption strong {
  color: var(--blue-dark);
}

.testimonial-card figcaption span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  margin-bottom: 18px;
  color: #ffb85a;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 30px 28px;
}

.testimonial-dots {
  display: flex;
  gap: 9px;
}

.testimonial-dot {
  background: #c8d7eb;
}

.testimonial-dot.is-active {
  background: var(--orange);
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--white);
  border-color: #b9cce8;
  cursor: pointer;
}

.testimonial-arrow:first-child svg {
  transform: rotate(180deg);
}

.page-header {
  padding-block: 86px 66px;
  background:
    linear-gradient(135deg, rgba(237, 245, 255, 0.95), rgba(255, 255, 255, 0.95)),
    linear-gradient(90deg, var(--blue-dark), var(--orange));
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.split-layout,
.contact-layout,
.job-detail-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 36px;
  align-items: center;
}

.align-start,
.contact-layout,
.job-detail-layout {
  align-items: start;
}

.rounded-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-photo {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid #bfd3ef;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #f4f8ff;
  font-size: 0.88rem;
  font-weight: 750;
}

.jobs-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.cv-intake-layout {
  grid-template-columns: 0.82fr 1fr;
}

.jobs-layout .jobs-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.jobs-aside {
  position: sticky;
  top: 150px;
}

.mini-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.jobs-toolbar span {
  color: var(--muted);
  font-size: 0.92rem;
}

.job-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.job-filter-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #edf5ff;
  font-size: 0.84rem;
  font-weight: 750;
}

.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 26px;
  align-items: center;
}

.job-card dl,
.job-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.job-card dl {
  grid-column: 1 / -1;
}

.job-card .btn-text {
  align-self: start;
  white-space: nowrap;
}

.job-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.job-card dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-weight: 700;
}

.job-detail,
.inquiry-form,
.contact-panel {
  padding: 28px;
}

.job-detail h2 {
  margin-top: 28px;
  font-size: 1.45rem;
}

.job-detail p,
.job-detail li,
.legal-copy p {
  color: var(--muted);
}

.job-detail li,
.terms-list li {
  position: relative;
  padding-left: 24px;
  margin-top: 10px;
}

.job-detail li::before,
.terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.job-meta-row span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: #f7fbff;
  font-weight: 750;
}

.schema-note {
  margin-top: 28px;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--soft);
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 750;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(15, 95, 206, 0.16);
  border-color: var(--blue);
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-panel a,
.contact-panel p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #344054;
}

.contact-panel h2 {
  margin-bottom: 8px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.check-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #344054;
}

.check-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(244, 122, 31, 0.12);
}

.cta-band {
  padding-block: 54px;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-dark), var(--navy));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.cta-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.legal-copy {
  max-width: 850px;
}

.legal-copy h2 {
  margin-top: 30px;
  font-size: 1.5rem;
}

.site-footer {
  padding-block: 64px 24px;
  color: rgba(255, 255, 255, 0.82);
  background: #0c1d35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 42px;
}

.footer-logo {
  width: 180px;
  height: auto;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  max-width: 460px;
  margin-top: 18px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .top-strip-inner {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
    gap: 14px;
  }

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .job-detail-layout,
  .cv-intake-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .specialization-grid,
  .jobs-grid,
  .partner-strip,
  .audience-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-layout {
    grid-template-columns: 1fr;
  }

  .jobs-aside {
    position: static;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .top-strip {
    display: none;
  }

  .navbar {
    min-height: 74px;
  }

  .brand-link img {
    width: 142px;
  }

  .nav-menu {
    top: calc(100% + 6px);
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 14px;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .hero {
    background: linear-gradient(180deg, #ffffff, #eef6ff);
  }

  .banner-hero,
  .banner-content {
    min-height: 620px;
  }

  .banner-content {
    min-height: 620px;
    align-content: start;
    padding-block: 86px 92px;
  }

  .banner-content h1 {
    font-size: 2.22rem;
    line-height: 1.06;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .banner-overlay {
    background:
      linear-gradient(180deg, rgba(8, 31, 67, 0.92) 0%, rgba(8, 31, 67, 0.82) 52%, rgba(8, 31, 67, 0.7) 100%);
  }

  h1 {
    font-size: 2.28rem;
    line-height: 1.04;
  }

  .banner-controls {
    bottom: 24px;
  }

  .section {
    padding-block: 62px;
  }

  .page-header {
    padding-block: 58px 48px;
  }

  .card-grid,
  .specialization-grid,
  .jobs-grid,
  .partner-strip,
  .footer-grid,
  .audience-cta-grid {
    grid-template-columns: 1fr;
  }

  .jobs-toolbar {
    display: grid;
  }

  .job-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .testimonial-track {
    min-height: 430px;
  }

  .testimonial-pane {
    padding: 30px 24px;
  }

  .testimonial-card blockquote {
    font-size: 1.05rem;
  }

  .testimonial-controls {
    padding: 0 20px 22px;
  }

  .job-card dl,
  .job-meta-row {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .footer-bottom {
    display: grid;
  }

  .cta-actions,
  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }
}
