:root {
  --ink: #102a5c;
  --muted: #60708f;
  --line: #e2e8f7;
  --paper: #ffffff;
  --soft: #eef6ff;
  --green: #0d68fb;
  --green-dark: #007dfe;
  --red: #feb600;
  --gold: #feb600;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 42, 92, 0.12);
  --font-primary: Poppins, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: "League Spartan", Spartan, Poppins, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transition-duration: 1050ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

html.reveal-ready [data-reveal="fade-up"] {
  transform: translate3d(0, 44px, 0);
}

html.reveal-ready [data-reveal="fade-left"] {
  transform: translate3d(44px, 0, 0);
}

html.reveal-ready [data-reveal="fade-right"] {
  transform: translate3d(-44px, 0, 0);
}

html.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: grid;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 42, 92, 0.2);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #ffffff;
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(16, 42, 92, 0.26);
}

.whatsapp-float-icon {
  width: 35px;
  height: 35px;
}

.whatsapp-float-bubble {
  fill: #ffffff;
}

.whatsapp-float-handset {
  fill: #25d366;
}

.behold-widget-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.behold-widget-shell behold-widget {
  display: block;
  width: 100%;
}

.faq-section {
  padding: 64px 0;
}

.faq-title {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--font-secondary);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-primary);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img,
.site-footer img {
  width: 164px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-weight: 800;
  line-height: 1.2;
}

.nav-cta,
.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--line);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  min-height: 560px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  align-self: center;
  padding: clamp(34px, 7vw, 86px);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-secondary);
}

.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.stats-band strong {
  display: block;
  color: var(--green);
  font-size: 30px;
}

.stats-band span {
  color: var(--muted);
}

.section,
.page-shell,
.detail-shell {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.intro p,
.split-section p {
  color: var(--muted);
  font-size: 18px;
}

.section h2,
.page-title h1,
.detail-content h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  margin: 10px 0 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head > a {
  color: var(--green);
  font-weight: 900;
}

.program-grid,
.article-grid,
.testimonial-grid,
.mentor-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card,
.article-grid article,
.testimonial-grid figure,
.mentor-directory article,
.lead-form,
.admin-like-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 42, 92, 0.06);
}

.program-card img,
.article-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.program-card > div,
.article-grid article,
.testimonial-grid figure,
.mentor-directory article {
  padding: 20px;
}

.program-card span,
.article-grid span,
.mentor-directory span,
.mentor-list span {
  color: var(--red);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card h3,
.article-grid h3,
.article-grid h2,
.mentor-directory h2,
.mentor-list h3 {
  margin: 8px 0;
  font-size: 22px;
  line-height: 1.2;
}

.program-card p,
.article-grid p {
  color: var(--muted);
}

.program-card dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.program-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
}

.split-section,
.faq-contact,
.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.mentor-list {
  display: grid;
  gap: 14px;
}

.mentor-list article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mentor-list img {
  width: 88px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.mentor-avatar {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  object-fit: cover;
}

.mentor-avatar-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(13, 104, 251, 0.12), rgba(254, 182, 0, 0.18));
  border: 1px solid rgba(16, 42, 92, 0.08);
  color: var(--green-dark);
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 900;
}

.mentor-avatar-large {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  font-size: clamp(44px, 8vw, 68px);
}

.testimonial-grid figure {
  margin: 0;
}

.testimonial-grid blockquote {
  min-height: 150px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 18px;
}

.testimonial-grid figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-grid img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.faq-list details {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.notice {
  padding: 10px 12px;
  background: var(--soft);
  color: var(--green-dark);
  border: 1px solid #cfe0d4;
  border-radius: 6px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: #dbe8df;
  background: #102a5c;
}

.site-footer p {
  max-width: 420px;
  color: #b7c7bd;
}

.site-footer a,
.site-footer strong {
  display: block;
  margin-bottom: 9px;
}

.page-title {
  max-width: 820px;
  margin-bottom: 32px;
}

.detail-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-content {
  align-self: center;
}

.lead {
  color: var(--muted);
  font-size: 20px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.meta-row span {
  padding: 8px 10px;
  background: var(--soft);
  border-radius: 6px;
  color: var(--green-dark);
  font-weight: 800;
}

.rich-text {
  color: var(--muted);
}

.mentor-directory article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 42, 92, 0.62);
}

.popup-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 26px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.popup-panel > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.icon-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 24px;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro,
  .split-section,
  .faq-contact,
  .detail-shell {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .program-grid,
  .article-grid,
  .testimonial-grid,
  .mentor-directory,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 134px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-copy,
  .section,
  .page-shell,
  .detail-shell {
    padding: 36px 16px;
  }

  .section-head {
    display: block;
  }
}

/* Old Amsterdam Institute / EduBlink-inspired public skin */
:root {
  --ink: #102a5c;
  --muted: #60708f;
  --line: #e2e8f7;
  --paper: #ffffff;
  --soft: #eef6ff;
  --green: #0d68fb;
  --green-dark: #007dfe;
  --red: #feb600;
  --gold: #feb600;
  --blue: #0d68fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 42, 92, 0.12);
  --font-primary: Poppins, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: "League Spartan", Spartan, Poppins, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff9e5 35%, #eef6ff 100%);
  color: var(--ink);
}

