:root {
    --navy: #101c5a;
    --navy-deep: #09123f;
    --blue: #0f7dff;
    --blue-soft: #d8ebff;
    --green: #47d61d;
    --green-soft: #efffdc;
    --orange: #ff8b08;
    --orange-deep: #ff5c00;
    --gold: #ffc326;
    --ink: #12203d;
    --muted: #56627e;
    --paper: #f8fbff;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(9, 18, 63, 0.14);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max-width: 1180px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: "Space Grotesk", "Avenir Next", sans-serif;
    color: var(--ink);
    background:
      radial-gradient(circle at top left, rgba(71, 214, 29, 0.22), transparent 25%),
      radial-gradient(circle at top right, rgba(15, 125, 255, 0.18), transparent 30%),
      linear-gradient(180deg, #edf5ff 0%, #ffffff 30%, #f5fbff 100%);
  }

  body.modal-open {
    overflow: hidden;
  }

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

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

  .page-shell {
    overflow: hidden;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(248, 251, 255, 0.9);
    border-bottom: 1px solid rgba(16, 28, 90, 0.08);
  }

  .topbar-inner,
  .hero,
  .section-grid,
  .instructor,
  .footer-card {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
  }

  .brand img {
    width: clamp(120px, 16vw, 180px);
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 10px 22px rgba(16, 28, 90, 0.14);
    background: var(--white);
  }

  .brand-copy {
    min-width: 0;
  }

  .eyebrow {
    margin: 0 0 0.15rem;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
  }

  .brand-title {
    margin: 0;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--navy);
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .nav a {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
    outline: none;
  }

  .nav a.is-active {
    background: var(--navy);
    color: var(--white);
  }

  .hero-wrap {
    position: relative;
    padding: 2.5rem 0 1rem;
  }

  .hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem 0 2rem;
  }

  .hero-copy {
    position: relative;
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    inset: -1.5rem auto auto -1rem;
    width: 7rem;
    height: 7rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 195, 38, 0.3), rgba(255, 92, 0, 0));
    z-index: -1;
    transform: rotate(12deg);
  }

  .hero-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 125, 255, 0.14);
    box-shadow: var(--shadow);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
  }

  .hero h1 {
    margin: 1.15rem 0 1rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--navy);
  }

  .hero h1 span {
    display: block;
    color: var(--orange-deep);
  }

  .hero p {
    margin: 0;
    max-width: 62ch;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.7rem;
  }

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.35rem;
    border-radius: 16px;
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  }

  .button:hover,
  .button:focus-visible {
    transform: translateY(-2px);
    outline: none;
  }

  .button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
  }

  .button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    box-shadow: 0 18px 30px rgba(255, 92, 0, 0.24);
  }

  .button-secondary {
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(16, 28, 90, 0.1);
    box-shadow: var(--shadow);
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.9rem;
  }

  .hero-points article {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 28, 90, 0.08);
    box-shadow: var(--shadow);
  }

  .hero-points strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: var(--navy);
  }

  .hero-points p {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .hero-visual {
    position: relative;
  }

  .logo-panel {
    position: relative;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 243, 255, 0.95));
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 28, 90, 0.08);
  }

  .logo-panel::after {
    content: "";
    position: absolute;
    inset: auto -1.2rem -1.2rem auto;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, rgba(71, 214, 29, 0.24), transparent 65%);
    z-index: -1;
  }

  .logo-panel img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
  }

  .floating-note {
    position: absolute;
    right: -0.5rem;
    bottom: -10rem;
    max-width: 220px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 20px 40px rgba(9, 18, 63, 0.32);
  }

  .floating-note strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
  }

  .floating-note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
  }

  .section-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 1rem 0 2.5rem;
  }

  .panel {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 28, 90, 0.08);
    box-shadow: var(--shadow);
  }

  .panel h2,
  .instructor-copy h2,
  .format-copy h2,
  .footer-card h2 {
    margin: 0 0 0.85rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
  }

  .panel p,
  .panel li,
  .instructor-copy p,
  .format-copy p,
  .footer-card p {
    margin: 0;
    line-height: 1.75;
    color: var(--muted);
  }

  .panel + .panel p {
    margin-top: 0.35rem;
  }

  .stack {
    display: grid;
    gap: 1rem;
  }

  .age-tier {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--paper), rgba(216, 235, 255, 0.55));
    border: 1px solid rgba(15, 125, 255, 0.09);
  }

  .age-tier strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--navy);
    font-size: 1rem;
  }

  .age-tier span {
    color: var(--orange-deep);
    font-weight: 700;
  }

  .instructor {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2rem;
    align-items: center;
    padding: 0.5rem 0 2.75rem;
  }

  .instructor-visual {
    position: relative;
  }

  .instructor-frame {
    position: relative;
    padding: 1rem;
    border-radius: 32px;
    background:
      linear-gradient(135deg, rgba(15, 125, 255, 0.14), rgba(71, 214, 29, 0.1)),
      var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 28, 90, 0.08);
  }

  .instructor-frame img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
  }

  .instructor-trigger {
    width: 100%;
    border: 0;
    text-align: left;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .instructor-trigger:hover,
  .instructor-trigger:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(9, 18, 63, 0.2);
    outline: none;
  }

  .instructor-trigger-label {
    position: absolute;
    right: 1.6rem;
    bottom: 1.6rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(9, 18, 63, 0.88);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(9, 18, 63, 0.28);
  }

  .badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.4rem 0;
  }

  .badge {
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    background: var(--green-soft);
    color: #1c5d09;
  }

  .badge:nth-child(2) {
    background: var(--blue-soft);
    color: var(--navy);
  }

  .badge:nth-child(3) {
    background: #fff0df;
    color: #9b4600;
  }

  .format-section {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding-bottom: 2.8rem;
  }

  .format-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.6rem;
    padding: 1.6rem;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--navy) 0%, #173695 100%);
    box-shadow: 0 20px 48px rgba(9, 18, 63, 0.26);
    color: var(--white);
  }

  .format-copy h2,
  .format-copy p,
  .format-copy li {
    color: var(--white);
  }

  .format-copy p {
    opacity: 0.88;
  }

  .format-list {
    display: grid;
    gap: 1rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
  }

  .format-list li {
    padding: 1rem 1rem 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .format-list strong {
    color: var(--gold);
  }

  .format-side {
    display: grid;
    gap: 1rem;
    align-content: center;
  }

  .metric {
    padding: 1.1rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metric strong {
    display: block;
    margin-bottom: 0.4rem;
    font-family: "Oxanium", sans-serif;
    font-size: 1.8rem;
    color: var(--green);
  }

  .footer-wrap {
    padding: 0 0 3rem;
  }

  .modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 43, 0.74);
    backdrop-filter: blur(6px);
  }

  .modal-panel {
    position: relative;
    z-index: 1;
    width: min(90vw, 1280px);
    height: min(90vh, 920px);
    padding: 1.25rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.98));
    box-shadow: 0 28px 80px rgba(7, 14, 43, 0.38);
  }

  .modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .modal-title {
    margin: 0;
    padding-right: 6rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--navy);
  }

  .modal-image {
    width: 100%;
    height: calc(100% - 3rem);
    object-fit: contain;
    border-radius: 20px;
    background: #f3f7fc;
  }

  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
  }

  .modal-close:focus-visible,
  .modal-close:hover {
    outline: none;
    background: #163190;
  }

  .footer-card {
    padding: 1.7rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.95));
    border: 1px solid rgba(16, 28, 90, 0.08);
    box-shadow: var(--shadow);
    text-align: center;
  }

  .footer-card p {
    max-width: 58ch;
    margin: 0 auto;
  }

  .footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.3rem;
  }

  .page-intro {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: 2.5rem 0 1rem;
  }

  .page-intro-card {
    padding: 1.8rem;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 244, 255, 0.95));
    border: 1px solid rgba(16, 28, 90, 0.08);
    box-shadow: var(--shadow);
  }

  .page-intro-card h1 {
    margin: 0.75rem 0 0.85rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 0.98;
    color: var(--navy);
  }

  .page-intro-card p {
    margin: 0;
    max-width: 64ch;
    color: var(--muted);
    line-height: 1.75;
  }

  .contact-layout {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1rem 0 3rem;
  }

  .contact-panel {
    padding: 1.6rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 28, 90, 0.08);
    box-shadow: var(--shadow);
  }

  .contact-panel h2 {
    margin: 0 0 0.85rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
  }

  .contact-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
  }

  .contact-stack {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .contact-chip {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--paper), rgba(216, 235, 255, 0.55));
    border: 1px solid rgba(15, 125, 255, 0.09);
    color: var(--navy);
    font-weight: 700;
  }

  .contact-chip span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-weight: 500;
  }

  .contact-brand-card {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 1rem;
    min-height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, #173695 100%);
    color: var(--white);
  }

  .contact-brand-card h2,
  .contact-brand-card p {
    color: var(--white);
  }

  .media-logo {
    width: min(140px, 35%);
    height: auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.85rem;
    box-shadow: 0 20px 42px rgba(7, 14, 43, 0.28);
  }

  .contact-note {
    max-width: 40ch;
    opacity: 0.9;
  }

  .register-layout {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    padding: 1rem 0 3rem;
  }

  .register-layout-single {
    grid-template-columns: 1fr;
  }

  .register-panel {
    padding: 1.7rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 28, 90, 0.08);
    box-shadow: var(--shadow);
  }

  .register-panel h2 {
    margin: 0 0 0.85rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    color: var(--navy);
  }

  .register-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
  }

  .register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.35rem;
  }

  .field {
    display: grid;
    gap: 0.45rem;
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .field label {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 700;
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(16, 28, 90, 0.14);
    border-radius: 16px;
    background: #fbfdff;
    color: var(--ink);
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  }

  .field textarea {
    min-height: 132px;
    resize: vertical;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(15, 125, 255, 0.12);
    background: var(--white);
  }

  .field-help {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .register-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.4rem;
    align-items: center;
  }

  .register-button {
    min-width: 220px;
  }

  .status-message {
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .status-message[data-state="idle"] {
    display: none;
  }

  .status-message[data-state="loading"] {
    background: rgba(15, 125, 255, 0.09);
    color: var(--navy);
  }

  .status-message[data-state="error"] {
    background: rgba(255, 92, 0, 0.11);
    color: #8f3400;
  }

  .status-message[data-state="success"] {
    background: rgba(71, 214, 29, 0.12);
    color: #195e06;
  }

  .register-card-stack {
    display: grid;
    gap: 1rem;
  }

  .register-feature {
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, var(--paper), rgba(216, 235, 255, 0.55));
    border: 1px solid rgba(15, 125, 255, 0.09);
  }

  .register-feature strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--navy);
    font-size: 1rem;
  }

  .register-highlight {
    background: linear-gradient(135deg, var(--navy) 0%, #173695 100%);
    color: var(--white);
    box-shadow: 0 20px 48px rgba(9, 18, 63, 0.26);
  }

  .register-highlight h2,
  .register-highlight p,
  .register-highlight li {
    color: var(--white);
  }

  .register-highlight p {
    opacity: 0.88;
  }

  .register-highlight ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    line-height: 1.75;
  }

  .register-code {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #dce9ff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.88rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
  }

  @media (max-width: 1080px) {
    .hero,
    .instructor,
    .format-card,
    .contact-layout,
    .register-layout {
      grid-template-columns: 1fr;
    }

    .hero-points,
    .section-grid,
    .register-grid {
      grid-template-columns: 1fr 1fr;
    }

    .floating-note {
      position: static;
      margin-top: 1rem;
      max-width: none;
    }
  }

  @media (max-width: 760px) {
    .topbar-inner {
      flex-direction: column;
      align-items: stretch;
    }

    .brand {
      justify-content: center;
    }

    .brand-copy {
      text-align: center;
    }

    .nav {
      justify-content: center;
    }

    .hero-wrap {
      padding-top: 1.6rem;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .hero-points,
    .section-grid,
    .register-grid {
      grid-template-columns: 1fr;
    }

    .hero-actions,
    .footer-actions,
    .register-actions {
      flex-direction: column;
    }

      .button,
      .register-button {
        width: 100%;
      }

      .instructor-trigger-label {
        right: 1.2rem;
        bottom: 1.2rem;
        font-size: 0.82rem;
      }

      .modal {
        padding: 0;
      }

      .modal-panel {
        width: 100vw;
        height: 90vh;
        border-radius: 22px 22px 0 0;
        align-self: end;
        padding: 1rem;
      }

      .modal-title {
        padding-right: 5.25rem;
      }

      .modal-image {
        height: calc(100% - 2.7rem);
      }

      .page-intro {
        padding-top: 1.6rem;
      }
    }

  .home-page {
    color: #f3fff8;
    background:
      radial-gradient(circle at top right, rgba(31, 255, 196, 0.18), transparent 28%),
      radial-gradient(circle at top left, rgba(80, 255, 140, 0.12), transparent 24%),
      linear-gradient(180deg, #031511 0%, #04211a 42%, #031611 100%);
  }

  .home-page .page-shell {
    padding-bottom: 2rem;
  }

  .home-shell {
    width: min(calc(100% - 2rem), 1180px);
    margin: 0 auto;
  }

  .home-topbar {
    position: sticky;
    top: 0;
    z-index: 25;
    backdrop-filter: blur(16px);
    background: rgba(2, 16, 12, 0.92);
    border-bottom: 1px solid rgba(54, 247, 164, 0.35);
  }

  .home-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.95rem 0;
  }

  .home-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
  }

  .home-brand img {
    width: clamp(120px, 18vw, 170px);
    height: auto;
    object-fit: contain;
  }

  .home-brand-copy {
    min-width: 0;
  }

  .home-brand-kicker {
    margin: 0 0 0.18rem;
    color: #4ce2c8;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .home-brand-title {
    margin: 0;
    color: #ffffff;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 800;
  }

  .home-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .home-nav a {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    color: #f4fff7;
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease;
  }

  .home-nav a:hover,
  .home-nav a:focus-visible {
    background: rgba(54, 247, 164, 0.16);
    color: #9cffbf;
    outline: none;
  }

  .home-nav-active {
    background: rgba(54, 247, 164, 0.16);
    color: #9cffbf;
  }

  .home-main {
    padding-top: 1.35rem;
  }

  .home-hero-panel,
  .home-panel,
  .home-instructor-panel,
  .home-format-panel,
  .home-footer-panel {
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .home-hero-panel {
    padding: 1.3rem;
    border-radius: 0 0 26px 26px;
  }

  .home-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.25rem;
    align-items: center;
  }

  .home-hero-copy {
    padding: 1rem 0.45rem 0.6rem;
  }

  .home-chip {
    display: inline-flex;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(87, 255, 176, 0.58);
    background: rgba(3, 22, 16, 0.75);
    color: #e2fff0;
    font-weight: 700;
  }

  .home-hero-title {
    margin: 1.15rem 0 1rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(3.6rem, 8vw, 6.6rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
  }

  .home-hero-title span {
    display: block;
    color: #5eff8a;
  }

  .home-hero-text {
    margin: 0;
    max-width: 34rem;
    color: rgba(240, 255, 248, 0.92);
    font-size: 1.08rem;
    line-height: 1.75;
  }

  .home-hero-actions,
  .home-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.55rem;
  }

  .home-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.95rem 1.35rem;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .home-cta:hover,
  .home-cta:focus-visible {
    transform: translateY(-2px);
    outline: none;
  }

  .home-cta-primary {
    color: #0d170f;
    background: linear-gradient(135deg, #ffc533 0%, #ffb300 100%);
    box-shadow: 0 16px 34px rgba(255, 179, 0, 0.22);
  }

  .home-cta-secondary {
    color: #effff5;
    border: 1px solid rgba(76, 226, 200, 0.55);
    background: rgba(4, 24, 18, 0.72);
  }

  .home-hero-visual {
    display: flex;
    justify-content: center;
  }

  .home-hero-visual img {
    width: 100%;
    max-width: 680px;
    border-radius: 18px;
    object-fit: cover;
  }

  .home-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 1.35rem;
  }

  .home-feature-card,
  .home-format-item,
  .home-metric-card,
  .home-tier-card {
    border-radius: 20px;
    border: 1px solid rgba(76, 226, 200, 0.3);
    background: linear-gradient(180deg, rgba(7, 40, 30, 0.9), rgba(4, 27, 20, 0.95));
  }

  .home-feature-card {
    padding: 1.2rem 1.25rem;
  }

  .home-feature-card h2,
  .home-panel h2,
  .home-instructor-copy h2,
  .home-format-panel h2,
  .home-footer-panel h2 {
    margin: 0 0 0.55rem;
    font-family: "Oxanium", sans-serif;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.05;
  }

  .home-feature-card p,
  .home-panel p,
  .home-tier-card p,
  .home-instructor-copy p,
  .home-format-intro,
  .home-format-item p,
  .home-metric-card p,
  .home-footer-panel p {
    margin: 0;
    color: rgba(233, 255, 246, 0.9);
    line-height: 1.7;
  }

  .home-info-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr 0.95fr;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .home-panel {
    padding: 1.4rem;
    border-radius: 26px;
  }

  .home-panel p + p {
    margin-top: 1rem;
  }

  .home-tier-stack {
    display: grid;
    gap: 0.9rem;
    margin-top: 0.95rem;
  }

  .home-tier-card {
    padding: 1rem 1.05rem;
  }

  .home-tier-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #ffcb40;
    font-size: 1rem;
  }

  .home-instructor-panel {
    margin-top: 1.2rem;
    padding: 0.85rem;
    border-radius: 26px;
  }

  .home-instructor-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.2rem;
    align-items: center;
  }

  .home-instructor-trigger {
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
  }

  .home-instructor-trigger img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(76, 226, 200, 0.32);
  }

  .home-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.15rem 0;
  }

  .home-badge {
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    color: #94ffb5;
    background: rgba(51, 201, 135, 0.12);
    border: 1px solid rgba(80, 255, 140, 0.28);
    font-weight: 700;
  }

  .home-badge-accent {
    color: #ffc647;
    border-color: rgba(255, 198, 71, 0.34);
    background: rgba(255, 198, 71, 0.08);
  }

  .home-format-panel {
    margin-top: 1.2rem;
    padding: 1.4rem;
    border-radius: 26px;
    text-align: center;
  }

  .home-format-intro {
    max-width: 66rem;
    margin: 0 auto;
  }

  .home-format-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.2rem;
    text-align: left;
  }

  .home-format-list,
  .home-metric-list {
    display: grid;
    gap: 0.9rem;
  }

  .home-format-item,
  .home-metric-card {
    padding: 1.05rem 1.1rem;
  }

  .home-format-item h3 {
    margin: 0 0 0.35rem;
    color: #86ff8e;
    font-size: 1.1rem;
  }

  .home-metric-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #ffca43;
    font-family: "Oxanium", sans-serif;
    font-size: 1.9rem;
  }

  .home-footer-panel {
    margin-top: 1.2rem;
    padding: 1.5rem;
    border-radius: 26px;
    text-align: center;
  }

  .home-footer-panel p {
    max-width: 44rem;
    margin: 0 auto;
  }

  .register-page .page-shell {
    padding-bottom: 2rem;
  }

  .register-main {
    padding-top: 1.35rem;
  }

  .register-hero-panel {
    padding: 1.5rem;
    border-radius: 0 0 26px 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .register-hero-copy h1 {
    margin: 0.65rem 0 0.8rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 0.95;
    color: #ffffff;
  }

  .register-hero-copy p {
    margin: 0;
    max-width: 48rem;
    color: rgba(233, 255, 246, 0.92);
    line-height: 1.75;
    font-size: 1.02rem;
  }

  .register-kicker {
    margin: 0;
    color: #4ce2c8;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .register-page .register-layout {
    width: min(calc(100% - 2rem), 1180px);
    margin-top: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .register-page .register-panel {
    padding: 1.7rem;
    border-radius: 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .register-page .register-panel h2 {
    color: #ffffff;
  }

  .register-page .register-panel p,
  .register-page .field-help {
    color: rgba(233, 255, 246, 0.9);
  }

  .register-page .field label {
    color: #bffff0;
  }

  .register-page .field input,
  .register-page .field select,
  .register-page .field textarea {
    border: 1px solid rgba(76, 226, 200, 0.28);
    background: rgba(4, 24, 18, 0.88);
    color: #f4fff8;
  }

  .register-page .field input:focus,
  .register-page .field select:focus,
  .register-page .field textarea:focus {
    border-color: #4ce2c8;
    box-shadow: 0 0 0 4px rgba(76, 226, 200, 0.14);
    background: rgba(5, 31, 23, 0.98);
  }

  .register-page .field input::placeholder,
  .register-page .field textarea::placeholder {
    color: rgba(205, 236, 227, 0.6);
  }

  .field-help-tight {
    margin-top: -0.1rem;
    margin-bottom: 0.2rem;
  }

  .checkbox-stack {
    display: grid;
    gap: 0.85rem;
  }

  .checkbox-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(76, 226, 200, 0.28);
    background: rgba(4, 24, 18, 0.88);
    color: #f4fff8;
    cursor: pointer;
  }

  .checkbox-card input {
    margin-top: 0.3rem;
    accent-color: #ffc533;
  }

  .checkbox-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #ffca43;
  }

  .checkbox-inline {
    display: inline-flex;
    gap: 0.75rem;
    align-items: flex-start;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    color: #f4fff8;
    cursor: pointer;
    text-align: left;
  }

  #hardshipScholarship{
    width: auto;
  }

  .checkbox-inline input {
    margin-top: 0.25rem;
    accent-color: #ffc533;
  }

  .readonly-display {
    color: #d9fff0;
    font-weight: 500;
  }

  .summary-display {
    min-height: 56px;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(76, 226, 200, 0.28);
    background: rgba(4, 24, 18, 0.88);
    line-height: 1.6;
  }

  .summary-display-total {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffca43;
  }

  .register-page .register-button.button-primary {
    color: #0d170f;
    background: linear-gradient(135deg, #ffc533 0%, #ffb300 100%);
    box-shadow: 0 16px 34px rgba(255, 179, 0, 0.22);
  }

  .register-page .register-button.button-secondary {
    color: #effff5;
    border: 1px solid rgba(76, 226, 200, 0.55);
    background: rgba(4, 24, 18, 0.72);
    box-shadow: none;
  }

  .register-page .status-message[data-state="loading"] {
    background: rgba(76, 226, 200, 0.12);
    color: #ddfff3;
  }

  .register-page .status-message[data-state="error"] {
    background: rgba(255, 92, 0, 0.14);
    color: #ffd3c2;
  }

  .register-page .status-message[data-state="success"] {
    background: rgba(94, 255, 138, 0.14);
    color: #cbffd8;
  }

  .register-footer-panel {
    margin-top: 1.2rem;
  }

  .contact-page .page-shell {
    padding-bottom: 2rem;
  }

  .contact-main {
    padding-top: 1.35rem;
  }

  .contact-hero-panel {
    padding: 1.5rem;
    border-radius: 0 0 26px 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .contact-hero-copy h1 {
    margin: 0.65rem 0 0.8rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 0.95;
    color: #ffffff;
  }

  .contact-hero-copy p {
    margin: 0;
    max-width: 48rem;
    color: rgba(233, 255, 246, 0.92);
    line-height: 1.75;
    font-size: 1.02rem;
  }

  .contact-page .contact-layout {
    width: min(calc(100% - 2rem), 1180px);
    margin-top: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-layout-single {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-panel {
    padding: 1.7rem;
    border-radius: 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .contact-brand-card-dark {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 1rem;
  }

  .contact-brand-card-dark h2 {
    margin: 0;
    font-family: "Oxanium", sans-serif;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }

  .contact-brand-card-dark p {
    color: rgba(233, 255, 246, 0.92);
  }

  .contact-brand-card-dark .media-logo {
    width: min(110px, 18%);
    height: auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.9rem;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  }

  .contact-brand-card-dark .contact-note {
    max-width: 40rem;
  }

  .contact-footer-panel {
    margin-top: 1.2rem;
  }

  .about-page .page-shell {
    padding-bottom: 2rem;
  }

  .about-main {
    padding-top: 1.35rem;
  }

  .about-hero-panel {
    padding: 1.5rem;
    border-radius: 0 0 26px 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .about-hero-copy h1 {
    margin: 0.65rem 0 0.8rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 0.95;
    color: #ffffff;
    max-width: 13ch;
  }

  .about-hero-copy p {
    margin: 0;
    max-width: 50rem;
    color: rgba(233, 255, 246, 0.92);
    line-height: 1.75;
    font-size: 1.02rem;
  }

  .about-layout {
    width: min(calc(100% - 2rem), 1180px);
    margin: 1.2rem auto 0;
  }

  .about-panel {
    padding: 1.7rem;
    border-radius: 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .about-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(76, 226, 200, 0.22);
    background: rgba(4, 24, 18, 0.88);
  }

  .about-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .about-footer-panel {
    margin-top: 1.2rem;
  }

  .class-format-page .page-shell {
    padding-bottom: 2rem;
  }

  .class-format-main {
    padding-top: 1.35rem;
  }

  .class-format-hero-panel {
    padding: 1.5rem;
    border-radius: 0 0 26px 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .class-format-hero-copy h1 {
    margin: 0.65rem 0 0.8rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 0.95;
    color: #ffffff;
    max-width: 14ch;
  }

  .class-format-hero-copy p {
    margin: 0;
    max-width: 50rem;
    color: rgba(233, 255, 246, 0.92);
    line-height: 1.75;
    font-size: 1.02rem;
  }

  .class-format-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
    width: min(calc(100% - 2rem), 1180px);
    margin: 1.2rem auto 0;
  }

  .class-format-panel {
    padding: 1.7rem;
    border-radius: 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .class-format-panel-wide {
    grid-column: 1 / -1;
  }

  .class-format-panel h2 {
    margin: 0 0 0.8rem;
    color: #ffffff;
  }

  .class-format-panel p {
    margin: 0 0 1rem;
    color: rgba(233, 255, 246, 0.92);
    line-height: 1.78;
  }

  .class-format-panel p:last-child {
    margin-bottom: 0;
  }

  .class-format-benefits,
  .class-format-steps {
    display: grid;
    gap: 0.9rem;
  }

  .class-format-benefit,
  .class-format-step {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(76, 226, 200, 0.22);
    background: rgba(4, 24, 18, 0.88);
  }

  .class-format-benefit strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #ffca43;
    font-family: "Oxanium", sans-serif;
    font-size: 1.15rem;
  }

  .class-format-benefit p {
    margin: 0;
  }

  .class-format-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
  }

  .class-format-step span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffc533 0%, #ff8b08 100%);
    color: #0b120d;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
  }

  .class-format-step h3 {
    margin: 0 0 0.3rem;
    color: #bffff0;
    font-size: 1.08rem;
  }

  .class-format-step p {
    margin: 0;
  }

  .class-format-footer-panel {
    margin-top: 1.2rem;
  }

  .success-page .page-shell {
    padding-bottom: 2rem;
  }

  .success-main {
    padding-top: 1.35rem;
  }

  .success-panel {
    padding: 1.8rem;
    border-radius: 0 0 26px 26px;
    border: 1px solid rgba(54, 247, 164, 0.34);
    background: linear-gradient(180deg, rgba(2, 28, 22, 0.94), rgba(2, 20, 16, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    text-align: center;
  }

  .success-panel h1 {
    margin: 0.65rem 0 0.8rem;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    line-height: 0.95;
    color: #ffffff;
  }

  .success-panel p {
    max-width: 42rem;
    margin: 0 auto;
    color: rgba(233, 255, 246, 0.92);
    line-height: 1.75;
    font-size: 1.02rem;
  }

  .success-actions {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .success-footer-panel {
    margin-top: 1.2rem;
  }

  @media (max-width: 1080px) {
    .home-hero-grid,
    .home-info-grid,
    .home-instructor-grid,
    .home-format-grid {
      grid-template-columns: 1fr;
    }

    .home-feature-row {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 760px) {
    .home-topbar-inner {
      flex-direction: column;
      align-items: stretch;
    }

    .home-brand {
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .home-nav {
      justify-content: center;
    }

    .home-hero-title {
      font-size: clamp(3rem, 18vw, 4.6rem);
    }

    .home-hero-actions,
    .home-footer-actions {
      flex-direction: column;
    }

    .home-cta {
      width: 100%;
    }

    .register-hero-copy h1 {
      font-size: clamp(2.5rem, 14vw, 3.8rem);
    }

    .contact-hero-copy h1 {
      font-size: clamp(2.5rem, 14vw, 3.8rem);
    }

    .about-hero-copy h1 {
      font-size: clamp(2.5rem, 14vw, 3.8rem);
    }

    .class-format-grid-layout {
      grid-template-columns: 1fr;
    }

    .class-format-hero-copy h1 {
      font-size: clamp(2.5rem, 14vw, 3.8rem);
    }

    .success-panel h1 {
      font-size: clamp(2.5rem, 14vw, 3.8rem);
    }
  }
