@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&family=Bebas+Neue&display=swap");

:root {
  --cn: #2b3145;
  --ct: #3d9c9c;
  --cg: #baec11;
  --cw: #ffffff;
  --clb: #eaf1f8;
  --ff: "Nunito Sans", sans-serif;
  --fd: "Bebas Neue", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff);
  background: var(--cw);
  color: var(--cn);
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cg);
  outline-offset: 2px;
}

/* NAV */
.m-nav {
  background: var(--cn);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  position: relative;
  z-index: 100;
}

.m-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-logo img {
  height: 54px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.m-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--cw);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--ff);
}

.m-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.m-nav-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.m-nav-cta {
  background: var(--cg);
  color: var(--cn) !important;
  padding: 5px 14px;
  border-radius: 5px;
  font-weight: 700 !important;
  font-size: 10px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.m-hero {
  background: var(--cn);
  padding: 44px 32px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.m-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(186, 236, 17, 0.06) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
}

.m-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 420px) auto;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  justify-items: start;
  width: 100%;
  max-width: 920px;
}

.m-hero-copy {
  min-width: 0;
}

.m-hero-visual {
  flex-shrink: 0;
}

.m-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cg);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.m-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--cg);
  display: inline-block;
  flex-shrink: 0;
}

.m-h1 {
  font-family: var(--fd);
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1;
  color: var(--cw);
  letter-spacing: 0.02em;
  margin: 0 0 0 0;
}

.m-h1 .acc {
  color: var(--cg);
  display: block;
}

.m-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 360px;
  margin-top: 16px;
  margin-bottom: 28px;
}

.m-btn-p {
  display: inline-block;
  background: var(--cg);
  color: var(--cn);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
}

.m-btn-s {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* PHONE */
.m-phone-frame {
  width: 160px;
  height: 300px;
  background: #111;
  border-radius: 24px;
  border: 5px solid #2a2a2a;
  overflow: hidden;
  position: relative;
}

.m-phone-screen {
  position: absolute;
  inset: 0;
  background: #f0f4ff;
  display: flex;
  flex-direction: column;
}

.m-pbar {
  background: var(--cn);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(186, 236, 17, 0.2);
}

.m-pav {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: var(--cn);
  flex-shrink: 0;
}

.m-pname {
  font-size: 8px;
  font-weight: 700;
  color: #fff;
}

.m-psub {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.55);
}

.m-bubbles {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.m-bubble {
  border-radius: 10px;
  padding: 6px 9px;
  font-size: 8px;
  line-height: 1.4;
  max-width: 85%;
}

.m-in {
  background: var(--cn);
  color: #fff;
  border-bottom-left-radius: 2px;
  align-self: flex-start;
}

.m-out {
  background: var(--cg);
  color: var(--cn);
  border-bottom-right-radius: 2px;
  align-self: flex-end;
  font-weight: 700;
  text-align: right;
}

.m-reply {
  background: #fff;
  border-top: 1px solid rgba(43, 49, 69, 0.12);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.m-ri {
  flex: 1;
  background: #f0f0f5;
  border-radius: 12px;
  padding: 4px 8px;
  font-size: 8px;
  color: #aaa;
}

.m-rb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--cn);
  font-weight: 800;
}

/* STATS */
.m-stats {
  background: var(--clb);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--cn);
  border-bottom: 3px solid var(--cn);
}

.m-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(43, 49, 69, 0.15);
}

.m-stat:last-child {
  border-right: none;
}

.m-stat .m-slabel {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a6070;
  margin-top: 4px;
  display: block;
}

.m-snum {
  font-family: var(--fd);
  font-size: 44px;
  line-height: 1;
  color: var(--cn);
}

.m-snum .u {
  font-size: 28px;
  color: var(--ct);
}

/* QUOTE */
.m-quote {
  background: var(--ct);
  padding: 36px 40px;
  text-align: center;
}

.m-quote blockquote {
  font-family: var(--fd);
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0.02em;
  max-width: 640px;
  margin: 0 auto;
}

.m-quote cite {
  display: block;
  font-family: var(--ff);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* CURRICULUM */
.m-curric {
  padding: 56px 32px;
  background: var(--cw);
}

.m-curric > .m-slabel {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ct);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-curric > .m-slabel::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--ct);
  display: inline-block;
  flex-shrink: 0;
}

.m-sh2 {
  font-family: var(--fd);
  font-size: clamp(36px, 7vw, 48px);
  line-height: 1.05;
  color: var(--cn);
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}

.m-sh2 em {
  font-style: normal;
  color: var(--ct);
}

.m-modules {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 2px solid var(--cn);
  border-radius: 10px;
  overflow: hidden;
}

.m-mod {
  padding: 20px 14px;
  border-right: 1px solid rgba(43, 49, 69, 0.15);
  background: var(--cw);
}

