/* Client-feedback additions (2026-04) */

/* Sticky CTA bar */
.sticky-cta-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 18px;
  background: rgba(24, 21, 18, 0.94);
  color: #fff9ec;
  border-radius: 999px;
  box-shadow: 0 24px 60px rgba(24, 21, 18, 0.28);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: calc(100% - 24px);
}

.sticky-cta-pill {
  font: 600 12px "Poppins", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 249, 236, 0.78);
  white-space: nowrap;
}

.sticky-cta-actions {
  display: flex;
  gap: 8px;
}

.sticky-cta-bar .primary-btn,
.sticky-cta-bar .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font: 700 13px "Poppins", sans-serif;
  border-radius: 999px;
  text-decoration: none;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sticky-cta-bar .primary-btn {
  background: linear-gradient(135deg, var(--accent, #ea5a2a), #d94716);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 22px rgba(217, 71, 22, 0.32);
}

.sticky-cta-bar .secondary-btn {
  background: transparent;
  color: #fff9ec;
  border: 1px solid rgba(255, 249, 236, 0.35);
}

.sticky-cta-bar .primary-btn:hover,
.sticky-cta-bar .secondary-btn:hover {
  transform: translateY(-1px);
}

.sticky-cta-bar .secondary-btn:hover {
  background: rgba(255, 249, 236, 0.08);
  border-color: rgba(255, 249, 236, 0.55);
}

@media (max-width: 640px) {
  .sticky-cta-pill {
    display: none;
  }

  .sticky-cta-bar {
    bottom: 10px;
    padding: 8px;
    gap: 6px;
    min-width: 80%;
    justify-content: center;
  }

  .sticky-cta-bar .primary-btn,
  .sticky-cta-bar .secondary-btn {
    padding: 9px 12px;
    font-size: 12px;
  }

  .site-nav {
    padding: 12px;
    flex-wrap: nowrap;
  }

  .site-nav .brand small {
    font-size: 8px;
  }

  .site-nav .menu-toggle {
    width: 42px;
    height: 42px;
  }
  .site-nav .brand{
    gap: 8px;
  }
  .site-nav.is-open .nav-cta{
    display: none;
  }
  .shell .site-nav.is-open .nav-cta{
    display: none;
  }
}

.float-register {
  display: none !important;
}

/* Hero audience tags */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 6px;
}

.audience-tags span {
  font: 600 12px "Poppins", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(234, 90, 42, 0.1);
  color: var(--accent);
  border: 1px solid rgba(234, 90, 42, 0.22);
}

.hero-actions-triple {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions-triple .secondary-btn {
  padding: 12px 18px;
}

.cta-actions-triple {
  flex-wrap: wrap;
  gap: 10px;
}

/* Path selector — color-coded solid tiles, one per audience */
.path-selector-section {
  position: relative;
}

.path-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.path-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 0;
  box-shadow: 0 20px 50px rgba(45, 27, 11, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.path-tile::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.path-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(45, 27, 11, 0.22);
}

.path-student {
  background: linear-gradient(135deg, #ea5a2a 0%, #ffb36b 100%);
  color: #1f1b17;
}

.path-sponsor {
  background: linear-gradient(135deg, #1f1b17 0%, #3d322a 100%);
  color: #fff9ec;
}

.path-college {
  background: linear-gradient(135deg, #0f766e 0%, #2dd4bf 100%);
  color: #fff9ec;
}

.path-tile strong {
  font: 700 1.6rem "Poppins", sans-serif;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.path-tile p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.88;
  position: relative;
  z-index: 1;
}

.path-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.path-student .path-icon {
  background: rgba(31, 27, 23, 0.14);
}

.path-link {
  margin-top: auto;
  font: 700 0.95rem "Poppins", sans-serif;
  letter-spacing: 0.02em;
  color: inherit;
  position: relative;
  z-index: 1;
  padding-top: 8px;
  border-top: 1px solid currentColor;
  border-color: rgba(255, 255, 255, 0.25);
  opacity: 0.95;
}

.path-student .path-link {
  border-color: rgba(31, 27, 23, 0.25);
}

@media (max-width: 820px) {
  .path-selector {
    grid-template-columns: 1fr;
  }
}

/* What you get — large image-led cards with overlap tag */
.what-you-get-section {
  background: linear-gradient(180deg, transparent, rgba(234, 90, 42, 0.04));
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.wyg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0 22px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wyg-visual {
  margin: 0 -22px 18px;
  height: 200px;
  overflow: hidden;
}

.wyg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wyg-card h3 {
  font: 700 1.3rem "Poppins", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

.wyg-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

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

/* Why this matters */
.wtm-panel {
  background: linear-gradient(135deg, #1f1b17 0%, #2d2419 100%);
  color: #fff9ec;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.wtm-panel .card-tag {
  background: rgba(255, 249, 236, 0.1);
  color: #fff9ec;
  border-color: rgba(255, 249, 236, 0.2);
}

.wtm-stat {
  font: 700 clamp(2.2rem, 4.5vw, 4rem) "Poppins", sans-serif;
  letter-spacing: -0.04em;
  margin: 18px 0 12px;
  line-height: 1.05;
}

.wtm-stat em {
  font-style: normal;
  color: var(--accent-2);
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wtm-lede {
  color: rgba(255, 249, 236, 0.78);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.wtm-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
}

.wtm-facts strong {
  display: block;
  font: 700 2.2rem "Poppins", sans-serif;
  color: var(--accent-2);
  letter-spacing: -0.02em;
}

.wtm-facts span {
  color: rgba(255, 249, 236, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .wtm-panel {
    padding: 36px 24px;
  }

  .wtm-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Real outcomes — horizontal stepped flow with oversized numerals */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1f1b17 0%, #2b241c 45%, #3a2416 100%);
  border: 1px solid rgba(255, 249, 236, 0.06);
  position: relative;
}

.outcomes-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(234, 90, 42, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(255, 179, 107, 0.1), transparent 60%);
}

.quote-slider {
  position: relative;
  margin-top: 36px;
  padding: 36px 38px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(234, 90, 42, 0.08), rgba(129, 162, 239, 0.08));
  border: 1px solid rgba(24, 21, 18, 0.08);
  overflow: hidden;
}

.quote-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.quote-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0.1, 0.3, 1);
}

.quote-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0;
}

.quote-body {
  min-width: 0;
}

.quote-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  /* box-shadow: 0 16px 36px rgba(53, 32, 13, 0.14); */
  flex-shrink: 0;
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-body {
  position: relative;
}

.quote-body .outcome-quote-mark {
  position: static;
  display: block;
  width: 32px;
  height: auto;
  color: var(--accent);
  opacity: 0.5;
  margin: 0 0 10px;
}

.quote-body blockquote {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.quote-body figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-body figcaption strong {
  font-size: 14px;
  color: var(--ink);
}

.quote-body figcaption span {
  font-size: 13px;
  color: var(--muted);
}

.quote-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.quote-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(24, 21, 18, 0.12);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.quote-nav:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06);
}

.quote-dots {
  display: inline-flex;
  gap: 8px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(24, 21, 18, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.quote-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 640px) {
  .quote-slider {
    padding: 26px 22px 22px;
  }
  .quote-slide {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }
  .quote-photo {
    width: 100px;
    height: 100px;
  }
  .quote-body figcaption {
    align-items: center;
  }
}

.outcome-card {
  padding: 40px 32px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 249, 236, 0.08);
  color: #fff9ec;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
}

.outcome-card:last-child {
  border-right: 0;
}

.outcome-card::before {
  content: attr(data-outcome-num);
}

.outcome-num {
  font: 700 5rem "Poppins", sans-serif;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.outcome-card h3 {
  font: 700 1.35rem "Poppins", sans-serif;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  color: #fff9ec;
}

.outcome-card p {
  color: rgba(255, 249, 236, 0.7);
  margin: 0;
  line-height: 1.6;
}

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

  .outcome-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 249, 236, 0.08);
    min-height: auto;
  }

  .outcome-card:last-child {
    border-bottom: 0;
  }

  .outcome-num {
    font-size: 3.5rem;
  }
}

/* Social proof logos */
.logo-wall {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 40px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.logo-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
}

.logo-label {
  font: 600 12px "Poppins", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.logo-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: #f7f2ea;
  font: 700 0.92rem "Poppins", sans-serif;
  color: var(--ink);
  border: 1px solid var(--line);
}

@media (max-width: 640px) {
  .logo-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Testimonials — staggered quote cards with oversized quote mark */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial {
  padding: 32px 26px 24px;
  background: #fff9ec;
  border: 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(45, 27, 11, 0.08);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: 18px;
  font: 700 6rem "Poppins", sans-serif;
  color: var(--accent);
  line-height: 1;
  opacity: 0.9;
}

.testimonial:nth-child(1) {
  transform: rotate(-0.8deg);
}

.testimonial:nth-child(2) {
  transform: translateY(16px) rotate(0.5deg);
  background: #1f1b17;
  color: #fff9ec;
}

.testimonial:nth-child(2)::before {
  color: var(--accent-2);
}

.testimonial:nth-child(3) {
  transform: rotate(-0.3deg);
}

.testimonial blockquote {
  margin: 18px 0 0;
  font: 500 1.02rem "Poppins", sans-serif;
  line-height: 1.6;
  letter-spacing: -0.005em;
}

.testimonial:nth-child(2) blockquote {
  color: #fff9ec;
}

.testimonial cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 21, 18, 0.1);
}

.testimonial cite strong {
  font: 700 0.95rem "Poppins", sans-serif;
  letter-spacing: -0.01em;
}

.testimonial cite span {
  color: var(--muted);
}

.testimonial:nth-child(2) cite {
  border-color: rgba(255, 249, 236, 0.12);
}

.testimonial:nth-child(2) cite strong {
  color: #fff9ec;
}

.testimonial:nth-child(2) cite span {
  color: rgba(255, 249, 236, 0.6);
}

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

  .testimonial,
  .testimonial:nth-child(2),
  .testimonial:nth-child(3) {
    transform: none;
  }
}

