/*
  Palette pulled from system1group.com (wp-content/themes/system1/css/styles.css):
  pink/magenta #ED3293 (header, primary accent), yellow #FCC600 (primary CTA
  buttons), dark gray #292929 (body text), plus their pill-shaped buttons.
  Font is their licensed "Graphik" family — not embeddable here, so this
  falls back to a similar geometric system sans stack.
*/
:root {
  color-scheme: light;
  --bg: #ffffff;
  --fg: #292929;
  --border: #d4d3d3;
  --section-bg: #eeeeee;
  --pink: #ed3293;
  --yellow: #fcc600;
  --dark: #292929;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

.brandbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}

.brandbar .logo {
  display: inline-flex;
  align-items: center;
}

.brandbar .logo svg {
  display: block;
  height: 28px;
  width: auto;
}

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

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.disclaimer {
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 28px;
}

.disclaimer p { margin: 0 0 14px; }
.disclaimer ul { margin: 0 0 14px; padding-left: 22px; }
.disclaimer li { margin-bottom: 6px; }
.disclaimer p:last-child, .disclaimer ul:last-child { margin-bottom: 0; }

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  font: inherit;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100rem;
  border: 0.2rem solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Mirrors .button.primary on system1group.com: yellow fill, dark text */
.btn-agree {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.btn-agree:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

/* Mirrors their ghost/secondary button: outlined, fills pink on hover */
.btn-deny {
  background: none;
  border-color: var(--pink);
  color: var(--pink);
}

.btn-deny:hover {
  background: var(--pink);
  color: #fff;
}
