@layer reset, base, components, utilities;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }
  body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
  }
  button {
    cursor: pointer;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  ul, ol {
    list-style: none;
  }
}

@layer base {
  :root {
    --color-bg-root: #09090b;
    --color-bg-elevated: #121215;
    --color-bg-subtle: #18181b;
    --color-border-muted: #27272a;
    --color-border-metallic: #d4af37;
    --color-text-main: #f9fafb;
    --color-text-muted: #a1a1aa;
    --color-primary: #059669;
    --color-primary-soft: rgba(5, 150, 105, 0.2);
    --color-accent-gold: #d4af37;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-danger-deep: #881337;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --font-serif-display: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
    --font-sans-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --line-height-tight: 1.1;
    --line-height-snug: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 1.75rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-40: 10rem;
    --space-48: 12rem;
    --space-64: 16rem;
    --space-96: 24rem;
    --radius-xs: 0.125rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-hard: 0 0 0 1px rgba(0, 0, 0, 0.9), 0 22px 60px rgba(0, 0, 0, 0.8);
    --transition-fast: 120ms ease-out;
    --transition-base: 200ms ease-out;
    --transition-slow: 320ms ease;
    --layout-max-width: 1120px;
    --header-height: 3.25rem;
  }
  @media (min-width: 768px) {
    :root {
      --header-height: 3.5rem;
    }
  }
  *, *::before, *::after {
    border-color: var(--color-border-muted);
  }
  body {
    font-family: var(--font-sans-body);
    font-size: var(--font-size-md);
    line-height: var(--line-height-normal);
    background-color: var(--color-bg-root);
    color: var(--color-text-main);
  }
  main {
    min-height: calc(100vh - var(--header-height));
    background: radial-gradient(circle at top left, rgba(5, 150, 105, 0.14), transparent 55%), radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.16), transparent 60%), #09090b;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif-display);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-text-main);
  }
  h1 {
    font-size: clamp(2.4rem, 3vw + 1.4rem, 3.4rem);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-4);
  }
  h2 {
    font-size: clamp(1.9rem, 2vw + 1rem, 2.4rem);
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-3);
  }
  h3 {
    font-size: 1.5rem;
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-2);
  }
  h4 {
    font-size: 1.25rem;
    line-height: var(--line-height-normal);
    margin-bottom: var(--space-2);
  }
  p {
    margin-bottom: var(--space-4);
    color: var(--color-text-muted);
  }
  a {
    color: var(--color-accent-gold);
    transition: color var(--transition-base), opacity var(--transition-base);
  }
  a:hover {
    color: var(--color-primary);
  }
  a:focus-visible {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 2px;
  }
  code, pre {
    font-family: var(--font-mono);
  }
  ::selection {
    background: rgba(212, 175, 55, 0.35);
    color: var(--color-text-main);
  }
  body:has(.top-banner-fixed) {
    padding-top: calc(var(--header-height) + 0.75rem);
  }
  @media (max-width: 767.98px) {
    body:has(.top-banner-fixed) {
      padding-top: calc(var(--header-height) + 1rem);
    }
  }
  :focus-visible {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 3px;
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  }
}

