:root {
  --blue-900: #0e3c82;
  --blue-800: #123f7a;
  --blue-700: #1a4d94;
  --blue-50: #eef3fb;
  --gold-500: #c79a44;
  --gold-600: #b3872f;
  --gold-100: #f7ecd6;
  --ink: #14213a;
  --ink-soft: #4a5568;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --radius: 14px;
  --max-w: 1120px;
  --shadow: 0 10px 30px rgba(14, 60, 130, 0.12);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* Scroll progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-700));
  z-index: 100;
  transition: width 0.1s ease-out;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal-dir="right"] { transform: translate(36px, 12px); }
[data-reveal-dir="left"] { transform: translate(-36px, 12px); }
[data-reveal].is-visible,
[data-reveal-dir].is-visible { opacity: 1; transform: translate(0, 0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); color: var(--blue-900); }
h3 { font-size: 1.15rem; color: var(--blue-900); }
p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.6em;
}

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-header p { margin: 0; }

/* Funding banner */
.funding-banner {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.92);
}
.funding-banner .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
}
.funding-banner img {
  height: 26px;
  width: auto;
  flex-shrink: 0;
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
}
.funding-banner span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(14, 60, 130, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(14, 60, 130, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--blue-900); text-decoration: none; font-size: 1.05rem; white-space: nowrap; overflow: hidden; }
.brand img { height: 40px; width: auto; flex-shrink: 0; }
.brand span { overflow: hidden; text-overflow: ellipsis; }
.brand small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 0.72rem; letter-spacing: 0.02em; white-space: nowrap; }

.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--blue-900); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue-900); }

.nav-cta {
  background: var(--blue-900);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-600); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-900);
  margin: 5px 0;
  transition: 0.2s;
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 85% 10%, rgba(199, 154, 68, 0.18), transparent 45%),
    linear-gradient(160deg, rgba(14,60,130,0.94) 0%, rgba(18,63,122,0.93) 55%, rgba(10,44,96,0.96) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  z-index: 0;
  transform: scale(1.06);
}
.hero-photo-fencers {
  background-position: center 20%;
  opacity: 0.14;
}
.hero-photo-kids {
  background-position: center 82%;
  opacity: 0.85;
  filter: brightness(1.9) saturate(1.25) contrast(1.05);
  -webkit-mask-image: linear-gradient(0deg, #000 32%, transparent 80%);
  mask-image: linear-gradient(0deg, #000 32%, transparent 80%);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(10,33,72,0.92) 0%, rgba(10,33,72,0.68) 45%, rgba(10,33,72,0.3) 100%);
}

/* Drifting ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-a {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
  top: -120px; right: -80px;
  animation: drift-a 18s ease-in-out infinite alternate;
}
.hero-orb-b {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--blue-700), transparent 70%);
  bottom: -100px; left: -60px;
  animation: drift-b 22s ease-in-out infinite alternate;
}
@keyframes drift-a { from { transform: translate(0,0) scale(1); } to { transform: translate(-30px, 30px) scale(1.1); } }
@keyframes drift-b { from { transform: translate(0,0) scale(1); } to { transform: translate(20px, -20px) scale(1.08); } }

.hero-piste {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,154,68,0.5), transparent);
}

.hero-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(199, 154, 68, 0.5);
  color: var(--gold-500);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.kinetic-title {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 0.4em;
  font-weight: 800;
  line-height: 1.15;
}
.kinetic-title .line { display: block; overflow: hidden; }
.kinetic-title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.08s + 0.1s);
}
.kinetic-title .line:nth-child(1) .word:nth-child(1) { --i: 1; }
.kinetic-title .line:nth-child(1) .word:nth-child(2) { --i: 2; }
.kinetic-title .accent .word:nth-child(1) { --i: 3; }
.kinetic-title .accent .word:nth-child(2) { --i: 4; }
.kinetic-title .accent { color: var(--gold-500); }
@keyframes word-up { to { transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .kinetic-title .word { animation: none; transform: none; }
  .hero-orb { animation: none; }
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--gold-500); color: var(--blue-900); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(199, 154, 68, 0.35); }
.btn-ghost { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.5); color: #fff; }
.btn-ghost:hover { border-color: #fff; }

.hero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
}
.hero-stats div strong { display: block; font-size: 1.6rem; color: var(--gold-500); font-variant-numeric: tabular-nums; }
.hero-stats div span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); }

.hero-emblem {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem img { transition: transform 0.2s ease-out; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 1;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 999px;
  animation: cue-drop 1.6s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue span { animation: none; opacity: 0.7; }
}
.hero-emblem img { width: 100%; max-width: 280px; }

/* Intro / About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-grid .col p:last-child { margin-bottom: 0; }
.pull-quote {
  border-left: 4px solid var(--gold-500);
  padding: 4px 0 4px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-900);
  margin: 24px 0;
}

.about-photo {
  margin: 48px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-photo img {
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  object-fit: cover;
  display: block;
}
.about-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(14,33,58,0.85), transparent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat-card {
  background: #fff;
  border: 1px solid rgba(14, 60, 130, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(14, 60, 130, 0.16); }
.stat-card strong { display: block; font-size: 1.8rem; color: var(--blue-900); }
.stat-card span { color: var(--ink-soft); font-size: 0.9rem; }

/* Process / 3 stages */
/* Large, unboxed foil visual that bleeds behind the stage cards (Apple AirPods style) */
.foil-backdrop {
  position: relative;
  padding-top: clamp(100px, 20vw, 300px);
  overflow: hidden;
}
.foil-photo-wrap {
  --foil-w: clamp(32px, 13vw, 200px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 680px;
  margin: 0 auto;
  height: clamp(280px, 82vw, 1450px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  pointer-events: none;
}
.foil-part {
  width: var(--foil-w);
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 34px rgba(10, 33, 72, 0.35));
  will-change: transform, opacity;
}
.foil-part-grip { margin-bottom: calc(var(--foil-w) * -0.155); }
.foil-part-guard { margin-bottom: calc(var(--foil-w) * -0.131); }
.stages { position: relative; z-index: 2; }

.stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: stage; }
.stage-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold-500);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stage-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(14, 60, 130, 0.16); }
.stage-card .stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-900);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.stage-card:hover .stage-num { transform: scale(1.12) rotate(-6deg); }

