:root {
  --color-bg: #f9f7f4;
  --color-bg-elevated: #ffffff;
  --color-bg-soft: #f2efea;
  --color-bg-contrast: #101624;
  --color-surface-glass: rgba(255, 255, 255, 0.85);
  --color-border-subtle: rgba(16, 22, 36, 0.08);
  --color-border-strong: rgba(16, 22, 36, 0.16);
  --color-text-main: #141824;
  --color-text-soft: #4a4f5c;
  --color-text-muted: #7d828f;
  --color-text-inverse: #ffffff;
  --color-accent-red: #c6283b;
  --color-accent-red-soft: #f8d7dd;
  --color-accent-blue: #1e4c9a;
  --color-accent-blue-soft: #d4e0f8;
  --color-accent-gold: #c89b3c;
  --color-accent-ivory: #fdf7ef;
  --color-focus: #1e4c9a;
  --color-danger: #c6283b;
  --color-success: #2e7d32;
  --color-warning: #f9a825;
  --color-link: #1e4c9a;
  --color-link-hover: #163a74;
  --gradient-primary: linear-gradient(135deg, #c6283b 0%, #e53935 18%, #7b1fa2 45%, #1e4c9a 80%, #0d1b3f 100%);
  --gradient-soft: linear-gradient(135deg, rgba(198, 40, 59, 0.08), rgba(30, 76, 154, 0.08));
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(249, 247, 244, 0.95));
  --shadow-soft: 0 10px 30px rgba(9, 12, 22, 0.08);
  --shadow-softer: 0 6px 18px rgba(9, 12, 22, 0.06);
  --shadow-strong: 0 18px 45px rgba(9, 12, 22, 0.18);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --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", "Cormorant Garamond", "Times New Roman", serif;
  --font-mono: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-size-xs: 0.78rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.0625rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  --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-xs: 640px;
  --container-sm: 768px;
  --container-md: 960px;
  --container-lg: 1120px;
  --container-xl: 1280px;
  --container-2xl: 1440px;
  --header-height-mobile: 64px;
  --header-height-desktop: 80px;
  --transition-fast: 150ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 280ms ease-out;
  --z-header: 40;
  --z-overlay: 60;
  --z-modal: 80;
  --z-toast: 100;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "kern" 1;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

h1,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--line-height-snug);
  letter-spacing: 0.01em;
  color: var(--color-text-main);
}

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

strong,
b {
  font-weight: 600;
}

small {
  font-size: 0.85em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

a:hover {
  color: var(--color-link-hover);
}

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

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

code,
kbd,
samp,
pre {
  font-family: var(--font-mono);
  font-size: 0.95em;
}

pre {
  margin: 0 0 var(--space-md);
  overflow: auto;
}

img {
  border-style: none;
}

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

svg {
  fill: currentColor;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-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;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
  padding: 0;
  margin-bottom: var(--space-sm);
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

progress {
  vertical-align: baseline;
}

details {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

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

dd {
  margin-left: 0;
}

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

th,
td {
  padding: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--color-border-subtle);
  margin: var(--space-lg) 0;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

h4 {
  font-size: var(--font-size-lg);
}

h5 {
  font-size: var(--font-size-md);
}

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

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

.text-sm {
  font-size: var(--font-size-sm);
}

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

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

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

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

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

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

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

.display-hero {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
}

.display-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
}

.page-title {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

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

.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-soft);
  max-width: 40rem;
}

a.link-underline {
  position: relative;
  text-decoration: none;
}

a.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 40, 59, 0.7), rgba(30, 76, 154, 0.7));
  transform-origin: left;
  transform: scaleX(0.6);
  opacity: 0.7;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

