:root {
  --background: #080d16;
  --surface: rgba(15, 24, 39, 0.82);
  --border: rgba(255, 255, 255, 0.1);
  --blue: #3785d4;
  --blue-light: #63a7ea;
  --white: #f8fafc;
  --muted: #94a3b8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background);
  color: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(8, 13, 22, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(100% - 40px, 1280px);
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.brand img {
  width: 43px;
  height: 58px;
  object-fit: contain;
  transform: translateY(-3px);
}

.book-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.book-call:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  padding: 150px 24px 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 15% 20%, rgba(55, 133, 212, 0.08), transparent 32%);
  background-size: 48px 48px, 48px 48px, auto;
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(8, 13, 22, 0.92));
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.glow-one {
  top: 12%;
  right: -12%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(55, 133, 212, 0.14);
  box-shadow: 0 0 130px rgba(55, 133, 212, 0.1) inset;
}

.glow-two {
  right: 9%;
  bottom: -24%;
  width: 360px;
  height: 360px;
  background: rgba(55, 133, 212, 0.08);
  filter: blur(90px);
}

.page-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.message {
  max-width: 680px;
}

.eyebrow {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 strong {
  color: var(--blue);
  font-weight: inherit;
}

.intro {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.form-card {
  scroll-margin-top: 108px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.form-heading {
  margin-bottom: 28px;
}

.step {
  margin-bottom: 9px;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  max-width: 330px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

form {
  display: grid;
  gap: 17px;
}

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

.field {
  display: grid;
  gap: 7px;
}

label {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  outline: none;
  background: rgba(8, 13, 22, 0.7);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

select {
  padding-right: 42px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #94a3b8 50%),
    linear-gradient(135deg, #94a3b8 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 14px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

input::placeholder {
  color: #536174;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(55, 133, 212, 0.14);
}

button {
  width: 100%;
  min-height: 51px;
  margin-top: 4px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

button span {
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

button:hover {
  background: #2e75bb;
  transform: translateY(-1px);
}

button:hover span {
  transform: translateX(3px);
}

.privacy {
  margin-top: 16px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 860px) {
  .coming-soon {
    padding-top: 130px;
  }

  .page-content {
    max-width: 630px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .message {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .intro {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    width: calc(100% - 28px);
    height: 72px;
  }

  .brand {
    font-size: 12px;
  }

  .brand img {
    width: 36px;
    height: 49px;
  }

  .book-call {
    min-height: 38px;
    padding: 0 14px;
    font-size: 10px;
  }

  .coming-soon {
    padding: 118px 16px 48px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .form-card {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
