:root {
  --color-brand: #d946ef;
  --color-cta: #f59e0b;
  --text-dark: #1a1a1a;
  --text-muted: #777;
  --border: #ddd;
  --font-main: Bahnschrift, 'Arial Black', 'Helvetica Neue', sans-serif;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  max-width: 100%;
  border-collapse: collapse;
}

a {
  color: var(--color-brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #c026d3;
}

a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1em;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0.4em;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}

th {
  font-weight: 700;
  background: #fafafa;
}

.table-responsive, .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5em;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  line-height: 1.6;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-cta);
  color: #1a1a1a;
}

.btn-primary:hover {
  background: #d97706;
  color: #1a1a1a;
}

.btn-brand {
  background: var(--color-brand);
  color: #fff;
}

.btn-brand:hover {
  background: #c026d3;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

section {
  padding: 60px 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--color-brand);
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
  font-size: 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 10px;
}

blockquote {
  border-left: 2px solid #ccc;
  padding-left: 16px;
  margin: 1.5em 0;
  font-style: italic;
  color: #555;
}

blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 14px;
  color: #888;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  section {
    padding: 40px 0;
  }

  .container {
    width: 92%;
  }

  .grid, [class*='grid'] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
    padding: 0 12px;
  }
}