:root {
  --red: #EE2238;
  --fuchsia: #BF1D67;
  --grad: linear-gradient(45deg, #EE2238 0%, #BF1D67 100%);
  --ink: #1E1E1E;
  --ink-soft: #4a4a4f;
  --paper: #ffffff;
  --mist: #F2F2F2;
  --line: #e3e3e6;
  --chip: #fce8ee;
  --display: 'Nunito', sans-serif;
  --body: 'Open Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.topbar {
  background: var(--ink);
  color: #cfd0d3;
  font-size: .78rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: .55rem 1.5rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a { color: #cfd0d3; }
.topbar span.sep { opacity: .4; }

header.masthead {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
header.masthead .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.masthead .logo img { height: 38px; display: block; }
nav.main a {
  color: #d0d0d4;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  margin-left: 1.4rem;
}

.hero {
  background: var(--grad);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
}
.hero .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.4rem 1.5rem 2.8rem;
  position: relative;
  z-index: 2;
}
.hero .logo-w img { height: 34px; margin-bottom: 1.6rem; display: block; }
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: .9rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem,4.6vw,3.1rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 18ch;
}
.funded-tag {
  display: inline-block;
  margin-top: 1.3rem;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .42rem .9rem;
  border-radius: 999px;
}

.metastrip {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}
.metastrip .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.metastrip .cell .k {
  font-family: var(--display);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .25rem;
}
.metastrip .cell .v {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  font-size: .97rem;
}

.layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.6rem;
  align-items: start;
}
section.block { margin-bottom: 2.6rem; }
section.block h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.01em;
  position: relative;
  padding-bottom: .6rem;
  margin-bottom: 1.1rem;
}
section.block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad);
}
section.block p { color: var(--ink-soft); margin-bottom: 1rem; }
ul.ticks { list-style: none; }
ul.ticks li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .6rem;
  color: var(--ink-soft);
}
ul.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad);
}

.objgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.objcard {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  background: #fff;
  transition: .18s;
}
.objcard:hover {
  border-color: var(--red);
  box-shadow: 0 8px 26px rgba(238,34,56,.1);
  transform: translateY(-2px);
}
.objcard .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: .8rem;
  color: #fff;
  background: var(--grad);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .7rem;
}
.objcard h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: .4rem;
}
.objcard p { font-size: .9rem; margin: 0; }

.module {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.module .head {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.2rem;
  background: var(--mist);
}
.module .head .mn {
  font-family: var(--display);
  font-weight: 900;
  color: #fff;
  background: var(--grad);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex: none;
}
.module .head h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.02rem;
}
.module .body { padding: .9rem 1.2rem 1.1rem; }

table.fees {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-top: .4rem;
  border-radius: 12px;
  overflow: hidden;
}
table.fees th {
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .75rem .85rem;
  text-align: left;
}
table.fees td {
  border-bottom: 1px solid var(--line);
  padding: .75rem .85rem;
  color: var(--ink-soft);
}
table.fees tr.hi td {
  background: var(--chip);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
}
.pricecell { font-family: var(--display); font-weight: 800; color: var(--ink); }
.strike { color: #a0a0a6; text-decoration: line-through; font-weight: 600; margin-right: .4rem; }

.certbox {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  background: linear-gradient(180deg,#fff,#fdf4f6);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.certbox .seal {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
}
.certbox h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: .35rem;
}
.certbox p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

.note {
  background: var(--mist);
  border-left: 4px solid var(--red);
  padding: .9rem 1.1rem;
  border-radius: 0 10px 10px 0;
  font-size: .88rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

aside.rail { position: sticky; top: 1.2rem; }
.pricebox {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(30,30,30,.07);
}
.pricebox .top {
  background: var(--grad);
  color: #fff;
  padding: 1.4rem 1.4rem 1.3rem;
}
.pricebox .top .lbl {
  font-family: var(--display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: .4rem;
}
.pricebox .top .amt {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.3rem;
  line-height: 1;
}
.pricebox .top .amt small { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.8); }
.pricebox .top .was {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  text-decoration: line-through;
  margin-top: .35rem;
  font-family: var(--display);
  font-weight: 600;
}
.pricebox .body { padding: 1.2rem 1.4rem 1.5rem; }
.pricebox .row {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .9rem;
  color: var(--ink-soft);
}
.pricebox .row span:last-child { font-family: var(--display); font-weight: 700; color: var(--ink); }
.pricebox .row:last-of-type { border-bottom: none; }

.cta {
  display: block;
  text-align: center;
  background: var(--grad);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .02em;
  padding: .9rem;
  border-radius: 12px;
  margin-top: 1rem;
}
.cta:hover { filter: brightness(1.05); text-decoration: none; }
.cta.ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); }
.cta.ghost:hover { background: var(--mist); filter: none; }

.schedbox {
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 1.2rem;
  overflow: hidden;
}
.schedbox .head {
  background: var(--mist);
  padding: .9rem 1.3rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: .95rem;
}
.schedbox .item {
  padding: 1rem 1.3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: .9rem;
}
.schedbox .item .date {
  font-family: var(--display);
  font-weight: 900;
  color: var(--red);
  text-align: center;
  line-height: 1;
  min-width: 52px;
}
.schedbox .item .date .d { font-size: 1.5rem; }
.schedbox .item .date .m { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.schedbox .item .meta .t { font-family: var(--display); font-weight: 700; font-size: .92rem; }
.schedbox .item .meta .s { font-size: .8rem; color: var(--ink-soft); }

footer.site {
  background: var(--ink);
  color: #9a9a9f;
  margin-top: 2rem;
}
footer.site .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem;
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}
footer.site .wrap img { height: 30px; }
footer.site a { color: #d0d0d4; }

@media (max-width: 880px) {
  .layout { grid-template-columns: 1fr; }
  aside.rail { position: static; }
  .metastrip .wrap { grid-template-columns: repeat(2,1fr); }
  .objgrid { grid-template-columns: 1fr; }
  nav.main { display: none; }
}

.trainer {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  background: #fff;
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.trainer .photo {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  background: var(--ink);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.trainer .photo img { width: 100%; height: 100%; object-fit: cover; }
.trainer .info h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .1rem;
}
.trainer .info .role {
  font-family: var(--display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--fuchsia);
  margin-bottom: .55rem;
}
.trainer .info p {
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: .6rem;
}
.trainer .info .foc {
  font-family: var(--display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .35rem;
}
.trainer .info ul.ticks li { margin-bottom: .35rem; font-size: .88rem; }

@media (max-width: 560px) {
  .trainer { flex-direction: column; }
  .trainer .photo { width: 96px; height: 96px; }
}
