:root {
  color-scheme: light;
  --ink: #0b1220;
  --muted: #526071;
  --line: #dce4ee;
  --soft: #f5f8fc;
  --white: #ffffff;
  --blue: #1769ff;
  --blue-dark: #0a3fb7;
  --green: #08b86f;
  --green-soft: #e5f9ef;
  --shadow: 0 24px 80px rgba(16, 33, 58, 0.12);
  --radius: 8px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 105, 255, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2f3c4d;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  transition: color 180ms ease;
}

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

.nav-cta {
  padding: 11px 16px;
  color: var(--white) !important;
  background: rgba(11, 18, 32, 0.75);
  border-radius: 8px;
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-internship {
  min-width: 132px;
  padding: 0 24px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(23, 105, 255, 0.25);
}

.nav-internship:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(23, 105, 255, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.section-pad {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 74px);
  overflow: hidden;
}

.hero > *,
.split-section > *,
.certificate-section > *,
.contact-section > * {
  min-width: 0;
}

.hero h1,
.section-heading h2,
.split-section h2,
.certificate-copy h2,
.contact-copy h2,
.launch-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p,
.section-heading p,
.certificate-copy p,
.contact-copy p,
.launch-band p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 32px rgba(23, 105, 255, 0.25);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(245, 248, 252, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
}

.preview-shell {
  overflow: hidden;
  padding: 12px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  box-shadow: 0 24px 80px rgba(16, 33, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: rotate(1deg);
}

.product-preview {
  min-height: 520px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(23, 105, 255, 0.08), rgba(8, 184, 111, 0.1)),
    var(--white);
  border-radius: 8px;
}

.preview-topbar,
.preview-body,
.preview-grid {
  position: relative;
  z-index: 1;
}

.preview-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.preview-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
}

.preview-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 48px 0;
}

.preview-body h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.preview-body p {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.progress-ring {
  display: grid;
  width: clamp(110px, 14vw, 154px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue-dark);
  background:
    radial-gradient(circle at center, var(--white) 56%, transparent 57%),
    conic-gradient(var(--blue) 0 72%, #dbeafe 72% 100%);
  border-radius: 999px;
  font-size: 30px;
  font-weight: 850;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-grid article {
  min-height: 132px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.preview-grid span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-grid strong {
  display: block;
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.35;
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(16, 33, 58, 0.16);
  backdrop-filter: blur(18px);
}

.live-card {
  position: absolute;
  right: 24px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(370px, calc(100% - 48px));
  padding: 16px;
}

.live-card strong,
.live-card small {
  display: block;
}

.live-card small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(8, 184, 111, 0.14);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.trust-strip span {
  padding: 22px clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.ai-overview-section {
  background: #ffffff;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.answer-grid article {
  min-width: 0;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.answer-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.answer-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 88px);
  background: var(--soft);
}

.section-label {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article,
.program-card,
.mentor-grid article,
.price-card,
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(16, 33, 58, 0.06);
}

.feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  padding: 24px;
}

.feature-list span {
  grid-row: span 2;
  color: var(--green);
  font-weight: 850;
}

h3,
h4,
p {
  letter-spacing: 0;
}

.feature-list h3,
.program-card h3,
.mentor-grid h3,
.price-card h3 {
  margin: 0;
  font-size: 20px;
}

.feature-list p,
.program-card p,
.mentor-grid p,
.price-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.program-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.program-tabs button {
  min-height: 40px;
  padding: 0 15px;
  color: #334155;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.program-tabs button.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
}

.program-card {
  min-height: 300px;
  padding: 22px;
}

.program-card.is-hidden {
  display: none;
}

.program-icon,
.mentor-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue-dark);
  background: var(--green-soft);
  border-radius: 8px;
  font-weight: 850;
}

.program-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.certificate-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #253244;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  content: "✓";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-size: 12px;
}

.certificate-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(8, 184, 111, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  text-align: center;
}

.certificate-card::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(23, 105, 255, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.cert-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.certificate-card p {
  position: relative;
  margin: 44px 0 18px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.certificate-card h3 {
  position: relative;
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
}

.certificate-card > span {
  position: relative;
  display: block;
  margin: 18px auto 10px;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.certificate-card h4 {
  position: relative;
  margin: 0;
  color: var(--green);
  font-size: 26px;
}

.cert-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 62px;
  color: var(--muted);
  font-weight: 750;
}

.mentors-section {
  background: var(--ink);
  color: var(--white);
}

.mentors-section h2,
.mentors-section .section-label {
  color: var(--white);
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.mentor-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.mentor-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: clamp(24px, 4vw, 40px);
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--ink), #123b77);
  border-color: transparent;
}

.price-card strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding-left: 18px;
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.launch-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 184, 111, 0.92), rgba(23, 105, 255, 0.92)),
    #1769ff;
  border-radius: 8px;
}

.launch-band h2,
.launch-band p {
  color: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 82px);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #253244;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #f9fbfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.lead-form textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.1);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #cbd5e1;
  background: var(--ink);
}

.site-footer p {
  margin: 10px 0 0;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 1100px) {
  .answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 1100px) {
  .hero,
  .split-section,
  .certificate-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }

  .program-grid,
  .mentor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 66px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
  }

  .nav-cta {
    text-align: center;
  }

  .hero h1,
  .section-heading h2,
  .split-section h2,
  .certificate-copy h2,
  .contact-copy h2,
  .launch-band h2 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .hero-stats,
  .trust-strip,
  .program-grid,
  .mentor-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .preview-shell {
    transform: none;
  }

  .product-preview {
    min-height: auto;
  }

  .preview-topbar,
  .preview-body {
    align-items: flex-start;
  }

  .preview-topbar,
  .preview-body,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-topbar {
    flex-direction: column;
  }

  .live-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .certificate-card {
    min-height: 380px;
  }

  .cert-footer,
  .launch-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn,
  .lead-form .btn {
    width: 100%;
  }
}

