*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body.pepco-landing {
  margin: 0;
  min-height: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: #0b2d5b;
  background: #ffffff;
}

body.pepco-landing #wpadminbar {
  display: none;
}

body.pepco-landing.admin-bar {
  margin-top: 0 !important;
}

.pepco-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
  background: #ffffff;
}

.pepco-hero__inner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pepco-hero__brand {
  margin: 0 0 1.25rem;
  width: 100%;
}

.pepco-hero__logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.pepco-hero__tagline {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #4a5f7a;
  font-weight: 400;
}

.pepco-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
}

.pepco-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pepco-btn--primary {
  color: #ffffff;
  background: #e31837;
  border: 2px solid #e31837;
}

.pepco-btn--primary:hover,
.pepco-btn--primary:focus-visible {
  background: #c41430;
  border-color: #c41430;
  color: #ffffff;
}

.pepco-btn--secondary {
  color: #0b2d5b;
  background: #ffffff;
  border: 2px solid #0b2d5b;
}

.pepco-btn--secondary:hover,
.pepco-btn--secondary:focus-visible {
  background: #0b2d5b;
  color: #ffffff;
}

@media (min-width: 480px) {
  .pepco-hero__logo {
    max-width: 340px;
  }

  .pepco-hero__tagline {
    font-size: 1.0625rem;
  }
}
