:root {
  --bg: #030713;
  --bg-soft: #07111f;
  --surface: rgba(10, 22, 39, .82);
  --surface-strong: rgba(12, 25, 45, .96);
  --surface-muted: rgba(255, 255, 255, .045);
  --line: rgba(125, 211, 252, .18);
  --line-strong: rgba(34, 211, 238, .45);
  --text: #f8fbff;
  --muted: #a7b8cb;
  --muted-2: #7890a8;
  --cyan: #21d4f4;
  --blue: #2ea8ff;
  --green: #20d49d;
  --danger: #fb7185;
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(15, 118, 140, .28), transparent 34%),
    linear-gradient(245deg, rgba(61, 44, 139, .32), transparent 38%),
    linear-gradient(180deg, #020611 0%, #07111f 50%, #030713 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .72;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 82%);
}

body::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 16%, rgba(0, 0, 0, .28));
  opacity: .72;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 34px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 46px;
  animation: pageIn .42s ease both;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 26, 47, .78), rgba(6, 14, 27, .72));
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.brand:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(18, 36, 62, .86), rgba(7, 16, 31, .78));
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 12px;
}

.brand strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.secure-badge,
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(32, 212, 157, .34);
  color: #a7f8dc;
  background: linear-gradient(180deg, rgba(32, 212, 157, .14), rgba(32, 212, 157, .07));
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 36px rgba(32, 212, 157, .08);
}

.secure-badge span,
.status-dot span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(32, 212, 157, .84);
}

.layout {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(430px, 1fr);
  gap: 70px;
  align-items: center;
}

.hero {
  min-width: 0;
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: 76px;
  line-height: .96;
  font-weight: 950;
}

.lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-list span {
  border: 1px solid var(--line);
  color: #c7f6ff;
  background: linear-gradient(180deg, rgba(34, 211, 238, .11), rgba(34, 211, 238, .045));
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.trust-list span:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, .46);
  background: rgba(34, 211, 238, .13);
}

.hero-note {
  display: grid;
  gap: 5px;
  max-width: 430px;
  margin-top: 34px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, .16);
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  color: var(--text);
  font-size: 14px;
}

.hero-note span {
  font-size: 13px;
  line-height: 1.45;
}

.panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, .08), transparent 38%),
    linear-gradient(180deg, rgba(13, 27, 47, .94), rgba(7, 15, 28, .96));
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .07) 42%, transparent 56%);
  transform: translateX(-76%);
  opacity: .6;
  animation: panelSheen 5.8s ease-in-out infinite;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.panel > * {
  position: relative;
  z-index: 1;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 950;
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #d7e5f5;
  font-size: 13px;
  font-weight: 850;
}

.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(148, 163, 184, .23);
  background: rgba(3, 9, 19, .66);
  color: var(--text);
  padding: 0 15px;
  outline: none;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(159, 181, 204, .62);
}

input {
  min-height: 54px;
}

textarea {
  min-height: 128px;
  resize: vertical;
  padding-top: 14px;
  line-height: 1.45;
}

input:hover,
textarea:hover {
  border-color: rgba(125, 211, 252, .34);
  background: rgba(3, 9, 19, .74);
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  background: rgba(3, 9, 19, .9);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .12), 0 16px 36px rgba(0, 0, 0, .16);
  transform: translateY(-1px);
}

button {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #129fc5, var(--green));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 18px 44px rgba(20, 158, 197, .24);
  transition: transform .18s ease, filter .18s ease, opacity .18s ease, box-shadow .18s ease;
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 22px 52px rgba(20, 158, 197, .32);
}

button:active {
  transform: translateY(0);
}

button:disabled {
  opacity: .68;
  cursor: wait;
  transform: none;
}

.message {
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 15px;
  border: 1px solid rgba(34, 211, 238, .28);
  background: rgba(34, 211, 238, .08);
  color: #bdf7ff;
  font-weight: 850;
}

.message.error {
  border-color: rgba(251, 113, 133, .4);
  background: rgba(251, 113, 133, .09);
  color: #fecdd3;
}

.tiny {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelSheen {
  0%, 42% {
    transform: translateX(-76%);
  }
  58%, 100% {
    transform: translateX(86%);
  }
}

@media (max-width: 980px) {
  .page {
    padding-top: 18px;
  }

  .topbar {
    margin-bottom: 34px;
  }

  .layout {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .hero {
    padding-bottom: 0;
  }

  h1 {
    max-width: 760px;
    font-size: 60px;
  }

  .hero-note {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .brand {
    width: 100%;
  }

  .secure-badge {
    width: fit-content;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 16px;
  }

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

  .panel {
    padding: 18px;
    border-radius: 22px;
  }

  .panel-head {
    flex-direction: column;
  }

  h2 {
    font-size: 28px;
  }

  .status-dot {
    white-space: normal;
  }
}