/* More faithful Sarvam-style panel and color treatment */
:root {
  --sarvam-navy: #28293f;
  --sarvam-text: #303039;
  --sarvam-blue: #5666f3;
  --sarvam-orange: #ec7a38;
  --sarvam-green: #6a8f3c;
  --sarvam-violet: #646cff;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 224, 202, 0.95), transparent 22%),
    radial-gradient(circle at 50% 20%, rgba(194, 207, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #fbfbff 0%, #ffffff 54%);
}

.site-header {
  height: 82px;
  padding: 0 14px 0 26px;
}

.brand {
  color: #050505;
  font-size: clamp(29px, 2.4vw, 38px);
  font-weight: 900;
}

.nav {
  gap: clamp(4px, 0.7vw, 12px);
  min-width: 0;
  font-size: 13px;
  letter-spacing: 1.4px;
}

.nav a:not(.nav-cta):not(.nav-login):not(.nav-internship) {
  padding: 14px clamp(8px, 1vw, 16px);
  border-radius: 14px;
}

.nav a:not(.nav-cta):not(.nav-login):not(.nav-internship):hover,
.nav a:not(.nav-cta):not(.nav-login):not(.nav-internship):focus-visible {
  color: #0c0c11;
  background: #f1f1f1;
}

.nav-login,
.nav-cta,
.nav-internship {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.nav-login {
  min-width: 92px;
  padding: 0 24px;
  color: #ffffff !important;
  background: var(--sarvam-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.nav-cta {
  min-width: 132px;
  padding: 0 20px;
}

#internship,
#programs,
#certificate,
#mentors,
#pricing,
#contact {
  scroll-margin-top: 130px;
}

.hero {
  padding-top: clamp(170px, 17vh, 220px);
}

.hero h1 {
  max-width: 1050px;
  font-size: clamp(76px, 8.2vw, 128px);
}

.hero p:not(.hero-kicker):not(.hero-footnote) {
  max-width: 760px;
  font-size: clamp(25px, 2.1vw, 34px);
}

.programs-section {
  padding-top: 90px;
}

.sarvam-panel {
  width: min(1720px, calc(100vw - 88px));
  margin: 52px auto 0;
  padding: clamp(46px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 48px;
  box-shadow: 0 30px 80px rgba(25, 26, 38, 0.12);
}

.programs-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 680px;
  margin-inline: auto;
}

.panel-label {
  margin: 0 0 34px;
  color: rgba(48, 48, 57, 0.62);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-list {
  display: grid;
  gap: 28px;
}

.panel-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: center;
}

.course-link {
  margin: -10px;
  padding: 10px;
  border-radius: 22px;
  transition: background 180ms ease, transform 180ms ease;
}

.course-link:hover,
.course-link:focus-visible {
  background: rgba(52, 58, 164, 0.06);
  transform: translateX(4px);
  outline: none;
}

.course-link:active {
  transform: translateX(2px);
  background: rgba(52, 58, 164, 0.1);
  box-shadow: none;
  outline: none;
}

.panel-item h3 {
  margin: 0;
  color: var(--sarvam-text);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
}

.panel-item p {
  margin: 7px 0 0;
  color: #747474;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.25;
}

.panel-item small {
  display: inline-block;
  margin-top: 12px;
  color: #343aa4;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.program-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(30, 31, 45, 0.04);
  font-size: 21px;
  font-weight: 850;
}

.program-icon.violet {
  color: var(--sarvam-violet);
}

.program-icon.orange {
  color: var(--sarvam-orange);
}

.program-icon.green {
  color: var(--sarvam-green);
}

.program-icon.blue {
  color: #2f5fe7;
}

.program-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 28px;
}

.gradient-card {
  display: grid;
  min-height: 310px;
  place-items: center;
  padding: 32px;
  color: #ffffff;
  border-radius: 20px;
  text-align: center;
}

.gradient-card strong {
  max-width: 430px;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 750;
  line-height: 1.05;
}

.gradient-orange {
  background:
    radial-gradient(circle at 52% 62%, rgba(255, 229, 179, 0.95), transparent 28%),
    linear-gradient(180deg, #a65324 0%, #ee7d34 45%, #dfe6ff 100%);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 52px);
}

.feature-copy h3 {
  margin: 0;
  color: var(--sarvam-text);
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.05;
}

.feature-copy p {
  max-width: 650px;
  margin: 44px 0 0;
  color: #737373;
  font-size: clamp(19px, 1.7vw, 29px);
  line-height: 1.45;
}

.feature-list {
  padding: 14px;
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
}

.feature-list article {
  box-shadow: none;
}

.program-card {
  display: none;
}

.certificate-card h3,
.price-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.launch-band {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 210, 149, 0.45), transparent 30%),
    linear-gradient(135deg, #2c2d43, #24253a 58%, #5f67df);
}

.launch-band h2 {
  color: #ffffff;
}

.launch-band p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1180px) {
  .nav {
    gap: 10px;
  }

  .nav a:not(.nav-cta):not(.nav-login) {
    padding-inline: 14px;
  }

  .nav-login,
  .nav-cta,
  .nav-internship {
    display: none;
  }

  .programs-panel,
  .program-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 78px;
    padding: 0 18px 0 24px;
  }

  .brand {
    font-size: 28px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .hero p:not(.hero-kicker):not(.hero-footnote) {
    font-size: 20px;
  }

  .sarvam-panel {
    width: calc(100vw - 24px);
    padding: 28px;
    border-radius: 32px;
  }

  .panel-item {
    grid-template-columns: 62px 1fr;
    gap: 18px;
  }

  .program-icon {
    width: 58px;
    height: 58px;
    font-size: 17px;
  }

  .gradient-card {
    min-height: 220px;
  }
}

/* Sarvam-inspired visual direction for Openzara */
:root {
  --ink: #222331;
  --muted: #565969;
  --line: rgba(34, 35, 49, 0.12);
  --soft: #f4f5fb;
  --white: #ffffff;
  --blue: #32339a;
  --blue-dark: #24253c;
  --green: #6a6fe8;
  --green-soft: #f0f1ff;
  --shadow: 0 22px 80px rgba(31, 33, 62, 0.11);
}

body {
  background:
    radial-gradient(circle at 50% 5%, rgba(245, 217, 196, 0.78), transparent 18%),
    radial-gradient(circle at 50% 26%, rgba(198, 210, 255, 0.76), transparent 32%),
    linear-gradient(180deg, #f9f9ff 0%, #ffffff 45%);
  color: var(--ink);
}

.site-header {
  top: 24px;
  width: calc(100% - 64px);
  margin: 0 auto;
  padding: 18px 30px;
  border: 1px solid rgba(34, 35, 49, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 48px rgba(33, 35, 56, 0.08);
}

.brand {
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -1px;
}

.brand-mark {
  display: none;
}

.nav {
  gap: clamp(22px, 4vw, 58px);
  color: #151522;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-cta {
  padding: 17px 28px;
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(34, 35, 49, 0.14);
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 550;
}

.section-pad {
  padding-inline: clamp(22px, 6vw, 88px);
}

.hero {
  display: block;
  min-height: calc(100vh - 32px);
  padding-top: clamp(160px, 18vh, 230px);
  padding-bottom: 48px;
  text-align: center;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
}

.hero-visual,
.hero-stats {
  display: none;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(360px, 82vw);
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.96);
}

.hero-ornament span {
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-ornament strong {
  color: rgba(255, 255, 255, 0.98);
  font-size: 34px;
  font-weight: 400;
}

.hero-kicker {
  width: fit-content;
  margin: 0 auto 42px !important;
  padding: 20px 52px;
  color: #343aa4 !important;
  border-top: 1px solid rgba(52, 58, 164, 0.12);
  border-bottom: 1px solid rgba(52, 58, 164, 0.12);
  font-size: clamp(18px, 2vw, 28px) !important;
  line-height: 1 !important;
}

.hero h1,
.section-heading h2,
.split-section h2,
.certificate-copy h2,
.contact-copy h2,
.launch-band h2 {
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -1px;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.94;
}

.hero p:not(.hero-kicker):not(.hero-footnote) {
  max-width: 720px;
  margin: 36px auto 0;
  color: #4e505a;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.65;
}

.hero-actions {
  justify-content: center;
  gap: 28px;
  margin-top: 78px;
}

.btn {
  min-height: 86px;
  padding: 0 42px;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(180deg, #37384f, #28293c);
  box-shadow: 0 18px 38px rgba(36, 37, 60, 0.16);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(34, 35, 49, 0.13);
}

.hero-footnote {
  margin: clamp(120px, 16vh, 190px) 0 0 !important;
  color: rgba(34, 35, 49, 0.55) !important;
  font-size: clamp(16px, 1.4vw, 22px) !important;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.trust-strip {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 44px;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 48px rgba(33, 35, 56, 0.07);
}

.trust-strip span {
  color: rgba(34, 35, 49, 0.72);
  border-right: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.split-section,
.certificate-section,
.mentors-section,
.pricing-section,
.contact-section,
.programs-section {
  background: transparent;
}

.split-section {
  grid-template-columns: 0.85fr 1.15fr;
}

.section-label {
  color: #343aa4;
  font-size: 14px;
  letter-spacing: 3px;
}

.section-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-section h2,
.certificate-copy h2,
.contact-copy h2 {
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 1;
}

.section-heading p,
.certificate-copy p,
.contact-copy p,
.launch-band p {
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
}

.feature-list article,
.program-card,
.mentor-grid article,
.price-card,
.lead-form,
.certificate-card {
  border-color: rgba(34, 35, 49, 0.1);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(33, 35, 56, 0.08);
  backdrop-filter: blur(18px);
}

.program-tabs {
  justify-content: center;
}

.program-tabs button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.program-tabs button.active {
  background: #28293c;
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  min-height: 310px;
  padding: 30px;
}

.program-icon,
.mentor-grid span {
  width: 58px;
  height: 58px;
  color: #343aa4;
  background: #eef0ff;
  border-radius: 18px;
}

.certificate-card {
  border-width: 1px;
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 210, 255, 0.38), transparent 45%),
    rgba(255, 255, 255, 0.82);
}

.mentors-section {
  color: var(--ink);
}

.mentors-section h2,
.mentors-section .section-label {
  color: var(--ink);
}

.mentor-grid article {
  background: rgba(255, 255, 255, 0.7);
}

.mentor-grid p {
  color: var(--muted);
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(180deg, #37384f, #27283a);
}

.price-card.featured .btn-primary {
  background: #ffffff;
  color: var(--ink);
}

.launch-band {
  color: var(--white);
  border-radius: 44px;
  background: linear-gradient(135deg, #34364f, #25263a);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.lead-form textarea {
  border-radius: 26px;
}

.site-footer {
  color: var(--ink);
  background: transparent;
  border-top: 1px solid var(--line);
}

.site-footer p,
.footer-links {
  color: var(--muted);
}

.course-page {
  min-height: 100vh;
}

.course-shell {
  padding-top: clamp(80px, 8vw, 126px);
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.course-copy h1,
.course-projects h2 {
  margin: 0;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -1px;
}

.course-copy p:not(.section-label),
.course-projects p {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.55;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: #343aa4;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 44px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  color: #34364f;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(34, 35, 49, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(33, 35, 56, 0.07);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.interest-box {
  display: grid;
  gap: 14px;
  max-width: 420px;
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
}

.interest-box label {
  display: grid;
  gap: 8px;
  color: #24242a;
  font-size: 13px;
  font-weight: 800;
}

.interest-box input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(34, 35, 49, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: #24242a;
  font: inherit;
  font-size: 14px;
}

.interest-box input:focus {
  outline: none;
  border-color: #343aa4;
  box-shadow: 0 0 0 4px rgba(52, 58, 164, 0.08);
}

.interest-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.interest-status.is-success {
  color: #155f3c;
}

.interest-status.is-error {
  color: #d32f2f;
}

.course-poster {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 35, 49, 0.1);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(33, 35, 56, 0.12);
}

.course-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f4f5fb;
}

.course-poster figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  padding: 18px 22px;
  color: #24242a;
  font-weight: 850;
}

.course-poster figcaption span {
  color: var(--muted);
  font-weight: 700;
}

.course-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: 18px;
}

.course-highlights {
  display: grid;
  gap: 14px;
}

.course-highlights article,
.syllabus-panel,
.project-list article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 35, 49, 0.1);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(33, 35, 56, 0.08);
  backdrop-filter: blur(18px);
}

.course-highlights article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.course-highlights span {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: #343aa4;
  background: #eef0ff;
  border-radius: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-highlights strong {
  font-size: 18px;
}

.syllabus-panel {
  padding: clamp(24px, 4vw, 48px);
}

.syllabus-panel .section-heading {
  margin: 0 0 26px;
  text-align: left;
}

.syllabus-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: syllabus;
}

.syllabus-list li {
  position: relative;
  min-height: 64px;
  padding: 18px 18px 18px 74px;
  color: #34364f;
  background: rgba(244, 245, 251, 0.72);
  border: 1px solid rgba(34, 35, 49, 0.08);
  border-radius: 20px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.45;
}

.syllabus-list li::before {
  position: absolute;
  left: 18px;
  top: 16px;
  counter-increment: syllabus;
  content: counter(syllabus, decimal-leading-zero);
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: #28293c;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}

.course-projects {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: 24px;
}

.project-list {
  display: grid;
  gap: 16px;
}

.project-list article {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}

.project-list strong {
  color: #24242a;
  font-size: clamp(19px, 1.7vw, 28px);
}

.project-list span {
  color: #343aa4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.course-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.course-meta-pills span {
  padding: 8px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.course-who,
.course-outcomes {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.who-list,
.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.who-list li,
.outcomes-list li {
  padding: 18px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
}

.who-list li::before {
  content: "→ ";
  color: var(--blue);
  font-weight: 700;
}

.outcomes-list li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

.cert-banner-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 16px;
  color: var(--white);
}

.cert-banner-card strong {
  font-size: clamp(18px, 1.6vw, 24px);
}

.cert-banner-card .btn-primary {
  background: var(--white);
  color: var(--blue-dark);
}

@media (max-width: 1100px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-hero,
  .course-overview,
  .course-projects {
    grid-template-columns: 1fr;
  }

  .course-poster {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .brand {
    font-size: 24px;
  }

  .nav {
    inset: 80px 16px auto;
    border-radius: 28px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero p:not(.hero-kicker):not(.hero-footnote) {
    font-size: 20px;
  }

  .hero-actions {
    margin-top: 46px;
    gap: 14px;
  }

  .btn {
    width: 100%;
    min-height: 64px;
    font-size: 20px;
  }

  .hero-footnote {
    margin-top: 74px !important;
    letter-spacing: 4px;
  }

  .trust-strip,
  .program-grid,
  .mentor-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .course-shell {
    padding-top: 72px;
  }

  .course-copy h1,
  .course-projects h2 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .course-copy p:not(.section-label),
  .course-projects p {
    font-size: 19px;
  }

  .course-actions .btn {
    width: auto;
  }

  .coming-soon-badge {
    width: 100%;
    justify-content: center;
  }

  .syllabus-list li {
    padding-right: 14px;
  }
}

/* Final readable liquid-glass pass. Keep this last so old restyle layers cannot override it. */
.site-header {
  top: 18px;
  width: min(1180px, calc(100% - 40px));
  height: 68px;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 46px rgba(33, 35, 56, 0.11);
  backdrop-filter: blur(24px) saturate(1.35);
}

.brand {
  color: #050505;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 850;
  letter-spacing: -0.8px;
}

.nav {
  gap: clamp(12px, 2.1vw, 30px);
  color: #101018;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 780;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav a:not(.nav-cta):not(.nav-login):not(.nav-internship) {
  padding: 16px 0;
  border-radius: 14px;
}

.nav-login,
.nav-cta,
.nav-internship {
  min-height: 44px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-login {
  min-width: 82px;
  padding: 0 18px;
  color: #ffffff !important;
  background: #292a40;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
}

.nav-cta {
  min-width: 118px;
  padding: 0 18px;
  color: #292a40 !important;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 580;
}

.hero {
  padding-top: clamp(128px, 15vh, 172px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -1px;
}

.hero p:not(.hero-kicker):not(.hero-footnote) {
  max-width: 660px;
  margin-top: 26px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.66;
}

.hero-kicker {
  margin-bottom: 28px !important;
  padding: 13px 28px;
  font-size: clamp(14px, 1.2vw, 17px) !important;
}

.hero-actions {
  gap: 16px;
  margin-top: 42px;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  font-size: clamp(15px, 1.05vw, 18px);
}

.hero-footnote {
  margin-top: clamp(72px, 10vh, 120px) !important;
  font-size: clamp(12px, 1vw, 15px) !important;
  letter-spacing: 4px;
}

.section-heading h2,
.split-section h2,
.certificate-copy h2,
.contact-copy h2,
.launch-band h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
}

.section-heading p,
.certificate-copy p,
.contact-copy p,
.launch-band p {
  font-size: clamp(16px, 1.25vw, 20px);
}

.course-shell {
  padding-top: 112px;
}

.course-copy h1,
.course-projects h2 {
  max-width: 780px;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.04;
}

.course-copy p:not(.section-label),
.course-projects p {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
}

.coming-soon-badge {
  min-height: 46px;
}

@media (max-width: 1280px) {
  .site-header {
    width: calc(100% - 32px);
    height: 66px;
    padding-left: 22px;
  }

  .brand {
    font-size: 24px;
    letter-spacing: -0.7px;
  }

  .nav {
    gap: 12px;
    font-size: 11px;
  }

  .nav-login,
  .nav-cta,
  .nav-internship {
    min-height: 42px;
    font-size: 15px;
  }

  .nav-login {
    min-width: 76px;
    padding: 0 16px;
  }

  .nav-cta {
    min-width: 108px;
    padding: 0 16px;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 64px;
    padding: 0 14px 0 18px;
    border-radius: 28px;
  }

  .brand {
    font-size: 22px;
    letter-spacing: -0.5px;
  }

  .nav {
    inset: 82px 16px auto;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
      rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 18px 46px rgba(33, 35, 56, 0.13);
    backdrop-filter: blur(22px) saturate(1.25);
  }

  .nav-login,
  .nav-cta,
  .nav-internship {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1,
  .course-copy h1,
  .course-projects h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero p:not(.hero-kicker):not(.hero-footnote),
  .course-copy p:not(.section-label),
  .course-projects p {
    font-size: 17px;
  }

  .btn {
    min-height: 54px;
    font-size: 17px;
  }
}

/* Compact header and new course/resource surfaces */
.site-header {
  height: 68px;
  padding: 0 14px 0 46px;
  border-radius: 36px;
}

.brand {
  font-size: clamp(29px, 2.05vw, 36px);
  letter-spacing: -2px;
}

.nav {
  gap: clamp(28px, 3.8vw, 70px);
  font-size: clamp(12px, 0.9vw, 15px);
}

.nav-login {
  display: none;
}

.nav-cta {
  min-width: clamp(124px, 7.2vw, 148px);
  min-height: 46px;
  padding: 0 22px;
  font-size: clamp(16px, 0.95vw, 20px);
}

.nav-internship {
  min-width: clamp(124px, 7.2vw, 168px);
  min-height: 46px;
  padding: 0 22px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 999px;
  font-size: clamp(16px, 0.95vw, 20px);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(23, 105, 255, 0.25);
}

.nav-internship:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(23, 105, 255, 0.35);
}

.hero {
  padding-top: clamp(152px, 15vh, 198px);
}

#resources {
  scroll-margin-top: 112px;
}

.resources-section {
  background: transparent;
}

.resources-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 28px;
}

.resource-card h3 {
  margin: 0;
  color: #303039;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
}

.resource-card p {
  margin: 12px 0 22px;
  color: #747474;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.45;
}

.resource-card a {
  color: #343aa4;
  font-weight: 850;
}

.resource-page-hero {
  padding-top: clamp(120px, 14vh, 170px);
}

.resource-page-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #232333;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  text-align: center;
}

.resource-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.resource-shop-card {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 22px;
  align-items: stretch;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(36, 44, 65, 0.1);
}

.resource-shop-card figure {
  margin: 0;
}

.resource-shop-card figure > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(30, 36, 54, 0.16);
  pointer-events: none;
  user-select: none;
}

.resource-shop-card h2 {
  margin: 0;
  color: #2d2d38;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05;
}

.resource-shop-card p {
  margin: 12px 0 18px;
  color: #747474;
  font-size: 16px;
  line-height: 1.55;
}

.resource-shop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.resource-shop-meta span,
.resource-card-actions small {
  color: #6d7280;
  font-size: 13px;
  font-weight: 800;
}

.resource-shop-meta strong {
  color: #343aa4;
  font-size: 24px;
}

.resource-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.resource-share-btn {
  min-height: 44px;
}

.resource-card-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.resource-shop-card.is-shared-target {
  outline: 3px solid rgba(52, 58, 164, 0.24);
  outline-offset: 4px;
}

.resource-coupon-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin: 0 0 12px;
}

.resource-coupon-row input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(34, 35, 49, 0.12);
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.86);
}

