:root {
  --navy: #123B52;
  --navy-deep: #0D2C3E;
  --orange: #F36A21;
  --white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.5);
  --ease-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quick: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--navy);
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-desktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a,
.nav-mobile a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-desktop a {
  position: relative;
  padding: 4px 0;
}

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

.nav-desktop a:hover,
.nav-desktop a.is-active,
.nav-mobile a.is-active {
  color: var(--text-primary);
}

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

.nav-mobile a.is-active {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  min-height: 44px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--navy);
  flex-direction: column;
  padding: 8px 24px 16px;
}

.nav-mobile a {
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

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

main {
  flex: 1;
}

video[data-autoplay] {
  pointer-events: none;
}

video[data-autoplay]::-webkit-media-controls,
video[data-autoplay]::-webkit-media-controls-panel,
video[data-autoplay]::-webkit-media-controls-overlay-play-button,
video[data-autoplay]::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: clamp(480px, 76vh, 700px);
  display: flex;
  align-items: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 44, 62, 0.8);
}

.hero__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 160px) 24px;
  width: 100%;
}

.hero h1 {
  margin: 0 0 24px;
  max-width: 680px;
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  text-wrap: balance;
}

.hero p {
  margin: 0 0 36px;
  max-width: 48ch;
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.005em;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: color 220ms ease, transform 350ms var(--ease-expo);
}

.btn--primary {
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn:hover,
.btn:focus-visible {
  color: var(--navy);
  background-color: var(--white);
  transition: color 220ms ease, transform 350ms var(--ease-expo), background-color 0s linear 380ms;
}

.btn__px {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
}

.btn__px i {
  margin: -0.5px;
  border-radius: 2px;
  background: var(--white);
  opacity: 0;
  transform: scale(0);
  transition: transform 220ms var(--ease-quick), opacity 220ms var(--ease-quick);
}

.btn:hover .btn__px i,
.btn:focus-visible .btn__px i {
  opacity: 1;
  transform: scale(1);
  transition-delay: var(--d, 0ms);
}

.btn__label,
.btn__arrow {
  position: relative;
  z-index: 1;
  transition: transform 240ms var(--ease-quick);
}

.btn__arrow {
  font-size: 18px;
}

.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow {
  transform: translateX(3px);
}

.btn:active .btn__label {
  transform: scale(0.96);
  transition-duration: 140ms;
}

.btn:active .btn__arrow {
  transform: translateX(3px) scale(0.96);
  transition-duration: 140ms;
}

html:not(.js) .btn:hover {
  background: var(--white);
  border-color: var(--white);
}

.values {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) 24px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.value-card {
  border-top: 1px solid var(--line-strong);
  padding-top: 24px;
}

.value-card__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.value-card p {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
}

.feature {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy-deep);
}

.feature__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.feature__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--navy);
}

.feature__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature h2,
.cta h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-wrap: balance;
}

.feature p {
  margin: 0 0 18px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 52ch;
}

.feature p:last-child {
  margin-bottom: 0;
}

.cta {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.cta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 44, 62, 0.84);
}

.cta__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 24px;
  text-align: center;
}

.cta h2 {
  margin-bottom: 32px;
}

.coming-soon {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(96px, 16vw, 200px) 24px;
  text-align: center;
}

.coming-soon__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.coming-soon h1 {
  margin: 0 0 40px;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--navy);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__left {
  display: flex;
  align-items: flex-end;
  gap: clamp(40px, 8vw, 96px);
  flex-wrap: wrap;
}

.footer__logo img {
  height: clamp(56px, 7vw, 80px);
  width: auto;
  display: block;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 4px;
}

.footer__nav-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer__nav a span {
  width: 12px;
  height: 1.5px;
  background: var(--line-strong);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--orange);
}

.footer__nav a:hover span {
  width: 20px;
  background: var(--orange);
}

.footer__copy {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: auto;
  padding-bottom: 4px;
}

.is-hidden {
  display: none !important;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease-expo), transform 0.45s var(--ease-expo);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 759px) {
  .header__inner {
    height: 80px;
  }

  .logo-link img {
    height: 44px;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }

  .footer__inner {
    align-items: flex-start;
  }

  .footer__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer__copy {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

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

  .btn {
    transform: none;
  }
}
