@charset "UTF-8";
@font-face {
  font-family: 'Inter';
  src: url("/static/fonts/inter-v20-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Inter';
  src: url("/static/fonts/inter-v20-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Inter';
  src: url("/static/fonts/inter-v20-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Caveat';
  src: url("/static/fonts/caveat-v23-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Caveat';
  src: url("/static/fonts/caveat-v23-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Dancing Script';
  src: url("/static/fonts/dancing-script-v29-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Dancing Script';
  src: url("/static/fonts/dancing-script-v29-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Great Vibes';
  src: url("/static/fonts/great-vibes-v21-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Homemade Apple';
  src: url("/static/fonts/homemade-apple-v24-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Satisfy';
  src: url("/static/fonts/satisfy-v22-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #e4e4e7; }

h1, .h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #e4e4e7; }
  .theme-personal h1, .theme-personal .h1 {
    color: #18181b; }
  @media (max-width: 768px) {
    h1, .h1 {
      font-size: 2rem; } }
h2, .h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  color: #e4e4e7; }
  .theme-personal h2, .theme-personal .h2 {
    color: #18181b; }
  @media (max-width: 768px) {
    h2, .h2 {
      font-size: 1.625rem; } }
h3, .h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: #e4e4e7; }
  .theme-personal h3, .theme-personal .h3 {
    color: #18181b; }
  @media (max-width: 768px) {
    h3, .h3 {
      font-size: 1.25rem; } }
h4, .h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #e4e4e7; }
  .theme-personal h4, .theme-personal .h4 {
    color: #18181b; }

h5, .h5 {
  font-size: 1.0625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e4e4e7; }
  .theme-personal h5, .theme-personal .h5 {
    color: #18181b; }

h6, .h6 {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #a1a1aa; }
  .theme-personal h6, .theme-personal .h6 {
    color: #525252; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0a0c12;
  color: #e4e4e7;
  z-index: 2000;
  transition: transform 0.28s ease-in-out, opacity 0.28s ease-in-out, visibility 0s 0s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 1;
  visibility: visible; }
  .site-header.header-collapsed {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease-in-out, opacity 0.28s ease-in-out, visibility 0s 0.28s; }
  @media (max-width: 992px) {
    .site-header.header-collapsed {
      transform: none;
      opacity: 1;
      visibility: visible; } }
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  transition: opacity 0.3s ease-in-out; }
  @media (max-width: 992px) {
    .header-content {
      position: relative;
      padding: 0.25rem 1rem; } }
.header-left {
  flex: 1; }
  @media (max-width: 992px) {
    .header-left {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
      flex: none;
      text-align: center; } }
.header-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #e4e4e7;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.04em; }
  @media (max-width: 768px) {
    .header-name {
      font-size: 1.5rem; } }
.header-logo {
  height: 4.9rem;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: -1.8rem;
  position: relative;
  z-index: 1; }
  @media (max-width: 992px) {
    .header-logo {
      height: 3.9rem;
      margin-bottom: -1.2rem;
      margin-left: auto;
      margin-right: auto; } }
.header-center {
  flex: 1;
  text-align: center; }
  @media (max-width: 992px) {
    .header-center {
      display: none; } }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem; }
  .header-actions .header-icon {
    background: none;
    border: none;
    padding: 0.3rem;
    cursor: pointer;
    transition: transform 0.2s; }
    .header-actions .header-icon svg {
      width: 33px;
      height: 33px;
      transition: width 0.2s, height 0.2s; }
    .header-actions .header-icon:hover svg {
      width: 38px;
      height: 38px; }

.header-cta {
  padding: 0.5rem 1.8rem;
  background: transparent;
  color: #60a5fa;
  border: 1.5px solid rgba(96, 165, 250, 0.8);
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; }
  .header-cta:hover {
    background: #60a5fa;
    border-color: #60a5fa;
    color: #0a0c12;
    box-shadow: 0 0 14px rgba(96, 165, 250, 0.35); }
  @media (max-width: 768px) {
    .header-cta {
      font-size: 0.95rem;
      padding: 0.4rem 1.3rem; } }
.header-phone {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e4e4e7;
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.04em;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
  display: inline-block; }
  .header-phone:hover {
    color: #60a5fa;
    transform: scale(1.05); }
  .header-phone:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px; }
  @media (max-width: 768px) {
    .header-phone {
      font-size: 1.5rem; } }
.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem; }

@media (max-width: 992px) {
  .header-right {
    flex: none;
    margin-left: auto;
    z-index: 1; }
  .header-actions .header-icon-agent,
  .header-actions .header-cta {
    display: none; } }

.header-icon-contact-sm {
  display: none; }
  @media (max-width: 992px) {
    .header-icon-contact-sm {
      display: flex; } }
body.theme-personal .site-header .header-name,
body.theme-personal .site-header .header-phone {
  color: #e4e4e7; }

body.theme-personal .site-header .header-phone:hover {
  color: #60a5fa; }

body.theme-personal .site-header .header-icon {
  color: #a1a1aa; }
  body.theme-personal .site-header .header-icon:hover {
    color: #60a5fa; }

.header-icon {
  color: #a1a1aa;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center; }
  .header-icon:hover {
    color: #60a5fa;
    transform: translateY(-2px); }
  .header-icon:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    border-radius: 4px; }
  .header-icon svg {
    width: 24px;
    height: 24px; }

.header-toggle {
  position: fixed;
  top: 0;
  right: 20px;
  background: #0a0c12;
  border: none;
  border-radius: 0 0 8px 8px;
  padding: 0.25rem 1rem 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: transform 0.3s ease-in-out, background 0.2s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  transform: translateY(-100%); }
  .header-collapsed ~ .header-toggle {
    transform: translateY(0); }
  @media (max-width: 768px) {
    .header-toggle {
      right: 10px; } }
  @media (max-width: 992px) {
    .header-toggle {
      display: none; } }
  .header-toggle:hover {
    background: #191d2c; }
  .header-toggle:focus {
    outline: 2px solid #e4e4e7;
    outline-offset: 2px; }
  .header-toggle .arrow-icon {
    color: #a1a1aa;
    display: block;
    margin: -4px 0; }

body {
  padding-top: 60px; }
  @media (max-width: 768px) {
    body {
      padding-top: 80px; } }
.header-hamburger {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  color: #a1a1aa;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 1;
  left: 1rem;
  right: auto; }
  .header-hamburger:hover {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa; }
  @media (max-width: 992px) {
    .header-hamburger {
      display: inline-flex;
      align-items: center; } }
body.theme-personal .header-hamburger {
  left: auto;
  right: 1rem; }

.chronicle-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #12141a;
  color: #e4e4e7;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden; }

.timeline-row {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  width: 100%;
  align-items: stretch;
  transition: grid-template-columns 0.4s ease; }

.timeline-row--year {
  position: sticky;
  top: 0;
  z-index: 15; }

.timeline-row--header {
  position: sticky;
  top: 0;
  z-index: 20; }

.timeline-cell {
  min-height: 0;
  padding: 0; }

.timeline-cell--pro {
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column; }
  .timeline-cell--pro .month-section {
    display: flex;
    flex-direction: column;
    flex: 1; }
    .timeline-cell--pro .month-section .month-separator {
      margin-top: auto; }

.timeline-cell--seam {
  background: #0a0c12;
  display: flex;
  flex-direction: column;
  align-items: center; }

.timeline-cell--per {
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column; }
  .timeline-cell--per .month-section {
    display: flex;
    flex-direction: column;
    flex: 1; }
    .timeline-cell--per .month-section .month-separator {
      margin-top: auto; }

.chronicle-container.position-left .timeline-cell--pro {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease-out; }

.chronicle-container.position-left .timeline-cell--per {
  opacity: 1;
  transition: opacity 0.25s 0.2s ease-in; }

.chronicle-container.position-left .timeline-row {
  grid-template-columns: 0fr 200px 1fr; }

.chronicle-container.position-center .timeline-cell--pro,
.chronicle-container.position-center .timeline-cell--per {
  opacity: 1;
  transition: opacity 0.25s 0.15s ease-in; }

.chronicle-container.position-center .timeline-row {
  grid-template-columns: 1fr 200px 1fr; }

.chronicle-container.position-right .timeline-cell--per {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease-out; }

.chronicle-container.position-right .timeline-cell--pro {
  opacity: 1;
  transition: opacity 0.25s 0.2s ease-in; }

.chronicle-container.position-right .timeline-row {
  grid-template-columns: 1fr 200px 0fr; }

@media (max-width: 768px) {
  .chronicle-container.position-left .timeline-row {
    grid-template-columns: 0fr 60px 1fr; }
  .chronicle-container.position-left .timeline-cell--pro {
    display: none; }
  .chronicle-container.position-right .timeline-row {
    grid-template-columns: 1fr 60px 0fr; }
  .chronicle-container.position-right .timeline-cell--per {
    display: none; }
  .chronicle-container.position-center .timeline-row {
    grid-template-columns: 0fr 60px 1fr; }
  .chronicle-container.position-center .timeline-cell--pro {
    display: none; } }

.track {
  opacity: 1;
  padding: 2.5rem;
  overflow: visible; }

.track-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0; }

.loading-spinner {
  text-align: center;
  padding: 2rem;
  color: #78788a;
  font-size: 0.875rem; }

.seam-controls {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.5rem;
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(8px);
  width: 100%;
  border-bottom: 1px solid rgba(63, 63, 70, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }
  @media (max-width: 768px) {
    .seam-controls {
      gap: 0.25rem;
      padding: 0.4rem 0.15rem; } }
.position-btn {
  background: rgba(42, 45, 54, 0.7);
  border: 1px solid rgba(63, 63, 70, 0.5);
  color: rgba(161, 161, 170, 0.9);
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
  min-width: 45px;
  min-height: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center; }
  .position-btn:hover {
    background: rgba(82, 82, 91, 0.9);
    border-color: rgba(96, 165, 250, 0.6);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(74, 158, 255, 0.2); }
  .position-btn:focus {
    outline: 2px solid rgba(96, 165, 250, 0.5);
    outline-offset: 2px; }
  .position-btn:active {
    transform: translateY(0); }
  @media (max-width: 768px) {
    .position-btn.position-btn-center {
      display: none !important; } }
  @media (max-width: 768px) {
    .position-btn {
      padding: 0.25rem 0.4rem;
      font-size: 0.7rem;
      min-width: 26px;
      min-height: 26px; } }
.timeline-markers {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0 2rem; }

.timeline-year {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .timeline-year:not(:first-child) {
    margin-top: 0.25rem; }

.year-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #78788a;
  text-align: center;
  padding: 0.5rem 0.5rem 0.4rem;
  margin: 0;
  width: 100%;
  letter-spacing: 0.08em;
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid rgba(63, 63, 70, 0.4);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease; }
  .year-label:hover {
    color: #ffffff;
    background: rgba(42, 45, 54, 0.3); }
  .year-label:focus {
    outline: 2px solid rgba(96, 165, 250, 0.5);
    outline-offset: -2px; }
  .year-label.collapsed {
    color: #71717a;
    border-bottom-color: rgba(63, 63, 70, 0.2); }
  @media (max-width: 768px) {
    .year-label {
      font-size: 0.8rem;
      padding: 0.4rem 0.3rem 0.3rem; } }
.year-toggle-icon {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  line-height: 1; }
  .year-toggle-icon.rotated {
    transform: rotate(-90deg); }

.timeline-months {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden; }

.month-marker {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; }
  .month-marker::before {
    content: '';
    position: absolute;
    left: 15%;
    right: 15%;
    top: 0;
    height: 1px;
    background: rgba(63, 63, 70, 0.25); }

.month-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #78788a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  user-select: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.5rem;
  width: 100%;
  transition: color 0.2s ease, background 0.2s ease; }
  .month-label:hover {
    color: #a1a1aa;
    background: rgba(42, 45, 54, 0.2); }
  .month-label:focus {
    outline: 2px solid rgba(96, 165, 250, 0.5);
    outline-offset: -2px; }
  .month-label.collapsed {
    color: #71717a; }
  @media (max-width: 768px) {
    .month-label {
      font-size: 0.6rem;
      letter-spacing: 0.05em;
      padding: 0.35rem 0.3rem; } }
.month-toggle-icon {
  font-size: 0.5rem;
  transition: transform 0.2s ease;
  line-height: 1; }
  .month-toggle-icon.rotated {
    transform: rotate(-90deg); }

.month-spacer {
  width: 100%;
  min-height: 500px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .month-spacer {
      min-height: 300px; } }
.month-dot-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 0.35rem 0.5rem;
  width: 100%;
  overflow: hidden; }

.event-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: default;
  transition: transform 0.15s ease, box-shadow 0.15s ease; }
  .event-dot:hover {
    transform: scale(1.5); }
  .event-dot--professional {
    background: #60a5fa;
    box-shadow: 0 0 6px rgba(96, 165, 250, 0.4); }
    .event-dot--professional:hover {
      box-shadow: 0 0 10px rgba(96, 165, 250, 0.7); }
  .event-dot--personal {
    background: #34d399;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.35); }
    .event-dot--personal:hover {
      box-shadow: 0 0 10px rgba(52, 211, 153, 0.65); }

.track-header {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em; }
  .track-professional .track-header {
    color: #60a5fa;
    border-bottom: 2px solid rgba(96, 165, 250, 0.3); }
  .track-personal .track-header {
    color: #059669;
    border-bottom: 2px solid rgba(5, 150, 105, 0.3); }
  @media (max-width: 768px) {
    .track-header {
      font-size: 1.25rem;
      padding: 1.5rem 1rem 0.75rem; } }
.track-professional {
  background: #12141a;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  color: #e4e4e7; }
  @media (max-width: 768px) {
    .track-professional {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04); } }
  .track-professional .event-title {
    color: #60a5fa; }
  .track-professional .event-accent {
    border-left: 3px solid #2563eb; }
  .track-professional .bubble-type-badge {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa; }

.track-personal {
  background: #f8f8fa;
  border-left: 1px solid #e8e8ed;
  color: #18181b; }
  @media (max-width: 768px) {
    .track-personal {
      border-left: none;
      border-top: 1px solid #e8e8ed; } }
  .track-personal .event-title {
    color: #059669;
    font-weight: 700; }
  .track-personal .event-accent {
    border-left: 3px solid #059669; }
  .track-personal .bubble-type-badge {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    font-weight: 500; }
  .track-personal .bubble-date {
    color: #71717a; }
  .track-personal .bubble-summary {
    color: #525252; }
  .track-personal .event-date {
    color: #71717a; }
  .track-personal .event-summary {
    color: #525252; }
  .track-personal .event-content {
    color: #18181b; }
    .track-personal .event-content blockquote {
      color: #525252; }

.event-bubble {
  display: block;
  margin-bottom: 1.75rem;
  padding: 1.5rem;
  background: #1c1f26;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease,  box-shadow 0.2s ease,  background 0.2s ease;
  cursor: pointer; }
  .track-professional .event-bubble {
    background: rgba(96, 165, 250, 0.03);
    color: #e4e4e7;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid #60a5fa; }
    .track-professional .event-bubble:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(96, 165, 250, 0.15), 0 0 0 1px rgba(96, 165, 250, 0.1);
      background: rgba(96, 165, 250, 0.06);
      border-color: rgba(96, 165, 250, 0.2);
      border-left-color: #60a5fa; }
    .track-professional .event-bubble:focus {
      outline: 2px solid #60a5fa;
      outline-offset: 2px; }
  .track-personal .event-bubble {
    background: rgba(52, 211, 153, 0.02);
    color: #18181b;
    border: 1px solid #e8e8ed;
    border-left: 3px solid #34d399; }
    .track-personal .event-bubble:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(52, 211, 153, 0.12), 0 0 0 1px rgba(52, 211, 153, 0.08);
      background: rgba(52, 211, 153, 0.05);
      border-color: rgba(52, 211, 153, 0.25);
      border-left-color: #34d399; }
    .track-personal .event-bubble:focus {
      outline: 2px solid #059669;
      outline-offset: 2px; }
  @media (max-width: 992px) {
    .event-bubble {
      padding: 1.25rem;
      margin-bottom: 1.25rem; } }
  @media (max-width: 768px) {
    .event-bubble {
      padding: 1rem;
      margin-bottom: 1rem; } }
.bubble-date {
  font-size: 0.75rem;
  color: #78788a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem; }
  .track-personal .bubble-date {
    color: #71717a; }
  @media (max-width: 768px) {
    .bubble-date {
      font-size: 0.7rem; } }
.bubble-image {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem; }
  .bubble-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (max-width: 992px) {
    .bubble-image {
      height: 120px; } }
  @media (max-width: 768px) {
    .bubble-image {
      height: 100px; } }
.bubble-content {
  margin-bottom: 1rem; }

.bubble-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35; }
  .track-personal .bubble-title {
    font-weight: 700; }
  @media (max-width: 992px) {
    .bubble-title {
      font-size: 1.125rem; } }
  @media (max-width: 768px) {
    .bubble-title {
      font-size: 1rem; } }
.bubble-summary {
  font-size: 0.9rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden; }
  .track-personal .bubble-summary {
    color: #525252; }
  @media (max-width: 768px) {
    .bubble-summary {
      font-size: 0.85rem; } }
.bubble-indicator {
  display: flex;
  justify-content: flex-end; }

.bubble-type-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08); }
  .track-personal .bubble-type-badge {
    font-weight: 500;
    background: rgba(0, 0, 0, 0.06); }
  @media (max-width: 768px) {
    .bubble-type-badge {
      font-size: 0.7rem;
      padding: 0.2rem 0.6rem; } }
.bubble-link-area {
  display: block;
  text-decoration: none;
  color: inherit; }

.bubble-card-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start; }
  .bubble-card-row .bubble-content {
    flex: 1;
    min-width: 0;
    margin-bottom: 0; }

.bubble-card-thumb {
  flex: 0 0 33%;
  max-width: 33%;
  height: auto;
  min-height: 90px;
  border-radius: 8px;
  overflow: hidden; }
  .bubble-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (max-width: 768px) {
    .bubble-card-thumb {
      flex: 0 0 30%;
      max-width: 30%;
      min-height: 60px; } }
.bubble-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 0.75rem;
  height: 140px;
  cursor: grab; }
  .bubble-slider:active {
    cursor: grabbing; }
  @media (max-width: 768px) {
    .bubble-slider {
      height: 100px; } }
.bubble-slider-track {
  display: flex;
  height: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  /* Chrome/Safari */ }
  .bubble-slider-track::-webkit-scrollbar {
    display: none; }

.bubble-slider-slide {
  flex: 0 0 33.3334%;
  height: 100%;
  padding: 0 3px;
  box-sizing: border-box; }
  .bubble-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    user-select: none;
    cursor: zoom-in; }

.bubble-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.75rem; }

.bubble-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in; }
  .bubble-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease; }
  .bubble-grid-item:hover img {
    transform: scale(1.05); }

.bubble-slider-static {
  display: flex;
  border-radius: 8px;
  margin-top: 0.75rem;
  height: 140px;
  overflow: hidden; }
  .bubble-slider-static .bubble-slider-slide {
    flex: 1; }
    .bubble-slider-static .bubble-slider-slide img {
      pointer-events: auto;
      user-select: auto; }
  @media (max-width: 768px) {
    .bubble-slider-static {
      height: 100px; } }
.month-separator {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0.75rem 0 1rem;
  width: 100%; }

.month-separator-line {
  flex: 1;
  height: 1px;
  background: rgba(96, 165, 250, 0.25); }
  .track-personal .month-separator-line {
    background: rgba(52, 211, 153, 0.25); }

.month-separator-name {
  padding: 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: #60a5fa; }
  .track-personal .month-separator-name {
    color: #34d399; }

.month-separator-pill {
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease; }
  .month-separator-pill:hover {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(96, 165, 250, 0.06); }
  .month-separator-pill.active {
    color: #fff;
    border-color: #60a5fa;
    background: #60a5fa; }
  .track-personal .month-separator-pill {
    color: #525252;
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.12); }
    .track-personal .month-separator-pill:hover {
      color: #34d399;
      border-color: rgba(52, 211, 153, 0.4);
      background: rgba(52, 211, 153, 0.06); }
    .track-personal .month-separator-pill.active {
      color: #fff;
      border-color: #34d399;
      background: #34d399; }

.track-dot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem; }

.event-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem; }
  .event-detail.track-professional {
    background: #12141a;
    color: #e4e4e7; }
  .event-detail.track-personal {
    background: #ffffff;
    color: #18181b; }
  @media (max-width: 992px) {
    .event-detail {
      padding: 2.5rem 1.5rem; } }
  @media (max-width: 768px) {
    .event-detail {
      padding: 2rem 1rem; } }
.event-header {
  margin-bottom: 2rem; }
  @media (max-width: 768px) {
    .event-header {
      margin-bottom: 1.5rem; } }
.event-detail .event-date {
  display: block;
  font-size: 0.875rem;
  color: #78788a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem; }
  .track-personal .event-detail .event-date {
    color: #71717a; }
  @media (max-width: 768px) {
    .event-detail .event-date {
      font-size: 0.8rem; } }
.event-detail .event-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem; }
  .track-personal .event-detail .event-title {
    font-weight: 700; }
  @media (max-width: 992px) {
    .event-detail .event-title {
      font-size: 2.25rem; } }
  @media (max-width: 768px) {
    .event-detail .event-title {
      font-size: 2rem; } }
.event-detail .event-summary {
  font-size: 1.125rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 2rem; }
  .track-personal .event-detail .event-summary {
    color: #525252; }
  @media (max-width: 768px) {
    .event-detail .event-summary {
      font-size: 1rem;
      margin-bottom: 1.5rem; } }
.event-detail .event-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #e4e4e7; }
  .track-personal .event-detail .event-content {
    color: #18181b; }
    .track-personal .event-detail .event-content h2, .track-personal .event-detail .event-content h3 {
      font-weight: 700; }
  .event-detail .event-content p {
    margin-bottom: 1.5rem; }
  .event-detail .event-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem; }
    @media (max-width: 768px) {
      .event-detail .event-content h2 {
        font-size: 1.5rem; } }
  .event-detail .event-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem; }
    @media (max-width: 768px) {
      .event-detail .event-content h3 {
        font-size: 1.25rem; } }
  .event-detail .event-content ul, .event-detail .event-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem; }
    @media (max-width: 768px) {
      .event-detail .event-content ul, .event-detail .event-content ol {
        padding-left: 1.5rem; } }
  .event-detail .event-content li {
    margin-bottom: 0.5rem; }
  .event-detail .event-content blockquote {
    border-left: 4px solid currentColor;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #a1a1aa; }
    .track-personal .event-detail .event-content blockquote {
      color: #525252; }
    @media (max-width: 768px) {
      .event-detail .event-content blockquote {
        padding-left: 1rem;
        margin: 1.5rem 0; } }
.event-hero-image {
  width: 100%;
  max-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem; }
  .event-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (max-width: 992px) {
    .event-hero-image {
      max-height: 400px; } }
  @media (max-width: 768px) {
    .event-hero-image {
      max-height: 300px;
      margin-bottom: 1.5rem; } }
.event-detail-banner .banner-header {
  background: linear-gradient(135deg, #1c1f26, #2a2d36);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem; }
  .track-personal .event-detail-banner .banner-header {
    background: linear-gradient(135deg, #f8f8fa, #e8e8ed); }
  @media (max-width: 768px) {
    .event-detail-banner .banner-header {
      padding: 1.5rem;
      margin-bottom: 1.5rem; } }
.media-embed {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden; }
  .media-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none; }
  @media (max-width: 768px) {
    .media-embed {
      margin: 1.5rem 0; } }
.gallery-embed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0; }
  .gallery-embed img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s ease; }
    .gallery-embed img:hover {
      transform: scale(1.05); }
  @media (max-width: 992px) {
    .gallery-embed {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem; }
      .gallery-embed img {
        height: 200px; } }
  @media (max-width: 768px) {
    .gallery-embed {
      grid-template-columns: 1fr;
      margin: 1.5rem 0; }
      .gallery-embed img {
        height: 180px; } }
.rail-menu {
  position: fixed;
  top: 60px;
  bottom: 0;
  width: 197px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.75rem 0 1.5rem;
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */ }
  .rail-menu::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */ }

.rail-menu-label {
  padding: 1rem 0.5rem 0;
  margin-bottom: 0.75rem; }

.rail-menu-label-link {
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  color: inherit;
  transition: text-decoration-color 0.15s ease; }

@media (max-width: 992px) {
  .rail-drawer .rail-menu-label {
    padding-top: 0.5rem; } }

.rail-menu-left {
  left: 0;
  background: #12141a;
  border-right: 1px solid rgba(96, 165, 250, 0.15);
  box-shadow: inset -3px 0 0 0 rgba(96, 165, 250, 0.25);
  padding-left: 0; }
  .rail-menu-left .rail-menu-label {
    color: #60a5fa; }

.rail-menu-right {
  right: 0;
  background: #f8f8fa;
  border-left: 1px solid rgba(5, 150, 105, 0.15);
  box-shadow: inset 3px 0 0 0 rgba(5, 150, 105, 0.25);
  padding-right: 0;
  text-align: left; }
  .rail-menu-right .rail-menu-label {
    color: #059669; }

.rail-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px; }

.rail-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 0.6rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.35;
  min-height: 2.4rem;
  cursor: pointer;
  background: none;
  border-top: none;
  border-bottom: none;
  width: 100%;
  font-family: inherit; }
  @media (min-width: 993px) {
    .rail-menu-link {
      font-size: 0.975rem;
      line-height: 1.25; } }
.rail-link-text {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto; }

.rail-chevron {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease; }

.rail-menu-parent.is-expanded .rail-chevron {
  opacity: 1; }

.rail-menu-left .rail-menu-link {
  color: #a1a1aa;
  border-right: none;
  text-align: right; }
  .rail-menu-left .rail-menu-link .rail-link-text {
    text-align: right; }
  .rail-menu-left .rail-menu-link:hover, .rail-menu-left .rail-menu-link.is-expanded {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.08);
    border-left-color: #60a5fa;
    box-shadow: inset 0 0 20px rgba(96, 165, 250, 0.05); }
  .rail-menu-left .rail-menu-link.active {
    color: #60a5fa;
    border-left-color: #60a5fa;
    background: rgba(96, 165, 250, 0.12); }

.rail-menu-right .rail-menu-link {
  color: #525252;
  border-left: none;
  text-align: left; }
  .rail-menu-right .rail-menu-link .rail-link-text {
    text-align: left; }
  .rail-menu-right .rail-menu-link:hover, .rail-menu-right .rail-menu-link.is-expanded {
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    border-right-color: #059669;
    box-shadow: inset 0 0 20px rgba(5, 150, 105, 0.05); }
  .rail-menu-right .rail-menu-link.active {
    color: #059669;
    border-right-color: #059669;
    background: rgba(5, 150, 105, 0.12); }

@media (min-width: 993px) {
  .track-page-professional .rail-level-2.rail-menu-left {
    left: 197px; }
  .track-page-professional .rail-level-3.rail-menu-left {
    left: 394px; }
  .track-page-personal .rail-level-2.rail-menu-right {
    right: 197px; }
  .track-page-personal .rail-level-3.rail-menu-right {
    right: 394px; }
  .rail-subrail.rail-menu-left {
    background: #181b23;
    border-right: 1px solid rgba(96, 165, 250, 0.15);
    box-shadow: inset -3px 0 0 0 rgba(96, 165, 250, 0.25); }
  .rail-subrail.rail-menu-right {
    background: #f2f2f6;
    border-left: 1px solid rgba(5, 150, 105, 0.15);
    box-shadow: inset 3px 0 0 0 rgba(5, 150, 105, 0.25); } }

.subrail-enter {
  transition: transform 0.315s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.315s cubic-bezier(0.22, 0.61, 0.36, 1); }

.subrail-leave {
  transition: transform 0.265s cubic-bezier(0.55, 0.06, 0.68, 0.19), opacity 0.265s cubic-bezier(0.55, 0.06, 0.68, 0.19); }

.subrail-open {
  transform: translateX(0);
  opacity: 1; }

.subrail-closed {
  opacity: 0; }

.rail-menu-left.subrail-closed {
  transform: translateX(-100%); }

.rail-menu-right.subrail-closed {
  transform: translateX(100%); }

.tab-enter {
  transition: opacity 0.25s ease; }

.tab-leave {
  transition: opacity 0.2s ease; }

.tab-visible {
  opacity: 1; }

.tab-hidden {
  opacity: 0; }

@media (min-width: 993px) {
  .track-page-layout .rail-menu.rail-level-1.rail-drawer {
    display: flex !important;
    position: fixed;
    top: 60px;
    bottom: 0;
    width: 197px;
    z-index: 90; }
  .track-page-layout .rail-subrail.rail-drawer {
    z-index: 89;
    top: 60px;
    bottom: 0;
    width: 197px; }
  .rail-subrail .rail-drawer-close {
    display: none; } }

@media (min-width: 993px) {
  .rail-subrail {
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15); }
  .rail-menu-right.rail-subrail {
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15); } }

.rail-desktop-overlay {
  position: fixed;
  inset: 0;
  z-index: 85; }
  @media (max-width: 992px) {
    .rail-desktop-overlay {
      display: none !important; } }
.rail-desktop-overlay-dark {
  background: rgba(18, 20, 26, 0.45); }

.rail-desktop-overlay-light {
  background: rgba(255, 255, 255, 0.45); }

@media (min-width: 993px) {
  .rail-collapsed-single.rail-menu-left {
    left: 0 !important; }
  .rail-collapsed-single.rail-menu-right {
    right: 0 !important; }
  .track-page-professional .rail-collapsed-child.rail-level-3.rail-menu-left {
    left: 197px !important; }
  .track-page-personal .rail-collapsed-child.rail-level-3.rail-menu-right {
    right: 197px !important; } }

.rail-desktop-breadcrumbs {
  padding: 0.25rem 0.5rem 0; }
  @media (max-width: 992px) {
    .rail-desktop-breadcrumbs {
      display: none !important; } }
.rail-collapse-tab {
  position: fixed;
  bottom: 1.5rem;
  z-index: 91;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: left 0.315s cubic-bezier(0.22, 0.61, 0.36, 1), right 0.315s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.2s ease, color 0.2s ease;
  font-family: inherit; }
  @media (max-width: 992px) {
    .rail-collapse-tab {
      display: none; } }
.rail-collapse-tab-left {
  color: rgba(96, 165, 250, 0.7);
  background: #12141a;
  border-top: 2px solid rgba(96, 165, 250, 0.45);
  border-right: 2px solid rgba(96, 165, 250, 0.45);
  border-bottom: 2px solid rgba(96, 165, 250, 0.45);
  border-left: none;
  border-radius: 0 8px 8px 0;
  box-shadow: inset -3px 0 0 0 rgba(96, 165, 250, 0.25); }
  .rail-collapse-tab-left:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1); }

.rail-collapse-tab-right {
  color: rgba(5, 150, 105, 0.7);
  background: #f8f8fa;
  border-top: 2px solid rgba(5, 150, 105, 0.45);
  border-left: 2px solid rgba(5, 150, 105, 0.45);
  border-bottom: 2px solid rgba(5, 150, 105, 0.45);
  border-right: none;
  border-radius: 8px 0 0 8px;
  box-shadow: inset 3px 0 0 0 rgba(5, 150, 105, 0.25); }
  .rail-collapse-tab-right:hover {
    color: #059669;
    background: rgba(5, 150, 105, 0.1); }

.rail-expand-tab {
  position: fixed;
  bottom: 1.5rem;
  z-index: 91;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit; }
  @media (max-width: 992px) {
    .rail-expand-tab {
      display: none !important; } }
.rail-expand-tab-left {
  left: 0;
  color: rgba(96, 165, 250, 0.7);
  background: #12141a;
  border-top: 2px solid rgba(96, 165, 250, 0.45);
  border-right: 2px solid rgba(96, 165, 250, 0.45);
  border-bottom: 2px solid rgba(96, 165, 250, 0.45);
  border-left: none;
  border-radius: 0 8px 8px 0;
  box-shadow: inset -3px 0 0 0 rgba(96, 165, 250, 0.25); }
  .rail-expand-tab-left:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1); }

.rail-expand-tab-right {
  right: 0;
  color: rgba(5, 150, 105, 0.7);
  background: #f8f8fa;
  border-top: 2px solid rgba(5, 150, 105, 0.45);
  border-left: 2px solid rgba(5, 150, 105, 0.45);
  border-bottom: 2px solid rgba(5, 150, 105, 0.45);
  border-right: none;
  border-radius: 8px 0 0 8px;
  box-shadow: inset 3px 0 0 0 rgba(5, 150, 105, 0.25); }
  .rail-expand-tab-right:hover {
    color: #059669;
    background: rgba(5, 150, 105, 0.1); }

@media (max-width: 992px) {
  .rail-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 2200;
    padding-top: 0;
    padding-bottom: 1.5rem; }
  .rail-drawer-close {
    display: block !important;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10; } }

@media (max-width: 992px) {
  .rail-desktop-only {
    display: none !important; } }

@media (min-width: 993px) {
  .rail-mobile-only {
    display: none !important; } }

.rail-drawer-header-inner {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative; }

.rail-drill-header .rail-menu-label {
  padding: 0;
  margin: 0 0 0.5rem;
  line-height: 1.45; }

.rail-drill-header .rail-menu-label-link::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  background: rgba(255, 255, 255, 0.2); }

.rail-menu-right .rail-drill-header .rail-menu-label-link::after {
  background: rgba(0, 0, 0, 0.15); }

.rail-drawer-brand {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.45;
  margin: 0 0 0.15rem;
  padding: 0; }

.rail-drawer .drill-container {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0.625rem;
  padding-top: 0.625rem; }

.rail-menu-right.rail-drawer .drill-container {
  border-top-color: rgba(0, 0, 0, 0.1); }

.drill-container {
  position: relative;
  flex: 1;
  overflow: hidden; }

.drill-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.315s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.315s cubic-bezier(0.22, 0.61, 0.36, 1); }

.drill-panel-visible {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) !important; }

.drill-from-left .drill-panel {
  transform: translateX(-100%); }

.drill-from-right .drill-panel {
  transform: translateX(100%); }

.rail-breadcrumbs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 0.25rem; }

.rail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0.2rem 0;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1.3; }

.rail-breadcrumb-arrow {
  font-size: 0.8125rem;
  font-weight: 700; }

.rail-menu-left .rail-breadcrumb {
  color: #78788a;
  text-align: right;
  justify-content: flex-end; }
  .rail-menu-left .rail-breadcrumb:hover {
    color: #60a5fa; }

.rail-menu-right .rail-breadcrumb {
  color: #71717a;
  text-align: left; }
  .rail-menu-right .rail-breadcrumb:hover {
    color: #059669; }

.rail-drawer-left {
  left: 0; }

.rail-drawer-right {
  right: 0; }

.drawer-enter {
  transition: transform 0.3s ease; }

.drawer-leave {
  transition: transform 0.3s ease; }

.drawer-open {
  transform: translateX(0); }

.drawer-left-closed {
  transform: translateX(-100%); }

.drawer-right-closed {
  transform: translateX(100%); }

.overlay-enter {
  transition: opacity 0.3s ease; }

.overlay-leave {
  transition: opacity 0.3s ease; }

.overlay-enter-start {
  opacity: 0; }

.overlay-enter-end {
  opacity: 1; }

.overlay-leave-start {
  opacity: 1; }

.overlay-leave-end {
  opacity: 0; }

.rail-menu-toggle {
  display: none; }

.rail-menu-toggle-left,
.rail-menu-toggle-right {
  display: none; }

.rail-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(0, 0, 0, 0.5); }
  @media (min-width: 993px) {
    .rail-drawer-overlay {
      display: none !important; } }
.rail-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0.5rem 0;
  position: relative; }

.rail-menu-left .rail-drawer-header {
  flex-direction: row; }

.rail-drawer-header .rail-menu-label {
  padding: 0;
  margin: 0; }

.rail-drawer-close {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem; }

.rail-menu-left .rail-drawer-close {
  color: #a1a1aa; }
  .rail-menu-left .rail-drawer-close:hover {
    color: #60a5fa; }

.rail-menu-right .rail-drawer-close {
  color: #525252; }
  .rail-menu-right .rail-drawer-close:hover {
    color: #059669; }

@media (max-width: 992px) {
  .rail-menu:not(.rail-drawer) {
    display: none; } }

.track-menu {
  position: relative;
  z-index: 100;
  padding: 0 2.5rem;
  margin-bottom: 1rem; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #78788a;
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  line-height: 1; }
  .menu-toggle .hamburger-icon {
    display: block;
    width: 20px;
    height: 2px;
    position: relative;
    background: currentColor; }
    .menu-toggle .hamburger-icon::before, .menu-toggle .hamburger-icon::after {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      position: absolute;
      left: 0; }
    .menu-toggle .hamburger-icon::before {
      top: -6px; }
    .menu-toggle .hamburger-icon::after {
      top: 6px; }

.menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem; }

.menu-content {
  display: flex;
  gap: 0.25rem; }

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem; }
  .menu-list li a {
    display: block;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out; }

.professional-menu .menu-toggle {
  color: #a1a1aa;
  border-color: #2a2d36; }
  .professional-menu .menu-toggle:hover {
    background: #2a2d36; }

.professional-menu .menu-close {
  color: #a1a1aa; }

.professional-menu .menu-list li a {
  color: #a1a1aa; }
  .professional-menu .menu-list li a:hover {
    background: #2a2d36;
    color: #60a5fa; }

.personal-menu {
  text-align: right; }
  .personal-menu .menu-content {
    justify-content: flex-end; }
  .personal-menu .menu-toggle {
    color: #525252;
    border-color: #d1d1d8; }
    .personal-menu .menu-toggle:hover {
      background: #e8e8ed; }
  .personal-menu .menu-close {
    color: #525252; }
  .personal-menu .menu-list li a {
    color: #525252; }
    .personal-menu .menu-list li a:hover {
      background: #e8e8ed;
      color: #059669; }

@media (max-width: 768px) {
  .menu-toggle {
    display: block; }
  .menu-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    flex-direction: column;
    padding: 3.5rem 1.5rem 1.5rem;
    overflow-y: auto; }
    .menu-content[style*="display: block"], .menu-content[style*="display: flex"], .menu-content:not([style*="display: none"]) {
      display: flex; }
  .menu-close {
    display: block; }
  .menu-list {
    flex-direction: column;
    gap: 0; }
    .menu-list li a {
      padding: 0.75rem 1rem;
      font-size: 1rem; }
  .professional-menu .menu-content {
    background: rgba(18, 20, 26, 0.97); }
  .personal-menu {
    text-align: left; }
    .personal-menu .menu-content {
      background: rgba(255, 255, 255, 0.97);
      justify-content: flex-start; } }

.track-page-layout {
  min-height: 100vh; }

.track-page-professional .track-page-content {
  margin-left: 197px; }

.track-page-personal .track-page-content {
  margin-right: 197px; }

.rail-hidden-content {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.track-page-layout .rail-menu.rail-level-1 {
  display: flex; }

@media (max-width: 992px) {
  .track-page-professional .track-page-content,
  .track-page-personal .track-page-content {
    margin-left: 0;
    margin-right: 0; }
  .track-page-layout .rail-menu:not(.rail-drawer) {
    display: none; } }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(18, 20, 26, 0.97);
  border-top: 1px solid #2a2d36;
  backdrop-filter: blur(8px);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4); }

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto; }

.cookie-banner-text {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem; }

.cookie-banner-link {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px; }
  .cookie-banner-link:hover {
    color: #91c1fc; }

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem; }

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out; }
  .cookie-btn:focus-visible {
    outline: 3px solid #60a5fa;
    outline-offset: 2px; }

.cookie-btn-accept {
  background: #2563eb;
  color: #fff; }
  .cookie-btn-accept:hover {
    background: #4a7eee; }

.cookie-btn-reject {
  background: #2a2d36;
  color: #a1a1aa; }
  .cookie-btn-reject:hover {
    background: #373b47;
    color: #e4e4e7; }

.cookie-btn-customise {
  background: transparent;
  color: #a1a1aa;
  border: 1px solid #2a2d36; }
  .cookie-btn-customise:hover {
    border-color: #78788a;
    color: #e4e4e7; }

.cookie-btn-save {
  background: #059669;
  color: #fff;
  margin-top: 0.75rem; }
  .cookie-btn-save:hover {
    background: #06bd85; }

.cookie-customise {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2d36; }

.cookie-group-option {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 0.75rem;
  align-items: start;
  padding: 0.6rem 0;
  cursor: pointer; }
  .cookie-group-option input[type="checkbox"] {
    grid-row: 1 / 3;
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    accent-color: #60a5fa;
    cursor: pointer; }
    .cookie-group-option input[type="checkbox"]:disabled {
      opacity: 0.5;
      cursor: not-allowed; }

.cookie-group-name {
  color: #e4e4e7;
  font-weight: 500;
  font-size: 0.9rem; }

.cookie-group-desc {
  color: #78788a;
  font-size: 0.8rem;
  line-height: 1.5; }

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem; }
  .cookie-banner-actions {
    flex-direction: column; }
  .cookie-btn {
    width: 100%;
    text-align: center; } }

.theme-professional .text-accent {
  color: #60a5fa; }

.theme-personal .text-accent {
  color: #34d399; }

.theme-dark.theme-dark .text-accent {
  color: #60a5fa; }

.theme-light.theme-light .text-accent {
  color: #34d399; }

.theme-professional .text-muted-themed {
  color: #a1a1aa; }

.theme-personal .text-muted-themed {
  color: #525252; }

.theme-dark.theme-dark .text-muted-themed {
  color: #a1a1aa; }

.theme-light.theme-light .text-muted-themed {
  color: #525252; }

.theme-professional .bg-themed {
  background: #1c1f26; }

.theme-personal .bg-themed {
  background: #f8f8fa; }

.theme-dark.theme-dark .bg-themed {
  background: #1c1f26; }

.theme-light.theme-light .bg-themed {
  background: #f8f8fa; }

.theme-professional .bg-surface {
  background: #2a2d36; }

.theme-personal .bg-surface {
  background: #e8e8ed; }

.theme-dark.theme-dark .bg-surface {
  background: #2a2d36; }

.theme-light.theme-light .bg-surface {
  background: #e8e8ed; }

.theme-professional .text-violet {
  color: #a78bfa; }

.theme-personal .text-violet {
  color: #7c3aed; }

.theme-dark.theme-dark .text-violet {
  color: #a78bfa; }

.theme-light.theme-light .text-violet {
  color: #7c3aed; }

.theme-professional .text-amber {
  color: #fbbf24; }

.theme-personal .text-amber {
  color: #b45309; }

.theme-dark.theme-dark .text-amber {
  color: #fbbf24; }

.theme-light.theme-light .text-amber {
  color: #b45309; }

.theme-professional .text-red {
  color: #f87171; }

.theme-personal .text-red {
  color: #dc2626; }

.theme-dark.theme-dark .text-red {
  color: #f87171; }

.theme-light.theme-light .text-red {
  color: #dc2626; }

.theme-professional .text-green {
  color: #4ade80; }

.theme-personal .text-green {
  color: #15803d; }

.theme-dark.theme-dark .text-green {
  color: #4ade80; }

.theme-light.theme-light .text-green {
  color: #15803d; }

.theme-professional .text-slate {
  color: #94a3b8; }

.theme-personal .text-slate {
  color: #475569; }

.theme-dark.theme-dark .text-slate {
  color: #94a3b8; }

.theme-light.theme-light .text-slate {
  color: #475569; }

.theme-professional .bg-violet {
  background: #a78bfa; }

.theme-personal .bg-violet {
  background: #7c3aed; }

.theme-dark.theme-dark .bg-violet {
  background: #a78bfa; }

.theme-light.theme-light .bg-violet {
  background: #7c3aed; }

.theme-professional .bg-amber {
  background: #fbbf24; }

.theme-personal .bg-amber {
  background: #b45309; }

.theme-dark.theme-dark .bg-amber {
  background: #fbbf24; }

.theme-light.theme-light .bg-amber {
  background: #b45309; }

.theme-professional .bg-red {
  background: #f87171; }

.theme-personal .bg-red {
  background: #dc2626; }

.theme-dark.theme-dark .bg-red {
  background: #f87171; }

.theme-light.theme-light .bg-red {
  background: #dc2626; }

.theme-professional .bg-green {
  background: #4ade80; }

.theme-personal .bg-green {
  background: #15803d; }

.theme-dark.theme-dark .bg-green {
  background: #4ade80; }

.theme-light.theme-light .bg-green {
  background: #15803d; }

.theme-professional .bg-slate {
  background: #94a3b8; }

.theme-personal .bg-slate {
  background: #475569; }

.theme-dark.theme-dark .bg-slate {
  background: #94a3b8; }

.theme-light.theme-light .bg-slate {
  background: #475569; }

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  transition: background 0.3s ease-in-out, transform 0.15s ease; }
  .btn:hover {
    transform: translateY(-1px); }
  .btn:active {
    transform: translateY(0); }

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem; }

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1.05rem; }

.theme-professional .btn-primary {
  background: #2563eb;
  color: #fff; }
  .theme-professional .btn-primary:hover {
    background: #1350d4; }

.theme-personal .btn-primary {
  background: #059669;
  color: #fff; }
  .theme-personal .btn-primary:hover {
    background: #046f4d; }

.theme-dark.theme-dark .btn-primary {
  background: #2563eb;
  color: #fff; }
  .theme-dark.theme-dark .btn-primary:hover {
    background: #1350d4; }

.theme-light.theme-light .btn-primary {
  background: #059669;
  color: #fff; }
  .theme-light.theme-light .btn-primary:hover {
    background: #046f4d; }

.theme-professional .btn-outline {
  background: transparent;
  border: 1px solid #60a5fa;
  color: #60a5fa; }
  .theme-professional .btn-outline:hover {
    background: rgba(96, 165, 250, 0.1); }

.theme-personal .btn-outline {
  background: transparent;
  border: 1px solid #059669;
  color: #059669; }
  .theme-personal .btn-outline:hover {
    background: rgba(5, 150, 105, 0.1); }

.theme-dark.theme-dark .btn-outline {
  background: transparent;
  border: 1px solid #60a5fa;
  color: #60a5fa; }
  .theme-dark.theme-dark .btn-outline:hover {
    background: rgba(96, 165, 250, 0.1); }

.theme-light.theme-light .btn-outline {
  background: transparent;
  border: 1px solid #059669;
  color: #059669; }
  .theme-light.theme-light .btn-outline:hover {
    background: rgba(5, 150, 105, 0.1); }

.theme-professional .btn-secondary {
  background: #a78bfa;
  color: #fff; }
  .theme-professional .btn-secondary:hover {
    background: #825af8; }

.theme-personal .btn-secondary {
  background: #7c3aed;
  color: #fff; }
  .theme-personal .btn-secondary:hover {
    background: #6315e9; }

.theme-dark.theme-dark .btn-secondary {
  background: #a78bfa;
  color: #fff; }
  .theme-dark.theme-dark .btn-secondary:hover {
    background: #825af8; }

.theme-light.theme-light .btn-secondary {
  background: #7c3aed;
  color: #fff; }
  .theme-light.theme-light .btn-secondary:hover {
    background: #6315e9; }

.theme-professional .btn-success {
  background: #4ade80;
  color: #12141a; }
  .theme-professional .btn-success:hover {
    background: #26cf64; }

.theme-personal .btn-success {
  background: #15803d;
  color: #fff; }
  .theme-personal .btn-success:hover {
    background: #0f5d2c; }

.theme-dark.theme-dark .btn-success {
  background: #4ade80;
  color: #12141a; }
  .theme-dark.theme-dark .btn-success:hover {
    background: #26cf64; }

.theme-light.theme-light .btn-success {
  background: #15803d;
  color: #fff; }
  .theme-light.theme-light .btn-success:hover {
    background: #0f5d2c; }

.theme-professional .btn-warning {
  background: #fbbf24;
  color: #12141a; }
  .theme-professional .btn-warning:hover {
    background: #e8a804; }

.theme-personal .btn-warning {
  background: #b45309;
  color: #fff; }
  .theme-personal .btn-warning:hover {
    background: #8d4107; }

.theme-dark.theme-dark .btn-warning {
  background: #fbbf24;
  color: #12141a; }
  .theme-dark.theme-dark .btn-warning:hover {
    background: #e8a804; }

.theme-light.theme-light .btn-warning {
  background: #b45309;
  color: #fff; }
  .theme-light.theme-light .btn-warning:hover {
    background: #8d4107; }

.theme-professional .btn-danger {
  background: #f87171;
  color: #fff; }
  .theme-professional .btn-danger:hover {
    background: #f64040; }

.theme-personal .btn-danger {
  background: #dc2626;
  color: #fff; }
  .theme-personal .btn-danger:hover {
    background: #bb1e1e; }

.theme-dark.theme-dark .btn-danger {
  background: #f87171;
  color: #fff; }
  .theme-dark.theme-dark .btn-danger:hover {
    background: #f64040; }

.theme-light.theme-light .btn-danger {
  background: #dc2626;
  color: #fff; }
  .theme-light.theme-light .btn-danger:hover {
    background: #bb1e1e; }

.theme-professional .btn-slate {
  background: #94a3b8;
  color: #fff; }
  .theme-professional .btn-slate:hover {
    background: #7589a4; }

.theme-personal .btn-slate {
  background: #475569;
  color: #fff; }
  .theme-personal .btn-slate:hover {
    background: #374151; }

.theme-dark.theme-dark .btn-slate {
  background: #94a3b8;
  color: #fff; }
  .theme-dark.theme-dark .btn-slate:hover {
    background: #7589a4; }

.theme-light.theme-light .btn-slate {
  background: #475569;
  color: #fff; }
  .theme-light.theme-light .btn-slate:hover {
    background: #374151; }

.table-themed {
  width: 100%;
  border-collapse: collapse; }
  .table-themed th, .table-themed td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid; }

.theme-professional .table-themed {
  background: #1c1f26;
  color: #e4e4e7; }
  .theme-professional .table-themed th {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2); }
  .theme-professional .table-themed td {
    border-color: rgba(255, 255, 255, 0.06); }

.theme-personal .table-themed {
  background: #f8f8fa;
  color: #18181b; }
  .theme-personal .table-themed th {
    color: #059669;
    border-color: rgba(5, 150, 105, 0.2); }
  .theme-personal .table-themed td {
    border-color: #e8e8ed; }

.theme-dark.theme-dark .table-themed {
  background: #1c1f26;
  color: #e4e4e7; }
  .theme-dark.theme-dark .table-themed th {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2); }
  .theme-dark.theme-dark .table-themed td {
    border-color: rgba(255, 255, 255, 0.06); }

.theme-light.theme-light .table-themed {
  background: #f8f8fa;
  color: #18181b; }
  .theme-light.theme-light .table-themed th {
    color: #059669;
    border-color: rgba(5, 150, 105, 0.2); }
  .theme-light.theme-light .table-themed td {
    border-color: #e8e8ed; }

.mt-1 {
  margin-top: 0.5rem; }

.mt-2 {
  margin-top: 1rem; }

.mt-3 {
  margin-top: 1.5rem; }

.mt-4 {
  margin-top: 2rem; }

.mb-1 {
  margin-bottom: 0.5rem; }

.mb-2 {
  margin-bottom: 1rem; }

.mb-3 {
  margin-bottom: 1.5rem; }

.mb-4 {
  margin-bottom: 2rem; }

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem; }

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem; }

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; }

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr; } }

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

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

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

.text-white {
  color: #ffffff !important; }

.text-black {
  color: #000000 !important; }

.theme-professional .text-primary {
  color: #e4e4e7; }

.theme-personal .text-primary {
  color: #18181b; }

.theme-dark.theme-dark .text-primary {
  color: #e4e4e7; }

.theme-light.theme-light .text-primary {
  color: #18181b; }

.theme-professional .text-secondary {
  color: #a1a1aa; }

.theme-personal .text-secondary {
  color: #525252; }

.theme-dark.theme-dark .text-secondary {
  color: #a1a1aa; }

.theme-light.theme-light .text-secondary {
  color: #525252; }

.theme-professional .text-muted {
  color: #78788a; }

.theme-personal .text-muted {
  color: #71717a; }

.theme-dark.theme-dark .text-muted {
  color: #78788a; }

.theme-light.theme-light .text-muted {
  color: #71717a; }

.text-professional {
  color: #60a5fa !important; }

.text-personal {
  color: #059669 !important; }

.theme-professional {
  background: #12141a;
  color: #e4e4e7; }

.theme-personal {
  background: #f8f8fa;
  color: #18181b; }

.aspect-16-9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden; }
  .aspect-16-9 iframe, .aspect-16-9 video, .aspect-16-9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.component-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: stretch; }
  @media (max-width: 768px) {
    .component-hero {
      min-height: 320px; } }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center; }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block; }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none; }

.hero-foreground {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 3rem;
  z-index: 1; }
  .hero-foreground.align-left {
    justify-content: flex-start; }
  .hero-foreground.align-center {
    justify-content: center; }
  .hero-foreground.align-right {
    justify-content: flex-end; }
  @media (max-width: 768px) {
    .hero-foreground {
      padding: 1.5rem; } }
.hero-content {
  max-width: 600px; }
  .hero-content.text-left {
    text-align: left; }
  .hero-content.text-center {
    text-align: center; }
  .hero-content.text-right {
    text-align: right; }
  @media (max-width: 992px) {
    .hero-content {
      max-width: 100% !important;
      padding: 0 1.5rem; } }
  @media (max-width: 768px) {
    .hero-content {
      padding: 0 1rem; } }
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.15; }
  @media (max-width: 768px) {
    .hero-title {
      font-size: 1.75rem; } }
.hero-body {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem; }

.hero-cta {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.15s ease; }
  .hero-cta:hover {
    transform: translateY(-1px); }

.hero-sponsor-text {
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0.85;
  font-style: italic; }

.hero-sponsor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 3rem;
  font-size: 0.85rem; }
  .hero-sponsor img {
    height: 32px;
    width: auto; }
  @media (max-width: 768px) {
    .hero-sponsor {
      padding: 0.75rem 1.5rem; } }
.hero-overlay {
  position: relative;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px; }
  @media (max-width: 768px) {
    .hero-overlay {
      padding: 1.5rem;
      min-height: 320px; } }
.theme-professional .component-hero .hero-title {
  color: #fff; }

.theme-professional .component-hero .hero-body {
  color: rgba(255, 255, 255, 0.85); }

.theme-professional .component-hero .hero-cta {
  background: #2563eb;
  color: #fff; }
  .theme-professional .component-hero .hero-cta:hover {
    background: #1350d4; }

.theme-professional .component-hero .hero-sponsor-text {
  color: #a1a1aa; }

.theme-professional .component-hero .hero-sponsor {
  color: #a1a1aa; }

.theme-personal .component-hero .hero-title {
  color: #18181b;
  font-weight: 700; }

.theme-personal .component-hero .hero-body {
  color: #525252; }

.theme-personal .component-hero .hero-cta {
  background: #059669;
  color: #fff; }
  .theme-personal .component-hero .hero-cta:hover {
    background: #046f4d; }

.theme-personal .component-hero .hero-sponsor-text {
  color: #525252; }

.theme-personal .component-hero .hero-sponsor {
  color: #525252; }

.component-hero.theme-dark.theme-dark .hero-title {
  color: #fff; }

.component-hero.theme-dark.theme-dark .hero-body {
  color: rgba(255, 255, 255, 0.85); }

.component-hero.theme-dark.theme-dark .hero-cta {
  background: #2563eb;
  color: #fff; }
  .component-hero.theme-dark.theme-dark .hero-cta:hover {
    background: #1350d4; }

.component-hero.theme-dark.theme-dark .hero-sponsor-text {
  color: #a1a1aa; }

.component-hero.theme-dark.theme-dark .hero-sponsor {
  color: #a1a1aa; }

.component-hero.theme-light.theme-light .hero-title {
  color: #18181b;
  font-weight: 700; }

.component-hero.theme-light.theme-light .hero-body {
  color: #525252; }

.component-hero.theme-light.theme-light .hero-cta {
  background: #059669;
  color: #fff; }
  .component-hero.theme-light.theme-light .hero-cta:hover {
    background: #046f4d; }

.component-hero.theme-light.theme-light .hero-sponsor-text {
  color: #525252; }

.component-hero.theme-light.theme-light .hero-sponsor {
  color: #525252; }

.component-hero-video {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .component-hero-video {
      min-height: 260px; } }
.hero-video-container {
  position: absolute;
  inset: 0; }
  .hero-video-container video, .hero-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0; }

.hero-video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center; }

.hero-video-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none; }

.hero-video-overlay {
  position: relative;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px; }
  @media (max-width: 768px) {
    .hero-video-overlay {
      padding: 1.5rem;
      min-height: 260px; } }
.theme-professional .component-hero-video .hero-title {
  color: #60a5fa; }

.theme-professional .component-hero-video .hero-cta {
  background: #2563eb;
  color: #fff; }

.theme-personal .component-hero-video .hero-title {
  color: #18181b;
  font-weight: 700; }

.theme-personal .component-hero-video .hero-cta {
  background: #059669;
  color: #fff; }

.component-hero-video.theme-dark.theme-dark .hero-title {
  color: #60a5fa; }

.component-hero-video.theme-dark.theme-dark .hero-cta {
  background: #2563eb;
  color: #fff; }

.component-hero-video.theme-light.theme-light .hero-title {
  color: #18181b;
  font-weight: 700; }

.component-hero-video.theme-light.theme-light .hero-cta {
  background: #059669;
  color: #fff; }

.component-youtube {
  margin: 1.5rem 0; }

.youtube-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem; }

.youtube-caption {
  font-size: 0.875rem;
  margin-top: 0.5rem; }

.theme-professional .component-youtube .youtube-title {
  color: #60a5fa; }

.theme-professional .component-youtube .youtube-caption {
  color: #a1a1aa; }

.theme-personal .component-youtube .youtube-title {
  color: #059669;
  font-weight: 700; }

.theme-personal .component-youtube .youtube-caption {
  color: #525252; }

.component-youtube.theme-dark.theme-dark .youtube-title {
  color: #60a5fa; }

.component-youtube.theme-dark.theme-dark .youtube-caption {
  color: #a1a1aa; }

.component-youtube.theme-light.theme-light .youtube-title {
  color: #059669;
  font-weight: 700; }

.component-youtube.theme-light.theme-light .youtube-caption {
  color: #525252; }

.component-vimeo {
  margin: 1.5rem 0; }

.vimeo-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem; }

.vimeo-caption {
  font-size: 0.875rem;
  margin-top: 0.5rem; }

.theme-professional .component-vimeo .vimeo-title {
  color: #60a5fa; }

.theme-professional .component-vimeo .vimeo-caption {
  color: #a1a1aa; }

.theme-personal .component-vimeo .vimeo-title {
  color: #059669;
  font-weight: 700; }

.theme-personal .component-vimeo .vimeo-caption {
  color: #525252; }

.component-vimeo.theme-dark.theme-dark .vimeo-title {
  color: #60a5fa; }

.component-vimeo.theme-dark.theme-dark .vimeo-caption {
  color: #a1a1aa; }

.component-vimeo.theme-light.theme-light .vimeo-title {
  color: #059669;
  font-weight: 700; }

.component-vimeo.theme-light.theme-light .vimeo-caption {
  color: #525252; }

.component-image-row {
  position: relative;
  width: 100%;
  min-height: 300px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .component-image-row {
      min-height: 200px; } }
.image-row-bg {
  position: absolute;
  inset: 0; }
  .image-row-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.image-row-overlay {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 2rem;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.55)); }
  .image-row-overlay.align-left {
    justify-content: flex-start; }
  .image-row-overlay.align-center {
    justify-content: center;
    text-align: center; }
  .image-row-overlay.align-right {
    justify-content: flex-end;
    text-align: right; }
  @media (max-width: 768px) {
    .image-row-overlay {
      min-height: 200px;
      padding: 1.25rem; } }
.image-row-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.75rem; }
  @media (max-width: 768px) {
    .image-row-title {
      font-size: 1.5rem; } }
.image-row-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease; }

.theme-professional .component-image-row .image-row-title {
  color: #60a5fa; }

.theme-professional .component-image-row .image-row-cta {
  background: #2563eb;
  color: #fff; }

.theme-personal .component-image-row .image-row-title {
  color: #18181b;
  font-weight: 700; }

.theme-personal .component-image-row .image-row-cta {
  background: #059669;
  color: #fff; }

.component-image-row.theme-dark.theme-dark .image-row-title {
  color: #60a5fa; }

.component-image-row.theme-dark.theme-dark .image-row-cta {
  background: #2563eb;
  color: #fff; }

.component-image-row.theme-light.theme-light .image-row-title {
  color: #18181b;
  font-weight: 700; }

.component-image-row.theme-light.theme-light .image-row-cta {
  background: #059669;
  color: #fff; }

.component-headline {
  margin: 2rem 0 1rem; }
  .component-headline.align-left {
    text-align: left; }
  .component-headline.align-center {
    text-align: center; }
  .component-headline.align-right {
    text-align: right; }

.headline-text {
  font-weight: 700;
  margin: 0;
  line-height: 1.25; }

.headline-subtitle {
  font-size: 1rem;
  margin-top: 0.4rem; }

.headline-underline {
  display: inline-block;
  width: 60px;
  height: 3px;
  margin-top: 0.6rem;
  border-radius: 2px; }

.theme-professional .component-headline .headline-text {
  color: #60a5fa; }

.theme-professional .component-headline .headline-subtitle {
  color: #a1a1aa; }

.theme-professional .component-headline .headline-underline {
  background: #2563eb; }

.theme-personal .component-headline .headline-text {
  color: #059669;
  font-weight: 700; }

.theme-personal .component-headline .headline-subtitle {
  color: #525252; }

.theme-personal .component-headline .headline-underline {
  background: #059669; }

.component-headline.theme-dark.theme-dark .headline-text {
  color: #60a5fa; }

.component-headline.theme-dark.theme-dark .headline-subtitle {
  color: #a1a1aa; }

.component-headline.theme-dark.theme-dark .headline-underline {
  background: #2563eb; }

.component-headline.theme-light.theme-light .headline-text {
  color: #059669;
  font-weight: 700; }

.component-headline.theme-light.theme-light .headline-subtitle {
  color: #525252; }

.component-headline.theme-light.theme-light .headline-underline {
  background: #059669; }

.component-tile-grid {
  display: grid;
  gap: 1.5rem; }
  .component-tile-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr); }
  .component-tile-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr); }
  .component-tile-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 992px) {
    .component-tile-grid.cols-3, .component-tile-grid.cols-4 {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 768px) {
    .component-tile-grid.cols-2, .component-tile-grid.cols-3, .component-tile-grid.cols-4 {
      grid-template-columns: 1fr; } }
.tile-item {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #1c1f26; }
  .tile-item:hover {
    transform: translateY(-4px); }
  .tile-item img {
    width: 100%;
    display: block; }

.tile-item.variant-polaroid {
  padding: 0.5rem 0.5rem 1rem; }
  .tile-item.variant-polaroid .tile-caption {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center; }

.tile-item.variant-image img {
  border-radius: 16px; }

.tile-item.variant-round {
  border-radius: 50%;
  aspect-ratio: 1; }
  .tile-item.variant-round img {
    border-radius: 50%;
    height: 100%;
    object-fit: cover; }

.tile-item.variant-stacked .tile-body {
  padding: 1rem; }

.tile-item.variant-stacked .tile-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.35rem; }

.tile-item.variant-stacked .tile-description {
  font-size: 0.875rem;
  margin: 0; }

.theme-professional .tile-item {
  background: #1c1f26;
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.06); }
  .theme-professional .tile-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); }
  .theme-professional .tile-item .tile-title {
    color: #60a5fa; }
  .theme-professional .tile-item .tile-description, .theme-professional .tile-item .tile-caption {
    color: #a1a1aa; }

.theme-personal .tile-item {
  background: #ffffff;
  color: #18181b;
  border: 1px solid #e8e8ed; }
  .theme-personal .tile-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
  .theme-personal .tile-item .tile-title {
    color: #059669; }
  .theme-personal .tile-item .tile-description, .theme-personal .tile-item .tile-caption {
    color: #525252; }

.component-tile-grid.theme-dark.theme-dark .tile-item {
  background: #1c1f26;
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.06); }
  .component-tile-grid.theme-dark.theme-dark .tile-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); }
  .component-tile-grid.theme-dark.theme-dark .tile-item .tile-title {
    color: #60a5fa; }
  .component-tile-grid.theme-dark.theme-dark .tile-item .tile-description, .component-tile-grid.theme-dark.theme-dark .tile-item .tile-caption {
    color: #a1a1aa; }

.component-tile-grid.theme-light.theme-light .tile-item {
  background: #ffffff;
  color: #18181b;
  border: 1px solid #e8e8ed; }
  .component-tile-grid.theme-light.theme-light .tile-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
  .component-tile-grid.theme-light.theme-light .tile-item .tile-title {
    color: #059669; }
  .component-tile-grid.theme-light.theme-light .tile-item .tile-description, .component-tile-grid.theme-light.theme-light .tile-item .tile-caption {
    color: #525252; }

.component-blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid;
  border-radius: 0 8px 8px 0;
  font-style: italic; }

.blockquote-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0; }

.blockquote-source {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal; }

.blockquote-source a {
  text-decoration: underline; }

.theme-professional .component-blockquote {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.06); }
  .theme-professional .component-blockquote .blockquote-text {
    color: #e4e4e7; }
  .theme-professional .component-blockquote .blockquote-source {
    color: #a1a1aa; }
  .theme-professional .component-blockquote .blockquote-source a {
    color: #60a5fa; }

.theme-personal .component-blockquote {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.06); }
  .theme-personal .component-blockquote .blockquote-text {
    color: #18181b; }
  .theme-personal .component-blockquote .blockquote-source {
    color: #525252; }
  .theme-personal .component-blockquote .blockquote-source a {
    color: #059669; }

.component-blockquote.theme-dark.theme-dark {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.06); }
  .component-blockquote.theme-dark.theme-dark .blockquote-text {
    color: #e4e4e7; }
  .component-blockquote.theme-dark.theme-dark .blockquote-source {
    color: #a1a1aa; }
  .component-blockquote.theme-dark.theme-dark .blockquote-source a {
    color: #60a5fa; }

.component-blockquote.theme-light.theme-light {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.06); }
  .component-blockquote.theme-light.theme-light .blockquote-text {
    color: #18181b; }
  .component-blockquote.theme-light.theme-light .blockquote-source {
    color: #525252; }
  .component-blockquote.theme-light.theme-light .blockquote-source a {
    color: #059669; }

.component-inline-image {
  margin: 1.5rem 0; }
  .component-inline-image.float-left {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem; }
  .component-inline-image.float-right {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem; }
  .component-inline-image.float-none {
    float: none; }
  .component-inline-image.width-small {
    max-width: 200px; }
  .component-inline-image.width-medium {
    max-width: 400px; }
  .component-inline-image.width-large {
    max-width: 600px; }
  @media (max-width: 768px) {
    .component-inline-image {
      float: none !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      max-width: 100% !important; } }
  .component-inline-image img {
    width: 100%;
    border-radius: 8px;
    display: block; }

.inline-image-caption {
  font-size: 0.8rem;
  margin-top: 0.4rem; }

.theme-professional .component-inline-image .inline-image-caption {
  color: #a1a1aa; }

.theme-personal .component-inline-image .inline-image-caption {
  color: #525252; }

.component-inline-image.theme-dark.theme-dark .inline-image-caption {
  color: #a1a1aa; }

.component-inline-image.theme-light.theme-light .inline-image-caption {
  color: #525252; }

.component-sponsor {
  display: grid;
  grid-template-columns: 4px auto 1fr;
  gap: 0;
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .component-sponsor {
      grid-template-columns: 4px 1fr;
      grid-template-rows: auto auto; } }
.sponsor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-width: 160px; }
  .sponsor-info img {
    max-height: 48px;
    width: auto;
    margin-bottom: 0.5rem; }
  @media (max-width: 768px) {
    .sponsor-info {
      flex-direction: row;
      gap: 0.75rem;
      min-width: 0; } }
.sponsor-name {
  font-size: 0.9rem;
  font-weight: 500; }

.sponsor-content {
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7; }
  @media (max-width: 768px) {
    .sponsor-content {
      grid-column: 2; } }
.theme-professional .component-sponsor {
  background: #1c1f26;
  color: #e4e4e7; }
  .theme-professional .component-sponsor .sponsor-name {
    color: #60a5fa; }

.theme-personal .component-sponsor {
  background: #ffffff;
  color: #18181b;
  border: 1px solid #e8e8ed; }
  .theme-personal .component-sponsor .sponsor-name {
    color: #059669; }

.component-sponsor.theme-dark.theme-dark {
  background: #1c1f26;
  color: #e4e4e7; }
  .component-sponsor.theme-dark.theme-dark .sponsor-name {
    color: #60a5fa; }

.component-sponsor.theme-light.theme-light {
  background: #ffffff;
  color: #18181b;
  border: 1px solid #e8e8ed; }
  .component-sponsor.theme-light.theme-light .sponsor-name {
    color: #059669; }

.component-tag-list {
  display: flex;
  gap: 0.5rem; }
  .component-tag-list.layout-inline {
    flex-wrap: nowrap;
    overflow-x: auto; }
  .component-tag-list.layout-wrap {
    flex-wrap: wrap; }

.tag-pill {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.15s ease; }
  .tag-pill:hover {
    transform: translateY(-1px); }
  .tag-pill:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 2px; }

.theme-professional .component-tag-list .tag-pill {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.25); }
  .theme-professional .component-tag-list .tag-pill:hover {
    background: rgba(96, 165, 250, 0.22); }

.theme-personal .component-tag-list .tag-pill {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25); }
  .theme-personal .component-tag-list .tag-pill:hover {
    background: rgba(5, 150, 105, 0.2); }

.component-tag-list.theme-dark.theme-dark .tag-pill {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.25); }
  .component-tag-list.theme-dark.theme-dark .tag-pill:hover {
    background: rgba(96, 165, 250, 0.22); }

.component-tag-list.theme-light.theme-light .tag-pill {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25); }
  .component-tag-list.theme-light.theme-light .tag-pill:hover {
    background: rgba(5, 150, 105, 0.2); }

.component-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem; }

.tag-cloud-link {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out, transform 0.15s ease;
  white-space: nowrap; }
  .tag-cloud-link:hover {
    transform: translateY(-1px); }
  .tag-cloud-link:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 2px; }
  .tag-cloud-link.weight-1 {
    font-size: 0.75rem; }
  .tag-cloud-link.weight-2 {
    font-size: 0.9rem; }
  .tag-cloud-link.weight-3 {
    font-size: 1.1rem;
    font-weight: 700; }
  .tag-cloud-link.weight-4 {
    font-size: 1.35rem;
    font-weight: 700; }
  .tag-cloud-link.weight-5 {
    font-size: 1.65rem;
    font-weight: 700; }

.theme-professional .component-tag-cloud .tag-cloud-link {
  color: #a1a1aa; }
  .theme-professional .component-tag-cloud .tag-cloud-link:hover {
    color: #60a5fa; }
  .theme-professional .component-tag-cloud .tag-cloud-link.weight-3 {
    color: #e4e4e7; }
  .theme-professional .component-tag-cloud .tag-cloud-link.weight-4 {
    color: #60a5fa; }
  .theme-professional .component-tag-cloud .tag-cloud-link.weight-5 {
    color: #60a5fa; }

.theme-personal .component-tag-cloud .tag-cloud-link {
  color: #71717a; }
  .theme-personal .component-tag-cloud .tag-cloud-link:hover {
    color: #059669; }
  .theme-personal .component-tag-cloud .tag-cloud-link.weight-3 {
    color: #525252; }
  .theme-personal .component-tag-cloud .tag-cloud-link.weight-4 {
    color: #059669; }
  .theme-personal .component-tag-cloud .tag-cloud-link.weight-5 {
    color: #059669; }

.component-tag-cloud.theme-dark.theme-dark .tag-cloud-link {
  color: #a1a1aa; }
  .component-tag-cloud.theme-dark.theme-dark .tag-cloud-link:hover {
    color: #60a5fa; }
  .component-tag-cloud.theme-dark.theme-dark .tag-cloud-link.weight-3 {
    color: #e4e4e7; }
  .component-tag-cloud.theme-dark.theme-dark .tag-cloud-link.weight-4 {
    color: #60a5fa; }
  .component-tag-cloud.theme-dark.theme-dark .tag-cloud-link.weight-5 {
    color: #60a5fa; }

.component-tag-cloud.theme-light.theme-light .tag-cloud-link {
  color: #71717a; }
  .component-tag-cloud.theme-light.theme-light .tag-cloud-link:hover {
    color: #059669; }
  .component-tag-cloud.theme-light.theme-light .tag-cloud-link.weight-3 {
    color: #525252; }
  .component-tag-cloud.theme-light.theme-light .tag-cloud-link.weight-4 {
    color: #059669; }
  .component-tag-cloud.theme-light.theme-light .tag-cloud-link.weight-5 {
    color: #059669; }

@media (max-width: 768px) {
  .component-tag-list.layout-inline {
    -webkit-overflow-scrolling: touch; }
  .tag-cloud-link.weight-4 {
    font-size: 1.2rem; }
  .tag-cloud-link.weight-5 {
    font-size: 1.4rem; } }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(60px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

.component-profile-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .component-profile-hero {
      min-height: 280px; } }
.profile-hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0; }

.profile-hero__foreground {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3rem;
  z-index: 1;
  gap: 2rem; }
  @media (max-width: 992px) {
    .profile-hero__foreground {
      flex-direction: column;
      padding: 2rem; } }
  @media (max-width: 768px) {
    .profile-hero__foreground {
      flex-direction: column-reverse;
      padding: 1.5rem; } }
.profile-hero__text {
  flex: 2; }
  @media (max-width: 992px) {
    .profile-hero__text {
      flex: none;
      width: 100%;
      text-align: center; } }
.profile-hero__name {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.15; }
  @media (max-width: 768px) {
    .profile-hero__name {
      font-size: 1.75rem; } }
.profile-hero__title {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  font-weight: 500; }

.profile-hero__description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem; }

.profile-hero__cta {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.15s ease; }
  .profile-hero__cta:hover {
    transform: translateY(-1px); }
  .profile-hero__cta:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 2px; }

.profile-hero__image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (max-width: 992px) {
    .profile-hero__image-wrapper {
      flex: none;
      width: 100%; } }
.profile-hero__image {
  max-width: 100%;
  border-radius: 16px;
  display: block;
  animation: slideIn 0.6s ease-in-out both; }
  @media (max-width: 768px) {
    .profile-hero__image {
      max-width: 200px; } }
@media (prefers-reduced-motion: reduce) {
  .profile-hero__image {
    animation: none; } }

.theme-professional .component-profile-hero .profile-hero__name {
  color: #fff; }

.theme-professional .component-profile-hero .profile-hero__title {
  color: #60a5fa; }

.theme-professional .component-profile-hero .profile-hero__description {
  color: rgba(255, 255, 255, 0.85); }

.theme-professional .component-profile-hero .profile-hero__cta {
  background: #2563eb;
  color: #fff; }
  .theme-professional .component-profile-hero .profile-hero__cta:hover {
    background: #1350d4; }

.theme-personal .component-profile-hero .profile-hero__name {
  color: #18181b; }

.theme-personal .component-profile-hero .profile-hero__title {
  color: #059669; }

.theme-personal .component-profile-hero .profile-hero__description {
  color: #525252; }

.theme-personal .component-profile-hero .profile-hero__cta {
  background: #059669;
  color: #fff; }
  .theme-personal .component-profile-hero .profile-hero__cta:hover {
    background: #046f4d; }

.component-profile-hero.theme-dark.theme-dark .profile-hero__name {
  color: #fff; }

.component-profile-hero.theme-dark.theme-dark .profile-hero__title {
  color: #60a5fa; }

.component-profile-hero.theme-dark.theme-dark .profile-hero__description {
  color: rgba(255, 255, 255, 0.85); }

.component-profile-hero.theme-dark.theme-dark .profile-hero__cta {
  background: #2563eb;
  color: #fff; }
  .component-profile-hero.theme-dark.theme-dark .profile-hero__cta:hover {
    background: #1350d4; }

.component-profile-hero.theme-light.theme-light .profile-hero__name {
  color: #18181b; }

.component-profile-hero.theme-light.theme-light .profile-hero__title {
  color: #059669; }

.component-profile-hero.theme-light.theme-light .profile-hero__description {
  color: #525252; }

.component-profile-hero.theme-light.theme-light .profile-hero__cta {
  background: #059669;
  color: #fff; }
  .component-profile-hero.theme-light.theme-light .profile-hero__cta:hover {
    background: #046f4d; }

:root {
  --doc-text: #e4e4e7;
  --doc-muted: #a1a1aa;
  --doc-subtle: #d4d4d8;
  --doc-accent: #60a5fa;
  --doc-surface: #1e2028;
  --doc-border: #2a2d36;
  --doc-bg-deep: #12141a;
  --doc-bg-code: #1e2028;
  --doc-btn-hover: #3b82f6; }

body.theme-personal {
  --doc-text: #18181b;
  --doc-muted: #525252;
  --doc-subtle: #3f3f46;
  --doc-accent: #059669;
  --doc-surface: #f0f0f3;
  --doc-border: #e0e0e5;
  --doc-bg-deep: #f8f8fa;
  --doc-bg-code: #f0f0f3;
  --doc-btn-hover: #059669; }

.doc-layout {
  display: flex;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh; }

.doc-sidebar {
  width: 260px;
  flex-shrink: 0;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--doc-border);
  background: var(--doc-bg-deep);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto; }
  @media (min-width: 993px) {
    .doc-sidebar {
      display: block !important; } }
.doc-main {
  flex: 1;
  min-width: 0;
  padding: 2rem 1.5rem; }

.doc-sidebar-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--doc-muted);
  margin-bottom: 1rem;
  padding: 0 0.5rem; }

.doc-nav-list {
  list-style: none;
  margin: 0;
  padding: 0; }

.doc-nav-item {
  margin-bottom: 0.125rem; }

.doc-nav-link {
  display: block;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--doc-muted);
  text-decoration: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out; }
  .doc-nav-link:hover {
    background: var(--doc-surface);
    color: var(--doc-accent); }
  .doc-nav-link[aria-current="page"] {
    background: var(--doc-surface);
    color: var(--doc-accent);
    font-weight: 700; }

.doc-nav-list .doc-nav-list {
  padding-left: 0.75rem; }
  .doc-nav-list .doc-nav-list .doc-nav-link {
    font-size: 0.8125rem; }

.doc-nav-list .doc-nav-list .doc-nav-list {
  padding-left: 0.75rem; }
  .doc-nav-list .doc-nav-list .doc-nav-list .doc-nav-link {
    font-size: 0.75rem; }

.doc-sidebar-toggle {
  display: none; }

.doc-sidebar-overlay {
  display: none; }

@media (max-width: 992px) {
  .doc-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2200;
    width: 250px;
    padding-top: 0.5rem; }
  .doc-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(0, 0, 0, 0.5); }
  .doc-main {
    width: 100%;
    padding: 1.5rem 1rem; } }

.doc-page {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--doc-text); }

.doc-page h1.doc-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--doc-text); }

.doc-intro {
  color: var(--doc-muted);
  margin-bottom: 2.5rem; }

.doc-section {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--doc-border);
  padding-bottom: 2rem; }
  .doc-section:last-child {
    border-bottom: none; }

.doc-section-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--doc-accent); }

.doc-desc {
  color: var(--doc-muted);
  margin-bottom: 1rem; }

.doc-sub {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--doc-subtle); }

.param-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.85rem; }
  .param-table th {
    text-align: left;
    padding: 0.4rem 0.6rem;
    background: var(--doc-surface);
    color: var(--doc-muted);
    border-bottom: 1px solid var(--doc-border); }
  .param-table td {
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid var(--doc-surface);
    color: var(--doc-subtle); }
  .param-table code {
    background: var(--doc-surface);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-size: 0.8rem; }

.doc-example-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap; }

.doc-example-box {
  flex: 1;
  min-width: 280px;
  border: 1px solid var(--doc-border);
  border-radius: 6px;
  overflow: hidden; }

.doc-example-label {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  background: var(--doc-surface);
  color: var(--doc-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.doc-example-content {
  padding: 1rem; }
  .doc-example-content.theme-dark-bg {
    background: #1a1c24; }
  .doc-example-content.theme-light-bg {
    background: #f4f4f5; }

.doc-snippet {
  position: relative; }
  .doc-snippet pre {
    background: var(--doc-bg-deep);
    border: 1px solid var(--doc-border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    font-size: 0.8rem;
    color: var(--doc-muted);
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all; }
  .doc-snippet .copy-btn {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: var(--doc-border);
    border: none;
    color: var(--doc-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem; }
    .doc-snippet .copy-btn:hover {
      background: var(--doc-btn-hover);
      color: #fff; }

.doc-toc ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; }

.doc-toc a {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--doc-surface);
  color: var(--doc-accent);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem; }
  .doc-toc a:hover {
    background: var(--doc-btn-hover);
    color: #fff; }

.doc-full-width-example {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  width: calc(100% + 3rem);
  overflow: hidden; }
  @media (max-width: 768px) {
    .doc-full-width-example {
      margin-left: -1rem;
      margin-right: -1rem;
      width: calc(100% + 2rem); } }
.demo-hero-bg {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e293b 100%);
  min-height: 320px; }

.demo-hero-bg-light {
  background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 50%, #f0fdf4 100%);
  min-height: 320px; }

.demo-video-bg-dark {
  background: linear-gradient(135deg, #1e3a5f, #0f172a); }

.demo-video-bg-light {
  background: linear-gradient(135deg, #d1fae5, #ecfdf5); }

.demo-image-row-bg-dark {
  background: linear-gradient(135deg, #1e3a5f, #0f172a); }

.demo-image-row-bg-light {
  background: linear-gradient(135deg, #d1fae5, #ecfdf5); }

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem; }

.swatch {
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 0.75rem;
  text-align: center; }

.swatch-label {
  display: block;
  margin-top: 0.25rem;
  opacity: 0.8; }

.theme-pill {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9000;
  display: flex;
  background: var(--doc-surface);
  border: 1px solid var(--doc-border);
  border-radius: 999px;
  padding: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); }

.theme-pill-opt {
  border: none;
  background: transparent;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.15s ease;
  color: var(--doc-muted); }
  .theme-pill-opt.active {
    background: var(--doc-accent);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }
  .theme-pill-opt:hover:not(.active) {
    background: var(--doc-border); }

.doc-index-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: var(--doc-bg-deep);
  position: relative; }

.doc-index-container {
  max-width: 900px;
  width: 100%; }

.doc-index-header {
  text-align: center;
  margin-bottom: 3rem; }

.doc-index-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--doc-text);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em; }

.doc-index-lead {
  font-size: 1.125rem;
  color: var(--doc-muted);
  margin: 0; }

.doc-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; }
  @media (max-width: 768px) {
    .doc-index-grid {
      grid-template-columns: 1fr; } }
.doc-index-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--doc-surface);
  border: 1px solid var(--doc-border);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  position: relative; }
  .doc-index-card:hover {
    border-color: var(--doc-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px); }
    .doc-index-card:hover .doc-index-card-arrow {
      opacity: 1;
      transform: translateX(4px); }
  .doc-index-card:focus-visible {
    outline: 3px solid var(--doc-accent);
    outline-offset: 2px; }

.doc-index-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem; }

.doc-index-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--doc-text); }

.doc-index-card-desc {
  font-size: 0.875rem;
  margin: 0;
  color: var(--doc-muted);
  flex: 1; }

.doc-index-card-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.25rem;
  color: var(--doc-accent);
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.2s ease; }

/* ── Author Signature Component ── */
.component-signature {
  margin: 3rem 0 1.5rem;
  text-align: right; }

.signature-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.25rem; }

.signature-name {
  font-size: 2rem;
  margin: 0;
  line-height: 1.2; }

.signature-role {
  font-size: 0.9rem;
  opacity: 0.6;
  margin: 0.25rem 0 0;
  font-family: 'Inter', sans-serif; }

/* ── Font variants ── */
.signature-font-caveat {
  font-family: 'Caveat', cursive; }

.signature-font-dancing {
  font-family: 'Dancing Script', cursive; }

.signature-font-satisfy {
  font-family: 'Satisfy', cursive; }

.signature-font-homemade {
  font-family: 'Homemade Apple', cursive; }

.signature-font-vibes {
  font-family: 'Great Vibes', cursive; }

/* ── Theme adjustments ── */
.component-signature.theme-light .signature-rule {
  border-top-color: rgba(0, 0, 0, 0.15); }

/* ── Lightbox (fullscreen image/video modal) ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out; }

.lightbox-img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5); }

.lightbox-video {
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  cursor: default; }
  .lightbox-video iframe {
    width: 100%;
    height: 100%;
    border-radius: 4px; }

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  line-height: 1;
  z-index: 1; }
  .lightbox-close:hover {
    opacity: 1; }

/* Transitions */
.lightbox-enter, .lightbox-leave {
  transition: opacity 0.2s ease; }

.lightbox-hidden {
  opacity: 0; }

.lightbox-visible {
  opacity: 1; }

/* ── Lightbox Trigger Component ── */
.component-lightbox-trigger {
  display: inline-block;
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 4px; }
  .component-lightbox-trigger img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease; }
  .component-lightbox-trigger:hover img {
    transform: scale(1.03); }

.lightbox-zoom-icon,
.lightbox-play-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none; }
  .component-lightbox-trigger:hover .lightbox-zoom-icon, .component-lightbox-trigger:hover .lightbox-play-icon {
    opacity: 1; }

.lightbox-play-icon {
  font-size: 1rem; }

/* ── Audio Player Component ── */
.component-audio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 15% 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .component-audio-player.theme-light {
    background: rgba(0, 0, 0, 0.05);
    border-bottom-color: rgba(0, 0, 0, 0.08); }

.audio-player-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.8; }

.audio-player-icon {
  font-size: 1.1rem; }

.audio-player-element {
  flex: 1;
  height: 36px;
  min-width: 200px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08); }
  .audio-player-element::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.06); }

.theme-light .audio-player-element {
  background: rgba(0, 0, 0, 0.06); }
  .theme-light .audio-player-element::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.04); }

@media (max-width: 768px) {
  .component-audio-player {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    max-width: 100%;
    min-height: 5.5rem; }
  .audio-player-element {
    min-width: 0;
    width: 100%;
    height: 2.5rem; } }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px); }

.modal-panel {
  background: linear-gradient(180deg, #13151c 0%, #0d0f14 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04); }

.modal-panel-sm {
  max-width: 380px;
  text-align: center;
  padding: 2.5rem 2rem; }

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s; }
  .modal-close:hover {
    color: #fff; }

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #fff;
  letter-spacing: -0.01em; }

.modal-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.75rem;
  line-height: 1.6; }

.modal-field {
  margin-bottom: 1.1rem; }
  .modal-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em; }
  .modal-field input, .modal-field textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s; }
    .modal-field input::placeholder, .modal-field textarea::placeholder {
      color: rgba(255, 255, 255, 0.2); }
    .modal-field input:focus, .modal-field textarea:focus {
      outline: none;
      border-color: rgba(65, 118, 144, 0.6);
      background: rgba(255, 255, 255, 0.06); }
  .modal-field textarea {
    resize: vertical;
    min-height: 100px; }

.modal-row {
  display: flex;
  gap: 1rem; }
  .modal-row .modal-field {
    flex: 1; }
  @media (max-width: 480px) {
    .modal-row {
      flex-direction: column;
      gap: 0; } }
.modal-error {
  display: block;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.3rem; }

.modal-submit {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #417690, #2a5a70);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(65, 118, 144, 0.25);
  margin-top: 0.5rem; }
  .modal-submit:hover {
    opacity: 0.92;
    box-shadow: 0 4px 16px rgba(65, 118, 144, 0.35); }
  .modal-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed; }

.modal-success {
  text-align: center;
  padding: 1rem 0; }
  .modal-success p {
    font-size: 1.1rem;
    color: #27ae60;
    margin-bottom: 1.5rem; }

.modal-phone {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin: 1.5rem 0;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.03em;
  transition: color 0.2s; }
  .modal-phone:hover {
    color: #60a5fa; }

.bp-layout {
  display: flex;
  min-height: 100vh;
  background: #12141a;
  color: #e4e4e7; }

.bp-rail {
  width: 220px;
  flex-shrink: 0;
  background: #1c1f26;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 100; }
  @media (max-width: 992px) {
    .bp-rail {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 2200;
      box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4); }
      .bp-rail.bp-rail-open {
        transform: translateX(0); } }
.bp-rail-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #78788a;
  padding: 0 1.25rem;
  margin-bottom: 0.5rem; }

.bp-rail-plan-name {
  padding: 0 1.25rem;
  margin-bottom: 1.25rem; }

.bp-rail-plan-name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap; }

.bp-rail-plan-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #e4e4e7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0; }

.bp-btn-sm {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  white-space: nowrap; }

.bp-rail-rename-form {
  display: flex;
  align-items: center;
  gap: 0.35rem; }

.bp-rail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1; }

.bp-rail-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a1a1aa;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: default; }
  .bp-rail-link:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.03);
    color: #e4e4e7; }
  .bp-rail-link.active {
    background: rgba(96, 165, 250, 0.08);
    color: #60a5fa;
    border-left: 3px solid #60a5fa;
    padding-left: calc(1.25rem - 3px); }
  .bp-rail-link.disabled {
    color: #78788a;
    opacity: 0.45; }

a.bp-rail-link {
  cursor: pointer; }

.bp-rail-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  background: #2a2d36;
  color: #78788a;
  transition: all 0.2s ease; }
  .active .bp-rail-num {
    background: #2563eb;
    color: #fff; }
  .disabled .bp-rail-num {
    background: #2a2d36;
    color: #78788a; }

.bp-rail-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto; }

.bp-rail-back {
  font-size: 0.8rem;
  color: #78788a;
  text-decoration: none;
  transition: color 0.15s ease; }
  .bp-rail-back:hover {
    color: #60a5fa; }

.bp-drawer-overlay {
  display: none; }
  @media (max-width: 992px) {
    .bp-drawer-overlay {
      display: block;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2100; } }
.bp-main {
  flex: 1;
  min-width: 0; }

.business-plan-page {
  padding: 2.5rem 2rem; }
  @media (max-width: 768px) {
    .business-plan-page {
      padding: 1.5rem 1rem; } }
.bp-container {
  max-width: 900px;
  margin: 0 auto; }

.bp-card {
  background: #1c1f26;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2); }
  @media (max-width: 768px) {
    .bp-card {
      padding: 1.5rem;
      border-radius: 8px; } }
.bp-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e4e4e7;
  margin-bottom: 0.25rem; }

.bp-step-desc {
  color: #a1a1aa;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  line-height: 1.6; }

.bp-fieldset {
  margin-bottom: 2rem;
  padding: 0;
  border: none; }

.bp-fieldset-legend {
  font-size: 0.95rem;
  font-weight: 700;
  color: #60a5fa;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #2a2d36;
  width: 100%;
  letter-spacing: 0.01em; }

.bp-field {
  margin-bottom: 1.1rem; }

.bp-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a1a1aa;
  margin-bottom: 0.35rem; }

.bp-input,
.bp-textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e4e4e7;
  background: #12141a;
  border: 1px solid #2a2d36;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; }
  .bp-input::placeholder,
  .bp-textarea::placeholder {
    color: #78788a;
    opacity: 0.5; }
  .bp-input:focus,
  .bp-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12); }

.bp-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.5; }

.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap; }
  .bp-btn:hover {
    transform: translateY(-1px); }
  .bp-btn:active {
    transform: translateY(0); }
  .bp-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none; }

.bp-btn-primary {
  background: #2563eb;
  color: #fff; }
  .bp-btn-primary:hover {
    background: #1555e2;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3); }

.bp-btn-success {
  background: #059669;
  color: #fff; }
  .bp-btn-success:hover {
    background: #047d58;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3); }

.bp-btn-outline {
  background: transparent;
  color: #a1a1aa;
  border-color: #2a2d36; }
  .bp-btn-outline:hover {
    border-color: #60a5fa;
    color: #60a5fa; }

.bp-btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1rem; }

.bp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem; }
  .bp-actions.bp-actions-end {
    justify-content: flex-end; }

.bp-alert {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem; }

.bp-alert-error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: #f87171; }

.bp-alert-success {
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  color: #2e7d32; }

.bp-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bp-spin 0.6s linear infinite; }

.htmx-request .bp-spinner {
  display: inline-block; }

@keyframes bp-spin {
  to {
    transform: rotate(360deg); } }

.bp-generating-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #60a5fa;
  border-radius: 50%;
  animation: bp-spin 0.8s linear infinite;
  margin: 0 auto; }

.bp-plan-content {
  line-height: 1.75;
  font-size: 0.95rem;
  color: #e4e4e7; }
  .bp-plan-content h2 {
    font-size: 1.3rem;
    color: #60a5fa;
    margin: 2rem 0 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #2a2d36; }
  .bp-plan-content h3 {
    font-size: 1.1rem;
    color: #e4e4e7;
    margin: 1.5rem 0 0.4rem; }
  .bp-plan-content p {
    margin: 0 0 0.85rem; }
  .bp-plan-content ul, .bp-plan-content ol {
    margin: 0 0 0.85rem 1.5rem; }
    .bp-plan-content ul li, .bp-plan-content ol li {
      margin-bottom: 0.3rem; }
  .bp-plan-content strong {
    color: #e4e4e7; }

.bp-editor {
  width: 100%;
  min-height: 400px;
  padding: 0.85rem 1rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #e4e4e7;
  background: #12141a;
  border: 1px solid #2a2d36;
  border-radius: 8px;
  resize: vertical; }
  .bp-editor:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12); }

.bp-generate-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: #12141a;
  border: 1px solid #2a2d36;
  border-radius: 16px;
  margin-bottom: 1.5rem; }

.bp-generate-cta-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: #60a5fa; }

.bp-generate-cta-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #e4e4e7; }

.bp-generate-cta-desc {
  color: #a1a1aa;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto; }

.bp-help-text {
  color: #78788a;
  font-size: 0.8rem;
  margin-top: 0.5rem; }

.bp-rail-plans-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
  padding-top: 0.5rem; }

.bp-rail-plans-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.6rem 1.25rem;
  background: none;
  border: none;
  color: #a1a1aa;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  cursor: pointer;
  transition: color 0.15s ease; }
  .bp-rail-plans-toggle:hover {
    color: #60a5fa; }

.bp-rail-plans-chevron {
  font-size: 0.7rem;
  transition: transform 0.2s ease; }
  .bp-rail-plans-chevron.bp-chevron-open {
    transform: rotate(180deg); }

.bp-plan-panel {
  padding: 0.5rem 1rem 0.75rem; }

.bp-plan-active {
  margin-bottom: 0.75rem; }

.bp-plan-active-row {
  display: flex;
  align-items: center;
  gap: 0.4rem; }

.bp-plan-active-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #60a5fa;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1; }

.bp-plan-icon-btn {
  background: none;
  border: none;
  color: #78788a;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.15rem 0.3rem;
  border-radius: 3px;
  transition: color 0.15s ease, background 0.15s ease;
  flex-shrink: 0; }
  .bp-plan-icon-btn:hover {
    color: #60a5fa;
    background: rgba(255, 255, 255, 0.05); }

.bp-plan-rename-form {
  display: flex;
  align-items: center;
  gap: 0.3rem; }

.bp-plan-rename-input {
  flex: 1;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e4e4e7;
  background: #12141a;
  border: 1px solid #2a2d36;
  border-radius: 4px;
  min-width: 0; }
  .bp-plan-rename-input:focus {
    outline: none;
    border-color: #60a5fa; }

.bp-plan-list-items {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 0.75rem; }
  .bp-plan-list-items::-webkit-scrollbar {
    width: 4px; }
  .bp-plan-list-items::-webkit-scrollbar-track {
    background: transparent; }
  .bp-plan-list-items::-webkit-scrollbar-thumb {
    background: #2a2d36;
    border-radius: 2px; }

.bp-plan-item {
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: background 0.15s ease; }
  .bp-plan-item:hover {
    background: rgba(255, 255, 255, 0.03); }
  .bp-plan-item.bp-plan-item-active {
    background: rgba(96, 165, 250, 0.06); }

.bp-plan-item-link {
  flex: 1;
  display: block;
  padding: 0.4rem 0.5rem;
  text-decoration: none;
  min-width: 0; }

.bp-plan-item-name {
  display: block;
  font-size: 0.8rem;
  color: #e4e4e7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .bp-plan-item-active .bp-plan-item-name {
    color: #60a5fa;
    font-weight: 500; }

.bp-plan-item-meta {
  display: block;
  font-size: 0.65rem;
  color: #78788a;
  margin-top: 0.1rem; }

.bp-plan-delete-form {
  flex-shrink: 0; }

.bp-plan-delete-btn:hover {
  color: #f87171; }

.bp-plan-actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap; }

.bp-plan-action-form {
  display: contents; }

.bp-plan-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  color: #a1a1aa;
  background: transparent;
  border: 1px solid #2a2d36;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap; }
  .bp-plan-action-btn:hover {
    border-color: #60a5fa;
    color: #60a5fa; }

:focus-visible {
  outline: 3px solid var(--focus-color, #60a5fa);
  outline-offset: 2px; }

body.theme-personal :focus-visible {
  --focus-color: #059669; }

.modal-overlay :focus-visible,
.site-header :focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25); }

.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--skip-bg, #2a2d36);
  color: var(--skip-color, #e4e4e7);
  padding: 0.75rem 1.25rem;
  z-index: 10000;
  font-weight: 500;
  transition: top 0.2s ease-in-out;
  text-decoration: underline; }
  .skip-nav:focus, .skip-nav:focus-visible {
    top: 0;
    outline: 3px solid #60a5fa;
    outline-offset: 2px; }

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

.field-error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.25); }

.error-message {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem; }
  .error-message::before {
    content: '⚠';
    font-size: 0.9rem; }

body.theme-personal .field-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25); }

body.theme-personal .error-message {
  color: #dc2626; }

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

.case-study-hero {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #12141a 0%, #1c1f26 100%);
  overflow: hidden; }
  .case-study-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 20, 26, 0.4) 0%, rgba(28, 31, 38, 0.8) 100%);
    pointer-events: none; }
  .case-study-hero > * {
    position: relative;
    z-index: 1; }

.case-study-content {
  padding: 3rem 2rem;
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem; }
  @media (max-width: 768px) {
    .case-study-content {
      padding: 2rem 1rem;
      font-size: 1rem; } }
.case-study-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .case-study-section:last-child {
    border-bottom: none;
    margin-bottom: 0; }
  .case-study-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #60a5fa; }
  .case-study-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem; }
  .case-study-section p {
    margin-bottom: 1rem; }
  .case-study-section ul, .case-study-section ol {
    margin: 0 0 1rem 1.5rem; }
    .case-study-section ul li, .case-study-section ol li {
      margin-bottom: 0.35rem; }
  .case-study-section code {
    font-family: "Courier New", Courier, monospace;
    font-size: 0.9em;
    padding: 0.15em 0.4em;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px; }
  .case-study-section strong {
    font-weight: 700; }

.case-study-chart-container {
  position: relative;
  width: 100%;
  min-height: 350px;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: #1c1f26;
  border: 1px solid rgba(255, 255, 255, 0.06); }
  .case-study-chart-container canvas {
    width: 100% !important;
    height: auto !important;
    max-height: 450px; }
  @media (max-width: 768px) {
    .case-study-chart-container {
      padding: 1rem; }
      .case-study-chart-container canvas {
        max-height: 300px; } }
  @media (min-width: 2000px) {
    .case-study-chart-container canvas {
      max-height: 550px; } }
.date-range-picker {
  padding: 1.25rem 1.5rem;
  background: #1c1f26;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  margin-bottom: 2rem; }
  .date-range-picker label span {
    display: block;
    font-size: 0.85rem;
    color: #a1a1aa;
    margin-bottom: 0.25rem; }
  .date-range-picker input[type="date"] {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #e4e4e7;
    background: #12141a;
    border: 1px solid #2a2d36;
    border-radius: 8px;
    transition: border-color 0.2s ease; }
    .date-range-picker input[type="date"]:focus {
      outline: none;
      border-color: #60a5fa;
      box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12); }

.preset-buttons button {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  color: #a1a1aa;
  background: #12141a;
  border: 1px solid #2a2d36;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease; }
  .preset-buttons button:hover {
    border-color: #60a5fa;
    color: #60a5fa; }
  .preset-buttons button:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px; }

.chart-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  color: #a1a1aa;
  font-size: 0.9rem;
  background: inherit;
  border-radius: inherit;
  z-index: 2; }

.chart-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #60a5fa;
  border-radius: 50%;
  animation: chart-spin 0.7s linear infinite; }

@keyframes chart-spin {
  to {
    transform: rotate(360deg); } }

.erd-diagram {
  margin: 2rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

.erd-table {
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.08); }

.erd-dim .erd-table-header {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa; }

.erd-fact .erd-table-header {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399; }

.erd-table-header {
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em; }

.erd-table-body {
  padding: 0.5rem 0.75rem;
  background: #1c1f26;
  color: #a1a1aa;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem; }

.erd-pk,
.erd-fk {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1em 0.35em;
  border-radius: 3px;
  margin-right: 0.3em;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  vertical-align: middle; }

.erd-pk {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa; }

.erd-fk {
  background: rgba(52, 211, 153, 0.2);
  color: #34d399; }

.erd-connector {
  font-size: 1.5rem;
  color: #78788a;
  line-height: 1; }

body.theme-personal .case-study-hero {
  background: linear-gradient(135deg, #f8f8fa 0%, #ffffff 100%); }
  body.theme-personal .case-study-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 248, 250, 0.8) 100%); }

body.theme-personal .case-study-section {
  border-bottom-color: #e8e8ed; }
  body.theme-personal .case-study-section h2 {
    color: #059669; }
  body.theme-personal .case-study-section code {
    background: rgba(0, 0, 0, 0.05); }

body.theme-personal .case-study-chart-container {
  background: #f8f8fa;
  border-color: #e8e8ed;
  color: #525252; }

body.theme-personal .date-range-picker {
  background: #f8f8fa;
  border-color: #e8e8ed; }
  body.theme-personal .date-range-picker label span {
    color: #525252; }
  body.theme-personal .date-range-picker input[type="date"] {
    color: #18181b;
    background: #ffffff;
    border-color: #d1d1d8; }
    body.theme-personal .date-range-picker input[type="date"]:focus {
      border-color: #059669;
      box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12); }

body.theme-personal .preset-buttons button {
  color: #525252;
  background: #ffffff;
  border-color: #d1d1d8; }
  body.theme-personal .preset-buttons button:hover {
    border-color: #059669;
    color: #059669; }
  body.theme-personal .preset-buttons button:focus-visible {
    outline-color: #059669; }

body.theme-personal .chart-loading {
  color: #525252; }

body.theme-personal .chart-spinner {
  border-color: rgba(0, 0, 0, 0.08);
  border-top-color: #059669; }

body.theme-personal .erd-table {
  border-color: #e8e8ed; }

body.theme-personal .erd-table-body {
  background: #ffffff;
  color: #525252; }

body.theme-personal .erd-connector {
  color: #71717a; }

.auth-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 2rem 1.5rem; }
  .auth-view h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em; }
  .auth-view > .form-error {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1.25rem; }
  .auth-view form {
    width: 100%;
    max-width: 400px; }
  .auth-view .form-group {
    margin-bottom: 1.25rem; }
    .auth-view .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 0.375rem; }
    .auth-view .form-group .required-indicator {
      opacity: 0.5;
      margin-left: 2px; }
    .auth-view .form-group .form-control {
      width: 100%;
      padding: 0.625rem 0.875rem;
      border-radius: 8px;
      font-size: 0.9375rem;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      transition: border-color 0.15s ease, box-shadow 0.15s ease; }
      .auth-view .form-group .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3); }
    .auth-view .form-group .form-error {
      font-size: 0.8125rem;
      margin-top: 0.375rem; }
    .auth-view .form-group .form-help-text {
      font-size: 0.8125rem;
      margin-top: 0.375rem;
      opacity: 0.6; }
  .auth-view .btn-primary {
    width: 100%;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.15s ease;
    margin-top: 0.5rem; }
    .auth-view .btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed; }
  .auth-view .auth-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem; }
    .auth-view .auth-links a {
      text-decoration: none;
      transition: opacity 0.15s ease; }
      .auth-view .auth-links a:hover {
        opacity: 0.8;
        text-decoration: underline; }

.theme-professional .auth-view h1,
.theme-dark .auth-view h1 {
  color: #e4e4e7; }

.theme-professional .auth-view > .form-error,
.theme-dark .auth-view > .form-error {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.25); }

.theme-professional .auth-view .form-group label,
.theme-dark .auth-view .form-group label {
  color: #a1a1aa; }

.theme-professional .auth-view .form-group .form-control,
.theme-dark .auth-view .form-group .form-control {
  background: #2a2d36;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e4e4e7; }
  .theme-professional .auth-view .form-group .form-control::placeholder,
  .theme-dark .auth-view .form-group .form-control::placeholder {
    color: #78788a; }
  .theme-professional .auth-view .form-group .form-control:focus,
  .theme-dark .auth-view .form-group .form-control:focus {
    border-color: #60a5fa; }

.theme-professional .auth-view .form-group .form-error,
.theme-dark .auth-view .form-group .form-error {
  color: #f87171; }

.theme-professional .auth-view .auth-links a,
.theme-dark .auth-view .auth-links a {
  color: #60a5fa; }

.theme-personal .auth-view h1,
.theme-light .auth-view h1 {
  color: #18181b; }

.theme-personal .auth-view > .form-error,
.theme-light .auth-view > .form-error {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2); }

.theme-personal .auth-view .form-group label,
.theme-light .auth-view .form-group label {
  color: #525252; }

.theme-personal .auth-view .form-group .form-control,
.theme-light .auth-view .form-group .form-control {
  background: #ffffff;
  border: 1px solid #d1d1d8;
  color: #18181b; }
  .theme-personal .auth-view .form-group .form-control::placeholder,
  .theme-light .auth-view .form-group .form-control::placeholder {
    color: #71717a; }
  .theme-personal .auth-view .form-group .form-control:focus,
  .theme-light .auth-view .form-group .form-control:focus {
    border-color: #059669; }

.theme-personal .auth-view .form-group .form-error,
.theme-light .auth-view .form-group .form-error {
  color: #dc2626; }

.theme-personal .auth-view .auth-links a,
.theme-light .auth-view .auth-links a {
  color: #059669; }

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  background-color: #12141a;
  color: #e4e4e7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  body.theme-personal {
    background-color: #f8f8fa;
    color: #18181b; }

a {
  color: inherit;
  text-decoration: none; }

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

.mobile-track-toggle {
  display: none; }
  @media (max-width: 768px) {
    .mobile-track-toggle {
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 1rem;
      background: #1c1f26;
      border-bottom: 4px solid #3f3f46; } }
.track-toggle-btn {
  flex: 1;
  max-width: 200px;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #2a2d36;
  color: #a1a1aa;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease-in-out; }
  .track-toggle-btn:hover {
    background: #12141a; }
  .track-toggle-btn:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px; }
  .track-toggle-btn.active {
    color: #e4e4e7; }

.track-toggle-professional.active {
  background: rgba(96, 165, 250, 0.2);
  border-color: #60a5fa;
  color: #60a5fa; }

.track-toggle-personal.active {
  background: rgba(52, 211, 153, 0.2);
  border-color: #34d399;
  color: #34d399; }

[x-cloak] {
  display: none !important; }

.track-professional .event-bubble:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.25); }

.track-personal .event-bubble:focus-visible {
  outline: 3px solid #059669;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.25); }

.position-btn:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.3); }

body.theme-personal .standalone-page,
body.theme-personal .page-content {
  color: #18181b; }
  body.theme-personal .standalone-page h1, body.theme-personal .standalone-page h2, body.theme-personal .standalone-page h3, body.theme-personal .standalone-page h4, body.theme-personal .standalone-page h5, body.theme-personal .standalone-page h6,
  body.theme-personal .page-content h1,
  body.theme-personal .page-content h2,
  body.theme-personal .page-content h3,
  body.theme-personal .page-content h4,
  body.theme-personal .page-content h5,
  body.theme-personal .page-content h6 {
    color: #18181b; }
  body.theme-personal .standalone-page a,
  body.theme-personal .page-content a {
    color: #059669; }
  body.theme-personal .standalone-page strong,
  body.theme-personal .page-content strong {
    color: #18181b; }

/*# sourceMappingURL=main.css.map */