:root {
  --ink: #0e1a17;
  --accent: #f4cc01;
  --mist: #f3efe7;
  --glow: rgba(244, 204, 1, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background-color: var(--mist);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
  z-index: 1;
  pointer-events: none;
}

#pattern-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logo img {
  display: block;
  height: 184px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 10px 22px rgba(14, 26, 23, 0.58));
}

.logo .wording {
  height: 164px;
}

.card {
  max-width: 720px;
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 56px 48px 32px;
  box-shadow: 0 30px 80px rgba(14, 26, 23, 0.12);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(14, 26, 23, 0.6);
}

h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 48px);
  margin: 16px 0 12px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 28px;
  color: rgba(14, 26, 23, 0.78);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  align-self: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 16px 30px rgba(244, 204, 1, 0.3);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(244, 204, 1, 0.45);
}

.meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  margin-top: 32px;
  gap: 6px;
  font-size: 13px;
  color: rgba(14, 26, 23, 0.6);
  text-align: center;
}

@media (max-width: 600px) {
  .card {
    padding: 40px 28px;
  }

  p {
    font-size: 16px;
  }
}
