/* Executive Centered Layout */

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #071225, #0b1b36);
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Container */
.page {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  max-width: 900px;
  padding: 40px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.logo {
  max-width: 700px;
  width: 100%;
  margin-bottom: 25px;
}

/* Anchor line */
.anchor {
  font-size: 16px;
  opacity: 0.75;
  max-width: 700px;
  margin-bottom: 30px;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn {
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.primary {
  background: #2ed573;
  color: #071225;
}

.btn.primary:hover {
  background: #1dd1a1;
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Footer */
.fine {
  font-size: 13px;
  opacity: 0.6;
  max-width: 750px;
}
