:root {
  --color-midnight: #030817;
  --color-indigo: #081944;
  --color-royal: #001350;
  --color-electric: #3660e3;
  --color-gold: #aba046;
  --color-gold-muted: #ab9f4a;
  --color-lilac: #bec9f4;
  --color-fog: #f0f0f0;
  --color-cloud: #f7f7f7;
  --color-white: #ffffff;
  --color-gray: #f6f6f6;
  --color-blue-band: linear-gradient(130deg, #1e3b8b, #05103b);
  --font-heading: "Mochiy Pop One", "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-pill: 30px 0 30px 0;
  --radius-soft: 12px;
  --radius-hero: 32px;
  --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.25);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.18);
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
  --container-width: 1200px;
  --section-padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem;
  --gap-sm: 0.75rem;
  --gap: 1.5rem;
  --gap-lg: 2.5rem;
}

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

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #0f172a;
  background: var(--color-cloud);
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-indigo);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--color-gold);
  outline: none;
}

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

.container {
  width: min(100% - 2rem, var(--container-width));
  margin-inline: auto;
}

.section {
  padding: var(--section-padding);
}

.section--light {
  background: var(--color-white);
}

.section--gray {
  background: var(--color-cloud);
}

.legal {
  padding: var(--section-padding);
  background: var(--color-white);
}

.legal__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-body);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.legal h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal p {
  margin-bottom: 0.75rem;
}

.legal ul {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
}

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

.section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-midnight);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section__lead {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: #374151;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--color-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  background: var(--color-indigo);
  color: var(--color-white);
  box-shadow: var(--shadow-strong);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--color-gold);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--outline {
  background: transparent;
  color: var(--color-indigo);
  border: 2px solid var(--color-gold);
  box-shadow: none;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--color-white);
  background: var(--color-gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.top-bar {
  background: #fff;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  max-height: 140px;
  transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.25s ease,
    border-color 0.25s ease;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar__info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  flex-wrap: nowrap;
}

.top-bar__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-midnight);
}

.info-card svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.info-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-gold);
  display: grid;
  place-items: center;
}

.info-card__label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-midnight);
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1;
}

.info-card__value {
  margin: 0;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-midnight);
}

.site-header--compact .top-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.site-header--compact .nav-row {
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1200px) {
  .top-bar {
    max-height: 320px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--color-midnight);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: none;
}

.nav-row {
  background: var(--color-midnight);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  padding: 0.6rem 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-menu li {
  position: relative;
  padding: 0 1rem;
}

.nav-menu li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.nav-menu a {
  color: var(--color-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0.4rem 0;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--color-gold);
}

.nav-menu li.is-active a {
  color: var(--color-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 -4px 0 currentColor;
}

.top-bar__cta .btn {
  padding: 0.95rem 2.6rem;
  font-size: 1rem;
  border-radius: 0 32px 0 32px;
  box-shadow: 0 10px 25px rgba(8, 25, 68, 0.2);
}

.nav-spacer {
  display: none;
}

.hero {
  position: relative;
  color: var(--color-white);
  overflow: hidden;
  background: #000;
}

.hero__slider {
  position: relative;
  height: clamp(260px, 62vh, 520px);
}

.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(3, 8, 23, 0.7), rgba(3, 8, 23, 0.25));
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

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

.hero__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(3, 8, 23, 0.35);
  color: var(--color-white);
  cursor: pointer;
  z-index: 2;
}

.hero__control--prev {
  left: 1.25rem;
}

.hero__control--next {
  right: 1.25rem;
}

.hero__control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero__control--prev::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.hero__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.hero__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.hero__dot.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.hero {
  margin-bottom: clamp(0.1rem, 1vw, 0.4rem);
}

main > .section:first-of-type {
  padding-top: clamp(0.45rem, 1.5vw, 1rem);
}

.page-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 1.5rem;
  color: var(--color-white);
  background: linear-gradient(120deg, rgba(3, 8, 23, 0.75), rgba(3, 8, 23, 0.4));
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 25, 68, 0.8), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  margin: 0;
  color: var(--color-white);
}

.page-hero--center .container {
  text-align: center;
}