.m-mod:last-child {
  border-right: none;
}

.m-mod:nth-child(1) {
  border-top: 4px solid var(--cn);
}

.m-mod:nth-child(2) {
  border-top: 4px solid var(--ct);
}

.m-mod:nth-child(3) {
  border-top: 4px solid var(--cg);
}

.m-mod:nth-child(4) {
  border-top: 4px solid #2d7d7d;
}

.m-mod:nth-child(5) {
  border-top: 4px solid #91b809;
}

.m-mday {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6070;
  margin-bottom: 10px;
}

.m-micon {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}

.m-mtitle {
  font-family: var(--fd);
  font-size: 14px;
  color: var(--cn);
  line-height: 1.1;
  margin-bottom: 6px;
}

.m-mdesc {
  color: #5a6070;
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.m-fwbtn {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cn);
  border: 2px solid var(--cn);
  padding: 9px 18px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 24px;
}

.m-curric-cta {
  margin-top: 24px;
  text-align: center;
}

/* HOW IT WORKS */
.m-how {
  background: var(--cn);
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
}

.m-how::after {
  content: "AI";
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-family: var(--fd);
  font-size: clamp(120px, 28vw, 240px);
  color: rgba(186, 236, 17, 0.04);
  line-height: 1;
  pointer-events: none;
}

.m-how .m-slabel {
  color: var(--cg);
}

.m-how .m-slabel::before {
  background: var(--cg);
}

.m-how .m-sh2 {
  color: var(--cw);
}

.m-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.m-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 20px;
  border-radius: 10px;
  position: relative;
}

.m-snum-big {
  font-family: var(--fd);
  font-size: 56px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 14px;
}

.m-sicon {
  width: 32px;
  height: 32px;
  background: var(--cg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 6px;
  font-size: 16px;
}

.m-stitle {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--cw);
  margin-bottom: 8px;
  line-height: 1.1;
}

.m-sbody {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  font-size: 11px;
  margin: 0;
}

.m-sbody strong {
  color: var(--cg);
  font-weight: 700;
}

/* CTA */
.m-cta {
  background: var(--clb);
  padding: 60px 32px;
  text-align: center;
  border-top: 3px solid var(--cn);
}

.m-stars {
  display: block;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--cg);
  margin-bottom: 20px;
}

.m-ctah2 {
  font-family: var(--fd);
  font-size: clamp(40px, 9vw, 64px);
  color: var(--cn);
  line-height: 1.05;
  margin: 0 0 12px;
}

.m-ctah2 .tl {
  color: var(--ct);
}

.m-ctasub {
  font-size: 13px;
  color: #5a6070;
  max-width: 360px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.m-ctabox {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--cn);
  padding: 28px 48px;
  gap: 4px;
  border-radius: 10px;
}

a.m-ctabox {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.m-ctabox:hover {
  filter: brightness(1.06);
}

.m-ctainstr {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(186, 236, 17, 0.55);
}

.m-ctaact {
  font-family: var(--fd);
  font-size: 36px;
  color: var(--cw);
  line-height: 1.1;
}

.m-ctaact .kw {
  color: var(--cg);
}

.m-ctaact .nb {
  color: var(--ct);
}

/* FOOTER */
.m-footer {
  background: var(--cn);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.m-ftext {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(186, 236, 17, 0.45);
  line-height: 1.7;
}

.m-fdiscl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.28);
  max-width: 500px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .m-modules {
    grid-template-columns: 1fr;
  }

  .m-mod {
    border-right: none;
    border-bottom: 1px solid rgba(43, 49, 69, 0.15);
  }

  .m-mod:last-child {
    border-bottom: none;
  }

  .m-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .m-nav-toggle {
    display: block;
  }

  .m-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cn);
    padding: 12px 28px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }

  .m-nav-links.is-open {
    display: flex;
  }

  .m-nav-links li a {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .m-nav-links li:last-child a {
    border-bottom: none;
    margin-top: 8px;
    text-align: center;
  }

  .m-hero {
    padding: 32px 24px 40px;
  }

  .m-hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 440px;
  }

  .m-hero-copy {
    text-align: center;
  }

  .m-hero-copy .m-eyebrow {
    justify-content: center;
  }

  .m-hero-copy .m-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .m-hero-copy .m-btn-s {
    text-align: center;
  }

  .m-stats {
    grid-template-columns: 1fr;
  }

  .m-stat {
    border-right: none;
    border-bottom: 1px solid rgba(43, 49, 69, 0.15);
  }

  .m-stat:last-child {
    border-bottom: none;
  }

  .m-quote {
    padding: 28px 24px;
  }

  .m-curric,
  .m-how,
  .m-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .m-ctabox {
    padding: 24px 32px;
    max-width: 100%;
  }
}
