/* ============================================================
   Brightloop — styles.css
   Palette: white #FFFFFF · navy #0A2540 · cobalt #2456F0
            coral #FF7A59 · amber #FFC94D
   Type: Sora (display) · Public Sans (body)
   ============================================================ */

:root {
  --white: #FFFFFF;
  --navy: #0A2540;
  --cobalt: #2456F0;
  --coral: #FF7A59;
  --amber: #FFC94D;

  /* Deep coral. --coral is a 2.57:1 fill colour: superb behind white cards,
     unreadable AS type on one (14 measured AA failures). This is the shade used
     wherever the coral has to carry text — and, for the one avatar that puts
     white type ON coral, as that avatar's fill. Every gradient, every glow and
     every other coral surface keeps --coral exactly. 4.93:1 on white,
     4.64:1 on --tint, 4.93:1 under white type. */
  --coral-ink: #C4462B;
  /* Same idea in the amber family, for the one track label that is amber type
     on white. 4.84:1 / 4.56:1. Replaces a bare #B9860A literal. */
  --amber-ink: #976900;

  /* Derived tints (all from the five brand colors) */
  /* 0.60 composited to 4.28:1 on white and 4.20:1 on --tint — just under AA on
     roughly 138 nodes, this being the muted-text colour for the whole page.
     0.63 clears both (4.70:1 / 4.58:1) at a colour difference of dE2000 2.2,
     which is under the threshold where a side-by-side comparison shows it.
     Every consumer is a `color:`, so no surface moves. */
  --navy-60: rgba(10, 37, 64, 0.63);
  --navy-40: rgba(10, 37, 64, 0.4);
  --cobalt-08: rgba(36, 86, 240, 0.08);
  --cobalt-12: rgba(36, 86, 240, 0.12);
  --tint: #F6F8FD;
  --line: #E3E9F4;

  --font-display: "Sora", sans-serif;
  --font-body: "Public Sans", sans-serif;

  --radius: 8px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 1px 2px rgba(10, 37, 64, 0.06), 0 10px 28px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 2px 4px rgba(10, 37, 64, 0.08), 0 14px 32px rgba(10, 37, 64, 0.14), 0 32px 64px -24px rgba(10, 37, 64, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { display: block; max-width: 100%; }
img { max-width: 100%; height: auto; }
address { font-style: normal; }

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

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 18px;
  overflow: visible;
  clip: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--cobalt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  outline: 3px solid var(--cobalt);
  outline-offset: 2px;
  z-index: 100;
}

/* Programmatic target for the skip link — the link's own ring plus the
   viewport jump already signal the move, so don't outline the whole page */
main[tabindex="-1"]:focus,
main[tabindex="-1"]:focus-visible { outline: none; }

/* Same reasoning, same tabindex="-1": script.js now parks focus on whichever
   section an in-page link points at, so the keyboard follows the viewport.
   These targets are whole sections — ringing one would outline half the page,
   and the link that was just activated already showed the move. */
section[tabindex="-1"]:focus,
section[tabindex="-1"]:focus-visible { outline: none; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}

.container--narrow { max-width: 820px; }

.section { padding-block: 72px; }
.section--tint { background: var(--tint); }

.section__head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section__title {
  font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section__sub {
  color: var(--navy-60);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
  background: var(--cobalt-08);
  border: 1px solid var(--cobalt-12);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  will-change: transform;
}

/* Default focus ring: cobalt (5.7:1 on white and on the #F6F8FD tint) */
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 2px;
}

/* Amber only where the surface underneath is a dark gradient or navy.
   A scrolled header is white, and an open drawer paints white over the
   whole header row — both keep the cobalt default. */
.hero :focus-visible,
.cta :focus-visible,
.footer :focus-visible,
.site-header:not(.is-scrolled):not(.nav-open) :focus-visible {
  outline-color: var(--amber);
}

.btn--primary {
  background: var(--cobalt);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(36, 86, 240, 0.30);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 86, 240, 0.38);
  background: #1c46cf;
}

.btn--outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}
.btn--outline:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--ghost { color: var(--navy); padding-inline: 16px; }
.btn--ghost:hover { color: var(--cobalt); }

.btn--light {
  background: var(--white);
  color: var(--cobalt);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.22);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.28);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.30);
}
.btn--navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 37, 64, 0.38);
}

.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: transparent;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(10, 37, 64, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__mark { border-radius: 10px; }

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s var(--ease);
}

.site-header.is-scrolled .nav__wordmark { color: var(--navy); }
.nav__wordmark--footer { color: var(--white); }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius);
  z-index: 70;
}

