:root {
  --ink: #19212a;
  --muted: #637083;
  --line: #dce4ea;
  --teal: #0c4f54;
  --coral: #ef6a4f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f8f8;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid rgba(239, 106, 79, 0.42);
  outline-offset: 3px;
}

.policy-header {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(247, 244, 236, 0.94);
  border-bottom: 1px solid rgba(25, 33, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
}

.back-link {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.policy-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.policy-intro {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

h2 {
  margin-top: 34px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p,
ul {
  margin: 12px 0 0;
  color: var(--muted);
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 7px;
}

.updated {
  margin-top: 18px;
  font-size: 0.9rem;
}

.policy-note {
  margin-top: 32px;
  padding: 18px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-main a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

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

  h1 {
    font-size: 2.75rem;
  }
}