.site-header {
  z-index: 40;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(238, 234, 245, 0.85);
  box-shadow: 0 8px 30px rgba(16, 42, 92, 0.05);
}

.nav-links {
  color: var(--ink);
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(13, 104, 251, 0.24);
}

.nav-cta,
.button.primary {
  background: linear-gradient(-90deg, #0d68fb 0%, #007dfe 100%);
  color: var(--white);
}

.nav-cta:hover,
.button.primary:hover {
  color: var(--white);
}

.button.primary::after,
.nav-cta::after {
  content: ">";
  margin-left: 10px;
  font-weight: 900;
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(16, 42, 92, 0.12);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 7vw, 104px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(254, 182, 0, 0.18), transparent 26%),
    linear-gradient(135deg, #fff4cc 0%, #ffffff 46%, #eef6ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  border: 42px solid rgba(13, 104, 251, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 0;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 13px;
}

.hero h1 {
  margin: 18px 0 20px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.05;
  font-weight: 900;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 580px;
}

.hero-image-frame {
  position: absolute;
  inset: 26px 56px 26px 24px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 42, 92, 0.24));
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 42, 92, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(16, 42, 92, 0.12);
}

.hero-badge strong {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.hero-badge span {
  color: var(--muted);
  font-weight: 800;
}

.badge-top {
  top: 92px;
  left: 0;
}

.badge-bottom {
  right: 14px;
  bottom: 92px;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shape-dots {
  top: 110px;
  right: 45%;
  width: 118px;
  height: 118px;
  opacity: 0.55;
  background-image: radial-gradient(var(--gold) 2px, transparent 2px);
  background-size: 18px 18px;
}

.shape-ring {
  top: 18%;
  right: 7%;
  width: 124px;
  height: 124px;
  border: 18px solid rgba(254, 182, 0, 0.22);
  border-radius: 50%;
}

.shape-zigzag {
  left: 44%;
  bottom: 108px;
  width: 150px;
  height: 22px;
  background:
    linear-gradient(135deg, transparent 35%, var(--blue) 35% 45%, transparent 45%) 0 0 / 28px 22px,
    linear-gradient(45deg, transparent 35%, var(--blue) 35% 45%, transparent 45%) 14px 0 / 28px 22px;
  opacity: 0.5;
}

.cursor-graphic {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: 86px;
  height: 86px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 180ms ease;
  mix-blend-mode: multiply;
}

.cursor-ring,
.cursor-dot {
  position: absolute;
  display: block;
}

.cursor-ring {
  inset: 0;
  border: 2px solid rgba(13, 104, 251, 0.55);
  border-radius: 50%;
}

.cursor-dot {
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.cursor-graphic.is-visible {
  opacity: 1;
}

.stats-band {
  background: var(--ink);
  border: 0;
}

.stats-band div {
  background: transparent;
}

.stats-band strong {
  color: var(--gold);
}

.stats-band span {
  color: rgba(255, 255, 255, 0.78);
}

.section:nth-of-type(even) {
  background: rgba(238, 246, 255, 0.75);
}

.section h2,
.page-title h1,
.detail-content h1 {
  color: var(--ink);
  font-weight: 900;
}

.program-card,
.article-grid article,
.testimonial-grid figure,
.mentor-directory article,
.lead-form {
  border-color: rgba(16, 42, 92, 0.08);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(16, 42, 92, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-card:hover,
.article-grid article:hover,
.testimonial-grid figure:hover,
.mentor-directory article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(16, 42, 92, 0.14);
}

.program-card span,
.article-grid span,
.mentor-directory span,
.mentor-list span {
  color: var(--green);
}

.program-card h3 a:hover,
.article-grid h3 a:hover,
.article-grid h2 a:hover {
  color: var(--red);
}

.mentor-list article {
  border-color: rgba(16, 42, 92, 0.08);
  box-shadow: 0 12px 30px rgba(16, 42, 92, 0.07);
}

.mentor-list img,
.mentor-directory article img,
.program-card img,
.article-grid img {
  border-radius: 6px;
}

.testimonial-grid blockquote::before {
  content: "“";
  display: block;
  color: var(--gold);
  font-size: 58px;
  line-height: 0.7;
  font-weight: 900;
}

.faq-list details {
  border-color: rgba(16, 42, 92, 0.08);
  box-shadow: 0 10px 26px rgba(16, 42, 92, 0.06);
}

.lead-form {
  border-top: 5px solid var(--gold);
}

.site-footer {
  background: var(--ink);
}

.popup-panel {
  border-top: 6px solid var(--gold);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-image-frame {
    inset: 10px 40px 28px;
  }

  .shape-dots {
    right: 18px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 42px 16px 52px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-image-frame {
    inset: 18px 12px 34px;
    border-width: 7px;
  }

  .hero-badge {
    min-width: 112px;
    padding: 12px 14px;
  }

  .badge-top {
    top: 0;
  }

  .badge-bottom {
    bottom: 10px;
  }

  .cursor-graphic {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-graphic,
  .hero-shape,
  .hero-image-frame,
  .hero-badge {
    transition: none;
    transform: none !important;
  }
}
