/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #111827;
  background-color: #ffffff;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Header */
.header {
  text-align: center;
  padding: 40px 16px 16px;
}

.logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: block;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.brand-name {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
}

.badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #f3f4f6;
  color: #4b5563;
}

/* Main / hero */
.main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 24px 16px 40px;
}

.hero {
  max-width: 720px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, transform 0.05s ease;
}

.button-primary {
  background-color: #111827;
  color: #ffffff;
}

.button-primary:hover {
  background-color: #000000;
  transform: translateY(-1px);
}

.button-secondary {
  background-color: #ffffff;
  color: #111827;
  border-color: #e5e7eb;
}

.button-secondary:hover {
  background-color: #f9fafb;
}

/* Footer */
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 16px 20px;
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-link {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-center {
  text-align: center;
  flex: 1;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .hero-title {
    font-size: 26px;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
  }

  .footer-center {
    order: -1;
  }
}