.nav__toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-header.is-scrolled .nav__toggle-bar,
.site-header.nav-open .nav__toggle-bar { background: var(--navy); }

/* Keep the brand above the drawer panel and legible on its white ground */
.site-header.nav-open .nav__brand { position: relative; z-index: 70; }
.site-header.nav-open .nav__wordmark { color: var(--navy); }

.nav-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 65;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: calc(var(--header-h) + 16px) 24px 28px;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--line);
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s;
}

.nav-open .nav__menu {
  transform: translateY(0);
  visibility: visible;
}

.nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.nav__link:hover {
  background: var(--cobalt-08);
  color: var(--cobalt);
}

.nav__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-open .nav__toggle { position: relative; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 96px;
  color: var(--white);
}

.hero__band {
  position: absolute;
  top: -340px;
  left: 0;
  right: 0;
  bottom: 60px;
  background:
    radial-gradient(680px 420px at 88% 82%, rgba(255, 201, 77, 0.55), transparent 62%),
    radial-gradient(720px 460px at 72% 30%, rgba(255, 122, 89, 0.55), transparent 64%),
    linear-gradient(118deg, var(--cobalt) 0%, #3a55ee 45%, var(--coral) 82%, var(--amber) 118%);
  transform: skewY(-6deg);
  transform-origin: top left;
  z-index: -2;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

.hero__blob--one {
  width: 320px;
  height: 320px;
  top: 6%;
  left: -140px;
  background: radial-gradient(circle at 40% 40%, var(--amber), transparent 70%);
}

.hero__blob--two {
  width: 380px;
  height: 380px;
  top: 30%;
  right: -160px;
  background: radial-gradient(circle at 60% 40%, var(--coral), transparent 70%);
}

.hero__inner {
  display: grid;
  gap: 56px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  margin-bottom: 22px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(255, 201, 77, 0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 201, 77, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(255, 201, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 201, 77, 0); }
}

.hero__title {
  font-size: clamp(2.2rem, 1.5rem + 3.8vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 13ch;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  margin-bottom: 30px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero__proof {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Floating cards */
.hero__visual {
  position: relative;
  min-height: 460px;
}

.float-card {
  position: absolute;
  will-change: transform;
}

.float-card__drift {
  animation: drift 7s ease-in-out infinite;
}

.float-card--course {
  top: 0;
  left: 2%;
  width: min(310px, 76%);
  z-index: 3;
}

.float-card--ring {
  top: 200px;
  right: 0;
  width: min(300px, 72%);
  z-index: 2;
}
.float-card--ring .float-card__drift { animation-delay: -2.4s; animation-duration: 8s; }

.float-card--cert {
  top: 330px;
  left: 6%;
  width: min(280px, 70%);
  z-index: 1;
}
.float-card--cert .float-card__drift { animation-delay: -4.6s; animation-duration: 9s; }

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Mock: course card */
.mock-course {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--navy);
}

.mock-course__cover {
  position: relative;
  height: 88px;
  background:
    radial-gradient(140px 90px at 82% 10%, rgba(255, 201, 77, 0.7), transparent 70%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 14px),
    linear-gradient(120deg, var(--cobalt), var(--coral));
}

.mock-course__badge {
  position: absolute;
  top: 10px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--amber);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.mock-course__body { padding: 16px; }

.mock-course__track {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 4px;
}

.mock-course__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.mock-course__bar {
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--tint);
  overflow: hidden;
  margin-bottom: 14px;
}

.mock-course__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cobalt), var(--coral));
  transition: width 1.4s var(--ease) 0.3s;
}

.mock-course__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mock-avatars { display: flex; align-items: center; }

.mock-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -8px;
}
.mock-avatar:first-child { margin-left: 0; }
.mock-avatar--a { background: var(--cobalt); }
.mock-avatar--b { background: var(--coral-ink); } /* white initials on coral was 2.57:1 */
.mock-avatar--c { background: var(--navy); }
.mock-avatar--more { background: var(--tint); color: var(--navy-60); }

.mock-course__live {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--coral-ink);
}

/* Mock: progress ring card */
.mock-ring {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  color: var(--navy);
}

.mock-ring__dial {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
}

.mock-ring__pct {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cobalt);
}

.mock-ring__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.mock-ring__note {
  font-size: 0.8rem;
  color: var(--navy-60);
}

/* Mock: certificate card */
.mock-cert {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 20px 18px;
  color: var(--navy);
  border-top: 4px solid var(--amber);
}

.mock-cert__seal {
  position: absolute;
  top: 14px;
  right: 16px;
}

.mock-cert__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-60);
  margin-bottom: 8px;
}