.resource-coupon-row input:focus {
  outline: none;
  border-color: #343aa4;
}

.resource-coupon-row .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
}

.resource-coupon-status {
  margin: -4px 0 12px;
}

.secure-resource-body {
  user-select: none;
  -webkit-user-select: none;
}

.secure-viewer-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(32, 32, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.secure-viewer-header > span {
  color: #343aa4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.secure-viewer {
  width: min(1000px, calc(100% - 24px));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 54px) 0 80px;
}

.secure-viewer-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.secure-viewer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.secure-viewer-title h1 {
  margin: 0;
  color: #24242a;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
}

.secure-pages {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.secure-page {
  position: relative;
  margin: 0;
  padding: clamp(8px, 1.4vw, 14px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(31, 41, 55, 0.12);
  overflow: hidden;
}

.secure-page::after {
  content: "OPENZARA VIEW ONLY";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(52, 58, 164, 0.08);
  font-size: clamp(28px, 8vw, 82px);
  font-weight: 900;
  transform: rotate(-22deg);
  pointer-events: none;
}

.secure-page img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.secure-page figcaption {
  margin-top: 8px;
  color: #6d7280;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

@media print {
  body.secure-resource-body {
    display: none !important;
  }
}

.resource-art {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: #ffffff;
  border-radius: 20px;
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 850;
}

.python-art {
  background: linear-gradient(145deg, #5767f3 0%, #9da8ff 48%, #dfe5ff 100%);
}

.ai-art {
  background: linear-gradient(145deg, #a65424 0%, #f1863c 48%, #ffd990 100%);
}

.all-courses-hero {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.all-courses-hero h1 {
  margin: 0;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.98;
}

.all-courses-hero > p {
  max-width: 820px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.55;
}

.course-summary-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 44px auto 0;
}

.course-summary-pricing article,
.all-course-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(33, 35, 56, 0.09);
}

.course-summary-pricing article {
  padding: 26px;
}

.course-summary-pricing span,
.course-price-row span,
.course-meta-row span {
  color: var(--muted);
  font-weight: 750;
}

.course-summary-pricing strong,
.course-price-row strong {
  display: block;
  margin-top: 8px;
  color: #24242a;
  font-size: clamp(28px, 3vw, 44px);
}

.sale-summary-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.sale-summary-card del,
.old-price {
  color: #8f93a3;
  font-weight: 900;
  text-decoration-line: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #e04d4d;
}

.sale-summary-card del {
  font-size: clamp(22px, 2.3vw, 34px);
}

.sale-summary-card strong {
  margin-top: 0;
  color: #111827;
}

.sale-summary-card em,
.discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #155f3c;
  background: rgba(222, 247, 229, 0.95);
  border: 1px solid rgba(21, 95, 60, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.8px;
}

.all-courses-list {
  display: grid;
  gap: 26px;
  padding-top: 22px;
}

.all-course-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 42px);
  padding: clamp(18px, 2.5vw, 28px);
}

.all-course-media {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 245, 251, 0.72)),
    #f4f5fb;
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 24px;
}

