:root {
  --accent: #ff4f8b;
  --accent_grn: #00ffbf;
  --bg: #2f3439;
  --text: #f3f6f7;
  --muted: #95adb6;
  --border: #40474d;
}

body {
  margin: 0;
  font-family: 'Inter', BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  background-color: var(--bg);
  color: var(--text);
}

header {
  text-align: center;
  padding: 6rem 2rem 2rem;
}

header img {
  max-width: 240px;
  height: auto;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 50;
  margin-bottom: 0.5rem;
  color: var(--text);
}

nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: var(--accent);
}

section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

h2 {
  border-left: 4px solid var(--accent_grn);
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0;
}

footer {
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.email-link {
  color: var(--accent);
  text-decoration: underline;
}

.email-link:hover {
  color: #ff74a3;
}

.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 700px;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.founder-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 40%;
  flex-shrink: 0;
}

.founder-info {
  flex: 1;
  max-width: 550px;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent);
  color: white;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.cta-button:hover {
  background-color: #ff74a3;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background-color: #1f2428;
  color: var(--text);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button {
  align-self: flex-start;
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact-form button:hover {
  background-color: #ff74a3;
}