:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --border: rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "SF Pro Display",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  color: var(--text);
  background: var(--bg);
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.header {
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.title {
  margin: 0 0 16px;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.subtitle {
  margin: 0;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.381;
  color: var(--text-secondary);
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
}

.row + .row {
  border-top: 1px solid var(--border);
}

.label {
  font-size: 14px;
  color: var(--text-secondary);
}

.value {
  font-size: 15px;
  font-weight: 500;
  text-align: right;
  word-break: break-all;
}

.value-muted {
  color: var(--text-secondary);
  font-weight: 400;
}

.footer {
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 12px;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .page {
    padding-top: 56px;
  }

  .title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 19px;
  }

  .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .value {
    text-align: left;
  }
}
