/* --------------------------------------------------
   GLOBAL RESET
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
  line-height: 1.5;
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
nav {
  background: #111;
  padding: 16px 24px;
  display: flex;
  align-items: center;
}

nav img {
  height: 32px;
}

nav span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-left: 12px;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #555;
}

.hero .buttons a {
  display: inline-block;
  padding: 12px 24px;
  margin: 6px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
}

/* --------------------------------------------------
   SECTION WRAPPER
-------------------------------------------------- */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.section p {
  text-align: center;
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 17px;
}

/* --------------------------------------------------
   NETWORK CARDS
-------------------------------------------------- */
.network-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.network-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.network-card h3 {
  margin-bottom: 10px;
}

.network-card p {
  color: #666;
  font-size: 15px;
  margin-bottom: 16px;
}

.network-card a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

/* --------------------------------------------------
   IDENTITY SELECTOR
-------------------------------------------------- */
.identity-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.identity-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.identity-card h3 {
  margin-bottom: 10px;
}

.identity-card p {
  color: #666;
  font-size: 15px;
  margin-bottom: 16px;
}

.identity-card a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

/* --------------------------------------------------
   FORM ELEMENTS (for intake, signup, login)
-------------------------------------------------- */
form {
  width: 100%;
  max-width: 420px;
  margin: auto;
}

.field {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: #444;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

button,
.button {
  width: 100%;
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover,
.button:hover {
  background: #000;
}

/* Checkbox fix */
input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

/* Terms label */
.terms-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* --------------------------------------------------
   CARD WRAPPER (login, signup, intake)
-------------------------------------------------- */
.container {
  padding: 40