/* RESET */
* {
  box-sizing: border-box;
}

/* BASE */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0D1C3D; /* Wataad Navy */
  color: #FFFFFF;
}

/* MAIN LAYOUT */
.page {
  display: flex;
  min-height: calc(100vh - 60px);
}

/* PANELS */
.panel {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LEFT & RIGHT */
.left,
.right {
  background: #0D1C3D;
}

/* LOGO BLOCK */
.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO */
.logo {
  max-width: 520px;
  height: auto;
}

/* WORDMARK */
.wordmark {
  margin-top: 1rem;
  font-size: 36px; /* requested size */
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #FFFFFF;
}

/* CONTENT */
.content {
  max-width: 600px;
  padding: 3rem;
  text-align: center;
}

/* HEADLINE — GOLD */
.content h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1.8rem;
  font-weight: 600;
  color: #EBAA1D; /* Wataad Gold */
}

/* SUBTEXT — WHITE */
.content .sub {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.8rem;
  color: #FFFFFF;
  opacity: 0.9;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #EBAA1D;
  color: #0D1C3D;
  padding: 1rem 2.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

/* FOOTER */
footer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0.7;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .panel {
    width: 100%;
    padding: 2.5rem;
  }

  .logo {
    max-width: 320px;
  }

  .wordmark {
    font-size: 28px;
  }

  .content h1 {
    font-size: 1.8rem;
  }

  .content .sub {
    font-size: 1rem;
  }
}
