:root {
  color: #121111;
  background: #fbf8f3;
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(720px 360px at 50% -8%, rgba(53, 182, 255, 0.12), transparent 68%),
    #fbf8f3;
}

main {
  width: min(calc(100% - 44px), 840px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

a {
  color: #0579bf;
  font-weight: 760;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

nav {
  display: none;
}

.legal-back {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-bottom: 42px;
  padding: 0 17px;
  color: #0b111d;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  box-shadow: 0 18px 46px -34px rgba(15, 23, 42, 0.5);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition:
    border-color 160ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.legal-back::before {
  content: "←";
  margin-right: 8px;
}

[dir="rtl"] .legal-back::before {
  margin-right: 0;
  margin-left: 8px;
  content: "→";
}

.legal-back:hover {
  border-color: rgba(53, 182, 255, 0.4);
  box-shadow: 0 22px 54px -36px rgba(15, 23, 42, 0.58);
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #1198ee;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  color: #0b111d;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 42px 0 12px;
  color: #0b111d;
  font-size: 24px;
  line-height: 1.1;
}

p,
li {
  color: rgba(18, 17, 17, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 72px -54px rgba(15, 23, 42, 0.46);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(18, 17, 17, 0.72);
  font-size: 14px;
  font-weight: 760;
}

input,
textarea {
  width: 100%;
  box-sizing: border-box;
  color: #0b111d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  font: inherit;
  outline: none;
}

input {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

form button {
  width: fit-content;
  min-height: 46px;
  padding: 0 20px;
  color: #04131d;
  background: linear-gradient(180deg, #7fdaff 0%, #35b6ff 100%);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 18px 30px -18px rgba(53, 182, 255, 0.72);
}

.form-status {
  min-height: 24px;
  margin-top: 6px;
  font-size: 15px;
}

@media (max-width: 640px) {
  main {
    width: min(calc(100% - 28px), 840px);
    padding-top: 48px;
  }
}
