:root {
  --background: #f8f7f5;
  --surface: rgba(13, 17, 21, 0.94);
  --text: #111111;
  --muted: #6d6f72;
  --accent: #121416;
  --border: #1f2428;
  --button: #111111;
  --button-text: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f8f7f5;
}

.page-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 60px;
}

.logo {
  width: 100px;
  min-width: 100px;
  display: grid;
  place-items: center;
  position: relative;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  width: 100%;
  min-height: 64px;
  padding: 0 10px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--button-text);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.brand-text .subheading {
  margin: 10px 0 6px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
}

.content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 44px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.14);
}

.content h2 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: #ffffff;
}

.content p {
  margin: 0 0 24px;
  color: #f6f6f6;
  font-size: 1.05rem;
  line-height: 1.9;
}

.note {
  margin-bottom: 32px;
  color: #ffffff;
  font-size: 1.02rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  color: var(--button-text);
  background: #d70010;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(215, 0, 16, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(215, 0, 16, 0.32);
}

.footer {
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 24px 16px;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
  }
}