/* Steps: how schools join */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(14, 60, 130, 0.08);
  border-radius: var(--radius);
  padding: 28px 22px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(14, 60, 130, 0.16); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--blue-900);
  font-weight: 800;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.step-card:hover .step-num { transform: scale(1.12); }
.step-card h3 { font-size: 1.05rem; }
.step-card p { font-size: 0.92rem; margin: 0; }

.transfer-example {
  margin-top: 60px;
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.transfer-example .arrow { color: var(--gold-600); font-size: 1.6rem; font-weight: 800; }
.transfer-box { text-align: center; }
.transfer-box .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 8px;
}
.transfer-box p { margin: 0; font-weight: 600; color: var(--ink); }

/* Framework */
.framework-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.framework-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue-900);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.framework-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(14, 60, 130, 0.16); }
.framework-card.gold { border-top-color: var(--gold-500); }
.framework-card ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.framework-card li { margin-bottom: 10px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(14, 60, 130, 0.16); }
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-900), var(--gold-500));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.team-card:hover .team-avatar { transform: scale(1.08); }
.team-card h3 { margin-bottom: 2px; }
.team-role { color: var(--gold-600); font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; display: block; }
.team-card p { font-size: 0.92rem; margin: 0; }

/* Partners */
.partners-band {
  background: var(--blue-900);
  color: #fff;
  padding: 64px 0;
}
.partners-band h2 { color: #fff; }
.partners-band .section-header p { color: rgba(255, 255, 255, 0.75); }
.marquee {
  margin-top: 36px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}
.partner-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}
.partner-pill:hover {
  background: rgba(199, 154, 68, 0.15);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

/* CTA / Contact */
.cta-section {
  background: linear-gradient(135deg, var(--gold-100), #fff);
  border-radius: 28px;
  padding: 56px;
  text-align: center;
  margin: 0 24px;
}
.cta-section h2 { margin-bottom: 0.3em; }
.cta-section p { max-width: 520px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-dark { background: var(--blue-900); color: #fff; }
.btn-dark:hover { background: var(--gold-600); color: var(--blue-900); }
.btn-outline { background: transparent; border: 1.5px solid var(--blue-900); color: var(--blue-900); }

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  color: rgba(255, 255, 255, 0.7);
  background: #0a2c60;
}
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; }
.footer-brand img { height: 34px; }
.footer-meta { font-size: 0.85rem; text-align: right; }
.footer-meta a { text-decoration: none; color: rgba(255,255,255,0.8); }
.footer-meta a:hover { color: var(--gold-500); }
.footer-funding {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-funding img {
  height: 34px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 3px 7px;
}
.footer-bottom {
  margin-top: 24px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .framework-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .stages { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-emblem { order: -1; max-width: 220px; margin: 0 auto; padding: 20px; }
  .transfer-example { grid-template-columns: 1fr; text-align: center; }
  .transfer-example .arrow { transform: rotate(90deg); }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header { position: sticky; }
  .site-header .wrap { position: relative; }
  .site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  .site-header.open .nav-cta {
    display: inline-block;
    margin: 0 24px 20px;
  }
  .section { padding: 64px 0; }
  .stat-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .funding-banner .wrap { flex-wrap: wrap; padding: 10px 24px; }
  .funding-banner span { font-size: 0.72rem; }
  .cta-section { padding: 36px 24px; margin: 0 16px; }
  .footer-grid { flex-direction: column; }
  .footer-meta { text-align: left; }
}
