:root {
  --bg: #070A12;
  --panel: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.54);
  --brand: #7C4DFF;
  --brand-2: #23D5FF;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1180px;
  --ring: 0 0 0 4px rgba(124, 77, 255, 0.35);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(900px 600px at 20% 10%, rgba(124, 77, 255, 0.18), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(35, 213, 255, 0.14), transparent 52%),
    radial-gradient(900px 600px at 35% 85%, rgba(43, 228, 167, 0.10), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.section-head {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 26px;
}


.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.4px;
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.contact-form {
  border-radius: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  max-width: 380px;
  margin-inline: auto;
}


.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  justify-items: start;
}

.form-row button {
  justify-self: center;
}



.label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 10px;
}


.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.90);
  font-size: 14px;
  outline: none;
  transition: box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
}

.pin-wrap {
  position: relative;
  width: 100%;
}

.pin-wrap .input {
  width: 100%;
  padding-right: 44px;
}

.pin-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
}

.pin-toggle:hover {
  color: rgba(255, 255, 255, 1);
}





.input:focus {
  box-shadow: var(--ring);
  border-color: rgba(124, 77, 255, 0.55);
  background: rgba(0, 0, 0, 0.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 650;
  font-size: 14px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  user-select: none;
  cursor: pointer;
}



.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.95), rgba(35, 213, 255, 0.82));
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-solid:hover {
  background: linear-gradient(135deg, rgba(124, 77, 255, 1), rgba(35, 213, 255, 0.92));
}

@media (max-width: 640px) {
  .contact-form {
    max-width: 100%;
  }

  .input {
    width: 100%;
    min-width: 0;
  }
}