.page-hero--center h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-hero__crumbs {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero__crumbs a {
  color: inherit;
  text-decoration: none;
}

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

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-gold);
}

.feature-list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.feature-list--inline li {
  padding: 0.25rem 0.75rem 0.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
}

.feature-list--inline li::before {
  top: 50%;
  transform: translateY(-50%);
}

.highlights {
  background: var(--color-white);
  padding-top: clamp(1.25rem, 2.5vw, 2.25rem);
}

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

.card {
  background: var(--color-white);
  padding: 2rem 1.75rem;
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card--dark {
  background: #050505;
  color: var(--color-white);
  text-align: center;
  border-radius: 36px 0 36px 0;
}

.card-grid--compact {
  gap: var(--gap-sm);
}

.card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: var(--color-white);
}

.send-intro__content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.send-support__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.send-support__media {
  border-radius: 42px 0 42px 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.send-support__media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.contact-grid--reverse {
  direction: rtl;
}

.contact-grid--reverse > * {
  direction: ltr;
}

.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.contact-text .section__heading {
  margin-top: 0;
}

.contact-list {
  margin-top: auto;
}

.contact-form {
  background: var(--color-white);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.85rem;
}

.contact-form--dark {
  background: var(--color-midnight);
  color: var(--color-white);
}

.contact-form--dark label {
  color: var(--color-white);
}

.contact-form--dark input,
.contact-form--dark textarea {
  background: var(--color-white);
  color: #0f172a;
}

.contact-form--dark input::placeholder,
.contact-form--dark textarea::placeholder {
  color: #94a3b8;
}

.contact-form label {
  font-weight: 600;
  color: var(--color-midnight);
}

.contact-form--dark label {
  color: var(--color-white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-map--compact {
  padding-top: 1.25rem;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  margin-top: 2rem;
}

.process-grid article {
  background: var(--color-white);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.process-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-midnight);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.send-cta__panel {
  border-radius: 42px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.send-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.send-cta__actions .btn {
  min-width: 160px;
}

@media (max-width: 640px) {
  .send-cta__panel {
    flex-direction: column;
    text-align: center;
  }
}

.card__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
}

.card--dark .card__icon {
  color: var(--color-white);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-midnight);
}

.card--dark h3 {
  color: var(--color-white);
}

.partners {
  background: var(--color-white);
}

.partners--inline {
  margin-top: 2rem;
}

.partners__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.75rem);
  padding: 1rem 0;
}

.partners__row img {
  height: 48px;
  object-fit: contain;
  filter: grayscale(0.3);
}

.partners__row--governing {
  padding: 0;
}

.partners__row--governing img {
  width: min(90%, 900px);
  height: auto;
  filter: none;
  margin: 0 auto;
}

.stats {
  background: linear-gradient(120deg, #1f4ed8, #050f32);
  color: var(--color-white);
  text-align: center;
  padding-top: clamp(2rem, 3.5vw, 3rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}

.stats__heading {
  color: var(--color-white);
}

.stats .section__lead {
  color: rgba(255, 255, 255, 0.9);
}

.stats__list {
  list-style: none;
  margin: clamp(1rem, 2.5vw, 2rem) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: start;
  max-width: 1100px;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--color-white);
}

.stat-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-gold);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.stat-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(66%) sepia(28%) saturate(775%) hue-rotate(7deg) brightness(94%) contrast(89%);
}

.stat-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.stat-label {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .stat-item {
    flex-direction: column;
    text-align: center;
  }

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

.cta-panel {
  background: #d9d9dc;
  border-radius: 42px;
  padding: clamp(2.25rem, 4.5vw, 3rem);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  max-width: 960px;
  margin: 0 auto;
}

.cta-panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-midnight);
}

.cta-panel__quotes {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-panel__quotes blockquote {
  margin: 0;
  font-style: italic;
  color: #374151;
}

.cta-panel__cta {
  margin-top: 0.5rem;
}

.news {
  text-align: center;
}

.news__board {
  border-radius: var(--radius-pill);
  background: var(--color-fog);
  padding: 2rem 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

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

.links-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.links-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-midnight);
}

.links-list a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

.footer .links-list {
  gap: 0.5rem;
}

.footer .links-list a {
  color: rgba(255, 255, 255, 0.85);
}

