:root {
  --bg: #f6f8fb;
  --bg-soft: #edf2f8;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --text: #2f3b52;
  --muted: #6f7c93;
  --line: rgba(95, 120, 167, 0.16);
  --glow: #69b9c2;
  --glow-strong: #8b79bf;
  --accent: #6f9fca;
  --shadow: 0 18px 48px rgba(62, 79, 117, 0.12);
  --radius: 24px;
  --container: 1180px;
  --site-gutter: 1rem;
  --hero-image:
    linear-gradient(90deg, rgba(246, 248, 251, 0.94) 0%, rgba(246, 248, 251, 0.68) 42%, rgba(246, 248, 251, 0.18) 75%, rgba(246, 248, 251, 0.04) 100%),
    radial-gradient(circle at 72% 28%, rgba(105, 185, 194, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(139, 121, 191, 0.1), rgba(246, 248, 251, 0.08));
  --services-image:
    linear-gradient(135deg, rgba(251, 253, 255, 0.9), rgba(241, 246, 252, 0.8)),
    radial-gradient(circle at 18% 22%, rgba(111, 159, 202, 0.08), transparent 22%);
  --results-image:
    linear-gradient(135deg, rgba(251, 253, 255, 0.88), rgba(239, 244, 251, 0.8)),
    radial-gradient(circle at 80% 30%, rgba(139, 121, 191, 0.09), transparent 24%);
  --approach-image:
    linear-gradient(135deg, rgba(249, 252, 255, 0.92), rgba(237, 243, 250, 0.84)),
    radial-gradient(circle at 25% 78%, rgba(111, 159, 202, 0.08), transparent 22%);
  --contact-image:
    linear-gradient(135deg, rgba(251, 253, 255, 0.94), rgba(239, 244, 251, 0.86)),
    radial-gradient(circle at 78% 20%, rgba(105, 185, 194, 0.08), transparent 20%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(105, 185, 194, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(139, 121, 191, 0.06), transparent 28%),
    linear-gradient(180deg, #fbfcfe 0%, #f1f5fa 42%, #f6f8fb 100%);
  line-height: 1.55;
}

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

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

.container {
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--container));
  margin: 0 auto;
}

.aurora {
  position: fixed;
  inset: auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.aurora-left {
  top: -6rem;
  left: -10rem;
  background: rgba(105, 185, 194, 0.1);
}

.aurora-right {
  top: 12rem;
  right: -10rem;
  background: rgba(139, 121, 191, 0.09);
}

.site-header,
.site-footer,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 253, 0.9);
  border-bottom: 1px solid rgba(95, 120, 167, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 253, 0.98);
  border-bottom-color: rgba(95, 120, 167, 0.16);
  box-shadow: 0 14px 34px rgba(62, 79, 117, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
  min-height: 4rem;
}

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

.brand-logo {
  width: 12.5rem;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.96rem;
  margin-left: auto;
  order: 2;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  border: 1px solid rgba(95, 120, 167, 0.16);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  border-radius: 14px;
  width: 3rem;
  height: 3rem;
  padding: 0;
  font: inherit;
  margin-left: auto;
}

.menu-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(95, 120, 167, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  margin-left: 1rem;
  flex: 0 0 auto;
  order: 3;
}

.lang-button {
  min-width: 2.7rem;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.7rem;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.is-active {
  background: linear-gradient(135deg, rgba(105, 185, 194, 0.16), rgba(139, 121, 191, 0.14));
  color: var(--text);
}

.hero {
  padding: 1.25rem 0 2.5rem;
}

.hero-stage {
  position: relative;
  overflow: clip;
}

.hero-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(calc((100% - var(--container)) / 2), var(--site-gutter));
  right: max(calc((100% - var(--container)) / 2), var(--site-gutter));
  z-index: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 28px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 700ms ease;
}

.hero-video.is-active {
  opacity: 0.88;
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(calc((100% - var(--container)) / 2), var(--site-gutter));
  right: max(calc((100% - var(--container)) / 2), var(--site-gutter));
  background-image: var(--hero-image);
  background-position: center var(--parallax-offset, 0px);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.04;
  z-index: 0;
  transform: translateZ(0);
  border-radius: 28px;
}

.hero-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(calc((100% - var(--container)) / 2), var(--site-gutter));
  right: max(calc((100% - var(--container)) / 2), var(--site-gutter));
  background:
    linear-gradient(180deg, rgba(248, 250, 253, 0.03), rgba(248, 250, 253, 0.1) 72%, rgba(248, 250, 253, 0.16) 100%),
    linear-gradient(90deg, rgba(248, 250, 253, 0.78) 0%, rgba(248, 250, 253, 0.38) 40%, rgba(248, 250, 253, 0.1) 58%, transparent 75%);
  z-index: 0;
  border-radius: 28px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  grid-template-areas:
    "copy panel"
    "copy actions";
  gap: 2rem;
  align-items: start;
  padding: 1.75rem;
}

.hero-copy {
  grid-area: copy;
}

.hero-summary {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 0.5rem;
  margin-top: -1rem;
}

