:root {
  color-scheme: dark;
  --background: #050706;
  --panel: rgba(18, 22, 20, .94);
  --panel-soft: #111513;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .19);
  --text: #f6faf8;
  --muted: #a8b0ac;
  --teal: #20e6c1;
  --teal-dark: #0e927c;
  --pink: #ff315b;
  --warning: #ffbf69;
  --shadow: 0 26px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 84% -8%, rgba(32, 230, 193, .16), transparent 32rem),
    radial-gradient(circle at -8% 46%, rgba(255, 49, 91, .09), transparent 28rem),
    linear-gradient(180deg, #070a08 0%, var(--background) 48%, #020303 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
a { color: var(--teal); }
a:hover, a:focus-visible { color: #94f7e3; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: max(14px, env(safe-area-inset-top)) max(22px, calc((100vw - 1000px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 6, .82);
  backdrop-filter: blur(22px);
}

.brand {
  color: #fff;
  font-size: 1.04rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-decoration: none;
}
.brand span { color: var(--teal); }

.language-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}
.language-button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
}
.language-button[aria-pressed="true"] {
  background: #f5f8f7;
  color: #07100d;
}

main {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 42px;
}

.intro { margin-bottom: 30px; }
.eyebrow, .step {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .17em;
}
h1, h2 { letter-spacing: -.035em; }
h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5rem);
  line-height: .98;
  font-weight: 950;
}
.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.16rem);
}

.emergency-notice {
  display: flex;
  gap: 15px;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid rgba(255, 191, 105, .32);
  border-radius: 18px;
  background: rgba(255, 191, 105, .07);
}
.emergency-icon {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--warning);
  color: #1b1206;
  font-weight: 950;
}
.emergency-notice strong { color: #ffe1b8; }
.emergency-notice p { margin: 4px 0 0; color: #c9c0b3; font-size: .9rem; }

.support-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px 24px;
  border-bottom: 1px solid var(--line);
}
.card-heading .step { margin-bottom: 7px; }
.card-heading h2, .success-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.1;
}
.private-badge {
  padding: 7px 10px;
  border: 1px solid rgba(32, 230, 193, .27);
  border-radius: 999px;
  background: rgba(32, 230, 193, .08);
  color: var(--teal);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .11em;
}

form { padding: 28px 30px 32px; }
.field + .field { margin-top: 25px; }
.field label {
  display: block;
  margin-bottom: 9px;
  font-size: .92rem;
  font-weight: 850;
}
.label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.label-row output { color: var(--muted); font-size: .75rem; font-variant-numeric: tabular-nums; }
input, select, textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  outline: 0;
  background: #090c0b;
  color: var(--text);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
input, select { min-height: 52px; padding: 0 15px; }
textarea { min-height: 190px; padding: 14px 15px; resize: vertical; line-height: 1.55; }
input:focus, select:focus, textarea:focus {
  border-color: var(--teal-dark);
  background: #0b100e;
  box-shadow: 0 0 0 3px rgba(32, 230, 193, .1);
}
select { cursor: pointer; }
.field-help, .privacy-copy {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}
.privacy-copy {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.privacy-copy a { font-weight: 800; }

.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.form-status {
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 49, 91, .28);
  border-radius: 12px;
  background: rgba(255, 49, 91, .08);
  color: #ffb1c1;
  font-size: .86rem;
}
.submit-button, .secondary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 900;
}
.submit-button { background: var(--teal); color: #03100d; }
.submit-button:hover { background: #6af0d5; }
.submit-button:disabled { cursor: wait; opacity: .58; }
.submit-button span:last-child { font-size: 1.2rem; }

.success-panel { padding: 42px 30px; text-align: center; }
.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #04110e;
  font-size: 1.45rem;
  font-weight: 950;
}
.success-panel .step { margin: 0 0 8px; }
.success-panel p:not(.step) { max-width: 520px; margin: 14px auto; color: var(--muted); }
.success-panel code {
  display: block;
  width: fit-content;
  margin: 22px auto;
  padding: 12px 15px;
  border: 1px solid rgba(32, 230, 193, .26);
  border-radius: 11px;
  background: rgba(32, 230, 193, .08);
  color: #8ff5df;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.secondary-button { max-width: 280px; margin: 26px auto 0; background: #f4f6f5; color: #080b09; }

.policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 16px;
  margin: 30px auto 0;
}
.policy-links a { color: var(--muted); font-size: .78rem; font-weight: 750; text-decoration: none; }
.policy-links a:hover { color: var(--teal); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 25px 0 max(36px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: #717975;
  font-size: .76rem;
}
footer a { color: #8d9691; text-decoration: none; }

.noscript {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 50;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  text-align: center;
  font-weight: 700;
}

[hidden] { display: none !important; }

html[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .step,
html[dir="rtl"] .private-badge { letter-spacing: .03em; }
html[dir="rtl"] .submit-button span:last-child { transform: rotate(180deg); }

@media (max-width: 600px) {
  .site-header { padding-inline: 16px; }
  .language-button { padding-inline: 11px; }
  main { width: min(100% - 22px, 760px); padding-top: 56px; }
  .support-card { border-radius: 23px; }
  .card-heading, form, .success-panel { padding-inline: 20px; }
  .card-heading { padding-top: 24px; }
  footer { width: min(100% - 28px, 760px); flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

