
:root {
    --navy:       #1a2d5a;
    --navy-dark:  #0e1c3a;
    --navy-mid:   #22396e;
    --navy-light: #2e4d8f;
    --red:        #cc1f1f;
    --red-bright: #e53030;
    --white:      #ffffff;
    --off-white:  #f2f5fc;
    --silver:     #c8d2e8;
    --muted:      #7a8db0;
    --line:       rgba(200,210,232,0.15);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy-dark);
    color: var(--white);
    overflow-x: hidden;
  }

  body::after {
    content: '';
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    opacity: 0.6;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem; height: 70px;
    background: rgba(14,28,58,0.93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }
  
  .nav-logo {
  display:flex;
  align-items:center;
  padding:6px 12px;
  background:rgba(255,255,255,0.5);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:6px;
  backdrop-filter:blur(10px);
}
  
  .nav-logo img { height: 38px; width: auto; display: block; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
  .nav-links a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s;
  }
  .nav-logo:hover{
  transform:translateY(-1px);
  transition:transform 0.2s ease;
}
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--red) !important; color: var(--white) !important;
    padding: 0.55rem 1.4rem; border-radius: 3px;
    font-weight: 600 !important; letter-spacing: 0.06em !important; transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--red-bright) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 9rem 4rem 5rem;
    position: relative; overflow: hidden; z-index: 1;
  }
  .hero::before {
    content: ''; position: absolute; top: -10%; right: -5%;
    width: 55%; height: 120%;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
  }
  
  .hero-glow {
    position: absolute; top: 10%; right: 5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(204,31,31,0.07) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
  }
  .hero-left { position: relative; z-index: 2; }
  .hero-right { position: relative; z-index: 2; padding-left: 3.5rem; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(204,31,31,0.12); border: 1px solid rgba(204,31,31,0.4);
    padding: 0.4rem 1rem; border-radius: 2px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: #f07070; margin-bottom: 2rem;
    animation: fadeUp 0.7s ease both;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--red); animation: blink 2s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.65)} }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4.2vw, 5rem); font-weight: 900;
    line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.12s ease both;
  }
  .hero-title em { font-style: italic; color: #7a9ee0; }

  .hero-sub {
    font-size: 1.02rem; font-weight: 300; color: rgba(200,210,232,0.68);
    line-height: 1.78; max-width: 46ch; margin-bottom: 2.5rem;
    animation: fadeUp 0.7s 0.24s ease both;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.36s ease both; }

  .btn-primary {
    background: var(--red); color: var(--white);
    padding: 0.9rem 2.2rem; font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.03em; border: none; border-radius: 3px;
    cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }

  .btn-outline {
    background: transparent; color: var(--silver);
    padding: 0.9rem 2.2rem; font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.03em; border: 1px solid rgba(200,210,232,0.28);
    border-radius: 3px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--silver); color: var(--white); transform: translateY(-2px); }

  @keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

  /* BATCH CARDS */
  .batch-card {
    background: rgba(255,255,255,0.04); border: 1px solid var(--line);
    border-radius: 6px; padding: 1.8rem; position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .batch-card + .batch-card { margin-top: 1.25rem; animation-delay: 0.32s; }
  .batch-card:hover { border-color: rgba(200,210,232,0.35); transform: translateX(5px); }
  .batch-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--red);
  }
  .batch-card.c11::before { background: #4a6fc7; }

  .batch-tag {
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.14em; text-transform: uppercase; color: #f07070; margin-bottom: 0.4rem;
  }
  .batch-card.c11 .batch-tag { color: #7a9ee0; }

  .batch-title { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; margin-bottom: 1rem; }

  .batch-rows { display: flex; flex-direction: column; gap: 0.45rem; }
  .batch-row { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.83rem; color: rgba(200,210,232,0.75); line-height: 1.5; }
  .batch-row .ico { flex-shrink: 0; width: 1rem; margin-top: 0.1rem; }

  .batch-fee {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  }
  .fee-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--white); }
  .fee-note { font-size: 0.72rem; color: var(--muted); text-align: right; line-height: 1.6; }

  /* DIVIDER */
  .divider { height: 1px; margin: 0 4rem; background: linear-gradient(90deg, transparent, rgba(200,210,232,0.18), transparent); }

  /* SECTIONS */
  section { padding: 8rem 4rem; position: relative; z-index: 1; }

  .label {
    font-family: 'Space Mono', monospace; font-size: 0.68rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: #f07070; margin-bottom: 0.9rem; display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  }

  /* WHY */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
  .body-text { font-size: 0.98rem; font-weight: 300; color: rgba(200,210,232,0.65); line-height: 1.85; max-width: 50ch; margin-top: 1.2rem; }
  .pillars { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
  .pillar { display: flex; gap: 1.4rem; align-items: flex-start; }
  .pillar-n { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; line-height: 1; color: rgba(74,111,199,0.22); flex-shrink: 0; width: 2.8rem; }
  .pillar h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
  .pillar p { font-size: 0.85rem; color: rgba(200,210,232,0.55); line-height: 1.7; }

  .stats-box {
    background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 6px;
    padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  }
  .stat-n { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: #4a6fc7; line-height: 1; margin-bottom: 0.4rem; }
  .stat-l { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
  .akash-q { grid-column: 1/-1; padding-top: 2rem; border-top: 1px solid var(--line); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: rgba(200,210,232,0.6); line-height: 1.75; }
  .akash-q cite { display: block; font-family: 'Space Mono', monospace; font-style: normal; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #7a9ee0; margin-top: 0.75rem; }

  /* SCHEDULE */
  .schedule-section { background: linear-gradient(180deg, transparent, rgba(26,45,90,0.4), transparent); }
  .sched-top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem; }
  .sched-sub { font-size: 0.88rem; color: var(--muted); max-width: 36ch; line-height: 1.7; }
  .sched-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .sched-card { background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
  .sched-head { padding: 1.4rem 2rem; background: rgba(26,45,90,0.6); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
  .sched-head-class { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; }
  .sched-head-year { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--muted); margin-top: 0.2rem; }
  .sched-starts { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(204,31,31,0.15); border: 1px solid rgba(204,31,31,0.35); color: #f07070; padding: 0.3rem 0.65rem; border-radius: 2px; }
  .sched-card.c11 .sched-starts { background: rgba(74,111,199,0.15); border-color: rgba(74,111,199,0.35); color: #7a9ee0; }
  .sched-body { padding: 1.75rem 2rem; }
  .phase { margin-bottom: 1.4rem; }
  .phase:last-child { margin-bottom: 0; }
  .phase-lbl { font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: #f07070; margin-bottom: 0.45rem; }
  .sched-card.c11 .phase-lbl { color: #7a9ee0; }
  .phase-detail { font-size: 0.86rem; color: rgba(200,210,232,0.75); line-height: 1.65; }
  .mode-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.4rem; }
  .mtag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 2px; border: 1px solid; }
  .mtag-red { background: rgba(204,31,31,0.1); border-color: rgba(204,31,31,0.3); color: #f07070; }
  .mtag-blue { background: rgba(74,111,199,0.1); border-color: rgba(74,111,199,0.3); color: #7a9ee0; }
  .mtag-grey { background: rgba(255,255,255,0.04); border-color: rgba(200,210,232,0.18); color: var(--muted); }
  .sched-fee { padding: 1.4rem 2rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
  .sched-fee-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); }
  .instl { font-size: 0.75rem; color: var(--muted); line-height: 1.65; text-align: right; }

  /* REVIEWS */
  .reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3.5rem; }
  .rev-card { background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 6px; padding: 2rem; position: relative; transition: border-color 0.3s; }
  .rev-card:first-child { grid-column: 1/-1; background: rgba(26,45,90,0.4); border-color: rgba(74,111,199,0.25); }
  .rev-card:hover { border-color: rgba(200,210,232,0.3); }
  .qdeco { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 0.6; color: rgba(74,111,199,0.12); position: absolute; top: 1.4rem; left: 1.5rem; }
  .rev-text { font-size: 0.9rem; color: rgba(200,210,232,0.7); line-height: 1.82; padding-top: 1.4rem; position: relative; z-index: 1; }
  .rev-author { display: flex; justify-content: space-between; align-items: center; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
  .rev-name { font-weight: 600; font-size: 0.88rem; }
  .stars { color: #f5c842; font-size: 0.8rem; letter-spacing: 0.1em; }

  /* CTA */
  .cta-section { text-align: center; overflow: hidden; background: linear-gradient(180deg, transparent, rgba(26,45,90,0.5)); }
  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(74,111,199,0.07), transparent 70%); pointer-events: none; }
  .cta-section > * { position: relative; z-index: 1; }
  .cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4.5vw, 4.8rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; max-width: 18ch; margin: 1rem auto 1.5rem; }
  .cta-sub { font-size: 1rem; color: var(--muted); margin-bottom: 3rem; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cta-link { display: block; margin-top: 2.5rem; font-family: 'Space Mono', monospace; font-size: 0.9rem; letter-spacing: 0.08em; color: #7a9ee0; text-decoration: none; transition: color 0.2s; }
  .cta-link:hover { color: var(--white); }

  /* FOOTER */
  footer { border-top: 1px solid var(--line); padding: 2rem 4rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted); position: relative; z-index: 1; }
  .footer-logo img { height: 28px; opacity: 0.7; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--white); }
  

@media (max-width: 900px) {

  nav { padding: 0 1rem; }

  .nav-logo img{
    height:28px;
  }

  .nav-logo{
    padding:4px 8px;
  }
  
  .nav-cta{
    padding:0.55rem 1rem;
    font-size:0.75rem;
	white-space:nowrap;
  }

  .nav-links{
    gap:0;
    margin-left:auto;
  }

  .nav-links li:not(:last-child){
    display:none;
  }

  .hero { grid-template-columns: 1fr; padding: 7.5rem 1.5rem 4rem; }
  .hero::before { display: none; }
  .hero::after { display: none; }
  .hero-right { padding-left: 0; margin-top: 2rem; }

  .why-grid, .sched-grid, .reviews-grid { grid-template-columns: 1fr; }

  section { padding: 5rem 1.5rem; }
  .divider { margin: 0 1.5rem; }

  .rev-card:first-child { grid-column: 1; }

  .sched-top {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-box {
    grid-template-columns: 1fr 1fr;
  }
}
 
  :root {
    --navy:       #1a2d5a;
    --navy-dark:  #0e1c3a;
    --navy-mid:   #22396e;
    --navy-light: #2e4d8f;
    --red:        #cc1f1f;
    --red-bright: #e53030;
    --white:      #ffffff;
    --silver:     #c8d2e8;
    --muted:      #7a8db0;
    --blue-acc:   #4a6fc7;
    --blue-light: #7a9ee0;
    --line:       rgba(200,210,232,0.15);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy-dark);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* noise texture */
  body::after {
    content: '';
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    opacity: 0.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem; height: 70px;
    background: rgba(14,28,58,0.93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }

  .nav-logo {
    display: flex; align-items: center;
    padding: 6px 12px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  .nav-logo:hover { transform: translateY(-1px); }
  .nav-logo img { height: 38px; width: auto; display: block; }

  .nav-back {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-back:hover { color: var(--white); }
  .nav-back svg { width: 16px; height: 16px; }

  .nav-right { display: flex; align-items: center; gap: 2rem; }

  .nav-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
    background: rgba(204,31,31,0.12); border: 1px solid rgba(204,31,31,0.35);
    color: #f07070; padding: 0.3rem 0.75rem; border-radius: 2px;
    display: flex; align-items: center; gap: 0.4rem;
  }
  .nav-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--red); animation: blink 2s infinite; flex-shrink: 0;
  }
  @keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.65)} }

  /* ── PAGE HERO STRIP ── */
  .page-hero {
    position: relative; z-index: 1;
    padding: 9rem 4rem 3.5rem;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse 70% 100% at 80% 50%, rgba(74,111,199,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 80% at 10% 60%, rgba(204,31,31,0.05) 0%, transparent 60%);
    pointer-events: none;
  }

  /* Decorative slashes — echoing logo */
  .page-hero::after {
    content: '//';
    position: absolute; right: 4rem; top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 14rem; font-weight: 900; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(74,111,199,0.07);
    pointer-events: none; user-select: none;
  }

  .hero-inner {
    position: relative; z-index: 1;
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 2rem;
  }

  .hero-text {}

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(74,111,199,0.1); border: 1px solid rgba(74,111,199,0.3);
    padding: 0.35rem 0.9rem; border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue-light);
    margin-bottom: 1.2rem;
    animation: fadeUp 0.6s ease both;
  }

  .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4.5vw, 5rem);
    font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .page-title em { font-style: italic; color: var(--blue-light); }

  .page-sub {
    font-size: 1rem; font-weight: 300;
    color: rgba(200,210,232,0.6); line-height: 1.75;
    max-width: 48ch; margin-top: 1rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  /* batch pills row */
  .batch-pills {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.25s ease both;
  }

  .bpill {
    border: 1px solid; border-radius: 4px;
    padding: 0.9rem 1.4rem; min-width: 180px;
  }
  .bpill-blue { background: rgba(74,111,199,0.08); border-color: rgba(74,111,199,0.25); }
  .bpill-red  { background: rgba(204,31,31,0.08);  border-color: rgba(204,31,31,0.25); }

  .bpill-class {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem;
  }
  .bpill-blue .bpill-class { color: var(--blue-light); }
  .bpill-red  .bpill-class { color: #f07070; }

  .bpill-meta { font-size: 0.76rem; color: var(--muted); line-height: 1.6; }

  @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

  /* ── ACCENT LINE ── */
  .accent-line {
    height: 1px; margin: 0 4rem;
    background: linear-gradient(90deg, transparent, rgba(200,210,232,0.18), transparent);
    position: relative; z-index: 1;
  }

  /* ── MAIN CONTENT ── */
  .main-content {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 320px 1fr;
    gap: 0;
    margin: 0 4rem 5rem;
    border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  }

  /* top gradient bar */
  .main-content::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue-acc) 0%, var(--red) 100%);
    z-index: 2;
  }

  /* ── SIDEBAR ── */
  .sidebar {
    background: rgba(26,45,90,0.55);
    border-right: 1px solid var(--line);
    padding: 3rem 2rem;
    display: flex; flex-direction: column; gap: 2.5rem;
  }

  .sb-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; margin-bottom: 1rem;
    color: var(--white);
  }

  /* Steps */
  .steps { display: flex; flex-direction: column; gap: 0; }

  .step {
    display: flex; gap: 1rem; position: relative;
    padding-bottom: 1.6rem;
  }
  .step:last-child { padding-bottom: 0; }

  .step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }

  .step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(74,111,199,0.15); border: 1px solid rgba(74,111,199,0.35);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    font-weight: 700; color: var(--blue-light); flex-shrink: 0;
  }

  .step-line {
    width: 1px; flex: 1; margin-top: 4px;
    background: linear-gradient(180deg, rgba(74,111,199,0.25), transparent);
    min-height: 24px;
  }
  .step:last-child .step-line { display: none; }

  .step-body { padding-top: 4px; }
  .step-body strong { display: block; font-size: 0.88rem; margin-bottom: 0.2rem; }
  .step-body p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

  /* Batch info cards */
  .sb-batches { display: flex; flex-direction: column; gap: 0.8rem; }

  .sb-batch {
    border-radius: 5px; padding: 1rem 1.1rem; border: 1px solid;
  }
  .sb-batch-blue { background: rgba(74,111,199,0.07); border-color: rgba(74,111,199,0.2); }
  .sb-batch-red  { background: rgba(204,31,31,0.07);  border-color: rgba(204,31,31,0.2); }

  .sb-batch-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }

  .sb-batch-class {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; font-weight: 700;
  }
  .sb-batch-blue .sb-batch-class { color: var(--blue-light); }
  .sb-batch-red  .sb-batch-class { color: #f07070; }

  .sb-batch-badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.15rem 0.45rem; border-radius: 2px;
  }
  .sb-batch-blue .sb-batch-badge { background: rgba(74,111,199,0.15); color: var(--blue-light); }
  .sb-batch-red  .sb-batch-badge { background: rgba(204,31,31,0.15);  color: #f07070; }

  .sb-batch-rows { display: flex; flex-direction: column; gap: 0.3rem; }
  .sb-batch-row { font-size: 0.75rem; color: var(--muted); display: flex; gap: 0.5rem; }
  .sb-batch-row span:first-child { flex-shrink: 0; }

  .sb-batch-fee {
    margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid var(--line);
    font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
    color: var(--white);
  }
  .sb-batch-fee small { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 400; color: var(--muted); margin-left: 0.4rem; }

  /* Contact blurb */
  .sb-contact {
    background: rgba(255,255,255,0.03); border: 1px solid var(--line);
    border-radius: 5px; padding: 1rem 1.1rem;
  }
  .sb-contact p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.6rem; }
  .sb-contact a { color: var(--blue-light); text-decoration: none; font-size: 0.82rem; font-weight: 500; }
  .sb-contact a:hover { color: var(--white); }

  /* ── FORM EMBED ── */
  .form-embed-col {
    background: #ffffff;
    display: flex; flex-direction: column;
  }

  .form-embed-col iframe {
    flex: 1; display: block;
    width: 100%; min-height: 780px;
    border: none;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--line);
    padding: 2rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--muted);
    position: relative; z-index: 1;
  }

  .footer-logo img { height: 28px; opacity: 0.7; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--white); }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    nav { padding: 0 1rem; }
    .nav-logo img { height: 28px; }
    .nav-logo { padding: 4px 8px; }
    .nav-tag { display: none; }

    .page-hero { padding: 8rem 1.5rem 2.5rem; }
    .page-hero::after { display: none; }
    .hero-inner { flex-direction: column; align-items: flex-start; }

    .accent-line { margin: 0 1.5rem; }

    .main-content {
      grid-template-columns: 1fr;
      margin: 0 1.5rem 4rem;
    }
    .sidebar { border-right: none; border-bottom: 1px solid var(--line); }
    .form-embed-col iframe { min-height: 640px; }

    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }