:root {
  --bg-dark: #0f172a;
  --bg-muted: #111b34;
  --accent: #ff7a18;
  --accent-soft: #ffd5b2;
  --text: #0f172a;
  --text-muted: #4c576f;
  --surface: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --radius-lg: 1.25rem;
  --radius-sm: 0.5rem;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f5f7fb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.logo {
  max-width: 10em;
  padding-bottom: 2em;
}

.shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  background: radial-gradient(circle at top right, #1f2a44, var(--bg-dark));
  color: #fff;
  padding: 5rem 0;
  text-align: left;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8ff;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  margin: 1.5rem 0 1rem;
}

.hero p {
  font-size: 1.15rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-group {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0f0f0f;
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 4rem 0;
}

.section.highlight {
  background: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card,
.profile-card,
.contact-note {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.card h3,
.profile-card h3 {
  margin-top: 0;
}

.list {
  padding-left: 1.2rem;
  margin: 1.5rem 0 0;
}

.list li {
  margin-bottom: 0.6rem;
}

.contact .btn-primary {
  margin-top: 1rem;
}

.contact-note {
  background: var(--bg-dark);
  color: #fff;
}

.contact-note p {
  color: rgba(255, 255, 255, 0.85);
}

.contact-note .subtle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer {
  background: var(--bg-muted);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer h4 {
  margin-top: 0;
  color: #fff;
}

.footer a {
  color: var(--accent-soft);
}

.profile-thumbnail {
  width: 240px;
  height: 240px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .card,
  .profile-card,
  .contact-note {
    padding: 1.5rem;
  }
}