a.link-underline:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(198, 40, 59, 0.12), transparent 55%), radial-gradient(circle at bottom right, rgba(30, 76, 154, 0.18), transparent 55%), var(--color-bg);
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-md);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.container-wide {
  width: 100%;
  max-width: var(--container-2xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section-compact {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.section-divider {
  border-top: 1px solid var(--color-border-subtle);
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

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

.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: repeat(12, minmax(0, 1fr));
  gap: var(--space-lg);
}

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

.grid-balanced {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fit, minmax(220px, 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-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
}

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

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

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-9 {
  grid-column: span 9;
}

.col-span-10 {
  grid-column: span 10;
}

.col-span-12 {
  grid-column: span 12;
}

.flex {
  display: flex;
}

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

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

.flex-column {
  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-media {
  flex: 1 1 260px;
  min-width: 0;
}

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

.wrap-safe > * {
  min-width: 0;
}

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

.media-column {
  flex: 1 1 280px;
  min-width: min(320px, 100%);
}

.content-column {
  flex: 1 1 320px;
  min-width: min(320px, 100%);
}

.media-frame {
  position: relative;
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

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

.media-frame--soft {
  background: var(--color-bg-soft);
}

.media-frame--ratio-16x9 {
  padding-bottom: 56.25%;
}

.media-frame--ratio-4x3 {
  padding-bottom: 75%;
}

.media-frame--ratio-3x2 {
  padding-bottom: 66.6667%;
}

.media-frame--ratio-1x1 {
  padding-bottom: 100%;
}

.media-frame--ratio-16x9 > *,
.media-frame--ratio-4x3 > *,
.media-frame--ratio-3x2 > *,
.media-frame--ratio-1x1 > * {
  position: absolute;
  inset: 0;
}

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

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

.btn,
button.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: var(--color-accent-blue);
  color: var(--color-text-inverse) !important;
  box-shadow: 0 10px 24px rgba(12, 28, 64, 0.35);
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), border-color var(--transition-base), opacity var(--transition-fast);
  white-space: normal;
  text-align: center;
}

.btn:hover,
button.btn:hover,
a.btn:hover {
  background: #163a74;
  box-shadow: 0 14px 32px rgba(12, 28, 64, 0.45);
  transform: translateY(-1px);
}

.btn:active,
button.btn:active,
a.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(12, 28, 64, 0.35);
}

.btn:disabled,
button.btn:disabled,
a.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-primary {
  background-image: var(--gradient-primary);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px rgba(12, 28, 64, 0.45);
}

.btn-primary:hover {
  filter: brightness(1.02);
  box-shadow: 0 20px 46px rgba(12, 28, 64, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent-blue);
  border-color: rgba(30, 76, 154, 0.4);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(30, 76, 154, 0.06);
  box-shadow: none;
}

.btn-light {
  background: var(--color-bg-elevated);
  color: var(--color-text-main);
  border-color: rgba(16, 22, 36, 0.06);
  box-shadow: var(--shadow-soft);
}

.btn-light:hover {
  background: var(--color-bg-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-main);
  border-color: transparent;
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(16, 22, 36, 0.04);
}

.btn-danger {
  background: var(--color-accent-red);
  border-color: rgba(198, 40, 59, 0.7);
  box-shadow: 0 12px 26px rgba(198, 40, 59, 0.45);
}

.btn-danger:hover {
  background: #aa2334;
}

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

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

.btn-full {
  width: 100%;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(16, 22, 36, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-soft);
}

.badge-accent {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(198, 40, 59, 0.12), rgba(30, 76, 154, 0.12));
  color: var(--color-accent-blue);
}

.badge-soft-red {
  background: var(--color-accent-red-soft);
  border-color: rgba(198, 40, 59, 0.25);
  color: var(--color-accent-red);
}

.badge-soft-blue {
  background: var(--color-accent-blue-soft);
  border-color: rgba(30, 76, 154, 0.25);
  color: var(--color-accent-blue);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  border-radius: var(--radius-card);
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.card-plain {
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-softer);
}

.card-soft {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 244, 0.96));
  border-color: rgba(255, 255, 255, 0.9);
}

.card-header {
  padding: var(--space-lg) var(--space-lg) var(--space-sm);
}

.card-body {
  padding: var(--space-sm) var(--space-lg) var(--space-lg);
}

.card-footer {
  padding: var(--space-sm) var(--space-lg) var(--space-lg);
  border-top: 1px solid rgba(16, 22, 36, 0.06);
  background: linear-gradient(to top, rgba(249, 247, 244, 0.9), rgba(249, 247, 244, 0.3));
}

.card-media {
  position: relative;
  overflow: hidden;
}

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

.card-media--ratio-16x9 {
  padding-bottom: 56.25%;
}

.card-media--ratio-4x3 {
  padding-bottom: 75%;
}

.card-media--ratio-3x2 {
  padding-bottom: 66.6667%;
}

.card-media--ratio-1x1 {
  padding-bottom: 100%;
}

