:root {
  color-scheme: light;
  --background: #fbfaf9;
  --surface: #ffffff;
  --surface-soft: #f7f2ef;
  --text: #1f1b1b;
  --muted: #6f6663;
  --accent: #e46557;
  --border: #eadfdb;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 32px 20px 56px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.app-list {
  display: grid;
  gap: 12px;
}

.app-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(64, 33, 28, 0.06);
}

.app-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: var(--surface-soft);
  font-size: 1.55rem;
}

.app-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.app-name {
  font-size: 1.08rem;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.app-meta {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.app-action {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 780;
  white-space: nowrap;
}

.hero {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.7rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.policy-card {
  overflow: hidden;
  border: 1px solid rgba(238, 219, 215, 0.9);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(64, 33, 28, 0.12);
  backdrop-filter: blur(18px);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(250, 225, 221, 0.72), rgba(255, 255, 255, 0.82));
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.policy-content {
  padding: clamp(24px, 5vw, 52px);
}

.policy-content h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.04em;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.policy-content p {
  margin: 0 0 16px;
}

.policy-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff0ed;
}

.contact-box a,
.policy-content a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.footer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 640px) {
  .page-shell {
    padding: 24px 16px 40px;
  }

  .top-bar {
    margin-bottom: 24px;
  }

  .app-row {
    grid-template-columns: auto 1fr;
  }

  .app-action {
    grid-column: 2;
  }

  .policy-card {
    border-radius: 26px;
  }
}
