:root {
  --color-bg: #0b0508;
  --color-bg-elevated: #14070f;
  --color-bg-soft: #1b0b14;
  --color-surface: #1f0d18;
  --color-surface-soft: #26101f;
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-strong: rgba(255, 255, 255, 0.14);
  --color-text: #f7f3f5;
  --color-text-soft: #d0c4cc;
  --color-text-muted: #a08c99;
  --color-text-inverse: #0b0508;
  --color-primary: #7b1026;
  --color-primary-deep: #4c0716;
  --color-primary-soft: rgba(123, 16, 38, 0.7);
  --color-accent-yellow: #f5c443;
  --color-accent-amber: #ffb347;
  --color-accent-blue: #3b7cff;
  --color-accent-electric: #4fd1ff;
  --color-focus: #f5c443;
  --color-danger: #ff4b6b;
  --color-success: #4cd38a;
  --color-overlay: rgba(0, 0, 0, 0.7);
  --gradient-primary: linear-gradient(135deg, #7b1026 0%, #3b7cff 50%, #f5c443 100%);
  --gradient-accent: radial-gradient(circle at top, rgba(245, 196, 67, 0.18), transparent 60%), radial-gradient(circle at bottom, rgba(59, 124, 255, 0.16), transparent 55%);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-focus: 0 0 0 1px rgba(11, 5, 8, 0.8), 0 0 0 3px rgba(245, 196, 67, 0.7);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --radius-card: 18px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 2.75rem;
  --text-display: clamp(2.75rem, 4vw, 3.5rem);
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --container-max: 1120px;
  --container-wide: 1320px;
  --header-height: 4.5rem;
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease;
  --transition-slow: 320ms ease;
  --z-header: 40;
  --z-overlay: 50;
  --z-modal: 60;
  --z-toast: 70;
  --bp-mobile: 480px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --bp-wide: 1280px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: 0.02em;
  color: var(--color-text);
}

p {
  margin: 0 0 var(--space-md);
}

b,
strong {
  font-weight: 600;
}

small {
  font-size: 80%;
}

a {
  background-color: transparent;
  color: var(--color-accent-yellow);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast), text-shadow var(--transition-fast);
}

a:hover {
  color: var(--color-accent-electric);
  text-shadow: 0 0 12px rgba(79, 209, 255, 0.4);
}

a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-xs);
}

ul {
  margin: 0 0 var(--space-md);
  padding-left: 0;
  list-style: none !important;
}

ol {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35em;
}

img {
  border-style: none;
}

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

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

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-height: 100%;
}

body {
  background-image: var(--gradient-accent);
  background-attachment: fixed;
  background-size: cover;
}

::selection {
  background-color: rgba(245, 196, 67, 0.3);
  color: var(--color-text);
}

h1 {
  font-size: var(--text-display);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-md);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-soft);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-soft {
  color: var(--color-text-soft);
}

.text-accent {
  color: var(--color-accent-yellow);
}

