* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #F5F1E8;
  color: #1A1814;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #6B5BE0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: #1A1814;
  letter-spacing: -0.4px;
  text-decoration: none;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #1A1814;
  margin-bottom: 8px;
}

.meta {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  color: #6B6558;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: #1A1814;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 15px;
  font-weight: 600;
  color: #3A362E;
  margin-top: 20px;
  margin-bottom: 8px;
}

p {
  font-size: 15.5px;
  color: #3A362E;
  margin-bottom: 14px;
}

ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

li {
  font-size: 15.5px;
  color: #3A362E;
  margin-bottom: 8px;
}

strong {
  color: #1A1814;
  font-weight: 600;
}

a {
  color: #4B3EB8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #6B5BE0;
}

hr {
  border: none;
  height: 1px;
  background: rgba(26, 24, 20, 0.08);
  margin: 40px 0;
}

.card {
  background: #FFFFFF;
  border: 1px solid rgba(26, 24, 20, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
}

.card-title {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: #4B3EB8;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(26, 24, 20, 0.08);
  border-radius: 14px;
  text-decoration: none;
  color: #1A1814;
  font-weight: 500;
  font-size: 16px;
  transition: border-color 0.15s;
}

.links a:hover {
  border-color: #6B5BE0;
}

.links span {
  color: #A39C8C;
  font-size: 18px;
}

.foot {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 24, 20, 0.08);
  font-size: 13px;
  color: #6B6558;
}

.foot a {
  color: #6B6558;
}

@media (max-width: 480px) {
  .wrap { padding: 32px 20px 64px; }
  h1 { font-size: 32px; }
  h2 { font-size: 19px; }
  p, li { font-size: 15px; }
}