.card-media--ratio-16x9 > img,
.card-media--ratio-4x3 > img,
.card-media--ratio-3x2 > img,
.card-media--ratio-1x1 > img {
  position: absolute;
  inset: 0;
}

.card-elevated {
  box-shadow: var(--shadow-strong);
}

.card-outline {
  background: var(--color-bg-elevated);
  border-style: solid;
  border-width: 1px;
  border-color: rgba(198, 40, 59, 0.2);
}

.card-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(9, 12, 22, 0.16);
  border-color: rgba(30, 76, 154, 0.25);
}

.card-tag {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

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

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

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

.form-field-half {
  flex: 1 1 260px;
  min-width: min(260px, 100%);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-main);
}

.form-label span.required {
  color: var(--color-accent-red);
  margin-left: 0.15em;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="search"],
select,
textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 22, 36, 0.12);
  background-color: rgba(255, 255, 255, 0.96);
  color: var(--color-text-main);
  font-size: var(--font-size-sm);
  line-height: 1.4;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), transform var(--transition-fast);
}

textarea {
  min-height: 140px;
}

select {
  padding-right: 2.2rem;
  background-image: linear-gradient(45deg, transparent 50%, rgba(16, 22, 36, 0.45) 50%), linear-gradient(135deg, rgba(16, 22, 36, 0.45) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 10px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
  outline: none;
  border-color: rgba(30, 76, 154, 0.7);
  box-shadow: 0 0 0 1px rgba(30, 76, 154, 0.6), 0 10px 24px rgba(12, 28, 64, 0.18);
  background-color: #ffffff;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(198, 40, 59, 0.7);
  box-shadow: 0 0 0 1px rgba(198, 40, 59, 0.5);
}

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

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

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

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.form-check-label {
  cursor: pointer;
}

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

.table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: var(--font-size-sm);
}

.table thead th {
  text-align: left;
  font-weight: 600;
  padding: 0.75rem 0.75rem;
  border-bottom: 1px solid var(--color-border-strong);
  white-space: nowrap;
}

.table tbody td {
  padding: 0.75rem 0.75rem;
  border-bottom: 1px solid var(--color-border-subtle);
  vertical-align: top;
}

.table tbody tr:nth-child(even) {
  background-color: rgba(249, 247, 244, 0.6);
}

.table tfoot td {
  padding: 0.75rem 0.75rem;
  border-top: 1px solid var(--color-border-strong);
  font-weight: 500;
}

.table-sm thead th,
.table-sm tbody td,
.table-sm tfoot td {
  padding: 0.5rem 0.5rem;
}

.table-borderless tbody td,
.table-borderless thead th {
  border: 0;
}

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

.chip-icon {
  width: 1.1em;
  height: 1.1em;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffe7e9, #c6283b);
}

.chip-soft {
  background: linear-gradient(135deg, rgba(198, 40, 59, 0.06), rgba(30, 76, 154, 0.06));
  border-color: transparent;
}

.chip-outline {
  background: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  border: 1px solid rgba(16, 22, 36, 0.12);
  color: var(--color-text-soft);
}

.pill-primary {
  border-color: transparent;
  background-image: linear-gradient(135deg, rgba(198, 40, 59, 0.18), rgba(30, 76, 154, 0.18));
  color: var(--color-accent-blue);
}

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

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

.list-spaced > li + li {
  margin-top: var(--space-sm);
}

.content {
  max-width: 60rem;
}

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

.content ul,
.content ol {
  margin-bottom: var(--space-md);
  padding-left: 1.25rem;
}

.content li + li {
  margin-top: 0.35em;
}

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

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

.content a {
  text-decoration: underline;
  text-decoration-color: rgba(30, 76, 154, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.content a:hover {
  text-decoration-color: rgba(30, 76, 154, 0.9);
}

.content-legal {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-soft);
}

.content-legal h1,
.content-legal h2,
.content-legal h3 {
  font-family: var(--font-sans);
  font-weight: 600;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  background: radial-gradient(circle at 0% 0%, rgba(198, 40, 59, 0.25), transparent 55%), radial-gradient(circle at 100% 0%, rgba(30, 76, 154, 0.4), transparent 60%), radial-gradient(circle at 50% 100%, rgba(12, 28, 64, 0.9), rgba(12, 28, 64, 1));
  color: var(--color-text-inverse);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 50%), radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.12), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.hero-shell-inner {
  position: relative;
  z-index: 1;
}

