:root {
  color-scheme: dark;
  --bg: #05080c;
  --panel: rgba(12, 18, 23, 0.92);
  --panel-2: rgba(20, 28, 34, 0.86);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f6f8ff;
  --muted: #aeb9c2;
  --cyan: #4fdbff;
  --green: #22e4a4;
  --purple: #c157ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(34, 228, 164, 0.2), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(193, 87, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #05080c, #080d12 50%, #05060a);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(34, 228, 164, 0.2), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(193, 87, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #05080c, #080d12 50%, #05060a);
}

.shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 20px 18px;
}

.hero,
.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    var(--panel);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.hero {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: min(520px, calc(100vh - 128px));
  padding: 58px 24px;
  text-align: center;
}

.document {
  width: min(100%, 860px);
}

.card {
  padding: clamp(24px, 5vw, 48px);
}

.back {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(36px, 8vw, 70px);
  line-height: 1;
}

.card h1 {
  font-size: clamp(34px, 7vw, 58px);
}

h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 21px;
}

p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.lede,
.muted {
  color: var(--muted);
}

.lede {
  max-width: 560px;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.actions a {
  min-width: 170px;
  padding: 13px 18px;
  border: 1px solid rgba(79, 219, 255, 0.35);
  border-radius: 9px;
  color: #061014;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(79, 219, 255, 0.24));
}
strong {
  color: var(--cyan);
}

.site-footer {
  align-self: center;
  width: fit-content;
  max-width: min(100%, 720px);
  margin-top: auto;
  padding: 14px 18px;
  border: 1px solid rgba(79, 219, 255, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(79, 219, 255, 0.08), rgba(34, 228, 164, 0.06)),
    rgba(5, 8, 12, 0.72);
  box-shadow: 0 0 34px rgba(79, 219, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(10px);
}

.site-footer p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 0 14px rgba(79, 219, 255, 0.35);
}

.site-footer a:hover {
  text-decoration: underline;
}