.all-course-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 16px;
}

.all-course-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(12px, 2vw, 26px) clamp(8px, 1vw, 14px) clamp(12px, 2vw, 26px) 0;
}

.all-course-body h2 {
  margin: 0;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.all-course-body > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.55;
}

.course-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin-top: 28px;
}

.sale-price-stack {
  display: grid;
  gap: 2px;
}

.sale-price-stack .old-price {
  font-size: 18px;
}

.sale-price-stack strong {
  margin-top: 0;
  color: #111827;
}

.hero-price {
  justify-content: flex-start;
}

.course-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.course-meta-row span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 999px;
}

.course-status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  color: #4f5367;
  background: rgba(244, 245, 251, 0.86);
  border: 1px solid rgba(32, 32, 42, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.course-status-badge.is-live {
  color: #155f3c;
  background: rgba(222, 247, 229, 0.92);
  border-color: rgba(21, 95, 60, 0.2);
}

.course-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 24px 0;
}

.course-card-highlights span {
  padding: 10px 13px;
  color: #34364f;
  background: rgba(244, 245, 251, 0.72);
  border: 1px solid rgba(32, 32, 42, 0.06);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}

.see-more-btn {
  margin-top: 2px;
}

@media (max-width: 1280px) {
  .site-header {
    height: 66px;
    padding-left: 28px;
  }

  .nav {
    gap: 20px;
  }

  .nav-cta {
    min-height: 44px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 66px;
    padding: 0 14px 0 20px;
  }

  .resources-panel,
  .course-summary-pricing,
  .all-course-card {
    grid-template-columns: 1fr;
  }

  .all-course-card {
    gap: 18px;
    padding: 16px;
  }

  .all-course-media {
    min-height: auto;
  }

  .all-course-body {
    padding: 4px 4px 12px;
  }

  .all-course-media img {
    min-height: 0;
  }

  .course-card-highlights {
    margin: 20px 0;
  }
}

/* Absolute final pass: readable type scale plus liquid-glass chrome. */
.site-header {
  top: 18px;
  width: min(1180px, calc(100% - 40px));
  height: 68px;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 46px rgba(33, 35, 56, 0.11);
  backdrop-filter: blur(24px) saturate(1.35);
}

.brand {
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.8px;
}

.nav {
  gap: clamp(12px, 2.1vw, 30px);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 1px;
}

.nav-login,
.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 16px;
}

.hero {
  padding-top: clamp(56px, 7vh, 82px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.04;
}

.hero p:not(.hero-kicker):not(.hero-footnote),
.course-copy p:not(.section-label),
.course-projects p,
.all-courses-hero > p,
.all-course-body > p {
  font-size: clamp(17px, 1.35vw, 21px);
}

.hero-kicker {
  padding: 13px 28px;
  font-size: clamp(14px, 1.2vw, 17px) !important;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  font-size: clamp(15px, 1.05vw, 18px);
}

.section-heading h2,
.split-section h2,
.certificate-copy h2,
.contact-copy h2,
.launch-band h2,
.all-course-body h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
}