.mock-cert__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 3px;
}

.mock-cert__track {
  font-size: 0.8rem;
  color: var(--navy-60);
}

/* ---------- SVG rings ---------- */
.ring__track { stroke: var(--tint); }
.ring__value {
  stroke: var(--cobalt);
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.6s var(--ease) 0.2s;
}

.ring__track--light { stroke: rgba(255, 255, 255, 0.28); }
.ring__value--light { stroke: var(--white); }

/* Dark ring for the amber/coral covers — navy on amber is 11.6:1 */
.ring__track--dark { stroke: rgba(10, 37, 64, 0.22); }
.ring__value--dark { stroke: var(--navy); }

.ring__text {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  fill: var(--white);
}

.ring__text--dark { fill: var(--navy); }

/* ---------- Stats bar ---------- */
.stats {
  position: relative;
  z-index: 4;
  margin-top: -46px;
  padding-bottom: 8px;
}

.stats__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 30px 26px;
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stats__accent { color: var(--cobalt); }

.stats__label {
  color: var(--navy-60);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ---------- How it works ---------- */
.how__grid {
  display: grid;
  gap: 22px;
  counter-reset: step;
}

.how__step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.how__step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--cobalt-12);
}

.how__art {
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.how__art svg {
  transition: transform 0.4s var(--ease);
}

.how__step:hover .how__art svg { transform: translateY(-4px) scale(1.04); }

.how__num {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-ink);
  margin-bottom: 8px;
}

.how__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how__text {
  color: var(--navy-60);
  font-size: 0.96rem;
}

/* ---------- Course catalog ---------- */
.catalog__grid {
  display: grid;
  gap: 24px;
}

.course {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.course:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.course__cover {
  position: relative;
  height: 148px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
}

/* CSS-generated cover art — gradient + pattern per course */
.course__cover--dots {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.30) 2px, transparent 2.6px),
    linear-gradient(125deg, var(--cobalt), var(--coral));
  background-size: 22px 22px, cover;
}

.course__cover--grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px),
    linear-gradient(125deg, var(--navy), var(--cobalt));
  background-size: 26px 26px, 26px 26px, cover;
}

.course__cover--lines {
  background-image:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.20) 0 3px, transparent 3px 18px),
    linear-gradient(125deg, var(--coral), var(--amber));
}

.course__cover--chevron {
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(45deg, rgba(10, 37, 64, 0.12) 0 12px, transparent 12px 24px),
    linear-gradient(125deg, var(--cobalt) 20%, var(--amber) 130%);
}

.course__cover--rings {
  background-image:
    radial-gradient(circle at 82% 24%, transparent 34px, rgba(255, 255, 255, 0.22) 34px 40px, transparent 40px),
    radial-gradient(circle at 14% 88%, transparent 46px, rgba(255, 255, 255, 0.18) 46px 54px, transparent 54px),
    linear-gradient(125deg, var(--amber) -20%, var(--coral) 70%);
}

.course__cover--waves {
  background-image:
    repeating-radial-gradient(circle at 50% 130%, transparent 0 26px, rgba(255, 255, 255, 0.14) 26px 30px),
    linear-gradient(125deg, #10315c, var(--cobalt) 90%);
}

.course__level {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
  box-shadow: var(--shadow-sm);
}

.course__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
}

.course__track {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.course__track--data { color: var(--cobalt); }
.course__track--design { color: var(--coral-ink); }
.course__track--eng { color: var(--amber-ink); }

.course__title {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.course__desc {
  color: var(--navy-60);
  font-size: 0.93rem;
  margin-bottom: 14px;
}

.course__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--navy-60);
  margin-bottom: 18px;
}

.course__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.course__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.course__per {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-60);
}

.course__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cobalt);
  transition: transform 0.25s var(--ease);
}

.course__link:hover { transform: translateX(3px); }

/* ---------- Curriculum tabs ---------- */
.tabs__list {
  display: flex;
  gap: 6px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 32px;
}

.tabs__tab {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-60);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tabs__tab:hover { color: var(--navy); }

.tabs__tab.is-active {
  background: var(--cobalt);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(36, 86, 240, 0.32);
}

.tabs__panel { display: none; }

.tabs__panel.is-active {
  display: block;
  animation: panel-in 0.45s var(--ease);
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.tabs__phases {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.phase {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 22px 24px;
  overflow: hidden;
}

.phase::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cobalt), var(--coral));
}

.phase__weeks {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 6px;
}

.phase__title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.phase__list {
  display: grid;
  gap: 8px;
  color: var(--navy-60);
  font-size: 0.92rem;
}