.hero-shell .container,
.hero-shell .container-wide {
  position: relative;
  z-index: 1;
}

.hero-shell .card,
.hero-shell .card-plain {
  background: rgba(9, 12, 22, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.hero-shell .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-text-inverse);
}

.hero-shell .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-shell .badge,
.hero-shell .chip,
.hero-shell .pill {
  background: rgba(9, 12, 22, 0.6);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.hero-shell .section-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.hero-shell .lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero-shell a {
  color: #f4f6ff;
}

.hero-shell a:hover {
  color: #ffffff;
}

.hero-shell .form-control,
.hero-shell input,
.hero-shell textarea,
.hero-shell select {
  background-color: rgba(9, 12, 22, 0.8);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--color-text-inverse);
}

.hero-shell .form-control::placeholder,
.hero-shell input::placeholder,
.hero-shell textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-shell .form-control:focus,
.hero-shell input:focus,
.hero-shell textarea:focus,
.hero-shell select:focus {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 10px 28px rgba(0, 0, 0, 0.7);
}

.hero-shell .media-frame--soft {
  background: rgba(9, 12, 22, 0.8);
}

.hero-shell .media-frame {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.hero-shell .card-hover:hover {
  transform: translateY(-6px);
}

.hero-shell .card-footer {
  background: linear-gradient(to top, rgba(9, 12, 22, 0.9), rgba(9, 12, 22, 0.4));
  border-top-color: rgba(255, 255, 255, 0.12);
}

.hero-shell .table tbody tr:nth-child(even) {
  background-color: rgba(9, 12, 22, 0.7);
}

.hero-shell .table thead th,
.hero-shell .table tbody td,
.hero-shell .table tfoot td {
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .content-legal {
  color: rgba(255, 255, 255, 0.86);
}

.hero-shell .content-legal a {
  color: #f4f6ff;
}

.hero-shell .content-legal a:hover {
  color: #ffffff;
}

.hero-shell .badge-soft-red {
  background: rgba(248, 215, 221, 0.15);
  border-color: rgba(248, 215, 221, 0.4);
  color: #ffd7df;
}

.hero-shell .badge-soft-blue {
  background: rgba(212, 224, 248, 0.18);
  border-color: rgba(212, 224, 248, 0.4);
  color: #e0e7ff;
}

.hero-shell .chip-soft {
  background: linear-gradient(135deg, rgba(198, 40, 59, 0.2), rgba(30, 76, 154, 0.2));
  border-color: transparent;
}

.hero-shell .pill-primary {
  background-image: linear-gradient(135deg, rgba(198, 40, 59, 0.4), rgba(30, 76, 154, 0.4));
}

.hero-shell .btn-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text-main);
  border-color: transparent;
}

.hero-shell .btn-light:hover {
  background: #ffffff;
}

.hero-shell .btn-danger {
  box-shadow: 0 14px 32px rgba(198, 40, 59, 0.75);
}

.hero-shell .btn-primary {
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.8);
}

.hero-shell .card-outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(9, 12, 22, 0.9);
}

.hero-shell .card-soft {
  background: linear-gradient(145deg, rgba(9, 12, 22, 0.96), rgba(9, 12, 22, 0.86));
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-shell .section-divider {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.hero-shell .page-title,
.hero-shell .display-hero,
.hero-shell .display-section {
  color: var(--color-text-inverse);
}

.hero-shell .text-soft {
  color: rgba(255, 255, 255, 0.82);
}

.hero-shell .text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.hero-shell .badge-accent {
  background: linear-gradient(135deg, rgba(198, 40, 59, 0.35), rgba(30, 76, 154, 0.35));
  color: #fff5f7;
}

.hero-shell .chip-icon {
  background: radial-gradient(circle at 30% 20%, #ffe7e9, #ffb3c0);
}

.hero-shell .table-responsive {
  scrollbar-color: rgba(255, 255, 255, 0.6) rgba(9, 12, 22, 0.9);
}

.hero-shell .table-responsive::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.6);
}

.hero-shell .table-responsive::-webkit-scrollbar-track {
  background-color: rgba(9, 12, 22, 0.9);
}

.hero-shell .form-check {
  color: rgba(255, 255, 255, 0.86);
}

.hero-shell .form-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero-shell .form-help {
  color: rgba(255, 255, 255, 0.7);
}

.hero-shell .form-error {
  color: #ffb3c0;
}

.hero-shell .form-success {
  color: #b2ffb8;
}

.hero-shell .card-meta {
  color: rgba(255, 255, 255, 0.72);
}

.hero-shell .card-meta-item {
  color: inherit;
}

.hero-shell .badge-soft-red,
.hero-shell .badge-soft-blue {
  box-shadow: 0 0 0 1px rgba(9, 12, 22, 0.7);
}

.hero-shell .badge-soft-red {
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.2), transparent 55%), linear-gradient(135deg, rgba(198, 40, 59, 0.7), rgba(198, 40, 59, 0.35));
}

