:root {
  color-scheme: dark;
  --bg: #040814;
  --panel: rgba(9, 14, 28, 0.84);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.68);
  --accent: #f6c67e;
  --button-start: #68b6ff;
  --button-end: #3f82f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter Tight", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(39, 80, 155, 0.36), transparent 34%),
    radial-gradient(circle at bottom right, rgba(246, 198, 126, 0.14), transparent 28%),
    linear-gradient(180deg, #06112c 0%, #040814 62%, #03050e 100%);
}

.thanks-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.thanks-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.9;
}

.thanks-orb-left {
  width: 280px;
  height: 280px;
  left: -80px;
  top: -60px;
  background: rgba(52, 111, 225, 0.24);
}

.thanks-orb-right {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -80px;
  background: rgba(246, 198, 126, 0.14);
}

.thanks-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 40px 36px;
  border-radius: 32px;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--panel);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  text-align: center;
}

.thanks-logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.thanks-logo img {
  width: clamp(150px, 28vw, 220px);
  height: auto;
}

.thanks-kicker {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.thanks-card h1 {
  margin: 16px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.thanks-text {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.45;
  color: var(--muted);
}

.thanks-note {
  margin: 20px auto 0;
  max-width: 500px;
  font-size: 18px;
  line-height: 1.4;
}

.thanks-note strong {
  color: var(--accent);
}

.thanks-button {
  margin: 28px auto 0;
  min-width: min(100%, 340px);
  padding: 18px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, var(--button-start) 0%, var(--button-end) 100%);
  color: #0a1b42;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    0 18px 44px rgba(40, 97, 197, 0.34),
    0 0 34px rgba(86, 151, 255, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.thanks-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 52px rgba(40, 97, 197, 0.4),
    0 0 40px rgba(86, 151, 255, 0.34);
}

.thanks-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .thanks-page {
    padding: 16px;
  }

  .thanks-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .thanks-card h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .thanks-text {
    margin-top: 18px;
    font-size: 17px;
  }

  .thanks-note {
    margin-top: 16px;
    font-size: 16px;
  }

  .thanks-button {
    width: 100%;
    min-width: 0;
    padding: 16px 20px;
    font-size: 17px;
  }
}