@layer components {
  .top-banner-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #881337;
    color: #ffffff;
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .top-banner-fixed a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }
  .top-banner-fixed a:hover {
    opacity: 0.9;
  }
  .layout-shell {
    min-height: 100vh;
    background-color: var(--color-bg-root);
  }
  .site-header {
    position: sticky;
    top: calc(0px + var(--header-height));
    z-index: 900;
    backdrop-filter: blur(20px);
    background: linear-gradient(to bottom, rgba(9, 9, 11, 0.96), rgba(9, 9, 11, 0.9));
    border-bottom: 1px solid rgba(39, 39, 42, 0.9);
  }
  .site-header-inner {
    max-width: var(--layout-max-width);
    margin-inline: auto;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  @media (min-width: 1024px) {
    .site-header-inner {
      padding-inline: 1.5rem;
    }
  }
  .brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 35% 65% 60% 40%;
    background: radial-gradient(circle at 30% 20%, #fcd34d 0, #d4af37 35%, #854d0e 70%, #111827 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.95), 0 12px 30px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020617;
    font-family: var(--font-serif-display);
    font-weight: 700;
    font-size: 1.1rem;
  }
  .brand-title {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
  }
  .brand-title-main {
    font-family: var(--font-serif-display);
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .brand-title-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--color-text-muted);
  }
  .nav-primary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .nav-list {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  .nav-link {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray-300);
    padding-bottom: 0.1rem;
    border-bottom: 1px solid transparent;
    transition: color var(--transition-base), border-color var(--transition-base);
  }
  .nav-link:hover {
    color: #f9fafb;
    border-bottom-color: rgba(212, 175, 55, 0.7);
  }
  .nav-link-active {
    color: #f9fafb;
    border-bottom-color: var(--color-accent-gold);
  }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 244, 245, 0.85);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.9);
    background: radial-gradient(circle at 30% 10%, rgba(252, 211, 77, 0.9), rgba(212, 175, 55, 0.95), rgba(24, 24, 27, 1));
    color: #020617;
    font-size: 0.8rem;
    font-weight: 700;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(24, 24, 27, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.35), rgba(15, 23, 42, 1));
    color: var(--color-text-main);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  }
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    border-color: rgba(212, 175, 55, 0.85);
  }
  .btn-primary {
    background: linear-gradient(135deg, #059669, #16a34a);
    border-color: rgba(21, 128, 61, 0.9);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.5);
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #22c55e);
  }
  .btn-ghost {
    background: rgba(24, 24, 27, 0.9);
    border-color: rgba(63, 63, 70, 0.9);
  }
  .btn-ghost:hover {
    background: rgba(39, 39, 42, 0.9);
    border-color: rgba(212, 175, 55, 0.7);
  }
  .btn-danger {
    background: linear-gradient(135deg, #881337, #b91c1c);
    border-color: rgba(127, 29, 29, 0.9);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.45);
  }
  .btn-sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
  }
  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  .btn[disabled], .btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }
  .page-section {
    padding-block: clamp(2.5rem, 4vw, 4rem);
  }
  .panel {
    position: relative;
    background: radial-gradient(circle at top left, rgba(39, 39, 42, 0.75), rgba(9, 9, 11, 1));
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--color-border-muted);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }
  .panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-lg) - 1px);
    border: 1px solid rgba(212, 175, 55, 0.26);
    pointer-events: none;
  }
  .panel-header {
    margin-bottom: var(--space-4);
  }
  .panel-title-kicker {
    font-family: var(--font-sans-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
  }
  .panel-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  .panel-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
  }
  .hero-shell {
    position: relative;
    max-width: var(--layout-max-width);
    margin-inline: auto;
    padding-inline: 1.25rem;
    padding-top: clamp(3.5rem, 6vw, 4.75rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: minmax(0, 3.5fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: stretch;
  }
  @media (max-width: 900px) {
    .hero-shell {
      grid-template-columns: minmax(0, 1fr);
      padding-top: 3rem;
    }
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
  }
  .hero-eyebrow-divider {
    width: 54px;
    height: 1px;
    background: linear-gradient(to right, rgba(5, 150, 105, 0.3), rgba(212, 175, 55, 0.9));
  }
  .hero-title {
    font-size: clamp(2.3rem, 4vw, 3.1rem);
    line-height: 1.12;
  }
  .hero-title span {
    display: inline-block;
  }
  .hero-title-em {
    color: var(--color-accent-gold);
  }
  .hero-copy {
    max-width: 34rem;
    font-size: 0.98rem;
  }
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: radial-gradient(circle at top left, rgba(31, 41, 55, 0.8), rgba(15, 23, 42, 1));
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray-200);
  }
  .chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #a3e635);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.45);
  }
  .chip-danger {
    border-color: rgba(239, 68, 68, 0.6);
    background: radial-gradient(circle at top left, rgba(127, 29, 29, 0.85), rgba(31, 41, 55, 1));
  }
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
  }
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
  }
  .meta-item-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.15rem;
    color: var(--gray-400);
  }
  .meta-item-value {
    color: var(--gray-100);
  }
  .hero-right {
    position: relative;
  }
  .hero-media-card {
    position: relative;
    height: 100%;
    min-height: 260px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.85), rgba(9, 9, 11, 1));
    border: 1px solid rgba(39, 39, 42, 0.95);
    box-shadow: var(--shadow-hard);
    overflow: hidden;
    display: grid;
    grid-template-rows: minmax(0, 2.2fr) minmax(0, 1.1fr);
  }
  .hero-media-image {
    position: relative;
    background-image: radial-gradient(circle at 15% 0, rgba(5, 150, 105, 0.5), transparent 55%), radial-gradient(circle at 85% 100%, rgba(212, 175, 55, 0.55), transparent 60%), linear-gradient(to bottom, #020617, #111827 55%, #020617 100%);
    overflow: hidden;
  }
  .hero-media-overlay {
    position: absolute;
    inset: 0;
    background-image: url("/images/calveeron-hero-placeholder.jpg");
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.75;
  }
  .hero-media-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0, rgba(15, 23, 42, 0.3), transparent 60%), linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 65%);
  }
  .hero-media-floor {
    position: absolute;
    inset-inline: -10%;
    bottom: -20%;
    height: 55%;
    background: radial-gradient(circle at 50% 0, rgba(15, 23, 42, 0.12), transparent 60%), radial-gradient(ellipse at center, rgba(15, 23, 42, 0.95), #020617 65%);
    opacity: 0.85;
  }
  .hero-media-row {
    position: absolute;
    inset-inline: 7%;
    bottom: 20%;
    height: 28%;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.85);
    background: radial-gradient(circle at 30% 0, rgba(148, 163, 184, 0.22), transparent 50%), radial-gradient(circle at 70% 100%, rgba(15, 23, 42, 0.95), #020617 70%);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-inline: 1.5rem;
  }
  .hero-seat {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.9);
    background: radial-gradient(circle at 30% 0, rgba(248, 250, 252, 0.9), rgba(148, 163, 184, 0.95), rgba(17, 24, 39, 1));
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.9);
  }
  .hero-seat.hero-seat-active {
    background: radial-gradient(circle at 20% 0, rgba(74, 222, 128, 0.96), rgba(5, 150, 105, 0.98), rgba(6, 78, 59, 1));
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.85), 0 0 18px rgba(16, 185, 129, 0.8);
  }
  .hero-table {
    position: absolute;
    inset-inline: 17%;
    bottom: 15%;
    height: 20px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 0, rgba(15, 23, 42, 0.75), rgba(6, 78, 59, 1));
    border: 1px solid rgba(15, 23, 42, 1);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.95);
  }
  .hero-media-footer {
    padding: 0.9rem 1.15rem 1.05rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.98), rgba(17, 24, 39, 0.98));
    border-top: 1px solid rgba(15, 23, 42, 0.95);
  }
  .hero-media-copy {
    font-size: 0.78rem;
    color: var(--gray-300);
  }
  .hero-media-copy-strong {
    color: var(--gray-50);
  }
  .hero-media-meta {
    display: flex;
    gap: 1.1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray-400);
  }
  .hero-stat-badge {
    position: absolute;
    top: 10%;
    right: 8%;
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-md);
    background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.4), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(22, 163, 74, 0.85);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.95);
  }
  .hero-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(187, 247, 208, 0.9);
  }
  .hero-stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #bbf7d0;
  }
  .hero-stat-sub {
    font-size: 0.65rem;
    color: rgba(187, 247, 208, 0.9);
  }
  .input, .select, .textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(63, 63, 70, 0.9);
    background-color: rgba(9, 9, 11, 0.9);
    color: var(--color-text-main);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
  }
  .input::placeholder, .textarea::placeholder {
    color: var(--gray-500);
  }
  .input:focus, .select:focus, .textarea:focus {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.95), 0 0 0 4px rgba(212, 175, 55, 0.25);
    background-color: #020617;
  }
  .input-error, .textarea-error, .select-error {
    border-color: var(--color-danger);
  }
  .form-label {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.35rem;
    color: var(--gray-300);
  }
  .form-label span {
    color: var(--gray-500);
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
  }
  .form-helper {
    margin-top: 0.3rem;
    font-size: 0.75rem;
    color: var(--gray-500);
  }
  .form-error {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-danger);
  }
  .card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    background: radial-gradient(circle at top left, rgba(39, 39, 42, 0.9), rgba(9, 9, 11, 1));
    border: 1px solid var(--color-border-muted);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
  }
  .card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-lg) - 1px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    pointer-events: none;
  }
  .card-header {
    margin-bottom: var(--space-3);
  }
  .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  .card-subtitle {
    font-size: 0.85rem;
    color: var(--gray-400);
  }
  .card-body {
    font-size: 0.9rem;
    color: var(--gray-200);
  }
  .card-lore {
    font-family: var(--font-serif-display);
    font-size: 0.9rem;
    color: var(--gray-200);
    line-height: 1.6;
  }
  .card-lore em {
    color: var(--color-accent-gold);
    font-style: normal;
  }
  .responsible-module {
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    background: radial-gradient(circle at top left, rgba(127, 29, 29, 0.9), rgba(9, 9, 11, 1));
    border: 1px solid rgba(127, 29, 29, 0.9);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
  }
  .responsible-module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .responsible-module-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }
  .responsible-module-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(254, 202, 202, 0.9);
  }
  .responsible-module-body {
    font-size: 0.9rem;
    color: #fee2e2;
  }
  .responsible-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.75rem;
  }
  .responsible-item {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  .responsible-bullet {
    margin-top: 0.25rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fecaca, #f97373);
  }
}

