:root {
  --bg: #02070d;
  --panel: #07111b;
  --text: #f4f7fb;
  --muted: #aebccd;
  --blue: #1aa0ec;
  --line: rgba(33, 168, 244, .25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(22, 92, 132, .32), transparent 36rem),
    linear-gradient(180deg, #02070d 0%, #08111b 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: #83d2ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(960px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 7, 13, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.site-name {
  color: #fff;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .92rem;
}

.nav,
.socials {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.socials a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
}

.hero-section {
  padding: 28px 0 54px;
}

.poster-shell {
  width: min(1122px, calc(100% - 22px));
  margin: 0 auto;
  border: 1px solid rgba(33,168,244,.45);
  box-shadow: 0 24px 70px rgba(0,0,0,.62);
  background: #02070d;
}

.poster-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.button {
  display: inline-block;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.button:hover { text-decoration: none; }

.primary {
  background: linear-gradient(180deg, #1ba4f5, #0b6ba9);
  color: #fff;
}

.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

.why-section,
.contact-section {
  padding: 70px 0;
}

.why-section {
  background:
    linear-gradient(180deg, rgba(4, 9, 15, .92), rgba(8, 16, 26, .98)),
    radial-gradient(circle at 20% 0, rgba(17, 105, 160, .18), transparent 38rem);
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: #29a5ff;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .14em;
  font-weight: 800;
}

.why-section h2,
.contact-section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.why-section h3 {
  margin: 38px 0 12px;
  font-size: 1.35rem;
  color: #fff;
}

.why-section p,
.why-section li,
.contact-section p {
  color: #cfdae6;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.two-col ul {
  margin: 0;
  padding-left: 20px;
}

.two-col li {
  margin: 0 0 10px;
}

.contact-section {
  background: linear-gradient(180deg, #08111b, #04080e);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(33,168,244,.24);
  background: rgba(7, 15, 24, .92);
  border-radius: 16px;
}

.contact-form label {
  color: #fff;
  font-weight: 800;
}

.contact-form input {
  width: 100%;
  padding: 14px 14px;
  color: #fff;
  background: #05101a;
  border: 1px solid #28516d;
  border-radius: 10px;
}

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

.form-note {
  margin: 2px 0 0;
  font-size: .9rem;
  color: var(--muted);
}

.site-footer {
  background: #02070d;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 920px) {
  .header-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-wrap,
  .two-col {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .wrap,
  .narrow {
    width: min(100% - 22px, 1180px);
  }

  .poster-shell {
    width: calc(100% - 10px);
  }

  .button {
    width: 100%;
  }

  .why-section,
  .contact-section {
    padding: 46px 0;
  }

  .nav,
  .socials {
    gap: 12px;
  }

  .nav a,
  .socials a {
    font-size: .78rem;
  }
}


.footer-copy {
  max-width: 820px;
}

.disclaimer {
  margin-top: 8px !important;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #7f8d9b !important;
}
