:root {
  --bg: #04161b;
  --bg-deep: #071f26;
  --bg-soft: #0a2d36;
  --surface: rgba(9, 34, 41, 0.78);
  --surface-strong: rgba(10, 44, 53, 0.94);
  --surface-light: rgba(130, 255, 255, 0.06);
  --line: rgba(113, 244, 255, 0.18);
  --line-strong: rgba(113, 244, 255, 0.32);
  --text: #f4fcff;
  --text-soft: #a9c9cf;
  --accent: #44d8e7;
  --accent-strong: #7ef1fb;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 999px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(64, 197, 216, 0.18), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(68, 216, 231, 0.12), transparent 22%),
    linear-gradient(180deg, #04161b 0%, #031015 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.32;
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 22, 27, 0.9);
  border-bottom: 1px solid rgba(126, 241, 251, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(210px, 30vw);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-menu a {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #1895a4 100%);
  color: #031015;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
  box-shadow: 0 12px 24px rgba(68, 216, 231, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(68, 216, 231, 0.3);
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(126, 241, 251, 0.08);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.hero {
  padding: 44px 0 28px;
}

.hero-grid,
.split-layout,
.contact-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.section-copy p,
.service-card p,
.feature-card p,
.contact-copy p,
.brand-panel p,
.metrics-grid p,
.hero-info-card p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1rem;
}

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

.hero-highlights {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.hero-highlights li::before {
  content: "-";
  margin-right: 10px;
  color: var(--accent-strong);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-logo-card,
.hero-info-card,
.metrics-grid article,
.service-card,
.brand-panel,
.feature-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(126, 241, 251, 0.02) 100%),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-logo-card {
  padding: 32px;
}

.hero-logo-card img {
  width: 100%;
  max-width: 460px;
  min-height: 280px;
  max-height: 340px;
  object-fit: cover;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  will-change: transform, opacity;
}

[data-reveal="left"] {
  transform: translateX(34px);
}

[data-reveal="right"] {
  transform: translateX(-34px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.hero-info-card {
  padding: 22px;
}

.card-label,
.metric-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-info-card h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  line-height: 1.05;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.info-list div {
  padding-top: 14px;
  border-top: 1px solid rgba(126, 241, 251, 0.1);
}

.info-list span,
.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.info-list strong,
.contact-item a,
.contact-item p {
  font-size: 1.04rem;
  font-weight: 700;
}

.metrics {
  padding: 10px 0 28px;
}

.metrics-grid,
.services-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metrics-grid article,
.service-card,
.feature-card {
  padding: 24px;
}

.metrics-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: "Outfit", sans-serif;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
}

.services-grid,
.features-grid {
  align-items: stretch;
}

.service-card,
.feature-card {
  position: relative;
}

.card-index {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
}

.service-card h3,
.feature-card h3,
.brand-panel h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-family: "Outfit", sans-serif;
}

.section-dark {
  background:
    radial-gradient(circle at 10% 20%, rgba(68, 216, 231, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(8, 31, 38, 0.96) 0%, rgba(4, 19, 24, 0.96) 100%);
}

.brand-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(126, 241, 251, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%),
    var(--surface-strong);
}

.brand-panel img {
  width: 180px;
  flex: none;
  min-height: 320px;
  object-fit: cover;
}

.director-section {
  padding-top: 48px;
  background: #f2f3f5;
  color: #163c82;
  position: relative;
  overflow: hidden;
}

.director-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(33, 70, 144, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(242, 243, 245, 0.9));
  pointer-events: none;
}

.director-photo-card {
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
  box-shadow: 0 24px 50px rgba(15, 34, 78, 0.12);
  align-self: stretch;
}

.director-photo-card img {
  display: block;
  width: 100%;
  min-height: 560px;
  object-fit: contain;
  object-position: center;
  background: #edf4fb;
}

.director-copy {
  align-self: center;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.director-kicker {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.director-line {
  display: inline-block;
  width: 86px;
  height: 6px;
  margin: 28px 0 26px;
  background: #214690;
  border-radius: 999px;
}

.director-lead {
  margin: 0 0 18px;
  color: #173a77;
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  line-height: 1.6;
  font-weight: 700;
  max-width: 32rem;
}

.director-text {
  margin: 0;
  color: #244587;
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  line-height: 1.9;
  max-width: 34rem;
}

.director-signature {
  margin: 64px 0 0;
  color: #244587;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  line-height: 1.1;
  opacity: 0.94;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.photo-section {
  padding-top: 12px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.photo-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.photo-card-large img {
  min-height: 420px;
}

.photo-credit {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-section {
  padding-top: 34px;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(126, 241, 251, 0.1);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.site-footer {
  padding: 30px 0 44px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(126, 241, 251, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 72px;
}

.footer-brand p,
.footer-link {
  margin: 0;
  font-weight: 700;
}

.footer-brand small {
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .contact-shell,
  .metrics-grid,
  .services-grid,
  .features-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-card img {
    max-width: 380px;
    min-height: 240px;
    max-height: 280px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-menu {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: rgba(5, 24, 29, 0.96);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-logo-card,
  .hero-info-card,
  .brand-panel,
  .contact-card {
    padding: 24px;
  }

  .brand img {
    width: 170px;
  }

  .brand-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-panel img {
    width: 100%;
    min-height: 260px;
  }

  .director-photo-card img {
    min-height: 380px;
  }

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

  .director-line {
    margin: 20px 0 18px;
  }

  .director-signature {
    margin-top: 36px;
  }

  .footer-content,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}
