@font-face {
  font-family: "Coolvetica";
  src: url("../fonts/coolvetica.woff2") format("woff2"),
    url("../fonts/coolvetica.woff") format("woff"),
    url("../fonts/coolvetica.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NewBlack";
  src: url("../fonts/newblack.woff2") format("woff2"),
    url("../fonts/newblack.woff") format("woff"),
    url("../fonts/newblack.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0a2540;
  --navy-deep: #061a2e;
  --navy-dark: #04121f;
  --blue: #1e5f9e;
  --blue-bright: #3a8dd8;
  --blue-light: #6bb6e8;
  --blue-mist: #aed6f2;
  --blue-soft: #eef6fc;
  --blue-faint: #f6fafd;

  --gold: #c9a35a;
  --gold-soft: #f5eede;
  --gold-deep: #b28c42;

  --ink: #0c1d2e;
  --ink-soft: #3a4f63;
  --muted: #708498;
  --line: #dbe6f0;

  --white: #ffffff;
  --cream: #f7fafd;

  --rule: rgba(10, 37, 64, 0.09);
  --rule-strong: rgba(10, 37, 64, 0.16);
  --gold-line: rgba(201, 163, 90, 0.5);
  --track: 0.22em;

  --font-display: "Coolvetica", "Manrope", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body: "NewBlack", "Manrope", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 38px;
  --r-pill: 999px;

  --shadow-sm: 0 4px 18px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 16px 44px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 34px 76px rgba(10, 37, 64, 0.18);
  --shadow-soft: 0 40px 90px -46px rgba(10, 37, 64, 0.45);
  --shadow-blue: 0 18px 44px rgba(30, 95, 158, 0.28);
  --shadow-gold: 0 14px 34px rgba(201, 163, 90, 0.28);

  --maxw: 1200px;
  --gutter: 22px;
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s var(--ease);
  --t-med: 0.4s var(--ease);
  --t-slow: 0.7s var(--ease);

  --glass-tint: rgba(255, 255, 255, 0.55);
  --glass-tint-strong: rgba(255, 255, 255, 0.72);
  --glass-tint-faint: rgba(255, 255, 255, 0.38);
  --glass-tint-dark: rgba(10, 37, 64, 0.34);
  --glass-tint-dark-strong: rgba(10, 37, 64, 0.52);
  --glass-edge: rgba(255, 255, 255, 0.75);
  --glass-edge-dark: rgba(255, 255, 255, 0.18);
  --glass-blur: 22px;
  --glass-blur-sm: 12px;
  --glass-blur-lg: 34px;
  --glass-sat: 1.7;
  --glass-spec: inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.28),
    inset 1px 0 0 rgba(255, 255, 255, 0.42),
    inset -1px 0 0 rgba(255, 255, 255, 0.42);
  --glass-spec-dark: inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset 1px 0 0 rgba(255, 255, 255, 0.12),
    inset -1px 0 0 rgba(255, 255, 255, 0.12);
  --glass-lift: 0 18px 46px rgba(10, 37, 64, 0.14),
    0 3px 10px rgba(10, 37, 64, 0.07);
  --glass-lift-lg: 0 34px 80px rgba(10, 37, 64, 0.2),
    0 6px 18px rgba(10, 37, 64, 0.09);
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0.004em;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--ink);
}

.section__title {
  font-size: clamp(1.85rem, 4.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.section__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--blue-bright);
}

.section__title--light {
  color: var(--white);
}

p {
  color: var(--ink-soft);
}

strong {
  color: var(--ink);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 11vw, 128px);
}

.section__head {
  max-width: 680px;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.section__sub {
  font-size: 1.04rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head--center .eyebrow {
  justify-content: center;
}

.section__head--center .eyebrow::before {
  display: none;
}

.section__head--center .section__sub {
  margin-inline: auto;
}

.ico {
  width: 20px;
  height: 20px;
  flex: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-line);
  transition: gap var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.link-arrow .ico {
  width: 17px;
  height: 17px;
}

.link-arrow:hover {
  gap: 0.85rem;
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.pull {
  position: relative;
  margin: 2rem 0 2.2rem;
  padding-left: 1.6rem;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.28;
  color: var(--navy);
}

.pull::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 163, 90, 0));
}

.no-scroll {
  overflow: hidden;
}

.img-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-faint));
  border: 1px solid var(--rule);
  color: var(--blue);
  overflow: hidden;
}

.img-ph__ico {
  width: 34px;
  height: 34px;
  opacity: 0.5;
}

.img-ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1;
}

.img-ph:not([data-label])::after {
  content: none;
}

.img-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

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

.glass {
  position: relative;
  isolation: isolate;
  background: linear-gradient(
    145deg,
    var(--glass-tint-strong) 0%,
    var(--glass-tint) 46%,
    var(--glass-tint-faint) 100%
  );
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border: 1px solid var(--glass-edge);
  box-shadow: var(--glass-lift), var(--glass-spec);
  border-radius: var(--r-lg);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(
      120% 90% at 12% 4%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 58%
    ),
    radial-gradient(
      90% 70% at 92% 96%,
      rgba(107, 182, 232, 0.22) 0%,
      transparent 62%
    );
  pointer-events: none;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.1) 32%,
    rgba(255, 255, 255, 0) 58%,
    rgba(174, 214, 242, 0.55) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass--dark {
  background: linear-gradient(
    145deg,
    var(--glass-tint-dark-strong) 0%,
    var(--glass-tint-dark) 100%
  );
  border-color: var(--glass-edge-dark);
  box-shadow: var(--glass-lift), var(--glass-spec-dark);
  color: var(--white);
}

.glass--dark::before {
  background: radial-gradient(
      120% 90% at 10% 0%,
      rgba(107, 182, 232, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      80% 70% at 95% 100%,
      rgba(201, 163, 90, 0.16) 0%,
      transparent 62%
    );
}

.glass--dark::after {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.05) 34%,
    rgba(255, 255, 255, 0) 60%,
    rgba(107, 182, 232, 0.4) 100%
  );
}

.glass--sm {
  backdrop-filter: blur(var(--glass-blur-sm)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur-sm)) saturate(var(--glass-sat));
  border-radius: var(--r-md);
}

.glass--lg {
  backdrop-filter: blur(var(--glass-blur-lg)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur-lg)) saturate(var(--glass-sat));
  border-radius: var(--r-xl);
}

.glass--pill {
  border-radius: var(--r-pill);
}

.glass-sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.glass-sheen::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 46%;
  height: 220%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: rotate(14deg) translateX(0);
  transition: transform 0.85s var(--ease), opacity 0.85s var(--ease);
  opacity: 0;
}

.glass-parent:hover .glass-sheen::before,
.glass:hover > .glass-sheen::before {
  transform: rotate(14deg) translateX(340%);
  opacity: 1;
}

@supports (backdrop-filter: url(#x)) {
  .glass--refract {
    backdrop-filter: url(#lg-refract) blur(var(--glass-blur))
      saturate(var(--glass-sat));
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass {
    background: rgba(255, 255, 255, 0.94);
  }
  .glass--dark {
    background: rgba(10, 37, 64, 0.94);
  }
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}