.course-copy h1,
.course-projects h2,
.all-courses-hero h1 {
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.04;
}

.launch-band h2 {
  color: #ffffff;
}

.launch-band p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 64px;
    padding: 0 14px 0 18px;
  }

  .brand {
    font-size: 22px;
    letter-spacing: -0.5px;
  }

  .nav {
    inset: 82px 16px auto;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
      rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 18px 46px rgba(33, 35, 56, 0.13);
    backdrop-filter: blur(22px) saturate(1.25);
  }

  .nav-login,
  .nav-cta {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1,
  .course-copy h1,
  .course-projects h2,
  .all-courses-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero p:not(.hero-kicker):not(.hero-footnote),
  .course-copy p:not(.section-label),
  .course-projects p,
  .all-courses-hero > p,
  .all-course-body > p {
    font-size: 17px;
  }
}

/* ===== APPLE LIQUID GLASS EFFECTS ===== */

:root {
  --glass-bg: rgba(255, 255, 255, 0.42);
  --glass-border: rgba(255, 255, 255, 0.58);
  --glass-highlight: rgba(255, 255, 255, 0.82);
  --glass-shadow: 0 8px 32px rgba(31, 38, 56, 0.08), 0 2px 6px rgba(31, 38, 56, 0.04);
  --glass-blur: blur(40px) saturate(1.8);
  --glass-inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

/* Header — floating liquid glass pill */
.site-header {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* Navigation dropdown — liquid glass panel */
.nav.open {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), 0 24px 64px rgba(31, 38, 56, 0.14);
  backdrop-filter: blur(48px) saturate(1.9);
  -webkit-backdrop-filter: blur(48px) saturate(1.9);
}

/* CTA buttons — glass pill style */
.nav-cta {
  background: rgba(255, 255, 255, 0.38) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-inner-glow), 0 4px 12px rgba(31, 38, 56, 0.06);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
}

/* Hero kicker — glass chip */
.hero-kicker {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid var(--glass-border) !important;
  border-radius: 999px;
  box-shadow: var(--glass-inner-glow), 0 4px 16px rgba(31, 38, 56, 0.05);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
}

/* Buttons — liquid glass depth */
.btn-secondary {
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), 0 6px 20px rgba(31, 38, 56, 0.07);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
}

.btn-primary {
  box-shadow: var(--glass-inner-glow), 0 12px 32px rgba(36, 37, 60, 0.22);
}

/* Trust strip — glass bar */
.trust-strip {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* Cards — liquid glass surfaces */
.answer-grid article,
.feature-list article,
.resource-card,
.course-highlights article,
.syllabus-panel,
.project-list article,
.who-list li,
.outcomes-list li {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.answer-grid article:hover,
.feature-list article:hover,
.resource-card:hover,
.course-highlights article:hover,
.project-list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-inner-glow), 0 16px 48px rgba(31, 38, 56, 0.12);
}

/* Sarvam panel — deep glass container */
.sarvam-panel {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), 0 32px 80px rgba(31, 38, 56, 0.1);
  backdrop-filter: blur(48px) saturate(1.8);
  -webkit-backdrop-filter: blur(48px) saturate(1.8);
}

/* Program feature inner card */
.program-feature {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 24px rgba(31, 38, 56, 0.06);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
}

/* Certificate card — premium glass */
.certificate-card {
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), 0 24px 64px rgba(31, 38, 56, 0.1);
  backdrop-filter: blur(44px) saturate(1.8);
  -webkit-backdrop-filter: blur(44px) saturate(1.8);
}

/* Lead form — glass panel */
.lead-form {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  backdrop-filter: blur(36px) saturate(1.7);
  -webkit-backdrop-filter: blur(36px) saturate(1.7);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 2px rgba(31, 38, 56, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(52, 58, 164, 0.4);
  box-shadow: 0 0 0 4px rgba(52, 58, 164, 0.08), inset 0 1px 2px rgba(31, 38, 56, 0.04);
}

/* Mentor grid — glass cards */
.mentor-grid article {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
}

/* Launch band — frosted glass dark */
.launch-band {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 64px rgba(31, 38, 56, 0.18);
}

/* Live card — floating glass chip */
.live-card {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), 0 12px 36px rgba(31, 38, 56, 0.12);
  backdrop-filter: blur(36px) saturate(1.8);
  -webkit-backdrop-filter: blur(36px) saturate(1.8);
}

/* Course page cards */
.all-course-card,
.course-poster {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), 0 20px 56px rgba(31, 38, 56, 0.09);
  backdrop-filter: blur(36px) saturate(1.7);
  -webkit-backdrop-filter: blur(36px) saturate(1.7);
}

/* Course link hover — glass highlight */
.course-link:hover,
.course-link:focus-visible {
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 4px 12px rgba(31, 38, 56, 0.05);
}

/* Program icon — glass circle */
.program-icon {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), 0 4px 12px rgba(31, 38, 56, 0.05);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

/* Gradient card — glass overlay */
.gradient-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 16px 48px rgba(31, 38, 56, 0.12);
}

/* Coming soon badge — glass pill */
.coming-soon-badge {
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inner-glow), 0 4px 12px rgba(31, 38, 56, 0.05);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
}

/* Meta pills — tiny glass chips */
.course-meta-row span,
.course-card-highlights span,
.course-meta-pills span {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Workshop page */
.workshop-page-hero {
  padding-top: clamp(140px, 14vh, 200px);
  padding-bottom: 0;
}

.workshop-page-hero h1 {
  margin: 0;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 400;
  line-height: 1.04;
}

.workshops-list-section {
  padding-top: 32px;
}

.workshops-list-title {
  margin: 0 0 24px;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
}

.workshop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workshop-actions .btn {
  width: auto;
}

.workshop-past {
  opacity: 0.7;
}

.workshop-yt {
  color: #c4302b !important;
}

.workshop-cta-section {
  padding-top: 0;
}

.workshop-details {
  margin-top: 18px;
  border-top: 1px solid rgba(34, 35, 49, 0.08);
  padding-top: 14px;
}

.workshop-details summary {
  cursor: pointer;
  color: #343aa4;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  list-style: none;
  user-select: none;
}

.workshop-details summary::-webkit-details-marker {
  display: none;
}

.workshop-details summary::before {
  content: "＋ ";
}

.workshop-details[open] summary::before {
  content: "－ ";
}

.workshop-details-body {
  margin-top: 18px;
}

.workshop-details-body h4 {
  margin: 20px 0 10px;
  color: #24242a;
  font-size: 15px;
  font-weight: 800;
}

.workshop-details-body h4:first-child {
  margin-top: 0;
}

.workshop-details-body ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.workshop-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #34364f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: background 180ms ease;
}

.resource-link:hover {
  background: rgba(255, 255, 255, 0.72);
}

.workshop-time {
  color: #4e505a !important;
}

.workshop-reward {
  color: #155f3c !important;
  background: rgba(222, 247, 229, 0.95) !important;
  border-color: rgba(21, 95, 60, 0.18) !important;
}

.workshop-cta-card {
  padding: clamp(32px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  text-align: center;
}

.workshop-cta-card h2 {
  margin: 0;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.workshop-cta-card p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
}

@media (max-width: 768px) {
  .workshop-page-hero {
    padding-top: 100px;
  }

  .workshop-page-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .workshop-actions {
    flex-direction: column;
  }

  .workshop-actions .btn {
    width: 100%;
  }
}

/* ===== WORKSHOPS SECTION ===== */

#workshops {
  scroll-margin-top: 112px;
}

.workshops-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.workshop-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
}

.workshop-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  padding: 18px 12px;
  background: linear-gradient(180deg, #37384f, #28293c);
  border-radius: 18px;
  color: #ffffff;
  text-align: center;
}

