/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 */

:root {
  --bg: #fafafa;
  --fg: #111111;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #111111;
  --radius: 999px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0a;
    --fg: #f5f5f5;
    --muted: #9ca3af;
    --line: #1f1f22;
    --accent: #f5f5f5;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Inter",
    "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.profile {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.profile__avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius);
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  background: var(--fg);
  color: var(--bg);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.profile__name {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.profile__bio {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.profile__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.profile__meta li + li {
  position: relative;
  padding-left: 16px;
}

.profile__meta li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  transform: translateY(-50%);
  opacity: 0.6;
}

.profile__links {
  list-style: none;
  padding: 0;
  margin: -16px 0 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.profile__links a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.profile__links a:hover {
  border-color: var(--muted);
}

.profile__divider {
  width: 48px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 24px;
}

.services {
  margin: 0 0 28px;
  text-align: left;
}

.services__title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.service-card:hover {
  border-color: var(--muted);
  transform: translateY(-1px);
}

.service-card__icon {
  font-size: 22px;
  line-height: 1;
}

.service-card__body {
  flex: 1;
  min-width: 0;
}

.service-card__name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-card__desc {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.service-card__arrow {
  color: var(--muted);
  font-size: 14px;
}

.profile__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
