:root {
  --bg: #cbb57a;
  --panel: #9e8c5c;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.86);
  --muted2: rgba(255, 255, 255, 0.72);

  --container: 980px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --border-soft: 1px solid rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: clamp(44px, 6vw, 72px) 0;
}

.section-tight {
  padding-top: clamp(10px, 2.2vw, 18px);
  padding-bottom: clamp(58px, 7vw, 90px);
}

.site-header {
  padding: 24px 0 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 0.95;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link[aria-current="page"] {
  color: var(--text);
}

.header-spacer {
  width: 120px;
}

.page-hero {
  padding: clamp(54px, 7vw, 92px) 0 clamp(18px, 3vw, 28px);
}

.page-hero-inner {
  text-align: center;
}

.page-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
}

.page-subtitle {
  margin: 12px auto 0;
  max-width: 680px;
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.6;
}

.stack {
  display: grid;
  gap: clamp(26px, 4vw, 38px);
  justify-items: center;
}

.pill {
  background: var(--panel);
  border-radius: 56px;
  box-shadow: var(--shadow);
  border: var(--border-soft);
  text-align: center;
  padding: clamp(18px, 2.8vw, 26px) clamp(22px, 4vw, 44px);
}

.pill-wide {
  width: min(760px, 100%);
}

.pill-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.35;
  font-weight: 500;
}

.pill-divider {
  width: min(280px, 60%);
  height: 2px;
  margin: 18px auto 16px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.pill-divider.small {
  width: 180px;
  margin: 12px auto 12px;
}

.pill-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.2;

  word-break: break-word;
  overflow-wrap: anywhere;
}

.pill-link:hover {
  text-decoration: underline;
}

.pill-card {
  width: min(420px, 100%);
  border-radius: 44px;
  padding: clamp(20px, 3vw, 28px);
}

.avatar-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: var(--border-soft);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-meta {
  display: grid;
  gap: 2px;
}

.founder-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.founder-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 16px;
}

.pill-social {
  width: min(360px, 100%);
  border-radius: 34px;
  padding: 18px 22px 20px;
}

.social-title {
  font-weight: 700;
  font-size: 18px;
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
}

.social-link:hover {
  color: var(--text);
  text-decoration: underline;
}

.site-footer {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.16);
  padding: 18px 0 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.footer-link:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 8px;
}

.copyright {
  color: var(--muted2);
  font-size: 11px;
}

@media (max-width: 820px) {
  .header-spacer {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pill {
    border-radius: 44px;
  }
}

@media (max-width: 480px) {
  .avatar-wrap {
    width: 120px;
    height: 120px;
  }
}