.footer .links-list a::before {
  display: none;
}

.services {
  background: var(--color-midnight);
  color: var(--color-white);
}

.services h2 {
  color: var(--color-white);
}

.services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--gap-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.services__list li {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--color-gold);
}

.visit {
  position: relative;
  background: #bcc4f5;
  padding-top: clamp(3rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.visit::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg width='1600' height='120' viewBox='0 0 1600 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 67 C 273 183 822 -73 1600 67 L1600 00 L0 0 Z' fill='%23fff'/%3E%3C/svg%3E")
    repeat-x;
}

.footer {
  background: #081944;
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem 1.5rem;
  font-size: 0.95rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer__brand p {
  margin: 0 0 1rem;
}

.footer__logo {
  width: 140px;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.footer__title {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0;
}

.footer__accent {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 999px;
  margin: 0.6rem 0 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--color-white);
  transition: background 0.2s ease;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--color-gold);
  color: #081944;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

.footer-contact span {
  display: block;
  line-height: 1.4;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer__divider {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .top-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .top-bar__brand {
    width: 100%;
    justify-content: space-between;
  }

  .top-bar__info {
    flex: 1 1 100%;
    flex-wrap: wrap;
  }

  .top-bar__cta {
    width: 100%;
    justify-content: center;
  }

  .top-bar__cta .btn {
    width: 100%;
  }

  .top-bar__brand .nav-toggle {
    display: inline-flex;
    background: var(--color-midnight);
    border-color: var(--color-midnight);
    padding: 0.55rem 0.75rem;
  }

  .top-bar__brand .nav-toggle::before {
    background: var(--color-white);
    box-shadow: 0 4px 0 var(--color-white), 0 -4px 0 var(--color-white);
  }

  .nav-row {
    position: relative;
    padding: 0.4rem 0;
  }

  .nav-menu {
    position: absolute;
    inset: 100% 0 auto;
    background: rgba(3, 8, 23, 0.97);
    flex-direction: column;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-medium);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
  }

  .nav-menu.is-open {
    transform: scaleY(1);
  }

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

  .nav-bar {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-actions {
    width: auto;
    justify-content: flex-end;
  }

  .hero__slider {
    height: clamp(220px, 50vh, 420px);
  }
}

@media (max-width: 640px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .top-bar__cta .btn {
    display: none;
  }

  .top-bar__info {
    display: none;
  }

  .hero__slider {
    height: 220px;
  }

  .hero__control {
    width: 34px;
    height: 34px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero {
    padding: 3rem 1.25rem;
  }

  .btn,
  .btn--outline {
    width: 100%;
    justify-content: center;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.gallery-section {
  padding-top: 2rem;
}

.gallery-grid--large img {
  height: 260px;
}

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

.policy-card {
  background: var(--color-white);
  border-radius: 32px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-card h3 {
  margin: 0;
  font-family: var(--font-heading);
}

.policy-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.policy-card li a {
  font-weight: 600;
  color: var(--color-indigo);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.policy-card li a .icon-download {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
    margin-left: 0.5rem;
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .policy-card li a:hover {
    color: var(--color-midnight);
  }

.policy-card li a:hover .icon-download {
  opacity: 1;
  transform: translateY(1px);
}

.policy-note {
  margin: 0;
  color: #475467;
  font-size: 0.95rem;
}

.icon-download {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

.about-intro__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.75rem;
}

.curriculum-lists {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  align-items: flex-start;
}

.curriculum-lists__col {
  width: 100%;
}

@media (min-width: 900px) {
  .curriculum-lists {
    flex-direction: row;
  }

  .curriculum-lists__col {
    width: 50%;
  }
}

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

.about-card {
  background: #050505;
  color: var(--color-white);
  border-radius: 48px 0 48px 0;
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-soft);
}

.about-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  color: var(--color-midnight);
}

.about-card__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
}

.about-card p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
}

.about-card__note {
  font-weight: 600;
  margin-top: 1.5rem;
}

.about-split__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-split__media {
  border-radius: 42px 0 42px 0;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-split__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-split__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}

.about-split__content p {
  margin: 0 0 1rem;
  color: #374151;
}

.about-split__subheading {
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
  color: #0f172a;
}

.about-split--reverse .about-split__media {
  order: 2;
}

.about-split--reverse .about-split__content {
  order: 1;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.about-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #0f172a;
  font-weight: 500;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.9rem;
  border: 2px solid var(--color-gold);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.about-list strong {
  font-weight: 600;
  color: #0f172a;
}

.about-list--light li {
  color: rgba(255, 255, 255, 0.95);
}

.about-list--light li::before {
    border-color: var(--color-white);
  }
  
.about-list--light strong {
    color: var(--color-white);
  }

.about-list--light a {
    color: #ffffff;
    text-decoration: underline;
  }

.about-band {
  background: linear-gradient(120deg, #2749b2, #05123d);
  color: var(--color-white);
  padding: var(--section-padding);
  margin: 0;
}

.about-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-band__media img {
  width: 100%;
  border-radius: 48px;
  object-fit: cover;
  box-shadow: var(--shadow-medium);
}

.about-band__content h2 {
  color: var(--color-white);
  margin: 0 0 1rem;
}

.about-band__content p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
}

.badge--light {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .about-card {
    text-align: left;
  }

  .about-card__icon {
    margin-left: 0;
  }

  .about-split--reverse .about-split__media,
  .about-split--reverse .about-split__content {
    order: 0;
  }
}

/* ============================================ */
/* REFLECTION SHEET - Step-by-step wizard */
/* ============================================ */

.reflection {
  position: relative;
  padding: 2rem 0;
}

.reflection-progress {
  background: var(--color-white);
  border-radius: var(--radius-soft);
  padding: 1.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}

.reflection-progress__bar {
  height: 0.75rem;
  background: linear-gradient(90deg, var(--color-electric) 0%, var(--color-gold) 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
  width: 25%;
  margin-bottom: 0.75rem;
}

.reflection-progress__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-electric);
  text-align: center;
}

.reflection-steps {
  min-height: 400px;
}

.reflection-step {
  animation: fadeInUp 0.3s ease;
}

.reflection-step__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reflection-step__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  animation: bounceIn 0.5s ease;
}

.reflection-step__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-electric);
  margin: 0 0 0.5rem;
}

.reflection-step__subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

.reflection-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.reflection-card {
  background: var(--color-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.reflection-card:hover {
  border-color: var(--color-electric);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.reflection-card--selected {
  background: linear-gradient(135deg, #f0f4ff 0%, #e0eaff 100%);
  border-color: var(--color-electric);
  box-shadow: 0 0 0 3px rgba(54, 96, 227, 0.1);
}

.reflection-card__emoji {
  font-size: 3rem;
  display: block;
}

.reflection-card__text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1e293b;
}

.reflection-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
}

.reflection-nav .btn {
  flex: 1;
  max-width: 200px;
}

.reflection-complete {
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeInUp 0.4s ease;
}

.reflection-complete__icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-gold) 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease;
}

.reflection-complete__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-electric);
  margin: 0 0 1rem;
}

