:root {
  --bg: #030812;
  --bg2: #071321;
  --blue: #0057b8;
  --blue-light: #1f8cff;
  --text: #f4f7fb;
  --muted: #c7d0dc;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 104px;
  padding: 0 3.9vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 8, 18, 0.84);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 24px;
  color: white;
  text-decoration: none;
}

.brand-logo {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 34px rgba(31, 140, 255, 0.18);
}

.brand-logo img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  display: block;
  transform: translateX(0.5px);
}

.brand-text {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.site-nav a:hover {
  color: white;
}

.nav-button {
  padding: 18px 28px;
  background: var(--blue);
  color: white !important;
  border-radius: 3px;
}

.hero {
  position: relative;
  min-height: 690px;
  padding: 176px 0 64px;
  overflow: hidden;
  background: #020712;
}

.hero-media {
  position: absolute;
  inset: 104px 0 0 0;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
  filter: saturate(0.9) contrast(1.06) brightness(0.84);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.99) 0%, rgba(2, 7, 18, 0.93) 30%, rgba(2, 7, 18, 0.58) 55%, rgba(2, 7, 18, 0.10) 100%),
    linear-gradient(180deg, rgba(2, 7, 18, 0.18) 0%, rgba(2, 7, 18, 0.10) 56%, rgba(2, 7, 18, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(650px, 88vw);
  margin-left: 6.8vw;
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--blue-light);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 5.35vw, 84px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.115em;
}

h1 span {
  font-size: 0.78em;
  text-transform: none;
  letter-spacing: 0.025em;
}

.hero-line,
.section-line {
  width: 72px;
  height: 2px;
  margin: 30px 0 26px;
  background: var(--blue-light);
}

.hero-claim {
  margin: 0 0 24px;
  color: var(--blue-light);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.29em;
}

.hero-text {
  margin: 0;
  max-width: 570px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  padding: 0 30px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 14px 40px rgba(0, 87, 184, 0.34);
}

.button-secondary {
  border: 1px solid var(--blue-light);
  background: rgba(0, 0, 0, 0.18);
}

.values {
  padding: 42px 6.8vw 76px;
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 140, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #081522 0%, #030812 100%);
  text-align: center;
}

.values h2,
.content-section h2,
.cta-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.values .section-line {
  margin: 20px auto 50px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}

.value-card {
  padding: 0 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.value-card:last-child {
  border-right: 0;
}

.value-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 25px;
  color: var(--blue-light);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.content-section,
.cta-section,
.contact-section {
  padding: 96px 6.8vw;
  background: #030812;
  border-top: 1px solid var(--line);
}

.content-section {
  max-width: 1100px;
  margin: 0 auto;
}

.content-section p,
.cta-section p,
.contact-section p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.cta-section,
.contact-section {
  text-align: center;
}

.cta-section p,
.contact-section p {
  max-width: 760px;
  margin: 24px auto 34px;
}

.contact-form {
  width: min(760px, 100%);
  margin: 42px auto 0;
  display: grid;
  gap: 18px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: white;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.045);
  color: white;
  font: inherit;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(31, 140, 255, 0.16);
}

.form-row textarea {
  resize: vertical;
}

.privacy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.privacy-check input {
  margin-top: 4px;
}

.privacy-check a {
  color: var(--blue-light);
}

.footer-section {
  padding: 58px 6.8vw;
  background: #02060d;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-title {
  color: white;
  font-size: 20px;
  font-weight: 750;
}

.footer-links {
  display: flex;
  gap: 22px;
  margin: 24px 0 42px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--blue-light);
  text-decoration: none;
  font-weight: 700;
}

.legal-section {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  color: white;
  font-size: 28px;
}

.legal-section h3 {
  color: white;
  margin-top: 28px;
  font-size: 18px;
}

.legal-section p {
  margin: 10px 0;
  line-height: 1.65;
}

.copyright {
  margin-top: 38px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding: 18px 5vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    gap: 22px;
    padding-bottom: 4px;
  }

  .nav-button {
    display: none;
  }

  .hero {
    padding-top: 190px;
  }

  .hero-media {
    inset: 120px 0 0 0;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(2, 7, 18, 0.96) 0%, rgba(2, 7, 18, 0.75) 100%),
      linear-gradient(180deg, rgba(2, 7, 18, 0.1), rgba(2, 7, 18, 0.96));
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 0;
  }

  .value-card:nth-child(2) {
    border-right: 0;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-text {
    font-size: 16px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero-content {
    margin-left: 5vw;
  }

  h1 {
    font-size: 44px;
    letter-spacing: 0.055em;
  }

  .hero-claim {
    font-size: 15px;
    letter-spacing: 0.16em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 34px;
  }

  .value-card:last-child {
    border-bottom: 0;
  }
}.content-section {
  position: relative;
  overflow: hidden;
}

.content-section > *:not(.section-watermark) {
  position: relative;
  z-index: 2;
}

.section-watermark {
  position: absolute;
  right: -40px;
  top: 0px;
  width: 520px;
  max-width: 55vw;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 820px) {
  .section-watermark {
    display: none;
  }
}/* ===========================
   404 PAGE
=========================== */

.error-page{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:60px 30px;

    background:
    radial-gradient(circle at top,
    rgba(31,140,255,.12),
    transparent 40%),
    #030812;
}

.error-logo{

    width:333px;
    margin-bottom:34px;

    opacity:.92;
}

.error-page h1{

    font-size:110px;

    margin:0;

    color:white;

    letter-spacing:-3px;
}

.error-page h2{

    margin:12px 0 18px;

    font-size:36px;

    color:white;
}

.error-page p{

    max-width:620px;

    color:var(--muted);

    font-size:20px;

    line-height:1.7;

    margin-bottom:42px;
}