:root {
  --blue: #0000b4;
  --blue-dark: #00008c;
  --blue-soft: #ededff;
  --black: #050507;
  --ink: #111118;
  --muted: #5f6270;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Aptos Display", "Segoe UI", Calibri, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 10;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(0, 0, 180, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 58px;
  overflow: hidden;
  border-radius: 10px;
}

.brand img {
  width: auto;
  height: 54px;
  max-width: min(280px, 45vw);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.95rem;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  opacity: 0.86;
  transition: background 180ms ease, opacity 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 76% 8%, rgba(255, 255, 255, 0.11), transparent 26%),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -18vw -22vw auto;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 78px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 4vw, 56px);
  padding-block: clamp(62px, 8vw, 120px);
  text-align: center;
}

.hero-logo-lockup {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.5vw, 30px);
}

.hero-animated-logo {
  width: min(980px, 96vw);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.hero-strapline-title {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(2.2rem, 5.8vw, 6.6rem);
  font-weight: 320;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 920px;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.72;
}

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

h1 {
  margin: 0 auto 22px;
  max-width: 900px;
  font-size: clamp(2.25rem, 4.2vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.strapline {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 14px;
  font-size: clamp(1rem, 2vw, 1.28rem);
  color: var(--blue);
  background: var(--white);
  border-radius: 999px;
}

.intro {
  margin-bottom: 28px;
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--blue);
  background: var(--white);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.hero-media {
  width: min(100%, 1040px);
  display: grid;
  place-items: center;
}

.slideshow {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 47vw, 620px);
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 620ms ease, transform 950ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slideshow-controls {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  color: var(--white);
  background: rgba(5, 5, 7, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.slideshow-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
}

.slide-status {
  min-width: 54px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.slideshow-arrow:hover,
.slideshow-arrow:focus-visible {
  color: var(--blue);
  background: var(--white);
  outline: none;
}

.section {
  padding-block: clamp(74px, 9vw, 132px);
}

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

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

.split-grid,
.about-grid,
.contact-grid,
.credentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.image-stack {
  position: relative;
}

.main-portrait {
  width: min(100%, 500px);
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 34px;
  max-width: 285px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 180, 0.24);
}

.floating-note span {
  font-weight: 850;
  line-height: 1.15;
}

.split-copy p:not(.eyebrow),
.about-copy p:not(.eyebrow),
.contact-grid p:not(.eyebrow),
.credentials-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 0, 180, 0.09);
}

.credentials-section {
  padding-block: clamp(70px, 9vw, 120px);
  background: #f4f4fb;
}

.credentials-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.badge-card {
  min-height: 162px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 180, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.badge-card img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.badge-card:nth-child(4) img {
  max-height: 126px;
}

.statement {
  color: var(--white);
  background: var(--blue);
}

.statement-inner {
  padding-block: clamp(54px, 8vw, 100px);
}

.statement p {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 5.4rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

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

.about-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.66fr);
}

.profile-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.profile-text {
  display: grid;
  gap: 2px;
  padding: 20px;
}

.profile-text strong {
  font-size: 1.12rem;
}

.profile-text span {
  color: var(--muted);
}

.contact-section {
  padding-block: clamp(70px, 9vw, 122px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, var(--black), var(--blue));
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.contact-grid p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-note {
  margin-top: 18px;
}

.linkedin-inline {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.linkedin-inline:hover,
.linkedin-inline:focus-visible {
  color: var(--blue);
  background: var(--white);
  outline: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row-full,
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.form-row label span {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.74;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(5, 5, 7, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.10);
}

.form-row option {
  color: var(--ink);
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 750;
}

@media (max-width: 980px) {
  .split-grid,
  .about-grid,
  .contact-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

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

  .image-stack {
    order: 2;
  }
}

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

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

  .header-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 14px;
  }

  .brand {
    width: auto;
  }

  .brand img {
    height: 50px;
    max-width: min(280px, 78vw);
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav a {
    padding-inline: 8px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 4.2rem);
  }

  .hero-strapline-title {
    font-size: clamp(2.05rem, 12vw, 4.8rem);
  }

  .hero-animated-logo {
    width: min(100%, 760px);
  }

  .service-grid,
  .badge-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .number {
    margin-bottom: 32px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -36px auto 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .slideshow {
    min-height: 320px;
  }

  .slideshow-controls {
    top: 12px;
    right: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 24px;
  }
}

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