.reflection-complete__message {
  font-size: 1.15rem;
  color: #64748b;
  margin: 0 0 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reflection-complete__summary {
  background: var(--color-white);
  border-radius: var(--radius-soft);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.reflection-summary-section {
  margin-bottom: 2rem;
}

.reflection-summary-section:last-child {
  margin-bottom: 0;
}

.reflection-summary-section__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-electric);
  margin: 0 0 1rem;
}

.reflection-summary-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reflection-summary-section__list li {
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  color: #1e293b;
}

.reflection-summary-section__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-electric);
  font-weight: bold;
  font-size: 1.1rem;
}

.reflection-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.reflection-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================ */
/* SOCIAL STORY PLAYER - Card-based selection */
/* ============================================ */

.stories {
  position: relative;
  padding: 2rem 0;
}

.stories-menu__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-electric);
  margin: 0 0 2rem;
  text-align: center;
}

.stories-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.story-card {
  background: var(--color-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-card:hover {
  border-color: var(--color-electric);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.story-card__icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.story-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #1e293b;
  margin: 0 0 0.5rem;
}

.story-card__meta {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.stories-player {
  animation: fadeInUp 0.3s ease;
}

.stories-player__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.stories-progress {
  background: var(--color-white);
  border-radius: var(--radius-soft);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-soft);
  flex: 1;
  min-width: 200px;
}

.stories-progress__bar {
  height: 0.6rem;
  background: linear-gradient(90deg, var(--color-electric) 0%, var(--color-gold) 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
  width: 25%;
  margin-bottom: 0.5rem;
}

.stories-progress__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-electric);
}

.stories-content {
  background: var(--color-white);
  border-radius: var(--radius-soft);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-step {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  animation: fadeInUp 0.3s ease;
}

.stories-step__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.stories-step__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-electric);
  margin: 0 0 1.5rem;
}

