@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-variable.woff2?v=20260719-3") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-950: #03101c;
  --navy-900: #061827;
  --navy-800: #0a2940;
  --navy-700: #104564;
  --blue-500: #2d91cf;
  --yellow-500: #fec400;
  --yellow-300: #ffe177;
  --cream-100: #fffdf6;
  --cream-200: #f7f2e7;
  --cream-300: #e9e0cd;
  --ink: #0d273b;
  --muted: #536978;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(13, 39, 59, 0.14);
  --shadow: 0 24px 70px rgba(2, 16, 28, 0.18);
  --page: min(1160px, calc(100% - 40px));
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream-100);
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4,
strong,
em,
i,
b {
  font-family: inherit;
  font-style: normal;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 7vw, 5.75rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--yellow-500);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(3, 16, 28, 0.96);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

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

.brand img {
  width: 8.875rem;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: #f7f2e7;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.header-language {
  display: inline-grid;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: #f7f2e7;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.header-language:hover {
  border-color: var(--yellow-500);
  color: var(--yellow-500);
}

.nav-menu {
  display: none;
  color: #fff;
}

.nav-menu summary {
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu nav {
  position: absolute;
  top: 70px;
  right: 20px;
  left: 20px;
  display: grid;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.nav-menu a {
  padding: 12px;
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.nav-menu a:last-child {
  border-bottom: 0;
  color: var(--yellow-500);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 10vw, 120px);
  background:
    radial-gradient(circle at 82% 24%, rgba(45, 145, 207, 0.22), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--yellow-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.accent {
  color: var(--yellow-500);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.page-hero__lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(245, 249, 252, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--yellow-300);
  transform: translateY(-2px);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.button--dark {
  background: var(--navy-900);
  color: #fff;
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section--muted {
  background: var(--cream-200);
}

.section--dark {
  background: var(--navy-900);
  color: #fff;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

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

.section-heading__muted {
  color: rgba(255, 255, 255, 0.68) !important;
}

.section-heading__actions {
  margin-top: 24px;
}

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

.article-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 16px 42px rgba(3, 16, 28, 0.08);
}

.article-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  text-decoration: none;
}

.article-card picture {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-800);
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.article-card:hover img {
  transform: scale(1.025);
}

.article-card__body {
  display: flex;
  min-height: 270px;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 14px;
  color: var(--blue-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card p {
  color: var(--muted);
}

.article-card strong {
  margin-top: auto;
  color: var(--navy-700);
  font-size: 0.9rem;
}

.proof-strip {
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-950);
  color: #fff;
}

.proof-strip__inner {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.proof-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  margin-top: 3px;
  color: var(--yellow-500);
  font-size: 1.05rem;
}

.article-hero {
  padding-bottom: clamp(120px, 16vw, 210px);
}

.article-hero h1 {
  max-width: 1000px;
  font-size: clamp(2.55rem, 6vw, 5.3rem);
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  font-weight: 700;
}

.article-shell {
  position: relative;
  width: var(--page);
  margin: clamp(-110px, -11vw, -76px) auto 0;
  padding-bottom: clamp(76px, 10vw, 130px);
}

.article-cover {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  border: 8px solid var(--cream-100);
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 730px) minmax(240px, 300px);
  justify-content: center;
  gap: clamp(42px, 7vw, 88px);
  padding-top: clamp(58px, 8vw, 90px);
}

.article-body {
  min-width: 0;
  font-size: 1.06rem;
}

.article-body > p:first-child {
  font-size: clamp(1.18rem, 2vw, 1.38rem);
  font-weight: 600;
  line-height: 1.55;
}

.article-body p,
.article-body li {
  color: #304a5c;
}

.article-body h2 {
  margin-top: 58px;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
}

.article-body h3 {
  margin-top: 38px;
  font-size: 1.35rem;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 11px;
  padding-left: 5px;
}

.article-faq {
  margin-top: 52px;
  padding-top: 12px;
  border-top: 1px solid var(--line-light);
}

.article-faq details {
  border-bottom: 1px solid var(--line-light);
}

.article-faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 68px;
  padding: 12px 0;
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
  gap: 18px;
  list-style: none;
}

.article-faq summary::-webkit-details-marker {
  display: none;
}

.article-faq summary::after {
  color: var(--blue-500);
  content: "+";
  font-size: 1.35rem;
}

.article-faq details[open] summary::after {
  content: "−";
}

.article-faq details p {
  margin-top: -4px;
  padding-bottom: 16px;
}

.callout {
  margin: 38px 0;
  padding: 26px 28px;
  border-left: 5px solid var(--yellow-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--cream-200);
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-800);
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 108px;
}

.aside-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: #fff;
}

.aside-card h2 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.aside-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.aside-card .button {
  width: 100%;
  margin-top: 8px;
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.article-nav a {
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 8vw, 100px);
}

.contact-direct {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-direct a,
.contact-address {
  display: grid;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: #fff;
  text-decoration: none;
}

.contact-direct span,
.contact-address span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong,
.contact-address strong {
  color: var(--navy-800);
  font-size: 1.1rem;
}

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.contact-form > p {
  color: rgba(255, 255, 255, 0.68);
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.field select option {
  background: var(--navy-900);
}

.contact-form button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.form-note a {
  color: var(--yellow-500);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 1.14fr);
  align-items: center;
  gap: clamp(38px, 7vw, 88px);
}

.about-copy > p {
  max-width: 62ch;
  color: var(--muted);
}

.about-copy > p:first-of-type {
  color: var(--navy-800);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 650;
}

.about-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

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

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.principle {
  min-height: 17rem;
  padding: clamp(24px, 4vw, 38px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principle span {
  display: block;
  margin-bottom: 3rem;
  color: var(--yellow-500);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.principle p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.history-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-list li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.25fr) minmax(0, 1fr);
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
  gap: 28px;
}

.history-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.history-list strong {
  color: var(--blue-500);
  font-size: 1.05rem;
}

.history-list p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 66px 0 24px;
  border-top: 1px solid var(--line-dark);
  background: var(--navy-950);
  color: #fff;
}

.site-footer__grid {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 44px;
}

.site-footer__grid img {
  width: 142px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer nav strong {
  margin-bottom: 5px;
  color: var(--yellow-500);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #fff;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  width: var(--page);
  margin: 50px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

@media (max-width: 900px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-menu {
    display: block;
  }

  .section-heading,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .article-card > a {
    display: grid;
    grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  }

  .article-card__body {
    min-height: 0;
  }

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

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

  .article-aside {
    position: static;
  }

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

@media (max-width: 620px) {
  :root {
    --page: min(100% - 28px, 1160px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 7.875rem;
  }

  .page-hero {
    padding-top: 70px;
  }

  .article-grid {
    gap: 16px;
  }

  .article-card > a {
    display: flex;
  }

  .article-card__body {
    min-height: 250px;
    padding: 22px;
  }

  .article-cover {
    aspect-ratio: 4 / 3;
    border-width: 4px;
    border-radius: var(--radius-md);
  }

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

  .proof-strip__inner,
  .article-nav,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .history-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer__legal {
    flex-direction: column;
    gap: 6px;
  }
}

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

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