:root {
  --mari-blue: #0759f4;
  --mari-cyan: #02a1ff;
  --mari-coral: #ff7089;
  --mari-white: #f7f9ff;
  --mari-navy: #07101f;
  --mari-navy-soft: #0b172b;
  --mari-panel: #101d33;
  --mari-line: rgba(221, 235, 255, 0.2);
  --mari-muted: #a7b6ce;
  --display: "Onest", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.home-v2 {
  margin: 0;
  overflow-x: hidden;
  background: var(--mari-navy);
  color: var(--mari-white);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.home-v2 a {
  color: inherit;
  text-decoration: none;
}

.home-v2 button {
  font: inherit;
}

.home-v2 img {
  max-width: 100%;
}

.home-v2 ::selection {
  background: var(--mari-coral);
  color: var(--mari-navy);
}

.site-shell {
  width: min(1520px, calc(100% - 72px));
  margin-inline: auto;
}

.main-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    transform 0.3s ease;
}

.main-header.is-scrolled {
  position: fixed;
  background: rgba(4, 29, 89, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 105px 1fr 220px;
  align-items: center;
  gap: 36px;
}

.brand-mark {
  width: 72px;
  height: 55px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 68px;
  height: 68px;
  display: block;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.6vw, 58px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.94);
  font: 500 12px/1 var(--display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pill-button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  background: var(--mari-white);
  color: #0a1730 !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 14px 36px rgba(0, 23, 83, 0.16);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pill-button span {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 23, 83, 0.24);
}

.pill-button:hover span,
.pill-button:focus-visible span {
  transform: translateX(4px);
}

.header-button {
  justify-self: end;
  width: 220px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  height: max(700px, 100svh);
  padding: 0;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background: var(--mari-blue);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(14, 187, 255, 0.56), transparent 35%),
    linear-gradient(120deg, #042eba, #075cf4 58%, #02a4ff);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 27, 119, 0.36) 0%, rgba(0, 37, 150, 0.08) 45%, transparent 70%),
    linear-gradient(0deg, rgba(1, 27, 91, 0.12), transparent 35%);
  pointer-events: none;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-mark {
  position: absolute;
  right: -13vw;
  bottom: -32vw;
  z-index: 3;
  width: min(76vw, 1120px);
  opacity: 0.58;
  transform: rotate(-3deg) translate3d(calc(var(--hero-x, 0) * -0.55), calc(var(--hero-y, 0) * -0.55), 0);
  mix-blend-mode: screen;
  filter:
    brightness(1.68)
    saturate(1.35)
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.82))
    drop-shadow(0 24px 32px rgba(0, 44, 164, 0.46));
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-mark img {
  width: 100%;
  display: block;
}

.hero-grid {
  position: absolute;
  left: 28%;
  bottom: 16%;
  z-index: 3;
  width: 220px;
  height: 160px;
  opacity: 0.22;
  background-image: radial-gradient(circle, #92d4ff 0 1.4px, transparent 1.7px);
  background-size: 10px 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

.hero-content {
  min-height: inherit;
  height: 100%;
  padding: 105px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-heading {
  position: relative;
  z-index: 5;
}

.hero-heading h1 {
  margin: 0;
  max-width: 1100px;
  color: var(--mari-white);
  font-family: var(--display);
  font-size: clamp(116px, 19.2vw, 300px);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: -0.088em;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgba(0, 39, 142, 0.16);
}

.hero-heading p {
  margin: 28px 0 0 7px;
  color: var(--mari-white);
  font-size: clamp(28px, 4.1vw, 66px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero-details {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-intro {
  width: 330px;
}

.location-line {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 12px/1 var(--display);
  text-transform: uppercase;
}

.location-line span {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  font-size: 12px;
}

.hero-copy {
  width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-button {
  width: 232px;
  margin-top: 34px;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.scroll-cue-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 22px;
  animation: scroll-bob 2.2s ease-in-out infinite;
}

@keyframes scroll-bob {
  50% {
    transform: translateY(6px);
  }
}

.about-section {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(15, 81, 193, 0.14), transparent 35%),
    var(--mari-navy);
}

.about-section::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -120px;
  width: 290px;
  height: 290px;
  opacity: 0.12;
  border: 1px solid #5d7fac;
  transform: rotate(36deg);
  box-shadow:
    -22px -22px 0 -20px var(--mari-navy),
    -22px -22px 0 -19px #5d7fac,
    -44px -44px 0 -40px var(--mari-navy),
    -44px -44px 0 -39px #5d7fac;
  pointer-events: none;
}

.about-panel {
  position: relative;
  min-height: 392px;
  padding: 36px 38px 30px;
  display: grid;
  grid-template-columns: minmax(270px, 0.95fr) minmax(330px, 1fr) minmax(390px, 1.25fr);
  gap: 32px;
  border: 1px solid rgba(166, 196, 238, 0.32);
  border-radius: 25px;
  background:
    linear-gradient(120deg, rgba(19, 34, 59, 0.94), rgba(8, 18, 35, 0.98)),
    var(--mari-navy-soft);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-copy {
  padding-right: 30px;
  border-right: 1px solid var(--mari-line);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.section-heading--compact {
  gap: 16px;
}

.section-heading--compact h2 {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.step-glyph {
  width: 30px;
  height: 38px;
  flex: 0 0 auto;
  background: var(--mari-coral);
  clip-path: polygon(65% 0, 100% 0, 100% 27%, 66% 27%, 66% 52%, 33% 52%, 33% 78%, 0 78%, 0 100%, 33% 100%, 33% 80%, 67% 80%, 67% 55%, 100% 55%, 100% 30%, 65% 30%);
  filter: drop-shadow(0 0 12px rgba(255, 112, 137, 0.35));
}

.about-copy > p {
  max-width: 390px;
  margin: 28px 0 0;
  color: #c1ccdc;
  font-size: 14px;
  line-height: 1.58;
}

.about-copy strong {
  color: var(--mari-white);
  font-weight: 500;
}

.about-copy em {
  color: #35a9ff;
  font-style: normal;
}

.signature {
  display: inline-block;
  margin-top: 33px;
  color: #1688ff;
  font-family: "Segoe Script", "Snell Roundhand", cursive;
  font-size: 34px;
  font-style: italic;
  letter-spacing: -0.1em;
  transform: rotate(-7deg);
}

.about-stats {
  padding-right: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-right: 1px solid var(--mari-line);
}

.stat-card {
  min-height: 145px;
  padding: 19px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(184, 207, 239, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(25, 39, 65, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.stat-icon {
  width: 26px;
  height: 26px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  color: #d9e6f8;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.stat-icon--calendar {
  position: relative;
  width: 19px;
  height: 20px;
  margin-left: 3px;
  border: 1px solid #d9e6f8;
  border-radius: 3px;
}

.stat-icon--calendar::before,
.stat-icon--calendar::after {
  content: "";
  position: absolute;
}

.stat-icon--calendar::before {
  top: 4px;
  right: 0;
  left: 0;
  border-top: 1px solid #d9e6f8;
}

.stat-icon--calendar::after {
  top: -3px;
  left: 4px;
  width: 9px;
  height: 5px;
  border-right: 1px solid #d9e6f8;
  border-left: 1px solid #d9e6f8;
}

.stat-card strong {
  margin-top: 17px;
  color: #f8faff;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.stat-card small {
  margin-top: 5px;
  color: #aab8ca;
  font-size: 11px;
  line-height: 1.3;
}

.about-map {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.world-map {
  position: relative;
  min-height: 245px;
  margin: -16px -9px 2px;
  background-image: radial-gradient(circle, rgba(172, 194, 226, 0.74) 0 1.35px, transparent 1.7px);
  background-size: 7px 7px;
  -webkit-mask: url("assets/world-robinson.svg") center / contain no-repeat;
  mask: url("assets/world-robinson.svg") center / contain no-repeat;
}

.map-marker {
  position: absolute;
  left: 56.8%;
  top: 13.8%;
  width: 13px;
  height: 13px;
  border: 3px solid #82d4ff;
  border-radius: 50%;
  background: #0a7dff;
  box-shadow:
    0 0 0 7px rgba(0, 129, 255, 0.2),
    0 0 30px 14px rgba(0, 129, 255, 0.45);
}

.map-marker::before,
.map-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(76, 178, 255, 0.56);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: map-pulse 2.8s ease-out infinite;
}

.map-marker::before {
  width: 32px;
  height: 32px;
}

.map-marker::after {
  width: 51px;
  height: 51px;
  animation-delay: 0.65s;
}

@keyframes map-pulse {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.65);
  }
  80%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

.map-caption {
  min-height: 78px;
  padding: 13px 17px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 1px 13px;
  border: 1px solid rgba(176, 202, 237, 0.35);
  border-radius: 15px;
  background: rgba(21, 35, 60, 0.7);
}

.map-arrow {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 239, 255, 0.68);
  border-radius: 50%;
  font-size: 19px;
}

.map-caption p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #ecf4ff;
  font-size: 11px;
}

.map-caption p strong,
.map-caption p b {
  font-weight: 500;
}

.map-caption small {
  color: #9daec4;
  font-size: 10px;
}

.directions-section {
  position: relative;
  padding: 58px 0 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% -20%, rgba(12, 209, 255, 0.72), transparent 44%),
    linear-gradient(120deg, #0757f3 0%, #0868f5 52%, #048bfa 100%);
}

.directions-section::before {
  content: "";
  position: absolute;
  right: 13%;
  top: -40%;
  width: 360px;
  height: 900px;
  background: linear-gradient(rgba(0, 124, 255, 0.08), rgba(255, 255, 255, 0.04));
  transform: rotate(32deg);
  pointer-events: none;
}

.section-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 500;
}

.text-link span {
  font-size: 22px;
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.direction-grid {
  position: relative;
  z-index: 1;
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.direction-card {
  position: relative;
  height: 410px;
  padding: 23px 20px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(224, 243, 255, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045) 65%),
    rgba(12, 87, 222, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 14px 32px rgba(1, 55, 170, 0.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.direction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(121, 211, 255, 0.18));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.direction-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.075) 65%),
    rgba(12, 87, 222, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 50px rgba(1, 42, 139, 0.24);
}

.direction-card:hover::before {
  opacity: 1;
}

.direction-copy {
  position: relative;
  z-index: 4;
}

.direction-copy h3 {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.direction-copy p {
  max-width: 185px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1.36;
}

.direction-art {
  position: absolute;
  inset: 120px 0 0;
  z-index: 2;
}

.round-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mari-white);
  color: #0d316c;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.direction-card:hover .round-arrow {
  transform: rotate(-18deg) scale(1.06);
}

.identity-shape {
  position: absolute;
  display: block;
  overflow: hidden;
  filter: drop-shadow(0 18px 22px rgba(0, 42, 130, 0.25));
}

.identity-shape::after {
  content: "";
  position: absolute;
  inset: 0;
}

.identity-shape--grid {
  width: 78%;
  height: 66%;
  left: -12%;
  bottom: -3%;
  border-radius: 38% 54% 12% 14%;
  background: linear-gradient(135deg, #17d7f4, #0679dd);
  transform: rotate(-4deg);
}

.identity-shape--grid::after {
  background:
    linear-gradient(45deg, rgba(0, 48, 150, 0.54) 25%, transparent 25%, transparent 75%, rgba(0, 48, 150, 0.54) 75%),
    linear-gradient(45deg, rgba(0, 48, 150, 0.54) 25%, transparent 25%, transparent 75%, rgba(0, 48, 150, 0.54) 75%);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
}

.identity-shape--dots {
  width: 70%;
  height: 86%;
  right: -7%;
  bottom: -9%;
  border-radius: 50% 46% 15% 20%;
  background: linear-gradient(150deg, #ff98a7, #ff617f 65%, #df3a73);
  transform: rotate(12deg);
}

.identity-shape--dots::after {
  background-image: radial-gradient(circle, rgba(255, 212, 220, 0.88) 0 8px, transparent 8.7px);
  background-size: 29px 29px;
}

.logo-art::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 52%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 215, 255, 0.56), rgba(21, 93, 220, 0.08) 68%, transparent 70%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
}

.logo-orbit {
  position: absolute;
  left: 50%;
  top: 49%;
  border: 1px solid rgba(198, 235, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.logo-orbit--one {
  width: 230px;
  height: 126px;
}

.logo-orbit--two {
  width: 176px;
  height: 232px;
  transform: translate(-50%, -50%) rotate(28deg);
}

.logo-tile {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04)),
    rgba(16, 88, 223, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 26px 38px rgba(1, 42, 136, 0.35);
  transform: translate(-50%, -50%) rotate(-8deg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.logo-tile img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(1, 41, 128, 0.35));
}

.preview-frame {
  position: absolute;
  left: 50%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: 0 22px 36px rgba(0, 39, 126, 0.28);
}

.preview-frame--back {
  top: 5%;
  width: 78%;
  height: 49%;
  background: linear-gradient(135deg, #2fb7ff, #1645b6);
  transform: translateX(-50%) rotate(10deg);
  opacity: 0.56;
}

.preview-frame--middle {
  top: 19%;
  width: 84%;
  height: 51%;
  background: linear-gradient(145deg, #ff748d 0 38%, #153c9e 38%);
  transform: translateX(-50%) rotate(-7deg);
}

.preview-frame--front {
  top: 34%;
  width: 87%;
  height: 52%;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 40%, #4bd5ff 0 11%, transparent 12%),
    linear-gradient(120deg, #05277d 0 46%, #ff738b 47%);
  transform: translateX(-50%) rotate(2deg);
}

.preview-frame--front::before {
  content: "";
  position: absolute;
  left: 13%;
  bottom: 13%;
  width: 48%;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 0 -2px rgba(255, 255, 255, 0.42);
}

.preview-frame--front i {
  position: absolute;
  right: 16%;
  top: 28%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
}

.preview-frame--front i::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid white;
}

.print-sheet {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 10px;
  box-shadow: 0 23px 35px rgba(0, 44, 137, 0.33);
}

.print-sheet::before {
  content: "Aa";
  position: absolute;
  left: 16px;
  top: 17px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.print-sheet i,
.print-sheet b {
  position: absolute;
  left: 16px;
  height: 4px;
  border-radius: 5px;
  background: currentColor;
}

.print-sheet i {
  right: 18px;
  bottom: 45px;
}

.print-sheet b {
  width: 55%;
  bottom: 31px;
}

.print-sheet--left {
  width: 142px;
  height: 208px;
  left: 8%;
  bottom: -8%;
  color: #063aa1;
  background: #f5fbff;
  transform: rotate(-12deg);
}

.print-sheet--right {
  width: 146px;
  height: 214px;
  right: 6%;
  bottom: 3%;
  color: #fff;
  background:
    linear-gradient(160deg, transparent 0 43%, rgba(0, 43, 151, 0.28) 44%),
    linear-gradient(145deg, #ff7189, #3f80f6);
  transform: rotate(9deg);
}

.print-card {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 142px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 9px;
  background:
    radial-gradient(circle at 78% 30%, #ff7189 0 8px, transparent 9px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(15, 84, 220, 0.78));
  box-shadow: 0 16px 28px rgba(0, 37, 126, 0.3);
  transform: translateX(-50%) rotate(-3deg);
}

.print-card i {
  position: absolute;
  left: 13px;
  bottom: 16px;
  width: 62%;
  height: 4px;
  background: white;
  box-shadow: 0 -12px 0 -1px rgba(255, 255, 255, 0.45);
}

.slide-panel {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.045)),
    rgba(23, 100, 226, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 26px 38px rgba(0, 42, 133, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.slide-panel--back {
  width: 71%;
  height: 45%;
  left: 15%;
  top: 7%;
  transform: rotate(-8deg);
  opacity: 0.5;
}

.slide-panel--middle {
  width: 73%;
  height: 47%;
  right: 5%;
  top: 28%;
  transform: rotate(7deg);
}

.slide-panel--middle i {
  position: absolute;
  right: 13%;
  top: 20%;
  width: 52px;
  height: 52px;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-left-color: var(--mari-coral);
  border-radius: 50%;
}

.slide-panel--front {
  width: 80%;
  height: 48%;
  left: 4%;
  bottom: 5%;
  overflow: hidden;
  transform: rotate(-2deg);
}

.slide-panel--front::before {
  content: "";
  position: absolute;
  left: 13%;
  top: 18%;
  width: 42%;
  height: 6px;
  border-radius: 6px;
  background: white;
  box-shadow:
    0 17px 0 -1px rgba(255, 255, 255, 0.56),
    0 34px 0 -2px rgba(255, 255, 255, 0.36);
}

.slide-panel--front i,
.slide-panel--front b,
.slide-panel--front em {
  position: absolute;
  bottom: 18%;
  width: 14px;
  background: var(--mari-coral);
  border-radius: 3px 3px 0 0;
}

.slide-panel--front i {
  right: 24%;
  height: 46px;
}

.slide-panel--front b {
  right: 15%;
  height: 66px;
}

.slide-panel--front em {
  right: 33%;
  height: 29px;
}

.works-section {
  padding: clamp(90px, 10vw, 160px) 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 83, 230, 0.16), transparent 38%),
    var(--mari-navy);
}

.works-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.45fr);
  align-items: end;
  gap: 90px;
}

.section-kicker {
  margin: 0 0 25px;
  color: #8294ad;
  font: 500 10px/1.3 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.works-heading h2,
.process-intro h2,
.faq-heading h2 {
  margin: 0;
  color: var(--mari-white);
  font-size: clamp(56px, 7.7vw, 118px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.072em;
}

.works-heading h2 em {
  color: #318dff;
  font-style: normal;
}

.works-heading > p {
  max-width: 340px;
  margin: 0 0 4px;
  color: #9aabc1;
  font-size: 14px;
  line-height: 1.55;
}

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

.work-card {
  position: relative;
  height: clamp(360px, 38vw, 590px);
  display: block;
  overflow: hidden;
  border: 1px solid rgba(160, 188, 226, 0.19);
  border-radius: 20px;
  background: #0e192b;
}

.work-card--wide {
  grid-column: span 2;
  height: clamp(450px, 53vw, 780px);
}

.work-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

.work-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 10, 23, 0.78), transparent 45%);
  transition: background 0.35s ease;
}

.work-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.work-card:hover .work-shade {
  background: linear-gradient(0deg, rgba(3, 10, 23, 0.88), transparent 56%);
}

.work-meta {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.work-meta > span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.work-meta b {
  font-size: clamp(23px, 2.5vw, 38px);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.05em;
}

.work-meta small {
  color: rgba(255, 255, 255, 0.72);
  font: 400 10px/1 var(--mono);
  text-transform: uppercase;
}

.work-meta i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 23px;
  font-style: normal;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.work-card:hover .work-meta i {
  background: var(--mari-white);
  color: var(--mari-navy);
  transform: rotate(12deg);
}

.portfolio-link {
  margin-top: 30px;
  padding: 23px 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--mari-line);
  border-bottom: 1px solid var(--mari-line);
  color: #eaf2ff;
  font-size: clamp(26px, 3.4vw, 52px);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -0.05em;
  transition:
    padding 0.3s ease,
    color 0.3s ease;
}

.portfolio-link span {
  font-size: 0.8em;
}

.portfolio-link:hover {
  padding-right: 14px;
  padding-left: 14px;
  color: #5ba9ff;
}

.process-section {
  position: relative;
  padding: clamp(80px, 9vw, 140px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(40, 194, 255, 0.45), transparent 35%),
    linear-gradient(130deg, #064ad9 0%, #075bf0 55%, #078af5);
}

.process-section::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -65%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
}

.process-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.65fr 1.45fr 0.65fr;
  align-items: end;
  gap: 54px;
}

.process-intro .section-kicker {
  align-self: start;
  color: rgba(255, 255, 255, 0.7);
}

.process-intro h2 {
  font-size: clamp(52px, 6.5vw, 98px);
}

.process-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.process-list {
  position: relative;
  z-index: 1;
  margin: 76px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  list-style: none;
}

.process-list li {
  min-height: 285px;
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list li > span {
  color: #d8ecff;
  font: 500 11px/1 var(--mono);
}

.process-list strong {
  font-size: clamp(20px, 1.75vw, 27px);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 245px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.faq-section {
  padding: clamp(90px, 10vw, 160px) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 91, 224, 0.12), transparent 32%),
    #070f1e;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(52px, 6.3vw, 95px);
}

.faq-heading > p:last-child {
  max-width: 300px;
  margin: 35px 0 0;
  color: #8fa1b9;
  font-size: 13px;
  line-height: 1.52;
}

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

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

.faq-list summary {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
  list-style: none;
  color: #eaf1fc;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 480;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

.faq-list summary span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(177, 203, 237, 0.37);
  border-radius: 50%;
  color: #b9c9de;
  font-size: 25px;
  font-weight: 300;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.faq-list details[open] summary span {
  color: var(--mari-coral);
  border-color: rgba(255, 112, 137, 0.56);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 670px;
  margin: -3px 70px 25px 0;
  color: #8fa1b9;
  font-size: 14px;
  line-height: 1.58;
}

.contact-section {
  padding: 70px 0 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(15, 212, 255, 0.6), transparent 38%),
    linear-gradient(130deg, #0752e9, #0879f6);
}

.contact-section .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.contact-title {
  margin: clamp(80px, 11vw, 170px) 0;
}

.contact-title h2,
.contact-title a {
  margin: 0;
  display: block;
  font-size: clamp(72px, 11.5vw, 176px);
  font-weight: 650;
  line-height: 0.78;
  letter-spacing: -0.09em;
}

.contact-title a {
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
  color: var(--mari-white);
  font-weight: 350;
  border-bottom: 5px solid rgba(255, 255, 255, 0.9);
}

.contact-title a span {
  display: inline-block;
  font-size: 0.55em;
  transform: translateY(-0.16em);
  transition: transform 0.3s ease;
}

.contact-title a:hover span {
  transform: translate(12px, -12px);
}

.site-footer {
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  font: 500 10px/1.2 var(--mono);
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 26px;
}

.site-footer a {
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.58;
}

.back-to-top {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.direction-card:nth-child(2),
.work-card:nth-child(2),
.process-list li:nth-child(2) {
  transition-delay: 0.07s;
}

.direction-card:nth-child(3),
.work-card:nth-child(3),
.process-list li:nth-child(3) {
  transition-delay: 0.14s;
}

.direction-card:nth-child(4),
.work-card:nth-child(4),
.process-list li:nth-child(4) {
  transition-delay: 0.21s;
}

.direction-card:nth-child(5) {
  transition-delay: 0.28s;
}

@media (max-width: 1240px) {
  .site-shell {
    width: min(1520px, calc(100% - 48px));
  }

  .header-inner {
    grid-template-columns: 82px 1fr 210px;
  }

  .header-button {
    width: 210px;
    padding-inline: 18px;
  }

  .main-nav {
    gap: 25px;
  }

  .hero-heading h1 {
    font-size: 18.4vw;
  }

  .about-panel {
    grid-template-columns: 0.9fr 1fr;
  }

  .about-map {
    grid-column: span 2;
    min-height: 290px;
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr 330px;
    align-items: end;
    gap: 22px;
    border-top: 1px solid var(--mari-line);
  }

  .about-stats {
    padding-right: 0;
    border-right: 0;
  }

  .world-map {
    min-height: 280px;
    margin: -26px 0 -20px;
  }

  .direction-grid {
    margin-right: -24px;
    padding-right: 24px;
    grid-template-columns: repeat(5, 260px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .direction-grid::-webkit-scrollbar {
    display: none;
  }

  .direction-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 74px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-shell {
    width: calc(100% - 34px);
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 64px 1fr 48px;
    gap: 16px;
  }

  .brand-mark {
    width: 54px;
    height: 48px;
    position: relative;
    z-index: 42;
  }

  .brand-mark img {
    width: 54px;
    height: 54px;
  }

  .header-button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    grid-column: 3;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(1, 53, 159, 0.2);
    color: white;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-3px);
  }

  .menu-toggle span:last-child {
    transform: translateY(3px);
  }

  .nav-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  .nav-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    width: 100vw;
    max-width: none;
    padding: 110px 17px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background:
      radial-gradient(circle at 82% 12%, rgba(3, 181, 255, 0.55), transparent 30%),
      linear-gradient(135deg, #0445d7, #0878f4);
    justify-self: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: clamp(27px, 8vw, 46px);
    font-weight: 500;
    text-transform: none;
    letter-spacing: -0.05em;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
    max-height: 920px;
  }

  .hero-content {
    padding: 98px 0 34px;
  }

  .hero-heading h1 {
    margin-top: 28px;
    font-size: clamp(88px, 23vw, 160px);
    line-height: 0.78;
  }

  .hero-heading p {
    margin-top: 18px;
    font-size: clamp(24px, 6.8vw, 42px);
  }

  .hero-art::before {
    background:
      linear-gradient(90deg, rgba(0, 24, 105, 0.36), transparent 75%),
      linear-gradient(0deg, rgba(0, 25, 98, 0.36), transparent 48%);
  }

  .hero-atmosphere {
    object-position: 57% center;
  }

  .hero-mark {
    right: -34vw;
    bottom: -21vw;
    width: 108vw;
    opacity: 0.44;
  }

  .hero-grid {
    left: 5%;
    bottom: 24%;
  }

  .hero-intro {
    width: 270px;
  }

  .location-line {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero-copy {
    width: 250px;
    font-size: 12px;
  }

  .hero-button {
    width: 213px;
    min-height: 52px;
    margin-top: 24px;
    font-size: 12px;
  }

  .scroll-cue {
    font-size: 9px;
  }

  .scroll-cue-icon {
    width: 44px;
    height: 44px;
  }

  .about-panel {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-copy {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--mari-line);
  }

  .about-map {
    grid-column: auto;
    min-height: 0;
    padding-top: 26px;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--mari-line);
  }

  .world-map {
    min-height: 280px;
  }

  .works-heading,
  .process-intro,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .works-heading > p {
    max-width: 500px;
  }

  .works-grid {
    margin-top: 48px;
  }

  .process-intro h2 {
    grid-row: 2;
  }

  .process-intro > p:last-child {
    max-width: 430px;
  }

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

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    min-height: 240px;
    padding: 20px 24px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .process-list li:nth-child(2n) {
    border-right: 0;
  }

  .process-list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .faq-heading {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer div {
    grid-column: span 2;
    grid-row: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: 720px;
    max-height: 860px;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-heading h1 {
    margin-top: 16px;
    font-size: 23.5vw;
    letter-spacing: -0.075em;
  }

  .hero-heading p {
    margin: 14px 0 0 2px;
    font-size: 6.9vw;
    line-height: 1.04;
  }

  .hero-atmosphere {
    object-position: 62% center;
  }

  .hero-mark {
    right: -50vw;
    bottom: 9%;
    width: 132vw;
    opacity: 0.36;
  }

  .hero-grid {
    display: none;
  }

  .hero-details {
    align-items: flex-end;
  }

  .hero-intro {
    width: 230px;
  }

  .hero-copy {
    width: 215px;
  }

  .hero-button {
    width: 206px;
    padding-inline: 17px;
  }

  .scroll-cue {
    margin-bottom: 7px;
  }

  .scroll-cue > span:last-child {
    display: none;
  }

  .about-section {
    padding: 24px 0;
  }

  .about-panel {
    padding: 27px 20px 20px;
    border-radius: 20px;
  }

  .section-heading {
    gap: 14px;
  }

  .section-heading h2 {
    font-size: 10.3vw;
  }

  .section-heading--compact h2 {
    font-size: 9vw;
  }

  .step-glyph {
    width: 25px;
    height: 32px;
  }

  .about-copy > p {
    font-size: 13px;
  }

  .about-stats {
    gap: 8px;
  }

  .stat-card {
    min-height: 142px;
    padding: 15px 13px;
  }

  .stat-card strong {
    font-size: 17px;
  }

  .stat-card small {
    font-size: 9px;
  }

  .world-map {
    min-height: 190px;
    margin: -8px 0;
    background-size: 5.5px 5.5px;
  }

  .map-caption {
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }

  .map-caption p {
    gap: 10px;
    font-size: 9px;
  }

  .directions-section {
    padding: 44px 0 55px;
  }

  .section-top {
    align-items: flex-end;
  }

  .text-link {
    display: none;
  }

  .direction-grid {
    margin-top: 34px;
    margin-right: -14px;
    padding-right: 14px;
    grid-template-columns: repeat(5, min(78vw, 300px));
  }

  .direction-card {
    height: 398px;
  }

  .direction-copy h3 {
    font-size: 23px;
  }

  .direction-copy p {
    font-size: 11px;
  }

  .works-section,
  .faq-section {
    padding: 80px 0;
  }

  .works-heading h2,
  .faq-heading h2 {
    font-size: 14vw;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-card,
  .work-card--wide {
    grid-column: auto;
    height: 112vw;
    max-height: 560px;
    border-radius: 16px;
  }

  .work-meta {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .work-meta b {
    font-size: 24px;
  }

  .work-meta i {
    width: 42px;
    height: 42px;
  }

  .portfolio-link {
    font-size: 7.2vw;
  }

  .process-section {
    padding: 75px 0;
  }

  .process-intro h2 {
    font-size: 13.7vw;
  }

  .process-list {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    min-height: 205px;
    padding: 19px 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .process-list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list strong {
    font-size: 25px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 16px;
  }

  .faq-list summary span {
    width: 34px;
    height: 34px;
  }

  .faq-list details p {
    margin-right: 30px;
    font-size: 13px;
  }

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

  .contact-title {
    margin: 100px 0 120px;
  }

  .contact-title h2,
  .contact-title a {
    font-size: 18.5vw;
  }

  .contact-title a {
    margin-top: 17px;
    border-bottom-width: 3px;
  }

  .site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    font-size: 8px;
  }

  .site-footer div {
    order: -1;
    width: 100%;
    flex-wrap: wrap;
    gap: 13px 18px;
    font-size: 9px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