.stories-step__text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #334155;
  margin: 0;
}

.stories-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stories-complete {
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeInUp 0.4s ease;
}

.stories-complete__icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-gold) 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease;
}

.stories-complete__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-electric);
  margin: 0 0 1rem;
}

.stories-complete__message {
  font-size: 1.15rem;
  color: #64748b;
  margin: 0 0 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stories-complete__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stories-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .reflection-cards {
    grid-template-columns: 1fr;
  }

  .reflection-nav {
    flex-direction: column;
  }

  .reflection-nav .btn {
    max-width: none;
  }

  .stories-cards {
    grid-template-columns: 1fr;
  }

  .stories-content {
    padding: 2rem 1.5rem;
  }

  .stories-step__title {
    font-size: 1.5rem;
  }

  .stories-step__text {
    font-size: 1.1rem;
  }

  .stories-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .stories-controls .btn {
    width: 100%;
  }
}

/* ============================================ */
/* EMOTION CHECK-IN */
/* ============================================ */

.emotion-check {
  padding: 2rem 0;
}

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

.emotion-card {
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 2.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.emotion-card:hover {
  border-color: var(--color-electric);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-medium);
}

.emotion-card__icon {
  font-size: 5rem;
  display: block;
  animation: bounceIn 0.5s ease;
}

.emotion-card__label {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
}

.emotion-check__panel {
  background: var(--color-white);
  border-radius: var(--radius-soft);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  animation: fadeInUp 0.4s ease;
}

.emotion-check__panel-label {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 0.5rem;
  text-align: center;
}

.emotion-check__panel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.emotion-check__panel-icon {
  font-size: 5rem;
  animation: scaleIn 0.5s ease;
}

.emotion-check__panel-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-electric);
  margin: 0;
}

.emotion-check__panel-text {
  font-size: 1.2rem;
  color: #475569;
  text-align: center;
  margin: 0 0 2.5rem;
}

.emotion-check__actions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emotion-action-item {
  background: linear-gradient(135deg, #f0f4ff 0%, #e0eaff 100%);
  border-left: 4px solid var(--color-electric);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-soft);
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1e293b;
  font-weight: 500;
  animation: fadeInUp 0.3s ease;
}

.emotion-check__more {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

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

  .emotion-card {
    padding: 2rem 1rem;
  }

  .emotion-card__icon {
    font-size: 4rem;
  }

  .emotion-check__panel {
    padding: 2rem 1.5rem;
  }

  .emotion-check__panel-icon {
    font-size: 4rem;
  }

  .emotion-check__panel-title {
    font-size: 2rem;
  }
}

/* ============================================ */
/* BREAK ACTIVITIES */
/* ============================================ */

.break-activities {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Activity Cards Grid */
.break-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.break-card {
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  position: relative;
}

.break-card:hover {
  border-color: var(--color-electric);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-medium);
}

.break-card:active {
  transform: translateY(-2px) scale(1);
}

.break-card__icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  animation: bounceIn 0.5s ease;
}

