*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #F4EFE6;
  --bg-2:      #EDE6D8;
  --surface:   #FBF8F1;
  --ink:       #221F1A;
  --ink-soft:  #6B6457;
  --line:      #E2D9C8;
  --accent:    #B06A3B;
  --accent-2:  #2E6F6A;

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

.label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--bg-2);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

ul.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}
ul.bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 7px; height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
}

.divider {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