.text-accent-blue {
  color: var(--color-accent-blue);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-nowrap {
  white-space: nowrap;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

body,
p,
li,
dd,
dt {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.long-text {
  word-break: break-word;
}

a,
button,
[role="button"],
input,
select,
textarea {
  touch-action: manipulation;
}

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

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

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

.page-main {
  flex: 1 0 auto;
  padding-top: var(--header-height);
}

.page-footer {
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-2xl);
}

.section-tight {
  padding-block: var(--space-xl);
}

.section-hero {
  padding-block: var(--space-3xl);
}

.stack-sm > * + * {
  margin-top: var(--space-sm);
}

.stack-md > * + * {
  margin-top: var(--space-md);
}

.stack-lg > * + * {
  margin-top: var(--space-lg);
}

.stack-xl > * + * {
  margin-top: var(--space-xl);
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-lg);
}

.grid-gap-sm {
  gap: var(--space-md);
}

.grid-gap-lg {
  gap: var(--space-xl);
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-xs {
  gap: var(--space-xs);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.flex-1 {
  flex: 1 1 0%;
  min-width: 0;
}

.flex-auto {
  flex: 1 1 auto;
  min-width: 0;
}

.flex-none {
  flex: 0 0 auto;
}

.flex-safe {
  flex: 1 1 260px;
  min-width: 0;
}

.flex-media {
  flex: 1 1 260px;
  min-width: 0;
}

.flex-text {
  flex: 1 1 260px;
  min-width: 0;
}

.wrap-safe > * {
  min-width: min(260px, 100%);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.cluster-center {
  justify-content: center;
}

.stack-responsive {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.stack-responsive > * {
  flex: 1 1 260px;
  min-width: 0;
}

.media-frame {
  position: relative;
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(245, 196, 67, 0.12), transparent 55%), radial-gradient(circle at bottom right, rgba(59, 124, 255, 0.12), transparent 55%), var(--color-primary-deep);
  box-shadow: var(--shadow-soft);
}

.media-frame img,
.media-frame video,
.media-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--16x9 {
  aspect-ratio: 16 / 9;
}

.media-frame--4x3 {
  aspect-ratio: 4 / 3;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
}

img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  white-space: normal;
  text-align: center;
  text-decoration: none;
  background-image: linear-gradient(135deg, #f5c443, #ffb347);
  color: var(--color-text-inverse);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-position var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
  background-size: 200% 200%;
  background-position: 0% 50%;
}

.btn:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.btn:focus-visible {
  box-shadow: var(--shadow-focus);
}

.btn-primary {
  background-image: linear-gradient(135deg, #7b1026, #3b7cff);
  color: var(--color-text);
}

.btn-outline {
  background: transparent;
  border-color: rgba(245, 196, 67, 0.7);
  color: var(--color-text);
  box-shadow: 0 0 0 1px rgba(245, 196, 67, 0.25);
}

.btn-outline:hover {
  background: rgba(245, 196, 67, 0.08);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text-soft);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-subtle {
  background: rgba(123, 16, 38, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}

.btn-subtle:hover {
  background: rgba(123, 16, 38, 0.8);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: var(--text-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-icon {
  padding-inline: 0.9rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 196, 67, 0.7);
  color: var(--color-accent-yellow);
  background: rgba(11, 5, 8, 0.7);
  backdrop-filter: blur(10px);
}

.badge-soft {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text-soft);
  background: rgba(255, 255, 255, 0.04);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card {
  position: relative;
  border-radius: var(--radius-card);
  background: radial-gradient(circle at top, rgba(245, 196, 67, 0.1), transparent 55%), radial-gradient(circle at bottom, rgba(59, 124, 255, 0.1), transparent 55%), var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-subtle);
  padding: var(--space-lg);
  color: var(--color-text);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 196, 67, 0.08), rgba(59, 124, 255, 0.05));
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.card:hover::before {
  opacity: 1;
}

.card-header {
  margin-bottom: var(--space-md);
}

.card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.card-body {
  position: relative;
  z-index: 1;
}

.card-footer {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-soft {
  background: var(--color-bg-soft);
  box-shadow: none;
}

.card-ghost {
  background: rgba(11, 5, 8, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.card-highlight {
  border-color: rgba(245, 196, 67, 0.7);
  box-shadow: 0 0 0 1px rgba(245, 196, 67, 0.25), var(--shadow-soft);
}

.card-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-list {
  display: grid;
  gap: var(--space-md);
}

.card-list-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form {
  width: 100%;
  max-width: 100%;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.form-row > * {
  flex: 1 1 220px;
  min-width: 0;
}

.form-group {
  margin-bottom: var(--space-md);
  width: 100%;
  max-width: 100%;
}

label {
  display: inline-block;
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

.form-label-inline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-xs);
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.form-error {
  margin-top: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--color-danger);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
input[type="datetime-local"],
input[type="date"],
select,
textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: rgba(10, 5, 8, 0.85);
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.4;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), color var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: rgba(208, 196, 204, 0.6);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(245, 196, 67, 0.85);
  box-shadow: 0 0 0 1px rgba(11, 5, 8, 0.9), 0 0 0 3px rgba(245, 196, 67, 0.6);
  background-color: rgba(10, 5, 8, 0.98);
}

input[disabled],
select[disabled],
textarea[disabled],
button[disabled],
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(245, 196, 67, 0.9) 50%), linear-gradient(135deg, rgba(245, 196, 67, 0.9) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.3rem;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.checkbox-inline,
.radio-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

input[type="checkbox"],
input[type="radio"] {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

textarea {
  min-height: 120px;
}

.table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.table th,
.table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  font-size: var(--text-sm);
}

.table th {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.table tbody tr:hover {
  background-color: rgba(245, 196, 67, 0.04);
}

.table-border {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.table-border th,
.table-border td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-header);
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top, rgba(245, 196, 67, 0.12), transparent 55%), radial-gradient(circle at bottom, rgba(59, 124, 255, 0.12), transparent 55%), rgba(11, 5, 8, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  width: 100%;
}

.header-nav-left,
.header-nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
}

.header-logo span {
  color: var(--color-accent-yellow);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.nav-link {
  position: relative;
  padding: 0.35rem 0.4rem;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent-yellow), var(--color-accent-blue));
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--active {
  color: var(--color-accent-yellow);
}

.nav-link--active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 5, 8, 0.9);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 5, 8, 0.96);
  padding-block: var(--space-xl);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-link:hover {
  color: var(--color-accent-yellow);
}

.footer-meta {
  margin-top: var(--space-lg);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer-meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(245, 196, 67, 0.6);
}

.footer-meta a:hover {
  color: var(--color-accent-yellow);
}

.hero {
  padding-block: var(--space-3xl);
}

.hero-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-yellow);
  margin-bottom: var(--space-xs);
}

.hero-title {
  font-size: var(--text-display);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-soft);
  max-width: 34rem;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-meta {
  margin-top: var(--space-lg);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.list-plain {
  list-style: none;
  padding-left: 0;
}

.list-bullets {
  list-style: disc;
  padding-left: 1.25rem;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding-left: 0;
}

.list-columns {
  columns: 2;
  column-gap: var(--space-lg);
}

.list-columns li {
  break-inside: avoid;
}

.content {
  max-width: 720px;
  margin-inline: auto;
}

.content h1,
.content h2,
.content h3 {
  margin-top: var(--space-xl);
}

.content h1:first-child,
.content h2:first-child,
.content h3:first-child {
  margin-top: 0;
}

.content p,
.content ul,
.content ol {
  margin-bottom: var(--space-md);
}

.content ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.content ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.content a {
  text-decoration: underline;
  text-decoration-color: rgba(245, 196, 67, 0.7);
  text-underline-offset: 0.18em;
}

.content a:hover {
  text-decoration-color: rgba(79, 209, 255, 0.9);
}

.tagline {
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-blue);
}

.meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: var(--space-xs);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: var(--space-xs);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.pt-xl {
  padding-top: var(--space-xl);
}

.pb-xl {
  padding-bottom: var(--space-xl);
}

.hidden {
  display: none !important;
}

@media (max-width: 1023.98px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .container,
  .container-wide {
    padding-inline: var(--space-sm);
  }

  .section {
    padding-block: var(--space-xl);
  }

  .section-hero {
    padding-block: var(--space-2xl);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .list-columns {
    columns: 1;
  }

  .header-inner {
    height: auto;
    padding-block: 0.5rem;
  }

  .header-nav {
    align-items: center;
  }

  .header-nav-left,
  .header-nav-right {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-brand {
    flex: 1 1 auto;
  }

  .header-logo {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    font-size: clamp(2.1rem, 7vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: var(--text-md);
  }

  .footer-inner {
    flex-direction: column;
  }

  .btn-group {
    width: 100%;
  }

  .btn-group .btn {
    flex: 1 1 100%;
  }

  .table {
    min-width: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero {
    padding-block: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-block: var(--space-3xl);
  }
}