/* Urgency + countdown */
.urgency-panel {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #1f1b17;
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.urgency-panel h2 {
  font: 700 clamp(1.6rem, 3vw, 2.4rem) "Poppins", sans-serif;
  margin: 10px 0 6px;
  letter-spacing: -0.03em;
}

.urgency-panel h2 em {
  font-style: normal;
  color: #1f1b17;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.urgency-panel p {
  margin: 0;
  color: rgba(31, 27, 23, 0.8);
}

.urgency-panel .card-tag {
  background: rgba(255, 255, 255, 0.3);
  color: #1f1b17;
  border-color: rgba(255, 255, 255, 0.4);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown>div {
  background: rgba(255, 255, 255, 0.85);
  padding: 14px 10px;
  border-radius: 24px;
  text-align: center;
  min-width: 32px;
}

.countdown strong {
  display: block;
  font: 700 1.8rem "Poppins", sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.countdown span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.urgency-actions {
  display: flex;
}

.urgency-panel .primary-btn {
  background: var(--ink);
  color: #fff9ec;
}

@media (max-width: 900px) {
  .urgency-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .urgency-actions {
    justify-content: center;
  }
}

/* Lead capture */
.lead-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
}

.lead-copy h2 {
  font: 700 clamp(1.8rem, 3vw, 2.6rem) "Poppins", sans-serif;
  margin: 12px 0 10px;
  letter-spacing: -0.03em;
}

.lead-copy h2 em {
  font-style: normal;
  color: var(--accent);
}

.lead-copy p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form input,
.lead-form select {
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #f7f2ea;
  font: 500 1rem "Poppins", sans-serif;
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.lead-form button {
  margin-top: 4px;
}

.lead-success {
  color: var(--teal);
  font-weight: 600;
  margin: 6px 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .lead-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

/* Community — asymmetric offset layout, outlined style with teal accent */
.community-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(15, 118, 110, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(234, 90, 42, 0.06), transparent 40%);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.community-card {
  padding: 28px;
  border-radius: 6px 24px 6px 24px;
  background: transparent;
  border: 1.5px dashed rgba(15, 118, 110, 0.35);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-radius 0.35s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
}

.community-card:nth-child(2) {
  transform: translateY(26px);
}

.community-card:hover {
  border-radius: 24px 6px 24px 6px;
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.5);
  border-style: solid;
}

.community-icon {
  font-size: 26px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.12);
  border: 2px solid rgba(15, 118, 110, 0.3);
  color: var(--teal);
}

.community-card strong {
  font: 700 1.2rem "Poppins", sans-serif;
  letter-spacing: -0.02em;
}

.community-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.community-link {
  margin-top: auto;
  font: 700 0.85rem "Poppins", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

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

  .community-card:nth-child(2) {
    transform: none;
  }
}

/* Section spacing for new blocks */
.path-selector-section,
.what-you-get-section,
.why-this-matters-section,
.real-outcomes-section,
.social-proof-section,
.urgency-section,
.lead-capture-section,
.community-section {
  padding: 60px 0;
  position: relative;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

/* Pad bottom so sticky CTA does not overlap footer */
/* .site-footer {
  padding-bottom: 96px;
} */

/* ============================================================
   About page — section rhythm + responsive spacing
   ============================================================ */
.about-page .about-content,
.about-page .about-diff,
.about-page .about-cta {
  padding-top: clamp(34px, 4.2vw, 60px);
  padding-bottom: clamp(34px, 4.2vw, 60px);
}

@media (max-width: 900px) {
  .about-page .about-content,
  .about-page .about-diff,
  .about-page .about-cta {
    padding-top: clamp(26px, 5vw, 42px);
    padding-bottom: clamp(26px, 5vw, 42px);
  }
  .about-page .about-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-page .diff-head {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .about-page .diff-head .body-text {
    justify-self: start !important;
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .about-page .about-content,
  .about-page .about-diff,
  .about-page .about-cta {
    padding-top: clamp(22px, 6vw, 32px);
    padding-bottom: clamp(22px, 6vw, 32px);
  }
  .about-page .about-cta-card {
    padding: 2rem 1.25rem !important;
    border-radius: 20px !important;
  }
  .about-page .about-cta .reg-btn {
    width: 100% !important;
    max-width: none !important;
  }
}

/* ============================================================
   Program page — section rhythm + responsive spacing
   ============================================================ */
.program-page #program,
.program-page .weekflow-section,
.program-page .reg-section {
  padding-top: clamp(34px, 4.2vw, 60px);
  padding-bottom: clamp(34px, 4.2vw, 60px);
}

@media (max-width: 900px) {
  .program-page #program,
  .program-page .weekflow-section,
  .program-page .reg-section {
    padding-top: clamp(26px, 5vw, 42px);
    padding-bottom: clamp(26px, 5vw, 42px);
  }
  .program-page .weekflow-head {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .program-page .stages-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

@media (max-width: 640px) {
  .program-page #program,
  .program-page .weekflow-section,
  .program-page .reg-section {
    padding-top: clamp(22px, 6vw, 32px);
    padding-bottom: clamp(22px, 6vw, 32px);
  }
  .program-page .program-hero-stats {
    flex-wrap: wrap;
    gap: 14px !important;
  }
  .program-page .reg-card {
    padding: 1.75rem 1.25rem !important;
    border-radius: 18px !important;
  }
}

/* ============================================================
   Timeline page — section rhythm + responsive spacing
   ============================================================ */
.timeline-page #timeline,
.timeline-page .about-cta {
  padding-top: clamp(34px, 4.2vw, 60px) !important;
  padding-bottom: clamp(34px, 4.2vw, 60px) !important;
}

@media (max-width: 900px) {
  .timeline-page #timeline,
  .timeline-page .about-cta {
    padding-top: clamp(26px, 5vw, 42px) !important;
    padding-bottom: clamp(26px, 5vw, 42px) !important;
  }
  .timeline-page .tl-item { padding-bottom: 2rem !important; }
  .timeline-page .tl-title { font-size: 1.1rem !important; }
}

@media (max-width: 640px) {
  .timeline-page #timeline,
  .timeline-page .about-cta {
    padding-top: clamp(22px, 6vw, 32px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .timeline-page .tl-item { padding-bottom: 1.5rem !important; }
  .timeline-page .tl-title { font-size: 1rem !important; }
  .timeline-page .tl-desc { font-size: 0.85rem !important; line-height: 1.6 !important; }
  .timeline-page .tl-date { font-size: 0.72rem !important; }
  .timeline-page .about-cta-card {
    padding: 2rem 1.25rem !important;
    border-radius: 20px !important;
  }
  .timeline-page .about-cta .reg-btn {
    width: 100% !important;
    max-width: none !important;
  }
}

/* ============================================================
   Prizes page — section rhythm + responsive spacing
   ============================================================ */
.prizes-page #prizes {
  padding-top: clamp(96px, 10vw, 128px) !important;
  padding-bottom: clamp(34px, 4.2vw, 60px) !important;
}
.prizes-page main > section.section:not(#prizes) {
  padding-top: clamp(34px, 4.2vw, 60px) !important;
  padding-bottom: clamp(34px, 4.2vw, 60px) !important;
}
/* fallback for pages without <main> wrapper */
.prizes-page section.section:not(#prizes) {
  padding-top: clamp(34px, 4.2vw, 60px);
  padding-bottom: clamp(34px, 4.2vw, 60px);
}

@media (max-width: 900px) {
  .prizes-page #prizes {
    padding-top: clamp(80px, 12vw, 104px) !important;
    padding-bottom: clamp(26px, 5vw, 42px) !important;
  }
  .prizes-page section.section:not(#prizes) {
    padding-top: clamp(26px, 5vw, 42px) !important;
    padding-bottom: clamp(26px, 5vw, 42px) !important;
  }
  .prizes-page .cv-top {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .prizes-page .pz-top {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 640px) {
  .prizes-page #prizes {
    padding-top: clamp(110px, 18vw, 92px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .prizes-page section.section:not(#prizes) {
    padding-top: clamp(22px, 6vw, 32px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .prizes-page .pz-top { grid-template-columns: 1fr !important; }
  .prizes-page .pz-card { padding: 1.5rem 1.25rem !important; }
  .prizes-page .pz-visual { width: 72px; height: 72px; }
  .prizes-page .pz-amt { font-size: 1.3rem; }
}

/* ============================================================
   Colleges page — section rhythm + responsive spacing
   ============================================================ */
.colleges-page #colleges,
.colleges-page .about-cta {
  padding-top: clamp(34px, 4.2vw, 60px) !important;
  padding-bottom: clamp(34px, 4.2vw, 60px) !important;
}

@media (max-width: 900px) {
  .colleges-page #colleges,
  .colleges-page .about-cta {
    padding-top: clamp(26px, 5vw, 42px) !important;
    padding-bottom: clamp(26px, 5vw, 42px) !important;
  }
  .colleges-page .col-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .colleges-page .col-cta-row {
    flex-direction: column;
    gap: 0.8rem !important;
  }
  .colleges-page .col-cta-row .reg-btn {
    max-width: none !important;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .colleges-page #colleges,
  .colleges-page .about-cta {
    padding-top: clamp(22px, 6vw, 32px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .colleges-page .col-grid { grid-template-columns: 1fr !important; }
  .colleges-page .col-card { padding: 1.5rem 1.25rem !important; }
  .colleges-page .col-card-num { font-size: 1.4rem; }
  .colleges-page .about-cta-card {
    padding: 2rem 1.25rem !important;
    border-radius: 20px !important;
  }
  .colleges-page .about-cta .reg-btn {
    width: 100% !important;
    max-width: none !important;
  }
}

/* ============================================================
   FAQ page — section rhythm + responsive spacing
   ============================================================ */
.faq-page #faq {
  padding-top: clamp(96px, 10vw, 128px) !important;
  padding-bottom: clamp(34px, 4.2vw, 60px) !important;
}
.faq-page .reg-section {
  padding-top: clamp(34px, 4.2vw, 60px) !important;
  padding-bottom: clamp(34px, 4.2vw, 60px) !important;
}

@media (max-width: 900px) {
  .faq-page #faq {
    padding-top: clamp(80px, 12vw, 104px) !important;
    padding-bottom: clamp(26px, 5vw, 42px) !important;
  }
  .faq-page .reg-section {
    padding-top: clamp(26px, 5vw, 42px) !important;
    padding-bottom: clamp(26px, 5vw, 42px) !important;
  }
  .faq-page .faq-accordion .faq-item { padding: 1.1rem 1.2rem !important; }
  .faq-page .faq-accordion .faq-q { font-size: 0.92rem !important; }
}

@media (max-width: 640px) {
  .faq-page #faq {
    padding-top: clamp(110px, 18vw, 92px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .faq-page .reg-section {
    padding-top: clamp(22px, 6vw, 32px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .faq-page .faq-accordion .faq-item { padding: 0.95rem 1rem !important; }
  .faq-page .faq-accordion .faq-q {
    font-size: 0.88rem !important;
    gap: 10px;
  }
  .faq-page .faq-accordion .faq-a {
    font-size: 0.85rem !important;
    line-height: 1.65 !important;
  }
  .faq-page .reg-card {
    padding: 1.75rem 1.25rem !important;
    border-radius: 18px !important;
  }
}

/* ============================================================
   Sponsors page — section rhythm + responsive spacing
   ============================================================ */
.sponsors-page #sponsors {
  padding-top: clamp(96px, 10vw, 128px) !important;
  padding-bottom: clamp(34px, 4.2vw, 60px) !important;
}

@media (max-width: 900px) {
  .sponsors-page #sponsors {
    padding-top: clamp(80px, 12vw, 104px) !important;
    padding-bottom: clamp(26px, 5vw, 42px) !important;
  }
  .sponsors-page .cv-top {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .sponsors-page .sp-why {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .sponsors-page .sp-tiers {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

@media (max-width: 640px) {
  .sponsors-page #sponsors {
    padding-top: clamp(100px, 18vw, 92px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .sponsors-page .sp-why { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .sponsors-page .sp-why-n { font-size: 1.5rem; }
  .sponsors-page .sp-why-card { padding: 1.1rem 0.9rem !important; }
}

/* ============================================================
   Conclave page — section rhythm + responsive spacing
   ============================================================ */
.conclave-page #conclave,
.conclave-page .reg-section {
  padding-top: clamp(34px, 4.2vw, 60px) !important;
  padding-bottom: clamp(34px, 4.2vw, 60px) !important;
}

@media (max-width: 900px) {
  .conclave-page #conclave,
  .conclave-page .reg-section {
    padding-top: clamp(26px, 5vw, 42px) !important;
    padding-bottom: clamp(26px, 5vw, 42px) !important;
  }
  .conclave-page .conclave-2col {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .conclave-page .cfacts {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .conclave-page .sched-row {
    grid-template-columns: 110px 1fr !important;
  }
}

@media (max-width: 640px) {
  .conclave-page #conclave,
  .conclave-page .reg-section {
    padding-top: clamp(22px, 6vw, 32px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .conclave-page .cfacts { grid-template-columns: 1fr 1fr !important; }
  .conclave-page .sched-row {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
  .conclave-page .sched-t {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .conclave-page .reg-card {
    padding: 1.75rem 1.25rem !important;
    border-radius: 18px !important;
  }
}

/* ============================================================
   Mentors page — section rhythm + responsive spacing
   ============================================================ */
.mentors-page #mentors,
.mentors-page .reg-section {
  padding-top: clamp(34px, 4.2vw, 60px);
  padding-bottom: clamp(34px, 4.2vw, 60px);
}
.mentors-page #mentors { padding-top: clamp(96px, 10vw, 128px) !important; }

@media (max-width: 900px) {
  .mentors-page #mentors { padding-top: clamp(80px, 12vw, 104px) !important; }
  .mentors-page .reg-section {
    padding-top: clamp(26px, 5vw, 42px);
    padding-bottom: clamp(26px, 5vw, 42px);
  }
  .mentors-page .cv-top {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .mentors-page .mentor-intro {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .mentors-page .mn-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
  .mentors-page .mn-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 640px) {
  .mentors-page #mentors {
    padding-top: clamp(110px, 18vw, 92px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .mentors-page .reg-section {
    padding-top: clamp(22px, 6vw, 32px);
    padding-bottom: clamp(22px, 6vw, 32px);
  }
  .mentors-page .mn-stats { grid-template-columns: 1fr 1fr !important; }
  .mentors-page .mn-grid { grid-template-columns: 1fr !important; }
  .mentors-page .mn-stat-n { font-size: 1.6rem; }
  .mentors-page .reg-card {
    padding: 1.75rem 1.25rem !important;
    border-radius: 18px !important;
  }
}

/* ============================================================
   Tracks page — section rhythm + responsive spacing
   ============================================================ */
.tracks-page #tracks,
.tracks-page .reg-section {
  padding-top: clamp(34px, 4.2vw, 60px);
  padding-bottom: clamp(34px, 4.2vw, 60px);
}
/* Keep the page's top breathing room below the fixed nav */
.tracks-page #tracks { padding-top: clamp(96px, 10vw, 128px) !important; }

@media (max-width: 900px) {
  .tracks-page #tracks { padding-top: clamp(80px, 12vw, 104px) !important; }
  .tracks-page .reg-section {
    padding-top: clamp(26px, 5vw, 42px);
    padding-bottom: clamp(26px, 5vw, 42px);
  }
  .tracks-page .cv-top {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .tracks-page .tk-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 640px) {
  .tracks-page #tracks {
    padding-top: clamp(110px, 18vw, 92px) !important;
    padding-bottom: clamp(22px, 6vw, 32px) !important;
  }
  .tracks-page .reg-section {
    padding-top: clamp(22px, 6vw, 32px);
    padding-bottom: clamp(22px, 6vw, 32px);
  }
  .tracks-page .tk-grid {
    grid-template-columns: 1fr !important;
  }
  .tracks-page .reg-card {
    padding: 1.75rem 1.25rem !important;
    border-radius: 18px !important;
  }
}

/* ============================================================
   Difference table — responsive (about.html)
   ============================================================ */
@media (max-width: 900px) {
  .about-page .dtable-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 24px;
  }
  .about-page table.dtable { min-width: 640px; }
  .about-page .dtable th,
  .about-page .dtable td {
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .about-page .dtable td.forge { white-space: normal; min-width: 220px; }
}

/* Phone: convert rows into stacked cards */
@media (max-width: 640px) {
  .about-page .dtable-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .about-page table.dtable,
  .about-page table.dtable thead,
  .about-page table.dtable tbody,
  .about-page table.dtable tr,
  .about-page table.dtable td { display: block; min-width: 0; width: 100%; }
  .about-page table.dtable thead { display: none; }
  .about-page table.dtable tr {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 14px 16px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  }
  .about-page table.dtable tr:hover td { background: transparent; }
  .about-page table.dtable td {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    white-space: normal;
  }
  .about-page table.dtable td:last-child { border-bottom: 0; padding-bottom: 0; }
  .about-page table.dtable td:first-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 700;
    padding-top: 0;
    padding-bottom: 6px;
  }
  .about-page table.dtable td:nth-child(2)::before {
    content: "Typical hackathon: ";
    font: 600 0.7rem "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
  }
  .about-page table.dtable td.forge::before {
    content: "Forge India: ";
    font: 600 0.7rem "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    display: block;
    margin-bottom: 2px;
  }
}
/* ============================================================
   Unified card border-radius — consistency pass
   Cards = 14px · Large panels = 18px · Chips/pills = unchanged
   ============================================================ */

/* Standard content cards */
.tcard,
.mcard,
.scard,
.wcard,
.ccard,
.about-card,
.feature-card,
.wyg-card,
.col-card,
.mn-card,
.pz-card,
.sp-why-card,
.sp-tier,
.cfact,
.caud-box,
.testimonial,
.outcome-card,
.community-card,
.wcard-mentor,
.tile,
.phase-col,
.tbadge-wrap,
.path-tile,
.path-student,
.path-sponsor,
.path-college {
  border-radius: 14px !important;
}

/* Larger panels / feature blocks */
.hero-panel,
.lead-panel,
.lead-panel--v2,
.urgency-panel,
.urgency-panel--v2,
.wtm-panel,
.reg-card,
.about-cta-card,
.logo-wall,
.dtable-wrap,
.about-page .dtable-wrap,
.reg-panel {
  border-radius: 18px !important;
}

/* Small content blocks / callouts keep 10–12px for visual hierarchy */
.lead-trust,
.urgency-progress-bar,
.sched-row,
.mn-stat,
.pz-rank-badge {
  border-radius: 10px !important;
}

/* ============================================================
   Unified section heading font-size
   Hero / banner headings untouched.
   Content section headings are scaled down for consistency.
   ============================================================ */

/* Base rule — applies to every .display-title / h2 inside a non-hero section */
section:not(.hero):not(.about-hero):not(.conclave-hero):not(.tl-hero):not(.col-hero):not(.program-hero):not(.page-header) .display-title,
section:not(.hero):not(.about-hero):not(.conclave-hero):not(.tl-hero):not(.col-hero):not(.program-hero):not(.page-header) h2.display-title,
section:not(.hero):not(.about-hero):not(.conclave-hero):not(.tl-hero):not(.col-hero):not(.program-hero):not(.page-header) > .container > h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  margin-bottom: 0.8rem !important;
}

/* CTA / closing block headings — match the section heading scale */
.reg-title,
.about-cta-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem) !important;
  line-height: 1.08 !important;
}

/* Tablet */
@media (max-width: 900px) {
  section:not(.hero):not(.about-hero):not(.conclave-hero):not(.tl-hero):not(.col-hero):not(.program-hero):not(.page-header) .display-title,
  section:not(.hero):not(.about-hero):not(.conclave-hero):not(.tl-hero):not(.col-hero):not(.program-hero):not(.page-header) h2.display-title,
  .reg-title,
  .about-cta-title {
    font-size: clamp(1.5rem, 4vw, 2.1rem) !important;
  }
}

/* Phone */
@media (max-width: 640px) {
  section:not(.hero):not(.about-hero):not(.conclave-hero):not(.tl-hero):not(.col-hero):not(.program-hero):not(.page-header) .display-title,
  section:not(.hero):not(.about-hero):not(.conclave-hero):not(.tl-hero):not(.col-hero):not(.program-hero):not(.page-header) h2.display-title,
  .reg-title,
  .about-cta-title {
    font-size: clamp(1.4rem, 8vw, 1.8rem) !important;
  }
}

/* ── Community Voices (testimonials) ─────────────────────────── */
.cv-section {
  padding: 4rem 0 5rem;
  background: var(--cream, #fff8f0);
}
.cv-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.cv-head .eyebrow {
  display: inline-block;
  color: var(--accent, #ea5a2a);
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cv-head h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink, #1e1b15);
  margin: 0 0 1.6rem;
}

.cv-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(234, 90, 42, 0.08);
}
.cv-tab {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink, #1e1b15);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  line-height: 1;
}
.cv-tab:hover { color: var(--accent, #ea5a2a); }
.cv-tab.is-active {
  background: var(--accent, #ea5a2a);
  color: #fff;
  box-shadow: 0 6px 18px rgba(234, 90, 42, 0.28);
}

.cv-card {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 3.4rem 3rem 2.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(24, 21, 18, 0.08);
  box-shadow: 0 10px 40px rgba(53, 32, 13, 0.06);
}
.cv-quote-mark {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: auto;
  color: var(--accent, #ea5a2a);
  opacity: 0.85;
}

.cv-panel { display: none; }
.cv-panel.is-active { display: block; }

.cv-slides {
  position: relative;
  margin-top: 0.8rem;
  min-height: 220px;
}
.cv-slide {
  display: none;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin: 0;
}
.cv-slide.is-active { display: grid; }

.cv-photo {
  width: 170px;
  height: 170px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(234, 90, 42, 0.18);
  box-shadow: 0 10px 28px rgba(53, 32, 13, 0.12);
}
.cv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cv-body { min-width: 0; }
.cv-body blockquote {
  margin: 0 0 1.2rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink, #1e1b15);
  font-weight: 500;
}
.cv-body figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cv-body figcaption strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink, #1e1b15);
}
.cv-body figcaption span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #6b6356);
  font-weight: 600;
}

.cv-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 1.6rem;
}
.cv-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(24, 21, 18, 0.12);
  color: var(--ink, #1e1b15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cv-nav:hover {
  background: var(--accent, #ea5a2a);
  color: #fff;
  transform: scale(1.06);
}
.cv-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.cv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(24, 21, 18, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.cv-dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--accent, #ea5a2a);
}

@media (max-width: 720px) {
  .cv-card { padding: 2.2rem 1.4rem 1.6rem; border-radius: 22px; }
  .cv-marks { top: 18px; }
  .cv-tabs { flex-wrap: wrap; justify-content: center; }
  .cv-tab { padding: 9px 14px; font-size: 0.84rem; }
  .cv-slide {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 1.2rem;
  }
  .cv-photo { width: 130px; height: 130px; border-radius: 18px; }
  .cv-body figcaption { align-items: center; }
}
