:root {
  color-scheme: dark;
  --bg: #030405;
  --panel: rgba(11, 13, 15, 0.86);
  --panel-strong: #0d0f11;
  --text: #f2f3f4;
  --muted: #9a9da5;
  --muted-soft: #777b84;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.055);
  --accent: #cef246;
  --accent-bright: #e4fb88;
  --silver: #d5d5d0;
  --silver-bright: #f3f3ef;
  --success: #cef246;
  --radius: 18px;
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 58px 100%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.009) 1px, transparent 1px) 29px 0 / 58px 100%,
    radial-gradient(ellipse at 50% 45%, rgba(142, 145, 143, 0.2), transparent 48%),
    #030405;
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.page-shell::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.52));
}

.page-shell::after {
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.16;
}

.ambient--top {
  top: -270px;
  left: calc(50% - 225px);
  background: #bfc2bd;
}

.ambient--bottom {
  right: -220px;
  bottom: -280px;
  background: #85877f;
  opacity: 0.12;
}

.site-header {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 31px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e5e6e7;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 0.94;
}

.thank-you-page {
  display: grid;
  width: min(100% - 48px, 1120px);
  flex: 1;
  margin: 0 auto;
  place-items: center;
  padding: 66px 0 72px;
}

.confirmation-card {
  position: relative;
  width: min(100%, 680px);
  padding: 44px 52px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(20, 23, 27, 0.93), var(--panel));
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.5),
    0 0 75px rgba(96, 111, 145, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  text-align: center;
  animation: card-in 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.confirmation-card::before {
  position: absolute;
  top: -1px;
  right: 17%;
  left: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 232, 224, 0.72), transparent);
  content: "";
}

.status-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(165, 231, 198, 0.42);
  border-radius: 50%;
  background: rgba(121, 209, 169, 0.075);
  box-shadow: 0 0 26px rgba(118, 225, 173, 0.09);
}

.status-icon svg {
  width: 25px;
  height: 25px;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.lead {
  max-width: 550px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.015em;
  line-height: 1.65;
}

strong {
  color: #e4e6e9;
  font-weight: 600;
}

.steps {
  position: relative;
  margin-top: 31px;
  text-align: left;
}

.steps::before {
  position: absolute;
  top: 37px;
  bottom: 37px;
  left: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(206, 242, 70, 0.5), var(--line), rgba(206, 242, 70, 0.5));
  content: "";
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}

.step:first-child {
  padding-top: 0;
  border-top: 0;
}

.step:last-child {
  padding-bottom: 0;
}

.step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(206, 242, 70, 0.47);
  border-radius: 50%;
  background: #10130c;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.step--action .step-marker {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 22px rgba(206, 242, 70, 0.2);
  color: #15180c;
}

.step-content {
  min-width: 0;
  padding-top: 1px;
}

.step-label {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.step h2 {
  margin: 0 0 8px;
  color: var(--silver-bright);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.step-content > p:not(.step-label) {
  margin: 0;
  color: #aeb1b9;
  font-size: 12px;
  line-height: 1.65;
}

.step-note {
  margin-top: 11px !important;
  padding: 10px 12px;
  border-left: 2px solid var(--accent);
  border-radius: 0 7px 7px 0;
  background: rgba(206, 242, 70, 0.055);
  color: #c5c8c1 !important;
}

.access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 274px);
  padding: 14px 20px;
  border: 1px solid rgba(206, 242, 70, 0.78);
  border-radius: 8px;
  background: linear-gradient(135deg, #cef246, #b9dd35);
  box-shadow:
    0 12px 30px rgba(206, 242, 70, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.55);
  color: #15180c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.step--action .access-button {
  display: flex;
  width: min(100%, 274px);
  margin: 17px auto 0;
}

.access-button:hover,
.access-button:focus-visible {
  filter: brightness(1.08);
  box-shadow:
    0 16px 36px rgba(206, 242, 70, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.65);
  outline: none;
  transform: translateY(-2px);
}

.access-button:active {
  transform: translateY(0);
}

.access-button svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.support {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 28px;
  color: var(--muted-soft);
  font-size: 11px;
  line-height: 1.6;
}

.support a {
  color: var(--accent);
  text-decoration: none;
  transition: color 180ms ease;
}

.support a:hover,
.support a:focus-visible {
  color: var(--accent-bright);
  text-decoration: underline;
  outline: none;
}

.site-footer {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 0 0 28px;
  color: #555961;
  font-size: 10px;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 32px, 1120px);
    padding-top: 23px;
  }

  .thank-you-page {
    width: min(100% - 32px, 1120px);
    padding: 42px 0 50px;
  }

  .confirmation-card {
    padding: 34px 21px 30px;
    border-radius: 15px;
  }

  .lead {
    font-size: 13px;
  }

  .step {
    grid-template-columns: 34px 1fr;
    gap: 13px;
  }

  .steps::before {
    left: 16px;
  }

  .step-marker {
    width: 33px;
    height: 33px;
    font-size: 9px;
  }

  .site-footer {
    width: min(100% - 32px, 1120px);
    padding-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