.workshop-date span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.workshop-date strong {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.workshop-info h3 {
  margin: 0;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.workshop-info p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.workshop-meta span {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.workshop-host {
  color: #343aa4;
}

.workshop-platform {
  color: #c4302b;
}

.workshop-card .btn {
  width: fit-content;
}

@media (max-width: 768px) {
  .workshop-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .workshop-date {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
  }

  .workshop-date strong {
    font-size: 24px;
  }

  .workshop-card .btn {
    width: 100%;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ===== NOTIFICATION BAR ===== */

.notification-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #28293c, #343aa4);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.notification-bar a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 800;
}

.notification-bar .notif-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
}

/* ===== COUNTDOWN TIMER ===== */

.countdown-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
}

.countdown-label {
  font-size: 14px;
  font-weight: 800;
  color: #343aa4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.countdown-timer {
  display: flex;
  gap: 12px;
}

.countdown-timer .cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding: 10px 8px;
  background: linear-gradient(180deg, #37384f, #28293c);
  border-radius: 10px;
  color: #ffffff;
}

.countdown-timer .cd-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.countdown-timer .cd-lbl {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */

.testimonials-section {
  background: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.testimonial-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card strong {
  display: block;
  margin-top: 16px;
  color: #24242a;
  font-size: 14px;
  font-style: normal;
}

.testimonial-card small {
  color: var(--muted);
  font-size: 12px;
}

/* ===== FAQ ===== */

.faq-section {
  background: transparent;
}

.faq-list {
  max-width: 760px;
  margin: 42px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 750;
  font-size: 16px;
  color: #24242a;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  color: #343aa4;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .countdown-banner {
    flex-direction: column;
    gap: 12px;
  }

  .notification-bar {
    font-size: 12px;
    padding: 10px 14px;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ===== NOTIFICATION BAR ===== */
.notification-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #28293c, #343aa4);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.notification-bar span {
  flex: 1;
  text-align: center;
}
.notification-bar a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 800;
}
.notif-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
}
.countdown-label {
  font-size: 14px;
  font-weight: 800;
  color: #343aa4;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.countdown-timer {
  display: flex;
  gap: 12px;
}
.countdown-timer .cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding: 10px 8px;
  background: linear-gradient(180deg, #37384f, #28293c);
  border-radius: 10px;
  color: #ffffff;
}
.countdown-timer .cd-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.countdown-timer .cd-lbl {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.testimonial-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
}
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-card strong {
  display: block;
  margin-top: 16px;
  color: #24242a;
  font-size: 14px;
  font-style: normal;
}
.testimonial-card small {
  color: var(--muted);
  font-size: 12px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 42px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 750;
  font-size: 16px;
  color: #24242a;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  color: #343aa4;
  font-weight: 800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .countdown-banner { flex-direction: column; gap: 12px; }
  .notification-bar { font-size: 12px; padding: 10px 14px; }
}

/* ===== STICKY ENROLL BAR ===== */
.sticky-enroll-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 24px;
  background: #ffffff;
  border-top: 1px solid rgba(34, 35, 49, 0.1);
  box-shadow: 0 -4px 24px rgba(31, 38, 56, 0.1);
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.sticky-enroll-bar.visible { transform: translateY(0); }
.sticky-enroll-bar span { font-weight: 750; font-size: 15px; color: #24242a; }
.sticky-enroll-bar .btn { min-height: 42px; padding: 0 20px; font-size: 14px; }

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
}
.exit-popup {
  position: relative;
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(31, 38, 56, 0.2);
  text-align: center;
}
.exit-popup h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  color: #24242a;
}
.exit-popup p { margin: 14px 0 24px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.exit-popup strong { color: #343aa4; }
.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
}

/* ===== SEATS COUNTER ===== */
.seats-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 18px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: #d32f2f;
}
.seats-counter .pulse-dot {
  width: 8px;
  height: 8px;
  background: #d32f2f;
  border-radius: 50%;
  animation: pulse-seat 1.5s infinite;
}
@keyframes pulse-seat { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===== PAYMENT BOX ===== */
.payment-box {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  max-width: 360px;
}
.coupon-row {
  display: flex;
  gap: 8px;
}
.coupon-toggle {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(244, 245, 251, 0.86);
  border: 1px solid rgba(34, 35, 49, 0.08);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  color: #343aa4;
  cursor: pointer;
  margin-bottom: 14px;
}
.coupon-row input {
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(34, 35, 49, 0.12);
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.coupon-row input:focus {
  outline: none;
  border-color: #343aa4;
}
.coupon-row .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
}
.coupon-status {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 750;
}
.coupon-status:empty {
  display: none;
}
.pay-btn {
  width: 100%;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .sticky-enroll-bar { gap: 10px; padding: 12px 16px; }
  .sticky-enroll-bar span { font-size: 13px; }
  .exit-popup { padding: 32px 20px; }
}

/* ===== VERIFY PAGE ===== */
.verify-hero { padding-top: clamp(140px, 14vh, 200px); }
.verify-hero h1 {
  margin: 0;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 400;
  line-height: 1.04;
}
.verify-form-card {
  max-width: 520px;
  margin: 42px auto 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
}
.verify-form-card form { display: grid; gap: 16px; }
.verify-form-card label { display: grid; gap: 8px; font-size: 13px; font-weight: 800; color: #253244; }
.verify-form-card input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(34, 35, 49, 0.12);
  border-radius: 14px;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.verify-form-card input:focus { border-color: #343aa4; box-shadow: 0 0 0 4px rgba(52, 58, 164, 0.08); outline: none; }
.verify-result { margin-top: 24px; }
.verify-success {
  padding: 24px;
  background: rgba(222, 247, 229, 0.6);
  border: 1px solid rgba(21, 95, 60, 0.2);
  border-radius: 18px;
}
.verify-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #155f3c;
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}
.verify-success h3 { margin: 0 0 14px; font-size: 22px; color: #24242a; }
.verify-success dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; font-size: 14px; }
.verify-success dt { font-weight: 800; color: #253244; }
.verify-success dd { margin: 0; color: var(--muted); }
.verify-error {
  padding: 20px;
  background: rgba(255, 235, 235, 0.7);
  border: 1px solid rgba(211, 47, 47, 0.2);
  border-radius: 14px;
}
.verify-error strong { color: #d32f2f; }
.verify-error p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }

@media (max-width: 768px) {
  .verify-hero { padding-top: 100px; }
  .verify-form-card { padding: 20px; margin-top: 28px; }
}

/* ===== MOBILE RESPONSIVE FIX — FINAL OVERRIDE ===== */

/* Tablet: 768px–1180px */
@media (max-width: 1180px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: 96px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(34, 35, 49, 0.1);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(33, 35, 56, 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 100;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 12px;
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-cta,
  .nav-internship {
    display: inline-flex !important;
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    justify-content: center;
    text-align: center;
  }

  .programs-panel {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .split-section,
  .certificate-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .mentor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-panel {
    grid-template-columns: 1fr;
  }

  .all-course-card {
    grid-template-columns: 1fr;
  }

  .course-hero,
  .course-overview,
  .course-projects,
  .course-who,
  .course-outcomes {
    grid-template-columns: 1fr;
  }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 60px;
    padding: 0 12px 0 16px;
    border-radius: 20px;
  }

  .brand {
    font-size: 20px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    inset: 78px 12px auto;
    border-radius: 20px;
  }

  /* Hero */
  .hero {
    display: block;
    padding-top: 80px;
    padding-bottom: 40px;
    text-align: center;
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    display: none;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.08;
    max-width: 100%;
  }

  .hero p:not(.hero-kicker):not(.hero-footnote) {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-kicker {
    padding: 10px 18px;
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }

  .hero-ornament {
    width: 200px;
    margin-bottom: 20px;
  }

  .hero-ornament strong {
    font-size: 22px;
  }

  .hero-ornament span {
    width: 60px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-footnote {
    margin-top: 48px !important;
    font-size: 11px !important;
    letter-spacing: 3px;
  }

  .btn {
    min-height: 50px;
    padding: 0 20px;
    font-size: 16px;
  }

  /* Section padding */
  .section-pad {
    padding: 48px 16px;
  }

  /* Trust strip */
  .trust-strip {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    border-radius: 20px;
    margin: 0 auto 32px;
  }

  .trust-strip span {
    padding: 14px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    text-align: left;
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  /* Section headings */
  .section-heading h2,
  .split-section h2,
  .certificate-copy h2,
  .contact-copy h2,
  .launch-band h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.1;
  }

  .section-heading p,
  .certificate-copy p,
  .contact-copy p {
    font-size: 15px;
  }

  .section-heading {
    text-align: left;
    margin-bottom: 24px;
  }

  /* Answer grid */
  .answer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .answer-grid article {
    padding: 18px;
  }

  .answer-grid h3 {
    font-size: 17px;
  }

  /* Split section */
  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-list {
    padding: 10px;
    border-radius: 22px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  /* Programs panel */
  .sarvam-panel {
    width: calc(100% - 16px);
    padding: 18px;
    border-radius: 22px;
    margin-top: 32px;
  }

  .programs-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .panel-list {
    gap: 18px;
  }

  .panel-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .panel-item h3 {
    font-size: 18px;
  }

  .panel-item p {
    font-size: 14px;
  }

  .program-icon {
    width: 52px;
    height: 52px;
    font-size: 16px;
    border-radius: 12px;
  }

  .program-feature {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 10px;
    border-radius: 18px;
  }

  .gradient-card {
    min-height: 180px;
    border-radius: 14px;
  }

  .gradient-card strong {
    font-size: 24px;
  }

  .feature-copy {
    padding: 18px;
  }

  .feature-copy h3 {
    font-size: 22px;
  }

  .feature-copy p {
    font-size: 15px;
    margin-top: 16px;
  }

  /* Resources */
  .resources-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .resource-card {
    padding: 12px;
    border-radius: 18px;
  }

  .resource-art {
    min-height: 160px;
    border-radius: 14px;
    font-size: 36px;
  }

  .resource-card h3 {
    font-size: 20px;
  }

  .resource-card p {
    font-size: 14px;
  }

  /* Certificate */
  .certificate-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .certificate-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 22px;
  }

  .certificate-card::before {
    display: none;
  }

  .certificate-card h3 {
    font-size: 24px;
  }

  .certificate-card h4 {
    font-size: 18px;
  }

  .certificate-card > span {
    font-size: 14px;
  }

  .certificate-card p {
    font-size: 12px;
    margin-top: 28px;
  }

  .cert-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 24px;
    font-size: 12px;
  }

  /* Mentors */
  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mentor-grid article {
    padding: 18px;
    border-radius: 18px;
  }

  /* Launch band */
  .launch-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 10px;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .launch-band h2 {
    font-size: clamp(24px, 7vw, 32px);
    color: #ffffff;
  }

  .launch-band p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
  }

  .launch-band .btn {
    width: 100%;
  }

  /* Contact */
  .contact-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lead-form {
    padding: 20px;
    border-radius: 22px;
  }

  .lead-form input,
  .lead-form select {
    border-radius: 14px;
  }

  .lead-form textarea {
    border-radius: 14px;
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 16px;
  }

  .footer-links {
    gap: 14px;
  }

  /* Course page */
  .course-shell {
    padding-top: 80px;
  }

  .course-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .course-copy h1,
  .course-projects h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .course-copy p:not(.section-label),
  .course-projects p {
    font-size: 16px;
  }

  .course-poster {
    border-radius: 18px;
  }

  .course-overview,
  .course-projects,
  .course-who,
  .course-outcomes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .syllabus-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .syllabus-list li {
    padding: 14px 12px 14px 62px;
    border-radius: 14px;
    font-size: 15px;
  }

  .syllabus-list li::before {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 12px;
  }

  .course-highlights article {
    border-radius: 18px;
  }

  .project-list article {
    padding: 18px;
    border-radius: 18px;
  }

  .project-list strong {
    font-size: 17px;
  }

  /* All courses page */
  .all-courses-hero h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .all-courses-hero > p {
    font-size: 16px;
  }

  .all-course-card {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 22px;
    gap: 14px;
  }

  .all-course-media {
    border-radius: 16px;
    padding: 12px;
  }

  .all-course-body {
    padding: 8px 4px 14px;
  }

  .all-course-body h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .all-course-body > p {
    font-size: 15px;
  }

  .course-price-row strong {
    font-size: 28px;
  }

  .course-meta-row {
    gap: 8px;
  }

  .course-meta-row span {
    padding: 8px 12px;
    font-size: 13px;
  }

  .course-card-highlights span {
    font-size: 12px;
    padding: 8px 10px;
  }

  .course-summary-pricing {
    grid-template-columns: 1fr;
  }

  .cert-banner-card {
    flex-direction: column;
    padding: 24px 20px;
    border-radius: 18px;
    text-align: center;
  }

  .cert-banner-card .btn-primary {
    width: 100%;
  }
}

/* Small phones: ≤400px */
@media (max-width: 400px) {
  .site-header {
    width: calc(100% - 16px);
    height: 56px;
    padding: 0 10px 0 14px;
    border-radius: 16px;
  }

  .brand {
    font-size: 18px;
  }

  .nav {
    inset: 72px 8px auto;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p:not(.hero-kicker):not(.hero-footnote) {
    font-size: 15px;
  }

  .section-pad {
    padding: 36px 12px;
  }

  .sarvam-panel {
    width: calc(100% - 12px);
    padding: 14px;
    border-radius: 16px;
  }

  .section-heading h2,
  .split-section h2,
  .certificate-copy h2,
  .contact-copy h2,
  .launch-band h2 {
    font-size: 24px;
  }

  .btn {
    min-height: 46px;
    font-size: 15px;
  }

  .launch-band {
    margin: 0 6px;
    padding: 22px 14px;
    border-radius: 16px;
  }
}

/* Force opaque mobile nav — no blur bleed */
@media (max-width: 1180px) {
  .nav,
  .nav.open {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ===== DASHBOARD ===== */
.dashboard-hero { padding-top: clamp(140px, 14vh, 200px); }
.dashboard-hero h1 {
  margin: 0;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
}
.dashboard-grid { margin-top: 32px; display: grid; gap: 16px; }
.dash-empty {
  padding: 48px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
}
.dash-empty p { margin: 0 0 20px; color: var(--muted); font-size: 16px; }
.dash-course-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
}
.dash-course-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #eef0ff;
  border-radius: 14px;
  color: #343aa4;
  font-weight: 900;
  font-size: 18px;
}
.dash-course-card h3 { margin: 0; font-size: 18px; color: #24242a; }
.dash-course-card p { margin: 6px 0 8px; color: var(--muted); font-size: 14px; }

.dash-section-title {
  margin: 36px 0 16px;
  color: #24242a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}
.dash-roadmap {
  display: grid;
  gap: 12px;
}
.roadmap-week {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
}
.roadmap-week summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-weight: 750;
  font-size: 16px;
  color: #24242a;
  cursor: pointer;
  list-style: none;
}
.roadmap-week summary::-webkit-details-marker { display: none; }
.roadmap-week summary::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  color: #343aa4;
}
.roadmap-week[open] summary::after { content: "−"; }
.roadmap-week summary span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #eef0ff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  color: #343aa4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.roadmap-week ul {
  margin: 0;
  padding: 0 22px 18px 56px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}
.dash-progress { margin-top: 8px; }
.progress-bar-track {
  height: 10px;
  background: rgba(34, 35, 49, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #343aa4, #6a6fe8);
  border-radius: 999px;
  transition: width 600ms ease;
}
.dash-progress p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.dash-resources { display: flex; flex-wrap: wrap; gap: 10px; }
.dash-mentor {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}
.dash-mentor h3 { margin: 0; font-size: 16px; color: #24242a; }
.dash-mentor p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.dash-cert-status {
  padding: 18px;
  background: rgba(244, 245, 251, 0.86);
  border: 1px solid rgba(34, 35, 49, 0.08);
  border-radius: 14px;
}
.dash-cert-status p { margin: 0; color: var(--muted); font-size: 14px; }

/* Dashboard gradient cards */
.dash-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.dash-gradient-card {
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(34, 35, 49, 0.06);
}
.dash-gradient-card strong { font-size: 16px; color: #24242a; }
.dash-gradient-card p { margin: 0; font-size: 13px; color: var(--muted); }
.dash-gradient-card .btn { margin-top: auto; }
.dash-gradient-card .btn-light {
  background: rgba(34, 35, 49, 0.06);
  border: 1px solid rgba(34, 35, 49, 0.1);
  color: #24242a;
  min-height: 38px;
  font-size: 13px;
  border-radius: 10px;
}
.grad-purple { background: rgba(139, 92, 246, 0.06); }
.grad-blue { background: rgba(59, 130, 246, 0.06); }
.grad-green { background: rgba(16, 185, 129, 0.06); }
.grad-orange { background: rgba(249, 115, 22, 0.06); }
.grad-dark { background: rgba(55, 65, 81, 0.06); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.badge-locked {
  padding: 4px 10px;
  background: rgba(34, 35, 49, 0.06);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

@media (max-width: 768px) {
  .dash-cards-row { grid-template-columns: 1fr; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 800;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #28293c;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== EMAIL POPUP FORM ===== */
.email-popup-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.email-popup-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(34, 35, 49, 0.12);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
}
.email-popup-form input:focus {
  outline: none;
  border-color: #343aa4;
  box-shadow: 0 0 0 4px rgba(52, 58, 164, 0.08);
}

/* ===== FINAL VISUAL SPACING POLISH ===== */
body {
  background:
    linear-gradient(180deg, #fff8f2 0%, #f6fbff 42%, #f7fff9 74%, #ffffff 100%);
}

.section-pad {
  padding-top: clamp(48px, 6vw, 82px) !important;
  padding-bottom: clamp(48px, 6vw, 82px) !important;
}

.hero {
  min-height: auto;
  padding-top: clamp(96px, 11vh, 138px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.hero h1 {
  max-width: 980px;
}

.hero p:not(.hero-kicker):not(.hero-footnote) {
  margin-top: 24px;
}

.hero-actions {
  margin-top: 36px;
}

.hero-footnote {
  margin-top: clamp(44px, 7vh, 82px) !important;
}

.trust-strip {
  margin: 0 clamp(16px, 5vw, 72px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  color: #303039;
  border: 1px solid rgba(34, 35, 49, 0.08);
  box-shadow: 0 14px 42px rgba(61, 77, 101, 0.08);
}

.ai-overview-section,
.programs-section,
.certificate-section,
.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 250, 244, 0.5));
}

.resources-section,
.workshops-section,
.testimonials-section,
.contact-section {
  background: linear-gradient(180deg, rgba(242, 249, 255, 0.48), rgba(248, 255, 250, 0.54));
}

.course-page {
  background:
    linear-gradient(180deg, #fff8f2 0%, #f6fbff 48%, #ffffff 100%);
}

.course-shell {
  padding-top: clamp(30px, 4vw, 58px) !important;
}

.course-hero {
  align-items: start;
  gap: clamp(24px, 4vw, 58px);
  padding-top: clamp(22px, 3vw, 42px) !important;
  padding-bottom: clamp(44px, 6vw, 78px) !important;
}

.course-copy h1,
.all-courses-hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.03;
}

.course-copy p:not(.section-label),
.all-courses-hero > p {
  margin-top: 20px;
  line-height: 1.58;
}

.course-actions {
  margin-top: 28px;
}

.course-price-row.hero-price {
  margin-top: 18px;
}

.section-heading {
  margin-bottom: clamp(24px, 3.5vw, 42px);
}

.section-heading h2,
.split-section h2,
.certificate-copy h2,
.contact-copy h2,
.launch-band h2 {
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.04;
}

.section-heading p,
.certificate-copy p,
.contact-copy p,
.launch-band p {
  margin-top: 16px;
}

.answer-grid,
.feature-list,
.panel-list,
.resources-panel,
.workshops-grid,
.testimonials-grid,
.faq-list {
  margin-top: clamp(22px, 3vw, 36px);
}

.resource-card,
.testimonial-card,
.faq-item,
.workshop-card,
.panel-item,
.feature-list article {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(34, 35, 49, 0.08);
  box-shadow: 0 16px 42px rgba(61, 77, 101, 0.08);
}

.resources-panel {
  padding: clamp(18px, 3vw, 30px);
}

.resource-card {
  min-height: 0;
  padding: 22px;
}

.launch-band {
  margin-top: clamp(20px, 4vw, 42px);
  margin-bottom: clamp(20px, 4vw, 42px);
  padding: clamp(28px, 4vw, 46px);
  background: linear-gradient(135deg, #2f3758 0%, #315f75 48%, #2f725b 100%);
}

.contact-section {
  align-items: start;
}

@media (max-width: 768px) {
  .section-pad {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .hero {
    padding-top: 74px;
    padding-bottom: 32px;
  }

  .course-shell {
    padding-top: 0 !important;
  }

  .course-hero {
    padding-top: 14px !important;
    padding-bottom: 36px !important;
    gap: 22px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .trust-strip {
    margin-inline: 12px;
  }

  .launch-band {
    margin-inline: 12px;
  }
}
.email-popup-status {
  margin: 8px 0 0;
  color: #155f3c;
  font-weight: 750;
  font-size: 14px;
}

/* ===== CLEAN UI OVERRIDE ===== */
body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 239, 228, 0.9), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(225, 235, 255, 0.95), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #fff7f0 46%, #f8fbff 100%) !important;
}

.site-header {
  width: min(1180px, calc(100% - 24px)) !important;
  height: 62px !important;
  top: 10px !important;
  padding: 0 16px 0 20px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.74) !important;
  border: 1px solid rgba(31, 38, 56, 0.08) !important;
  box-shadow: 0 16px 48px rgba(40, 51, 73, 0.1) !important;
}

.brand {
  font-size: clamp(22px, 4vw, 30px) !important;
}

.hero {
  display: block !important;
  min-height: auto !important;
  padding-top: clamp(112px, 14vh, 150px) !important;
  padding-bottom: clamp(42px, 7vw, 76px) !important;
  text-align: center !important;
}

.hero-copy {
  max-width: 860px !important;
  margin: 0 auto !important;
}

.hero-ornament {
  margin-bottom: 18px !important;
  opacity: 1 !important;
  color: rgba(52, 58, 164, 0.26) !important;
}

.hero-ornament span {
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(52, 58, 164, 0.24), transparent) !important;
}

.hero-ornament strong {
  color: rgba(52, 58, 164, 0.3) !important;
  text-shadow: 0 6px 18px rgba(52, 58, 164, 0.12) !important;
}

.hero-kicker {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 auto 24px !important;
  padding: 12px 22px !important;
  color: #343aa4 !important;
  background: rgba(255, 255, 255, 0.62) !important;
  border: 1px solid rgba(52, 58, 164, 0.08) !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 28px rgba(40, 51, 73, 0.06) !important;
}

.hero h1 {
  max-width: 820px !important;
  margin-inline: auto !important;
  font-size: clamp(42px, 8vw, 78px) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

.hero p:not(.hero-kicker):not(.hero-footnote) {
  max-width: 760px !important;
  margin: 22px auto 0 !important;
  color: #4f5a68 !important;
  font-size: clamp(16px, 2.2vw, 19px) !important;
  line-height: 1.65 !important;
}

.hero-actions {
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 32px !important;
}

.hero-actions .btn {
  width: auto !important;
  min-width: 178px !important;
  max-width: none !important;
  min-height: 50px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #20243d, #343aa4) !important;
  box-shadow: 0 14px 34px rgba(52, 58, 164, 0.22) !important;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(31, 38, 56, 0.08) !important;
  box-shadow: 0 12px 28px rgba(40, 51, 73, 0.08) !important;
}

.hero-footnote {
  display: none !important;
}

.resources-panel {
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  padding: clamp(18px, 2.4vw, 28px) !important;
}

.resource-card {
  padding: clamp(16px, 2vw, 24px) !important;
}

.resource-art {
  min-height: clamp(160px, 18vw, 240px) !important;
}

.trust-strip {
  margin-top: 0 !important;
  padding: 16px !important;
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px) !important;
    height: 58px !important;
    top: 8px !important;
    padding-left: 18px !important;
  }

  .hero {
    padding-top: 98px !important;
    padding-bottom: 34px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 9.4vw, 54px) !important;
  }

  .hero-actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .hero-actions .btn {
    flex: 1 1 220px !important;
    min-width: min(220px, 100%) !important;
  }

  .resources-panel {
    grid-template-columns: 1fr !important;
  }

  .resource-shop-grid,
  .resource-shop-card {
    grid-template-columns: 1fr !important;
  }

  .resource-shop-card figure {
    max-width: 260px;
  }

  .secure-viewer-title {
    display: grid;
  }
}