.hero-shell .badge-soft-blue {
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.2), transparent 55%), linear-gradient(135deg, rgba(30, 76, 154, 0.7), rgba(30, 76, 154, 0.35));
}

.hero-shell .btn-outline.btn-danger {
  border-color: rgba(255, 179, 192, 0.8);
  color: #ffdde5;
}

.hero-shell .btn-outline.btn-danger:hover {
  background: rgba(255, 179, 192, 0.16);
}

.hero-shell .btn-outline.btn-primary {
  border-color: rgba(212, 224, 248, 0.8);
  color: #e0e7ff;
}

.hero-shell .btn-outline.btn-primary:hover {
  background: rgba(212, 224, 248, 0.16);
}

.hero-shell .card-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background var(--transition-base), outline var(--transition-base);
}

.hero-shell .card-hover:focus-within {
  outline: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-shell .btn,
.hero-shell button.btn,
.hero-shell a.btn {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.hero-shell .btn-ghost {
  color: rgba(255, 255, 255, 0.9);
}

.hero-shell .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-shell .btn-light.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-shell .btn-light.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-shell .btn-full {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.hero-shell .card-plain.card-hover:hover {
  background: rgba(9, 12, 22, 0.96);
}

.hero-shell .table thead th {
  background: rgba(9, 12, 22, 0.9);
}

.hero-shell .table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.hero-shell .content a {
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.hero-shell .content a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

.hero-shell .pill {
  background: rgba(9, 12, 22, 0.7);
}

.hero-shell .pill-primary {
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-shell .chip {
  background: rgba(9, 12, 22, 0.7);
}

.hero-shell .chip-soft {
  background: linear-gradient(135deg, rgba(198, 40, 59, 0.3), rgba(30, 76, 154, 0.3));
}

.hero-shell .badge-accent {
  border-color: transparent;
}

.hero-shell .card-outline.card-hover:hover {
  background: rgba(9, 12, 22, 0.98);
}

.hero-shell .card-soft.card-hover:hover {
  background: linear-gradient(145deg, rgba(9, 12, 22, 0.99), rgba(9, 12, 22, 0.92));
}

.hero-shell .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 59, 0.18), transparent 55%), radial-gradient(circle at 100% 0, rgba(30, 76, 154, 0.18), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-shell .media-frame {
  border-radius: var(--radius-lg);
}

.hero-shell .media-frame--soft {
  background: rgba(9, 12, 22, 0.9);
}

.hero-shell .media-frame--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 59, 0.3), transparent 55%), radial-gradient(circle at 100% 0, rgba(30, 76, 154, 0.3), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero-shell .media-frame--ratio-16x9,
.hero-shell .media-frame--ratio-4x3,
.hero-shell .media-frame--ratio-3x2,
.hero-shell .media-frame--ratio-1x1 {
  background: #000;
}

.hero-shell .media-frame--ratio-16x9 > *,
.hero-shell .media-frame--ratio-4x3 > *,
.hero-shell .media-frame--ratio-3x2 > *,
.hero-shell .media-frame--ratio-1x1 > * {
  position: absolute;
  inset: 0;
}

.hero-shell .media-frame .img-cover {
  object-fit: cover;
}

.hero-shell .media-frame .img-contain {
  object-fit: contain;
}

.hero-shell .table-responsive {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 12, 22, 0.85);
}

.hero-shell .table {
  min-width: 100%;
}

.hero-shell .table thead th,
.hero-shell .table tbody td,
.hero-shell .table tfoot td {
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table thead th {
  background: rgba(9, 12, 22, 0.9);
}

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

.hero-shell .table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.hero-shell .table-sm thead th,
.hero-shell .table-sm tbody td,
.hero-shell .table-sm tfoot td {
  padding: 0.55rem 0.6rem;
}

.hero-shell .table-borderless tbody td,
.hero-shell .table-borderless thead th {
  border: 0;
}

.hero-shell .table-borderless {
  border: 0;
  background: transparent;
}

.hero-shell .table-borderless tbody tr:nth-child(even) {
  background-color: transparent;
}

.hero-shell .table-borderless tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.hero-shell .table-borderless thead th {
  background: transparent;
}

.hero-shell .table-borderless tfoot td {
  border-top: 0;
}

.hero-shell .table-borderless tfoot tr:first-child td {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-shell .table-borderless tfoot tr:last-child td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.9);
}

.hero-shell .table-borderless tfoot td:first-child {
  border-radius: 0 0 0 var(--radius-md);
}

.hero-shell .table-borderless tfoot td:last-child {
  border-radius: 0 0 var(--radius-md) 0;
}

.hero-shell .table-borderless tfoot tr:only-child td:first-child {
  border-radius: 0 0 0 var(--radius-md);
}

.hero-shell .table-borderless tfoot tr:only-child td:last-child {
  border-radius: 0 0 var(--radius-md) 0;
}

.hero-shell .table-borderless tfoot tr:only-child td:only-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.hero-shell .table-borderless tfoot td:first-child {
  padding-left: 0.9rem;
}

.hero-shell .table-borderless tfoot td:last-child {
  padding-right: 0.9rem;
}

.hero-shell .table-borderless tfoot td {
  font-weight: 500;
}

.hero-shell .table-borderless tfoot td {
  color: rgba(255, 255, 255, 0.92);
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.96);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.7);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(14px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

.hero-shell .table-borderless tfoot td:first-child {
  text-align: left;
}

.hero-shell .table-borderless tfoot td:nth-child(2) {
  text-align: center;
}

.hero-shell .table-borderless tfoot td:nth-child(3) {
  text-align: right;
}

.hero-shell .table-borderless tfoot td {
  white-space: nowrap;
}

.hero-shell .table-borderless tfoot td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
}

.hero-shell .table-borderless tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.hero-shell .table-borderless tfoot td {
  border-top-width: 1px;
}

.hero-shell .table-borderless tfoot td {
  border-top-style: solid;
}

.hero-shell .table-borderless tfoot td {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-shell .table-borderless tfoot td {
  background: rgba(9, 12, 22, 0.92);
}

.hero-shell .table-borderless tfoot td {
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.8);
}

.hero-shell .table-borderless tfoot td {
  backdrop-filter: blur(16px);
}

.hero-shell .table-borderless tfoot td {
  border-bottom: 0;
}

.hero-shell .table-borderless tfoot td {
  border-left: 0;
  border-right: 0;
}

.hero-shell .table-borderless tfoot td {
  border-radius: 0;
}

.hero-shell .table-borderless tfoot td {
  text-align: right;
}

/* === GLOBAL RESPONSIVE GRID FIX === */

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

.container,
.container-narrow,
.container-wide,
.footer-container {
  width: min(100% - 32px, var(--container-lg));
  margin-left: auto;
  margin-right: auto;
}

.grid,
.grid-2,
.grid-3,
.grid-4,
.grid-auto,
.grid-balanced {
  min-width: 0;
}

.grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.grid-auto > *,
.grid-balanced > * {
  min-width: 0;
}

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

.grid-balanced {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

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

  .col-span-2,
  .col-span-3,
  .col-span-4,
  .col-span-5,
  .col-span-6,
  .col-span-7,
  .col-span-8,
  .col-span-9,
  .col-span-10,
  .col-span-12 {
    grid-column: 1 / -1;
  }

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

  .section,
  .section-compact {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

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

  .media-column,
  .content-column,
  .flex-media,
  .flex-content {
    flex-basis: 100%;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .container,
  .container-narrow,
  .container-wide,
  .footer-container {
    width: min(100% - 24px, var(--container-lg));
  }

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

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

  .section,
  .section-compact {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .card,
  .card-soft,
  .hero-shell,
  .media-frame {
    max-width: 100%;
  }

  .btn,
  button.btn,
  a.btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
}