:root {
  --brand-primary: #F27507;
  --brand-secondary: #404040;
  --brand-accent: #F2B705;
  --brand-text: #0D0D0D;
  --brand-light: #E4EAF2;
  --hairline: #DDE2EA;
  --muted: #6B7180;
  --bg: #F4F6FA;
  --card: #FFFFFF;
  --max-width: 720px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--brand-text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

a:hover,
a:focus {
  border-bottom-color: var(--brand-primary);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__logo {
  height: 28px;
  width: auto;
  display: block;
}

.site-header__wordmark {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--brand-secondary);
  font-size: 17px;
}

.site-header__wordmark--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 64px;
}

article > header {
  margin-bottom: 32px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--brand-text);
}

.meta {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--brand-text);
}

article > section:first-of-type h2,
article > h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 24px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  margin: 24px 0 8px;
  color: var(--brand-secondary);
}

p {
  margin: 0 0 12px;
}

ul,
ol {
  padding-left: 22px;
  margin: 0 0 12px;
}

li {
  margin-bottom: 6px;
}

li > ul,
li > ol {
  margin-top: 6px;
}

strong {
  font-weight: 600;
  color: var(--brand-text);
}

address {
  font-style: normal;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 0 0 16px;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.tier-table th,
.tier-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}

.tier-table th {
  background: var(--brand-light);
  font-weight: 600;
  color: var(--brand-secondary);
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.tier-table tr:last-child td {
  border-bottom: 0;
}

.callout {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--brand-primary);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 15px;
  color: var(--brand-secondary);
}

.site-footer {
  background: var(--card);
  border-top: 1px solid var(--hairline);
  padding: 24px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  color: var(--brand-secondary);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus {
  color: var(--brand-primary);
}

.site-footer__copy {
  margin: 0;
}

/* Landing page card list */
.legal-index {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.legal-index a {
  display: block;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--brand-text);
  border-bottom: 1px solid var(--hairline);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.legal-index a:hover,
.legal-index a:focus {
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}

.legal-index strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-text);
}

.legal-index span {
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 720px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 24px;
  }

  main {
    padding: 48px 24px 80px;
  }

  .site-header__inner {
    padding: 22px 24px;
  }
}
