:root {
  color-scheme: light;
  --navy: #0b1d33;
  --navy-deep: #061321;
  --ink: #101923;
  --teal: #00a6a6;
  --teal-deep: #087f83;
  --gray: #8a96a2;
  --paper: #f7f9fb;
  --white: #ffffff;
  --line: rgba(11, 29, 51, 0.11);
  --page: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 0.5rem;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 5.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: rgba(6, 19, 33, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-logo {
  width: 2.1rem;
  height: 2.5rem;
  overflow: visible;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
}

.brand-name {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.8rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1.2rem;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.35);
}

.language-button {
  padding: 0.35rem 0.1rem;
  color: rgba(255, 255, 255, 0.48);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.language-button.is-active {
  color: var(--white);
}

.language-button:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.contact-links a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(0, 166, 166, 0.62);
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.7rem 1.15rem;
  color: var(--navy);
  background: var(--white);
}

.button-small:hover {
  background: #eafafa;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 0.9rem 2rem rgba(0, 166, 166, 0.2);
}

.button-primary:hover {
  background: #08b4b4;
}

.hero {
  min-height: 100svh;
  padding: 9rem 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 32%, rgba(0, 166, 166, 0.14), transparent 27rem),
    linear-gradient(135deg, #071525, var(--navy));
}

.hero-grid {
  width: var(--page);
  min-height: calc(100svh - 15rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #49cccc;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3.7rem, 7.6vw, 7rem);
  line-height: 0.93;
}

.hero-lead {
  max-width: 680px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-top: 2.7rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.text-link span:last-child {
  color: var(--teal);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover span:last-child {
  transform: translateY(4px);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 31rem;
  display: grid;
  place-items: center;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(17rem, 65%);
  filter: drop-shadow(0 2rem 2rem rgba(0, 0, 0, 0.28));
}

.visual-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.visual-ring-one {
  width: 31rem;
  height: 31rem;
}

.visual-ring-two {
  width: 22rem;
  height: 22rem;
  border-color: rgba(0, 166, 166, 0.2);
}

.route-card {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: 1rem;
  width: 14.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(6, 19, 33, 0.68);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
  font-weight: 650;
}

.route-line {
  grid-column: 1 / -1;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(255, 255, 255, 0.12));
}

.hero-strip {
  width: var(--page);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-strip > div {
  min-height: 6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  font-weight: 650;
}

.hero-strip > div + div {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-number {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 9rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
  align-items: end;
  gap: 4rem;
}

.section h2,
.contact h2 {
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 0.4rem;
  color: #65717d;
  font-size: 1.05rem;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4.5rem;
}

.service-card {
  position: relative;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 4vw, 2.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.4rem 3rem rgba(11, 29, 51, 0.1);
}

.service-card-dark {
  color: var(--white);
  border-color: transparent;
  background: var(--navy);
}

.service-card-teal {
  color: var(--white);
  border-color: transparent;
  background: var(--teal-deep);
}

.service-index {
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card-dark .service-index,
.service-card-teal .service-index {
  color: rgba(255, 255, 255, 0.55);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin: 3.2rem 0 2.3rem;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-teal .service-icon {
  stroke: var(--white);
}

.service-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: #697580;
  font-size: 1rem;
  line-height: 1.65;
}

.service-card-dark p,
.service-card-teal p {
  color: rgba(255, 255, 255, 0.67);
}

.process {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 8vw, 8rem);
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 9rem;
}

.process-intro p:last-child {
  max-width: 31rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.7;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 2.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.step-number {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.process-list p {
  max-width: 37rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.principles {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.principles-copy {
  align-self: start;
  position: sticky;
  top: 9rem;
}

.principle-list {
  border-top: 1px solid var(--line);
}

.principle-list article {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.principle-list article > span {
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.principle-list h3,
.principle-list p {
  grid-column: 2;
}

.principle-list h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.principle-list p {
  margin: 0.85rem 0 0;
  color: #68747f;
  line-height: 1.65;
}

.contact {
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) clamp(3rem, 7vw, 6rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(2.2rem, 6vw, 5.5rem);
  border-radius: 2rem;
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 60%, rgba(0, 166, 166, 0.14)),
    var(--navy-deep);
}

.contact-copy > p:last-child {
  max-width: 37rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-links {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-links a {
  display: grid;
  grid-template-columns: minmax(5.5rem, 0.55fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.contact-links span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-links b {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--teal);
  transition: transform 180ms ease;
}

.contact-links a:hover b {
  transform: translate(3px, -3px);
}

.site-footer {
  min-height: 6.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  color: #74808b;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.footer-brand {
  justify-self: start;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a:last-child {
  justify-self: end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  .hero-copy {
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 23rem;
  }

  .hero-logo {
    width: 12rem;
  }

  .visual-ring-one {
    width: 23rem;
    height: 23rem;
  }

  .visual-ring-two {
    width: 16rem;
    height: 16rem;
  }

  .route-card {
    right: 7%;
  }

  .section-heading,
  .process,
  .principles,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .process-intro,
  .principles-copy {
    position: static;
  }

  .contact-panel {
    gap: 3rem;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  .site-header {
    height: 4.75rem;
    padding: 0 1rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 1.75rem;
    height: 2.1rem;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .button-small {
    min-height: 2.45rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-grid {
    min-height: auto;
    gap: 2rem;
    padding: 2.5rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.3rem;
  }

  .hero-visual {
    min-height: 20rem;
  }

  .route-card {
    right: 0;
    bottom: 0;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip > div {
    min-height: 4.25rem;
  }

  .hero-strip > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .section {
    padding: 5.5rem 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .service-card {
    min-height: 19rem;
  }

  .process {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .process-list li {
    grid-template-columns: 2.8rem 1fr;
    gap: 0.8rem;
  }

  .principle-list article {
    grid-template-columns: 2.8rem 1fr;
  }

  .contact {
    padding-right: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
  }

  .contact-panel {
    padding: 2rem 1.25rem;
    border-radius: 1.35rem;
  }

  .contact-links a {
    grid-template-columns: 1fr auto;
  }

  .contact-links span {
    grid-column: 1;
  }

  .contact-links strong {
    grid-column: 1;
  }

  .contact-links b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1.5rem 0;
    text-align: center;
  }

  .footer-brand,
  .site-footer a:last-child {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