.phase__list li {
  position: relative;
  padding-left: 22px;
}

.phase__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 2.5px, transparent 2.5px),
    linear-gradient(135deg, var(--cobalt), var(--coral));
}

.skills {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.skills__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.skill {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 14px;
  margin-bottom: 14px;
}
.skill:last-child { margin-bottom: 0; }

.skill__name {
  font-size: 0.88rem;
  font-weight: 600;
}

.skill__pct {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cobalt);
}

.skill__bar {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.skill__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cobalt), var(--coral) 85%);
  transition: width 1.2s var(--ease) 0.15s;
}

/* ---------- Mentors ---------- */
.mentors__grid {
  display: grid;
  gap: 22px;
}

.mentor {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.mentor:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mentor__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease);
}

.mentor:hover .mentor__avatar { transform: scale(1.08) rotate(-3deg); }

.mentor__avatar--a { background: linear-gradient(135deg, var(--cobalt), var(--coral)); }
.mentor__avatar--b { background: linear-gradient(135deg, var(--navy), var(--cobalt)); }
.mentor__avatar--c { background: linear-gradient(135deg, var(--coral), var(--amber)); color: var(--navy); }
.mentor__avatar--d { background: linear-gradient(135deg, var(--amber), var(--cobalt)); }

.mentor__name { font-size: 1.12rem; font-weight: 700; margin-bottom: 4px; }

.mentor__role {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cobalt);
  margin-bottom: 6px;
}

.mentor__cred {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-60);
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.mentor__bio {
  font-size: 0.9rem;
  color: var(--navy-60);
}

/* ---------- Stories / testimonials ---------- */
.stories__grid {
  display: grid;
  gap: 22px;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.story:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.story__quote p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
}

.story__who {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.story__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.story__avatar--a { background: linear-gradient(135deg, var(--cobalt), var(--coral)); }
.story__avatar--b { background: linear-gradient(135deg, var(--navy), var(--cobalt)); }
.story__avatar--c { background: linear-gradient(135deg, var(--coral), var(--amber)); color: var(--navy); }

.story__meta { flex: 1; min-width: 150px; }

.story__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
}

.story__path {
  display: block;
  font-size: 0.8rem;
  color: var(--navy-60);
}

.story__lift {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--amber);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  white-space: nowrap;
}

/* ---------- Pricing ---------- */
.pricing__grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.plan--popular {
  border: 2px solid var(--cobalt);
  box-shadow: var(--shadow-lg);
}

.plan__flag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(100deg, var(--cobalt), var(--coral));
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  box-shadow: 0 6px 16px rgba(36, 86, 240, 0.35);
  white-space: nowrap;
}

.plan__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan__price { margin-bottom: 10px; }

.plan__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.7rem + 1vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan__per {
  font-size: 0.86rem;
  color: var(--navy-60);
  margin-left: 6px;
}

.plan__blurb {
  color: var(--navy-60);
  font-size: 0.94rem;
  margin-bottom: 22px;
}

.plan__list {
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.plan__list li {
  position: relative;
  padding-left: 28px;
}

.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 0 42%, var(--white) 42% 52%, transparent 52%) no-repeat,
    var(--cobalt);
}

.plan__list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.42em;
  width: 8px;
  height: 4.5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.plan .btn { margin-top: auto; }

.pricing__note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--navy-60);
}

/* ---------- FAQ ---------- */
.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq__item.is-open {
  border-color: var(--cobalt-12);
  box-shadow: var(--shadow-md);
}

.faq__q { font-size: 1rem; }

.faq__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 22px;
  transition: color 0.25s var(--ease);
}

.faq__btn:hover { color: var(--cobalt); }

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cobalt-08);
  transition: background-color 0.3s var(--ease), transform 0.4s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--cobalt);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), background-color 0.3s var(--ease);
}

.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item.is-open .faq__icon {
  background: var(--cobalt);
  transform: rotate(180deg);
}

.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: var(--white); }

.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

/* The 0fr grid row collapses the answer to nothing visually, but it leaves it
   `visibility: visible` — so all six answers stayed in the accessibility tree
   and a screen reader read every one of them while their buttons said
   aria-expanded="false". visibility:hidden takes the collapsed text out of the
   tree (and out of the tab order, should an answer ever gain a link), delayed
   by the length of the row transition so the closing animation still plays out
   in full. Same technique the root-and-ritual FAQ already uses. */
.faq__a-inner {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s linear 0.45s;
}

.faq__item.is-open .faq__a-inner {
  visibility: visible;
  transition-delay: 0s;
}