.hero-summary-heading {
  margin-bottom: 1.5rem;
}

.contact-note {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.brand-inline {
  color: #2f3b52;
  font-weight: 700;
}

.hero-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
  gap: 2rem;
  align-items: start;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(95, 120, 167, 0.08);
}

.hero-facts {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-facts li {
  position: relative;
  padding: 0 0 0.85rem 1rem;
  border-bottom: 1px solid rgba(95, 120, 167, 0.1);
  font-weight: 700;
  line-height: 1.55;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glow), var(--accent));
  transform: translateY(-50%);
}

.hero-facts li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.prose-block {
  max-width: 56ch;
  text-align: justify;
  text-justify: inter-word;
}

.prose-block-compact {
  max-width: none;
}

.section-with-image {
  position: relative;
  overflow: clip;
}

.section-with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center var(--parallax-offset, 0px);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.38;
  z-index: 0;
  transform: translateZ(0);
}

.section-with-image > .container {
  position: relative;
  z-index: 1;
}

.services-section::before {
  background-image: var(--services-image);
}

.results-section::before {
  background-image: var(--results-image);
}

.approach-section::before {
  background-image: var(--approach-image);
}

.contact-section::before {
  background-image: var(--contact-image);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--glow-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  font-size: clamp(1.875rem, 4.2vw, 3.6rem);
  letter-spacing: -0.055em;
  font-weight: 700;
}

h2 {
  max-width: 16ch;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  letter-spacing: -0.05em;
  font-weight: 700;
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.hero-text,
.section-heading p,
.service-card p,
.approach-grid p,
.story-step p,
.contact-copy p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin: 0;
  font-size: 1.08rem;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
  align-self: start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--glow) 0%, var(--glow-strong) 100%);
  color: #ffffff;
}

.button-secondary {
  border: 1px solid rgba(95, 120, 167, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

.button-full {
  width: 100%;
}

.button-hero-cta {
  min-width: 16.5rem;
  min-height: 3.4rem;
  border: 1px solid rgba(95, 120, 167, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(62, 79, 117, 0.06);
  text-align: center;
}

.button-hero-cta:hover,
.button-hero-cta:focus-visible {
  border-color: rgba(95, 120, 167, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.hero-panel {
  grid-area: panel;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.panel-card,
.service-card,
.story-card,
.contact-card,
.approach-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1.15rem 1.2rem;
}

.panel-label,
.story-step span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.panel-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.panel-card li + li {
  margin-top: 0.45rem;
}

.panel-card p {
  margin: 0;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(105, 185, 194, 0.03), rgba(105, 185, 194, 0)),
    linear-gradient(0deg, rgba(139, 121, 191, 0.03), rgba(139, 121, 191, 0));
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading p {
  margin: 1rem 0 0;
  max-width: 60ch;
}

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

.service-card,
.approach-grid article {
  padding: 1.5rem;
}

.service-card h3,
.approach-grid h3 {
  margin-bottom: 0.8rem;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 2rem;
  align-items: start;
}

.story-card {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  background: var(--panel-strong);
}

.story-step {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.story-step p {
  margin: 0;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(111, 159, 202, 0.12);
  color: var(--glow-strong);
  font-weight: 700;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  gap: 2rem;
  align-items: center;
}

.contact-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(250, 247, 241, 0.72));
}

.contact-link {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.site-footer {
  padding: 1.4rem 0 2.4rem;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(95, 120, 167, 0.12);
}

@media (max-width: 900px) {
  .hero-grid,
  .hero-summary-grid,
  .results-grid,
  .contact-shell,
  .service-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-summary {
    padding-top: 2.25rem;
    margin-top: -0.6rem;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "actions"
      "panel";
    padding: 1.35rem;
  }

  .nav-shell {
    flex-wrap: wrap;
    min-height: auto;
  }

  h1 {
    max-width: 14ch;
  }
}

@media (min-width: 1100px) {
  .hero-video {
    object-fit: cover;
    object-position: center 24%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 0.85rem;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    margin-left: auto;
  }

  .language-switcher {
    order: 2;
    margin-left: 0.5rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid rgba(95, 120, 167, 0.12);
    border-radius: 20px;
    background: rgba(248, 250, 253, 0.98);
    box-shadow: var(--shadow);
    margin-left: 0;
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.85rem 0.8rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.72);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-stage::before,
  .section-with-image::before {
    background-attachment: scroll;
  }

  .hero-video {
    object-position: center top;
  }

  .section {
    padding: 4.2rem 0;
  }
}

@media (max-width: 560px) {
  :root {
    --site-gutter: 0.625rem;
  }

  .container {
    width: min(calc(100% - (var(--site-gutter) * 2)), var(--container));
  }

  .hero-grid {
    padding: 1rem;
  }

  .brand-logo {
    width: 9rem;
  }

  h1 {
    font-size: clamp(1.95rem, 10.5vw, 3rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

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

  .button {
    width: 100%;
  }

  .button-hero-cta {
    min-width: 0;
  }

  .hero-facts {
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-shell {
    align-items: flex-start;
  }
}
