.home-btn,
.name {
  font-family: "DM Mono", monospace;
}
.cta-btn,
.home-btn {
  text-decoration: none;
}
.cta-section,
.profile-header,
footer {
  text-align: center;
}
:root {
  --bg: #1e1f20;
  --surface: #272829;
  --surface-2: #2f3031;
  --border: #333435;
  --border-mid: #444546;
  --text-1: #e2e2e0;
  --text-2: #a0a09e;
  --text-3: #787876;
  --text-4: #5a5a5a;
  --link-idle: #b0b0ae;
  --link-hover: #e2e2e0;
  --callout-bg: #2a2b2c;
  --callout-border: #666;
}
.home-btn,
.scroll-btn {
  border: 1px solid var(--border);
  color: var(--text-2);
  transition:
    border-color 0.18s,
    color 0.18s;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
html {
  min-height: 100%;
  background-color: var(--bg);
  color: var(--text-1);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  min-height: 44px;
  margin-bottom: 28px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 13px;
}
.card,
.scroll-btn {
  background: var(--surface);
}
.home-btn:hover,
.scroll-btn:hover {
  border-color: var(--border-mid);
  color: var(--text-1);
}
.home-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}
.scroll-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 100;
}
.scroll-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.scroll-btn:focus-visible {
  outline: 2px solid var(--text-2);
  outline-offset: 3px;
  color: var(--text-1);
}
.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 48px 24px 64px;
}
.card {
  width: 100%;
  max-width: 620px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 48px 40px;
  height: fit-content;
}
.profile-header {
  margin-bottom: 32px;
}
.avatar-wrap {
  margin-bottom: 20px;
}
.avatar {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border-mid);
  display: block;
  margin: 0 auto;
  background: var(--border);
}
.name {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.role,
.section-label {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.role {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 14px;
}
.homepage-nudge,
.section-label {
  font-size: 14px;
  color: var(--text-3);
}
.homepage-nudge {
  font-style: italic;
  line-height: 1.6;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
.section {
  margin-bottom: 8px;
}
.section-label {
  font-weight: 500;
  margin-bottom: 16px;
}
.body-text,
.callout {
  font-size: 16px;
  line-height: 1.8;
}
.cta-btn,
.footer {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.02em;
}
.body-text {
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 16px;
}
.body-text:last-of-type {
  margin-bottom: 0;
}
.closing-signal {
  margin-top: 20px;
  color: var(--text-2);
}
.callout,
.closing-emphasis {
  font-weight: 400;
  color: var(--text-1);
}
.callout {
  border-left: 3px solid var(--callout-border);
  background: var(--callout-bg);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-top: 24px;
  font-style: italic;
}
.signal-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.signal-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
}
.signal-dot {
  width: 6px;
  height: 6px;
  background: var(--border-mid);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 8px;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.deliverable-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.18s;
}
.deliverable-card:hover {
  border-color: var(--border-mid);
}
.deliverable-title {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 10px;
}
.deliverable-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 15px 36px;
  min-height: 44px;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-1);
  font-size: 15px;
  font-weight: 400;
  transition:
    border-color 0.18s,
    color 0.18s,
    background 0.18s;
}
.cta-btn:hover {
  border-color: var(--text-2);
  color: var(--link-hover);
  background: rgba(255, 255, 255, 0.09);
}
footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer {
  font-size: 13px;
  color: var(--text-4);
}
.cta-btn:focus-visible,
.home-btn:focus-visible {
  outline: 2px solid var(--text-2);
  outline-offset: 3px;
  border-color: var(--border-mid);
  color: var(--text-1);
}
.deliverable-card:focus-visible {
  outline: 2px solid var(--text-2);
  outline-offset: 3px;
  border-color: var(--border-mid);
}
@media (max-width: 540px) {
  .page {
    padding: 24px 16px 48px;
  }
  .card {
    padding: 28px 20px 32px;
    border-radius: 16px;
  }
  .name {
    font-size: 20px;
  }
  .section-label {
    font-size: 13px;
  }
  .body-text,
  .callout {
    font-size: 15px;
  }
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  .callout {
    padding: 16px 18px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