.break-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.break-card__duration {
  font-size: 0.9rem;
  color: var(--color-electric);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.break-card__type {
  font-size: 0.875rem;
  color: #64748b;
  padding: 0.25rem 0.75rem;
  background: #f1f5f9;
  border-radius: 12px;
  display: inline-block;
}

/* Activity Detail Panel */
.break-panel {
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.break-panel__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.break-panel__icon {
  font-size: 5rem;
  flex-shrink: 0;
  animation: bounceIn 0.5s ease;
}

.break-panel__info {
  flex: 1;
}

.break-panel__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.break-panel__duration {
  font-size: 1.125rem;
  color: var(--color-electric);
  font-weight: 600;
}

.break-panel__description {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.break-panel__steps-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.break-steps-list {
  list-style: none;
  counter-reset: step-counter;
  margin-bottom: 2rem;
}

.break-step {
  counter-increment: step-counter;
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 0.75rem;
  background: #f8fafc;
  border-radius: var(--radius-soft);
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
}

.break-step::before {
  content: counter(step-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--color-electric);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.break-panel__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Timer View */
.break-timer {
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.break-timer__icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.break-timer__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 2rem;
}

.break-timer__display {
  position: relative;
  margin-bottom: 3rem;
}

.break-timer__time {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-navy);
  font-variant-numeric: tabular-nums;
}

.break-timer__progress-ring {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.break-timer__progress-ring circle:last-child {
  transition: stroke-dashoffset 0.5s linear;
}

.break-timer__controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Completion View */
.break-complete {
  background: var(--color-white);
  border: 3px solid #10b981;
  border-radius: var(--radius-soft);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.break-complete__icon {
  font-size: 6rem;
  margin-bottom: 1rem;
  animation: bounceIn 0.6s ease;
}

.break-complete__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 1rem;
}

.break-complete__message {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.break-complete__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Particles Canvas */
.break-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .break-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .break-card {
    padding: 1.5rem 1rem;
  }

  .break-card__icon {
    font-size: 3rem;
  }

  .break-card__name {
    font-size: 1rem;
  }

  .break-panel {
    padding: 1.5rem;
  }

  .break-panel__header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .break-panel__icon {
    font-size: 4rem;
  }

  .break-panel__title {
    font-size: 1.5rem;
  }

  .break-timer {
    padding: 2rem 1.5rem;
  }

  .break-timer__icon {
    font-size: 4rem;
  }

  .break-timer__title {
    font-size: 1.5rem;
  }

  .break-timer__time {
    font-size: 2rem;
  }

  .break-timer__progress-ring svg {
    width: 160px;
    height: 160px;
  }

  .break-timer__progress-ring circle {
    r: 72;
    cx: 80;
    cy: 80;
  }

  .break-complete {
    padding: 2rem 1.5rem;
  }

  .break-complete__icon {
    font-size: 4.5rem;
  }

  .break-complete__title {
    font-size: 1.75rem;
  }

  .break-complete__message {
    font-size: 1rem;
  }

  .break-panel__actions,
  .break-timer__controls,
  .break-complete__actions {
    flex-direction: column;
  }

  .break-panel__actions .btn,
  .break-timer__controls .btn,
  .break-complete__actions .btn {
    width: 100%;
  }
}

/* ============================================ */
/* BREATHING CIRCLE */
/* ============================================ */

.breathing-circle {
  max-width: 600px;
  margin: 0 auto;
}

.breathing-canvas {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 50%;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.breathing-canvas__circle {
  display: block;
  margin: 0 auto;
}

.breathing-canvas__instruction {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  transition: color 0.3s ease;
  pointer-events: none;
}

.breathing-canvas__instruction--in {
  color: #10b981;
}

.breathing-canvas__instruction--hold {
  color: #f59e0b;
}

.breathing-canvas__instruction--out {
  color: #3b82f6;
}

.breathing-canvas__count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30%);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-navy);
  text-align: center;
  pointer-events: none;
}

.breathing-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

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

.breathing-stat__label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.breathing-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.breathing-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.breathing-settings {
  background: var(--color-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 2rem;
  margin-bottom: 2rem;
}

.breathing-settings__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  text-align: center;
}

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

.breathing-pattern {
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.breathing-pattern:hover {
  border-color: var(--color-electric);
  transform: translateY(-2px);
}

.breathing-pattern.active {
  border-color: var(--color-electric);
  background: #f0f9ff;
}

.breathing-pattern__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.breathing-pattern__timing {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-electric);
  margin-bottom: 0.5rem;
}

.breathing-pattern__desc {
  font-size: 0.875rem;
  color: #64748b;
}

.breathing-complete {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: var(--radius-soft);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
  animation: fadeInUp 0.4s ease;
}

.breathing-complete__icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.breathing-complete__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.breathing-complete__message {
  font-size: 1.125rem;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .breathing-canvas {
    width: 300px;
    height: 300px;
  }

  .breathing-canvas__circle {
    width: 300px !important;
    height: 300px !important;
  }

  .breathing-canvas__instruction {
    font-size: 1.25rem;
  }

  .breathing-canvas__count {
    font-size: 2.5rem;
  }

  .breathing-pattern-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* PATTERN MEMORY */
/* ============================================ */

.pattern-memory {
  max-width: 600px;
  margin: 0 auto;
}

.pattern-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.pattern-tile {
  position: relative;
  aspect-ratio: 1;
  border: none;
  border-radius: var(--radius-soft);
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pattern-tile:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.pattern-tile:not(:disabled):hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.pattern-tile:active:not(:disabled) {
  transform: scale(0.95);
}

.pattern-tile--green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.pattern-tile--red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.pattern-tile--yellow {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.pattern-tile--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.pattern-tile__glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.pattern-tile.active .pattern-tile__glow {
  opacity: 1;
  animation: pulse-glow 0.3s ease;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.pattern-status {
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.pattern-status__message {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.pattern-status__level {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

.pattern-status__level span {
  color: var(--color-electric);
  font-weight: 800;
}

.pattern-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

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

.pattern-stat__label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.pattern-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.pattern-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.pattern-settings {
  background: var(--color-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 2rem;
  margin-bottom: 2rem;
}

.pattern-settings__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  text-align: center;
}

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

.pattern-difficulty {
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pattern-difficulty:hover {
  border-color: var(--color-electric);
  transform: translateY(-2px);
}

.pattern-difficulty.active {
  border-color: var(--color-electric);
  background: #f0f9ff;
}

.pattern-difficulty__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.pattern-difficulty__desc {
  font-size: 0.875rem;
  color: #64748b;
}

.pattern-success {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: var(--radius-soft);
  padding: 2rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-large);
  z-index: 1000;
  animation: scaleIn 0.3s ease;
}

.pattern-success__icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  animation: bounceIn 0.5s ease;
}

.pattern-success__text {
  font-size: 1.5rem;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 768px) {
  .pattern-board {
    max-width: 320px;
    gap: 0.75rem;
  }

  .pattern-difficulty-cards {
    grid-template-columns: 1fr;
  }

  .pattern-controls {
    flex-direction: column;
  }

  .pattern-controls .btn {
    width: 100%;
  }
}

/* ============================================ */
/* MATCHING PAIRS */
/* ============================================ */

.matching-pairs {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.matching-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
}

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

.matching-stat__label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.matching-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.matching-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  perspective: 1000px;
}

.matching-card {
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.matching-card:hover:not(.flipped):not(.matched) {
  transform: scale(1.05);
}

.matching-card:active:not(.flipped):not(.matched) {
  transform: scale(0.95);
}

.matching-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.matching-card.flipped .matching-card__inner {
  transform: rotateY(180deg);
}

.matching-card__front,
.matching-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-soft);
  font-size: 3rem;
  font-weight: 800;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.matching-card__front {
  background: linear-gradient(135deg, var(--color-electric) 0%, #7c3aed 100%);
  color: white;
}

.matching-card__back {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  transform: rotateY(180deg);
}

.matching-card.matched {
  animation: matchPulse 0.5s ease;
  pointer-events: none;
}

.matching-card.matched .matching-card__inner {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

@keyframes matchPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.matching-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.matching-best {
  text-align: center;
  padding: 1rem;
  background: #f0f9ff;
  border: 2px solid var(--color-electric);
  border-radius: var(--radius-soft);
  margin-bottom: 2rem;
}

.matching-best__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.matching-best__stats {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-electric);
}

.matching-complete {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: var(--radius-soft);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow-large);
}

.matching-complete__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounceIn 0.6s ease;
}

.matching-complete__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.matching-complete__message {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.matching-complete__new-best {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.5rem;
  animation: pulse 1s ease infinite;
}

.matching-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}

/* Responsive */
@media (max-width: 768px) {
  .matching-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .matching-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .matching-stat__value {
    font-size: 1.5rem;
  }

  .matching-card__front,
  .matching-card__back {
    font-size: 2rem;
  }

  .matching-controls {
    flex-direction: column;
  }

  .matching-controls .btn {
    width: 100%;
  }

  .matching-complete {
    padding: 2rem 1.5rem;
  }

  .matching-complete__icon {
    font-size: 3rem;
  }

  .matching-complete__title {
    font-size: 1.5rem;
  }

  .matching-complete__message {
    font-size: 1rem;
  }
}

/* ============================================ */
/* BRICK BREAKER */
/* ============================================ */

.breakout {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.breakout-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-soft);
}

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

.breakout-stat__label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.breakout-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.breakout-canvas-container {
  position: relative;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, #1e3a5f 0%, #0f172a 100%);
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.breakout-canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: none;
}

.breakout-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  color: white;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.breakout-overlay__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.breakout-overlay__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.breakout-overlay__text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.breakout-overlay__score {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
}

.breakout-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breakout-legend {
  background: var(--color-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-soft);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.breakout-legend__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  text-align: center;
}

.breakout-legend__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.breakout-legend__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.breakout-legend__item:hover {
  background: #f8fafc;
}

.breakout-legend__color {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breakout-legend__color--green {
  background: #10b981;
}

.breakout-legend__color--blue {
  background: #3b82f6;
}

.breakout-legend__color--yellow {
  background: #f59e0b;
}

.breakout-legend__color--red {
  background: #ef4444;
}

.breakout-legend__color--purple {
  background: #8b5cf6;
}

.breakout-legend__color--orange {
  background: #f97316;
}

.breakout-legend__color--gray {
  background: #6b7280;
}

.breakout-legend__info {
  flex: 1;
}

.breakout-legend__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.1rem;
}

.breakout-legend__effect {
  font-size: 0.8rem;
  color: #64748b;
}

.breakout-best {
  text-align: center;
  padding: 1rem;
  background: #f0f9ff;
  border: 2px solid var(--color-electric);
  border-radius: var(--radius-soft);
  margin-bottom: 2rem;
}

.breakout-best__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.breakout-best__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-electric);
}

.breakout-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .breakout-stats {
    gap: 1rem;
    padding: 1rem;
  }

  .breakout-stat__value {
    font-size: 1.5rem;
  }

  .breakout-legend__grid {
    grid-template-columns: 1fr;
  }

  .breakout-overlay__icon {
    font-size: 3rem;
  }

  .breakout-overlay__title {
    font-size: 1.5rem;
  }

  .breakout-overlay__text {
    font-size: 1rem;
  }
}

/* ============================================ */
/* PRINT STYLES */
/* ============================================ */

/* Print-only header with Name and Date fields */
.reflection-print-header {
  display: none;
}

@media print {
  @page {
    size: portrait;
    margin: 1.5cm;
  }

  /* Show print-only Name/Date fields */
  .reflection-print-header {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 2px solid #e2e8f0;
  }

  .reflection-print-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
  }

  .reflection-print-field label {
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
  }

  .reflection-print-line {
    flex: 1;
    border-bottom: 1px solid #64748b;
    height: 1.5rem;
  }

  /* Hide screen-only elements */
  .tools-kicker,
  .tools-lead,
  .reflection-progress,
  .reflection-nav,
  .reflection-actions,
  .reflection-complete__icon,
  .reflection-complete__message,
  .tools-safeguard-note,
  .reflection-particles,
  header,
  footer,
  nav {
    display: none !important;
  }

  /* Adjust page layout for print */
  body {
    background: white !important;
  }

  .tools-shell {
    max-width: 100%;
    padding: 0;
  }

  .tools-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
  }

  /* Compact completion summary for print */
  .reflection-complete {
    padding: 0;
  }

  .reflection-complete__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #000;
  }

  .reflection-complete__summary {
    box-shadow: none;
    border: 1px solid #e2e8f0;
    page-break-inside: avoid;
  }

  .reflection-summary-section {
    margin-bottom: 1rem;
    page-break-inside: avoid;
  }

  .reflection-summary-section__title {
    font-size: 1rem;
    color: #000;
    margin-bottom: 0.5rem;
  }

  .reflection-summary-section__list li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    font-size: 0.9rem;
    color: #000;
  }

  /* Remove colors/shadows for better print */
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}
