:root {
  --blue: #2677ee;
  --blue-dark: #1159c7;
  --pink: #f15a9d;
  --mint: #43c9a4;
  --yellow: #ffd84d;
  --ink: #17213a;
  --muted: #667087;
  --paper: #f7f7f4;
  --white: #fff;
  --line: #dde2eb;
  --shadow: 0 24px 70px rgba(23, 33, 58, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { width: 100%; height: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.topbar {
  min-height: 86px;
  padding: 15px clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid rgba(23, 33, 58, .08);
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}
.brand-mark {
  width: 42px;
  height: 42px;
  position: relative;
  display: inline-block;
}
.brand-mark span { position: absolute; border: 4px solid; border-radius: 50%; width: 23px; height: 23px; }
.brand-mark span:nth-child(1) { border-color: var(--blue); left: 0; top: 2px; }
.brand-mark span:nth-child(2) { border-color: var(--pink); right: 0; top: 2px; }
.brand-mark span:nth-child(3) { border-color: var(--mint); left: 10px; bottom: 0; }
.topbar-actions { display: flex; align-items: center; gap: 25px; }
.location { color: var(--muted); font-size: 13px; }

.button {
  border: 0;
  border-radius: 13px;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(38, 119, 238, .25); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 34px rgba(38, 119, 238, .32); }
.button-ghost { border: 1px solid var(--line); background: var(--white); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 13px; }
.button-full { width: 100%; }
.button-light { background: var(--white); color: var(--blue-dark); white-space: nowrap; }

.hero {
  min-height: 690px;
  padding: 64px clamp(24px, 5vw, 76px) 86px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(280px, .78fr) minmax(300px, .8fr);
  gap: clamp(30px, 4vw, 65px);
  align-items: center;
  overflow: hidden;
}
.hero > * { position: relative; z-index: 2; }
.hero-art { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.shape { position: absolute; display: block; opacity: .95; }
.shape-pink { width: 300px; height: 300px; background: #f8d5e5; border-radius: 50%; left: -170px; top: 90px; }
.shape-green { width: 480px; height: 480px; border: 70px solid #d6f4eb; border-radius: 43% 57% 65% 35%; left: 42%; bottom: -390px; transform: rotate(20deg); }
.shape-yellow { width: 130px; height: 130px; background: #ffefad; border-radius: 50% 50% 12% 50%; top: 40px; right: 27%; transform: rotate(20deg); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 3px; background: currentColor; border-radius: 4px; }
.eyebrow-blue { color: var(--blue); }
.eyebrow-light { color: var(--yellow); }
h1, h2, h3 { font-family: Manrope, sans-serif; margin-top: 0; }
h1 {
  margin: 19px 0 22px;
  max-width: 650px;
  font-size: clamp(46px, 4.7vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
h1 em { color: var(--blue); font-style: normal; }
.hero-lead { color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 600px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0 30px; }
.hero-points span { padding: 8px 11px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; font-size: 12px; font-weight: 700; }
.hero-media { height: 465px; }
.photo-frame { height: 100%; position: relative; border-radius: 48% 48% 20px 20px; overflow: hidden; box-shadow: var(--shadow); }
.photo-frame img { object-position: center; }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15, 26, 47, .55)); }
.photo-note {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
  display: flex;
  flex-direction: column;
}
.photo-note strong { font-size: 17px; }
.photo-note span { font-size: 12px; opacity: .85; }

.lead-card { background: var(--white); padding: 30px; border-radius: 23px; box-shadow: var(--shadow); }
.card-kicker { display: inline-block; color: var(--blue); background: #eaf2ff; border-radius: 30px; padding: 7px 12px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.lead-card h2 { font-size: 27px; line-height: 1.12; letter-spacing: -.035em; margin: 17px 0 8px; }
.lead-card > p { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0 0 21px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; color: #4b5570; font-size: 11px; font-weight: 800; margin-bottom: 13px; }
input, select { width: 100%; height: 46px; border: 1px solid var(--line); border-radius: 9px; padding: 0 12px; margin-top: 6px; outline: none; background: white; color: var(--ink); font-size: 13px; }
input:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(38, 119, 238, .12); }
.lead-card small { display: block; margin-top: 11px; color: #8a92a4; font-size: 10px; text-align: center; }

.trust-strip {
  margin: 0 clamp(24px, 5vw, 76px);
  transform: translateY(-26px);
  background: var(--ink);
  color: var(--white);
  border-radius: 18px;
  padding: 24px 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-strip div { display: flex; flex-direction: column; padding: 0 30px; border-right: 1px solid rgba(255,255,255,.15); }
.trust-strip div:last-child { border: 0; }
.trust-strip strong { font-family: Manrope, sans-serif; font-size: 17px; }
.trust-strip span { color: #aeb6c8; font-size: 11px; margin-top: 3px; }

.section { padding: 105px clamp(24px, 7vw, 110px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 50px; }
.section-heading h2, .community-copy h2, .promo h2, .final-copy h2 { margin: 15px 0 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { max-width: 470px; color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }
.course-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 15px; }
.course-card {
  min-height: 345px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.course-card.featured { color: white; border: 0; }
.course-image { position: absolute; inset: 0; }
.course-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,40,.04), rgba(10,20,40,.78)); }
.course-card > *:not(.course-image) { position: relative; z-index: 2; }
.course-number { position: absolute !important; top: 24px; right: 24px; font: 800 12px Manrope, sans-serif; opacity: .7; }
.course-card h3 { font-size: 25px; margin: 0 0 8px; letter-spacing: -.035em; }
.course-card p { margin: 0; font-size: 12px; line-height: 1.45; opacity: .75; }
.course-card.coral { background: #ffe5ee; border-color: transparent; }
.course-card.mint { background: #dff7ef; border-color: transparent; }
.course-icon { position: absolute !important; width: 120px; height: 120px; left: 50%; top: 48%; transform: translate(-50%,-50%); opacity: .9; }
.course-icon.keys { border: 18px solid var(--blue); border-radius: 50%; box-shadow: inset 0 0 0 17px white; }
.course-icon.voice { background: var(--pink); border-radius: 55% 45% 50% 50%; transform: translate(-50%,-50%) rotate(-15deg); }
.course-icon.rhythm { border: 24px solid var(--mint); border-radius: 35% 65% 55% 45%; transform: translate(-50%,-50%) rotate(28deg); }

.moments {
  padding: 110px 0 85px;
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(241,90,157,.42), transparent 25%),
    linear-gradient(135deg, #17213a 0%, #202b48 100%);
  overflow: hidden;
}
.moments-heading {
  padding: 0 clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 45px;
  margin-bottom: 55px;
}
.moments-heading .eyebrow { grid-column: 1 / 3; }
.moments-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}
.moments-heading h2 em { color: var(--mint); font-style: normal; }
.moments-heading p { color: #bec7d8; max-width: 430px; line-height: 1.7; }
.photo-flow {
  width: min(1400px, 112vw);
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
  display: grid;
  grid-template-columns: .8fr 1fr 1.4fr .85fr 1fr .9fr;
  align-items: center;
  gap: 15px;
}
.flow-photo {
  height: 310px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transform: rotate(-1.5deg);
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
  transition: transform .35s ease;
}
.flow-photo:nth-child(even) { transform: translateY(24px) rotate(1.5deg); }
.flow-photo:hover { transform: translateY(-8px) rotate(0) scale(1.025); z-index: 3; }
.flow-photo.flow-tall { height: 390px; }
.flow-photo.flow-wide { height: 270px; }
.flow-photo.flow-round { height: 330px; border-radius: 100px 100px 18px 18px; }
.flow-photo::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(7,13,27,.7)); }
.flow-photo figcaption { position: absolute; z-index: 2; left: 18px; bottom: 15px; font: 800 12px Manrope, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.image-marquee {
  margin-top: 85px;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: imageFlow 40s linear infinite;
}
.marquee-track img {
  width: 180px;
  height: 110px;
  border-radius: 12px;
  filter: saturate(.85);
}
@keyframes imageFlow { to { transform: translateX(calc(-50% - 7px)); } }

.community { background: var(--blue); color: white; padding: 110px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 8vw, 130px); align-items: center; overflow: hidden; }
.community-collage { height: 590px; position: relative; }
.community-collage figure { margin: 0; position: absolute; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,.2); }
.image-main { width: 82%; height: 78%; left: 0; top: 0; border-radius: 18px 120px 18px 18px; }
.image-small { width: 43%; height: 47%; right: 0; bottom: 0; border: 10px solid var(--blue); border-radius: 90px 16px 16px 16px; }
.collage-sticker { position: absolute; left: 7%; bottom: 6%; width: 120px; height: 120px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font: 800 14px/1.15 Manrope, sans-serif; transform: rotate(-8deg); z-index: 3; }
.community-copy > p { color: #dce8ff; max-width: 550px; line-height: 1.75; }
.check-list { list-style: none; padding: 0; margin: 34px 0 0; }
.check-list li { display: flex; gap: 15px; align-items: flex-start; margin: 21px 0; }
.check-list li > span { flex: 0 0 28px; height: 28px; display: grid; place-items: center; background: var(--mint); border-radius: 50%; font-weight: 800; }
.check-list div { display: flex; flex-direction: column; gap: 4px; }
.check-list strong { font-size: 15px; }
.check-list small { color: #bdcff0; }

.section-heading.compact { margin-bottom: 40px; }
.video-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.video-testimonial { min-width: 0; }
.video-raised { transform: translateY(-35px); }
.video-shell {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  overflow: hidden;
  border-radius: 120px 120px 22px 22px;
  background: #0e1425;
  box-shadow: 0 24px 55px rgba(23, 33, 58, .18);
}
.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0e1425;
}
.video-chip {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 11px;
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.video-caption {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 17px;
  padding: 0 8px;
}
.video-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7efff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}
.video-caption div { display: flex; flex-direction: column; gap: 4px; }
.video-caption strong { font-size: 12px; line-height: 1.3; }
.video-caption small { color: var(--muted); font-size: 10px; }

.promo { margin: 0 clamp(24px, 5vw, 76px) 110px; padding: 55px 65px; border-radius: 28px; color: white; background: var(--pink); display: grid; grid-template-columns: auto 1fr auto; gap: 45px; align-items: center; overflow: hidden; position: relative; }
.promo::after { content: ""; position: absolute; width: 240px; height: 240px; border: 45px solid rgba(255,255,255,.12); border-radius: 50%; right: 12%; top: -150px; }
.promo-badge { width: 120px; height: 120px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); transform: rotate(-8deg); }
.promo-badge strong { font: 800 37px/1 Manrope, sans-serif; }
.promo-badge span { font-size: 13px; font-weight: 800; letter-spacing: .15em; }
.promo h2 { font-size: clamp(32px, 3.5vw, 50px); }
.promo p { color: #fff0f7; max-width: 620px; margin-bottom: 0; font-size: 13px; line-height: 1.6; }

.final-cta { min-height: 570px; display: grid; grid-template-columns: 1fr 1fr; position: relative; background: white; }
.final-copy { padding: 100px clamp(24px, 7vw, 110px); }
.final-copy > p { color: var(--muted); line-height: 1.65; }
.final-image { min-height: 570px; }
.final-image img { object-position: center; }
.contact-lines { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.contact-lines a { display: flex; align-items: center; gap: 12px; color: #45506a; font-size: 13px; }
.contact-lines span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #edf3ff; color: var(--blue); font-weight: 800; }
.floating-whatsapp { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); background: var(--mint); color: #0a4837; padding: 18px 25px; border-radius: 13px; font-weight: 800; box-shadow: var(--shadow); }

.footer { min-height: 110px; padding: 25px clamp(24px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; background: var(--ink); color: white; }
.brand-footer { color: white; }
.footer p { color: #9da6ba; font-size: 11px; }
.footer > div { display: flex; gap: 22px; font-size: 12px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .lead-card { grid-column: 1 / 3; display: grid; grid-template-columns: .7fr 1.3fr; gap: 30px; }
  .lead-card form { grid-column: 2; grid-row: 1 / 4; }
  .course-grid { grid-template-columns: 1fr 1fr; }
  .photo-flow { width: 125vw; grid-template-columns: repeat(6, 1fr); }
  .flow-photo { height: 270px; }
  .flow-photo.flow-tall { height: 340px; }
  .promo { grid-template-columns: auto 1fr; }
  .promo .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  .topbar { min-height: 70px; padding: 12px 18px; }
  .brand { font-size: 11px; }
  .brand-mark { transform: scale(.85); }
  .location { display: none; }
  .button-ghost { font-size: 0; width: 44px; padding: 0; border-radius: 50%; }
  .button-ghost::after { content: "↗"; font-size: 17px; }
  .hero { padding: 48px 20px 55px; grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-points { justify-content: center; }
  h1 { font-size: 49px; }
  .hero-whatsapp { width: 100%; }
  .hero-media { height: 420px; }
  .photo-frame { border-radius: 180px 180px 20px 20px; }
  .lead-card { grid-column: auto; display: block; padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .trust-strip { margin: 20px; transform: none; grid-template-columns: 1fr; padding: 10px 22px; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); padding: 17px 0; }
  .section { padding: 75px 20px; }
  .section-heading { display: block; }
  .section-heading h2, .community-copy h2, .promo h2, .final-copy h2 { font-size: 39px; }
  .section-heading > p { margin-top: 25px; }
  .course-grid { grid-template-columns: 1fr; }
  .course-card { min-height: 280px; }
  .moments { padding-top: 75px; }
  .moments-heading { display: block; padding: 0 20px; }
  .moments-heading h2 { font-size: 44px; }
  .moments-heading p { margin-top: 24px; }
  .photo-flow {
    width: 100%;
    margin: 0;
    transform: none;
    padding: 0 20px 15px;
    grid-template-columns: repeat(6, 78vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .photo-flow::-webkit-scrollbar { display: none; }
  .flow-photo, .flow-photo.flow-tall, .flow-photo.flow-wide, .flow-photo.flow-round {
    height: 430px;
    border-radius: 22px;
    transform: none;
    scroll-snap-align: center;
  }
  .flow-photo:nth-child(even) { transform: none; }
  .image-marquee { margin-top: 45px; }
  .marquee-track img { width: 145px; height: 90px; }
  .community { padding: 75px 20px; grid-template-columns: 1fr; }
  .community-collage { height: 420px; }
  .image-main { width: 90%; }
  .image-small { width: 50%; }
  .video-testimonial-grid { grid-template-columns: 1fr; max-width: 390px; gap: 38px; }
  .video-raised { transform: none; }
  .video-shell { max-height: none; }
  .promo { margin: 0 20px 75px; padding: 35px 25px; grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .promo-badge { margin: 0 auto; }
  .promo .eyebrow { justify-content: center; }
  .promo .button { grid-column: auto; justify-self: stretch; }
  .final-cta { grid-template-columns: 1fr; }
  .final-copy { padding: 75px 20px 95px; }
  .final-image { min-height: 420px; }
  .floating-whatsapp { left: 20px; right: 20px; bottom: 390px; transform: none; text-align: center; }
  .footer { flex-direction: column; gap: 20px; padding: 35px 20px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .flow-photo { transition: none; }
}