.faq__a-inner p {
  padding: 0 22px 22px;
  color: var(--navy-60);
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 104px 0 120px;
  margin-top: 40px;
  color: var(--white);
  text-align: center;
}

.cta__band {
  position: absolute;
  inset: 40px -40px -220px;
  background:
    radial-gradient(560px 340px at 12% 8%, rgba(255, 201, 77, 0.5), transparent 62%),
    radial-gradient(640px 380px at 88% 30%, rgba(255, 122, 89, 0.55), transparent 64%),
    linear-gradient(118deg, var(--cobalt) 0%, #3a55ee 48%, var(--coral) 88%, var(--amber) 125%);
  transform: skewY(-6deg);
  transform-origin: top left;
  z-index: -1;
}

.cta__inner {
  max-width: 640px;
}

.cta__title {
  font-size: clamp(1.8rem, 1.3rem + 2.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-wrap: balance;
}

.cta__sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  margin-bottom: 30px;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 16px;
}

.cta__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 15px 22px;
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.2);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.cta__input::placeholder { color: var(--navy-40); }

.cta__input:focus {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.28);
}

.cta__input.is-error { border-color: var(--coral); }

.cta__success[hidden] { display: none; }

.cta__success {
  display: inline-block;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 16px;
  animation: panel-in 0.5s var(--ease);
}

.cta__fine {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__tag {
  margin: 16px 0 20px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 34ch;
}

.footer__address {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.footer__address a { color: rgba(255, 255, 255, 0.85); }
.footer__address a:hover { color: var(--amber); }

.footer__hours {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__head {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer__links {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a { color: rgba(255, 255, 255, 0.72); }
.footer__legal a:hover { color: var(--white); }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease) var(--d, 0s), transform 0.7s var(--ease) var(--d, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Breakpoint: 768px
   ============================================================ */
@media (min-width: 768px) {
  .container { padding-inline: 32px; }
  .section { padding-block: 96px; }

  .stats__card {
    grid-template-columns: repeat(4, 1fr);
    padding: 38px 34px;
    text-align: center;
  }

  .hero { padding-top: calc(var(--header-h) + 72px); }

  .how__grid,
  .catalog__grid,
  .stories__grid,
  .tabs__phases { grid-template-columns: repeat(2, 1fr); }

  .mentors__grid { grid-template-columns: repeat(2, 1fr); }

  .pricing__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .plan { padding: 34px 26px; }

  .cta__form { flex-direction: row; }
  .cta__form .btn { flex-shrink: 0; }

  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   Tablet range — hero stays single-column, so keep the floating
   cards clustered instead of pinned to opposite edges.
   ============================================================ */
@media (min-width: 768px) and (max-width: 1099px) {
  .hero__visual {
    max-width: 560px;
    margin-inline: auto;
  }
}

/* ============================================================
   Breakpoint: 1100px
   ============================================================ */
@media (min-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 88px);
    padding-bottom: 140px;
  }

  .hero__band { bottom: 90px; }

  .hero__visual { min-height: 540px; }

  .float-card--course { top: 10px; left: 6%; }
  .float-card--ring { top: 230px; right: -2%; }
  .float-card--cert { top: 370px; left: 12%; }

  .how__grid,
  .catalog__grid,
  .stories__grid,
  .tabs__phases { grid-template-columns: repeat(3, 1fr); }

  .mentors__grid { grid-template-columns: repeat(4, 1fr); }

  .plan--popular { transform: scale(1.03); }
  .plan--popular:hover { transform: scale(1.03) translateY(-6px); }

  /* Desktop nav: inline menu, no drawer */
  .nav__toggle { display: none; }

  .nav__menu {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    max-height: none;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border: 0;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .nav__links {
    flex-direction: row;
    gap: 2px;
  }

  .nav__link {
    font-size: 0.92rem;
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.92);
  }

  .nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
  }

  .site-header.is-scrolled .nav__link { color: var(--navy); }
  .site-header.is-scrolled .nav__link:hover {
    color: var(--cobalt);
    background: var(--cobalt-08);
  }

  .nav__actions { margin-left: 14px; }

  .btn--ghost { color: rgba(255, 255, 255, 0.92); }
  .btn--ghost:hover { color: var(--white); }
  .site-header.is-scrolled .btn--ghost { color: var(--navy); }
  .site-header.is-scrolled .btn--ghost:hover { color: var(--cobalt); }
}

/* ============================================================
   Reduced motion — disable ALL animation and movement
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .float-card__drift { animation: none; }
  .float-card { transform: none !important; }
  .hero__eyebrow-dot { animation: none; }

  .mock-course__bar-fill,
  .skill__fill { transition: none; }

  .ring__value { transition: none; }
}
