:root {
  --bg-color: #0f172a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --yellow: #f59e0b; /* Solid Amber/Yellow */
  --yellow-hover: #d97706;
  --card-bg: #1e293b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  line-height: 1.6;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #ffffff;
  word-break: break-word;
}

h1 span {
  color: var(--accent);
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.benefits {
  text-align: left;
  margin: 0 auto 2.5rem auto;
  max-width: 450px;
  background: rgba(15, 23, 42, 0.4);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: #10b981;
  flex-shrink: 0;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto;
}

.cta-button {
  display: block;
  background-color: var(--accent) !important;
  color: #ffffff !important;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
  border: none;
}

.cta-button:hover {
  background-color: var(--accent-hover) !important;
}

.cta-button-secondary {
  display: block;
  background-color: var(--yellow) !important;
  color: #0f172a !important; /* Deep dark text forced for crisp contrast */
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.3);
  border: none;
}

.cta-button-secondary:hover {
  background-color: var(--yellow-hover) !important;
}

.cta-button:active, .cta-button-secondary:active {
  transform: scale(0.98);
}

my-footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

#footer.footer {
  display: none !important;
}

#header.header {
  display: none !important;
}