@layer utilities {
  .container {
    max-width: var(--layout-max-width);
    margin-inline: auto;
    padding-inline: 1.25rem;
  }
  @media (min-width: 1024px) {
    .container {
      padding-inline: 1.5rem;
    }
  }
  .grid {
    display: grid;
    gap: var(--space-6);
  }
  .grid-2 {
    display: grid;
    gap: var(--space-6);
  }
  @media (min-width: 768px) {
    .grid-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .grid-3 {
    display: grid;
    gap: var(--space-6);
  }
  @media (min-width: 1024px) {
    .grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .flex {
    display: flex;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row {
    flex-direction: row;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .items-end {
    align-items: flex-end;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-2 {
    gap: var(--space-2);
  }
  .gap-4 {
    gap: var(--space-4);
  }
  .gap-6 {
    gap: var(--space-6);
  }
  .mt-4 {
    margin-top: var(--space-4);
  }
  .mb-4 {
    margin-bottom: var(--space-4);
  }
  .pt-header {
    padding-top: var(--header-height);
  }
  .text-center {
    text-align: center;
  }
  .text-right {
    text-align: right;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .metallic-border {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(39, 39, 42, 0.95);
  }
  .metallic-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.1), rgba(212, 175, 55, 0.9), rgba(55, 65, 81, 0.7));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  .badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(24, 24, 27, 0.9);
    border: 1px solid rgba(63, 63, 70, 0.9);
  }
  .badge-soft-success {
    border-color: rgba(34, 197, 94, 0.7);
    color: #bbf7d0;
    background: rgba(22, 101, 52, 0.95);
  }
  .badge-soft-warning {
    border-color: rgba(244, 171, 53, 0.8);
    color: #fef3c7;
    background: rgba(133, 77, 14, 0.95);
  }
  .badge-soft-danger {
    border-color: rgba(248, 113, 113, 0.9);
    color: #fee2e2;
    background: rgba(127, 29, 29, 0.96);
  }
}

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}
html, body {
  overflow-x: clip;
  max-width: 100%;
}

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