.shell-page {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.shell-root {
  min-height: 100vh;
}

.shell-frame {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.shell-header,
.shell-footer,
.shell-actions,
.shell-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.shell-header,
.shell-footer {
  justify-content: space-between;
}

.shell-header {
  border-bottom: 1px solid #e5e5e7;
  padding-bottom: 16px;
}

.shell-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.shell-brand img {
  height: 24px;
  width: auto;
}

.shell-nav,
.shell-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.shell-nav a,
.shell-footer a,
.shell-link {
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
}

.shell-nav a:hover,
.shell-footer a:hover,
.shell-link:hover,
.shell-brand:hover {
  color: #111827;
}

.shell-main {
  padding: 56px 0;
}

.shell-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e6e73;
}

.shell-main h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.shell-main p,
.shell-article p {
  margin: 0;
  max-width: 720px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.shell-main p + p {
  margin-top: 16px;
}

.shell-actions {
  margin-top: 32px;
}

.shell-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.shell-button:hover {
  border-color: #9ca3af;
}

.shell-button--primary {
  border-color: #111827;
  background: #111827;
  color: #ffffff;
}

.shell-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.shell-card {
  border: 1px solid #e5e5e7;
  border-radius: 20px;
  padding: 20px;
}

.shell-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.shell-card p {
  font-size: 14px;
}

.shell-card a {
  display: inline-block;
  margin-top: 12px;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.shell-card a:hover {
  text-decoration: underline;
}

.shell-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 0 56px;
}

.shell-article-header {
  margin-bottom: 32px;
}

.shell-article-header h1 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
}

.shell-article-meta {
  margin-top: 10px;
  font-size: 13px;
  color: #6e6e73;
}

.shell-legal-nav {
  margin-top: 20px;
}

.shell-article section + section {
  margin-top: 24px;
}

.shell-article h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.shell-footer {
  border-top: 1px solid #e5e5e7;
  padding-top: 18px;
  color: #6e6e73;
  font-size: 13px;
}

@media (max-width: 720px) {
  .shell-header,
  .shell-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .shell-frame {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shell-main {
    padding-top: 40px;
  }
}
