/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.5;
}

a {
  color: #000;
  text-decoration: none;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

/* HEADER */
.site-header {
  border-bottom: 1px solid #e5e5e5;
}

.site-header .container {
  display: flex;
  align-items: flex-end;   /* aligns bottoms instead of centers */
  justify-content: space-between;
  padding-top: 12px;       /* fine-tunes vertical placement */
}
/* LOGO */
.logo {
  height: 60px;
  position: relative;
  top: 30px;   /* micro-adjust downward */
}
/* NAV */
nav a {
  margin-left: 28px;
  font-weight: 500;
}

.access-link {
  font-weight: 600;
}

/* HERO */
.hero {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 24px;
  text-align: left;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #333;
}

/* HERO BUTTONS — SOLID BLACK */
.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* HOVER → TURN WHITE */
.hero-buttons .btn:hover {
  background: #fff;
  color: #000;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 24px;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 80px;
}