/* ════════════════════════════════════════════════
   HACKATHON PAGE UNIFIED CSS (Matching ebox design system)
════════════════════════════════════════════════ */

:root {
  --bg: #140B0B;
  --bg-hero: #140B0B;
  --primary: #FFCE1B;
  --secondary: #FB1650;
  --card-bg: rgba(52, 32, 31, 0.40);
  --border: rgba(255, 255, 255, 0.10);
  --border-mid: rgba(255, 255, 255, 0.20);
  --text-white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.60);
  --text-dimmer: rgba(255, 255, 255, 0.40);
  --text-nav: rgba(255, 255, 255, 0.70);
  --font-head: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1376px;
  --px: 64px;
  --radius-card: 12px;
}

@media (max-width: 1024px) {
  :root {
    --px: 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --px: 24px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ════════════════════════════════════════════════
   PAGE MARGINS (Exact ebox 1px subtle side lines)
════════════════════════════════════════════════ */
.page-margins {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 10;
  box-sizing: border-box;
}

.line-horizontal {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  height: 1px;
  background-color: var(--border);
  position: relative;
  z-index: 10;
}







/* ════════════════════════════════════════════════
   CONTENT CONTAINER WRAPPERS (Pinned inside vertical lines)
════════════════════════════════════════════════ */
.hero-container,
.hack-section,
.cta-container,
.footer-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.hero-section {
  padding-top: 120px;
}

@media (max-width: 1024px) {
  .hero-section {
    padding-top: 100px;
  }

  .hero-container,
  .hack-section,
  .cta-container,
  .footer-inner {
    padding: 40px 24px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 84px;
  }

  .hero-container,
  .hack-section,
  .cta-container,
  .footer-inner {
    padding: 32px 16px;
  }
}

/* Typography & Badges (Matching Figma Reference & Sitewide Standard) */
.hero-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 50px !important;
  font-weight: 300 !important;
  line-height: 140% !important;
  color: #ffffff !important;
  margin-bottom: 16px;
  align-self: stretch;
}

.hero-title .highlight-yellow,
.highlight-yellow {
  font-family: 'Sora', sans-serif !important;
  color: #FFCE1B !important;
  font-weight: 300 !important;
}

.hero-subtitle,
.hero-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 20px !important;
  line-height: 140% !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  max-width: 800px;
  margin-bottom: 24px;
  align-self: stretch;
}

/* ── Tablet Hero Centering (768px to 1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-container,
  .hero-content-col {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-subtitle,
  .hero-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-badges-row {
    justify-content: center !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px !important;
  }
  .hero-subtitle,
  .hero-desc {
    font-size: 16px !important;
  }
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 14px !important;
}

.sharp-badge,
.chip,
.badge-pill,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 20px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  color: #ffffff !important;
  text-transform: uppercase;
}

.badge-dot,
.chip-dot {
  width: 6px;
  height: 6px;
  background-color: #FB1650 !important;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-download-brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 24px;
  gap: 10px;
  background-color: #FFCE1B !important;
  color: #000000 !important;
  border-radius: 4px !important;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
  flex-shrink: 0;
}

.btn-download-brochure:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

/* Sections */
.section-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 900px;
}

/* ════════════════════════════════════════════════
   ABOUT SECTION (Exact Figma Spec & Centered Layout)
════════════════════════════════════════════════ */
.ellipse-parent {
  width: 100%;
  position: relative;
  background-color: #140B0B;
  border: none !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  isolation: isolate;
  gap: 32px;
  text-align: center;
  font-size: 50px;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  overflow: visible;
  z-index: 1;
}

.ellipse-parent .frame-child {
  width: 712px;
  height: 712px;
  position: absolute;
  margin: 0 !important;
  bottom: -356px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: url('public/assets/hackathon/Ziroh_web_img/ellipse-glow.svg') center/contain no-repeat,
              radial-gradient(50% 50% at 50% 50%, #5E2317 0%, rgba(73, 28, 19, 0.4) 50%, rgba(20, 11, 11, 0) 100%);
  filter: blur(60px);
  -webkit-filter: blur(60px);
  z-index: 0;
  flex-shrink: 0;
  pointer-events: none;
  opacity: 0.95;
}

.about-the-kompact-ai-hackathon-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  z-index: 1;
  flex-shrink: 0;
  max-width: 1005px;
  margin: 0 auto;
}

.about-the-kompact-container {
  max-width: 835px;
  position: relative;
  display: inline-block;
  text-align: center !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 50px !important;
  line-height: 1.2 !important;
}

.about-the {
  line-height: 110%;
  font-weight: 200 !important;
}

.kompact-ai-hackathon {
  line-height: 140%;
  color: #FFCE1B !important;
}

.span {
  font-size: 40px;
  font-family: 'Sora', sans-serif !important;
}

.kompact-ai-hackathon2 {
  font-weight: 200 !important;
  color: #FFCE1B !important;
}

.the-build-next-container {
  max-width: 1005px;
  position: relative;
  font-size: 20px !important;
  line-height: 150% !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-align: center !important;
  display: inline-block;
  font-family: 'DM Sans', sans-serif !important;
}

.the {
  font-weight: 300 !important;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.6) !important;
}

.ai-challenge-for {
  font-weight: 600 !important;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 1024px) {
  .ellipse-parent {
    padding: 80px 24px;
  }

  .the-build-next-container {
    padding: 0 24px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 767px) {
  .ellipse-parent {
    padding: 60px 16px;
  }

  .about-the-kompact-container {
    font-size: 30px !important;
  }

  .the-build-next-container {
    font-size: 16px !important;
    padding: 10px
  }

  .ellipse-parent .frame-child {
    width: 360px;
    height: 360px;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════════════
   RUNTIME SECTION (Desktop 40% Left Padding for Body & Exact Font Sizes)
════════════════════════════════════════════════ */
.runtime-section-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #140B0B;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
}

.runtime-card-inner,
.runtime-section-wrap .frame-parent {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 40px !important;
  box-sizing: border-box;
  font-family: 'Sora', sans-serif !important;
  font-size: 50px;
}

.runtime-content,
.build-with-the-kompact-ai-runt-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 32px;
  width: 100%;
}

.runtime-title,
.build-with-the-container {
  align-self: stretch;
  position: relative;
  font-size: 50px !important;
  line-height: 110% !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 200 !important;
  margin: 0;
  text-align: left !important;
  white-space: normal;
}

.build-with-the {
  line-height: 110%;
  font-weight: 200 !important;
  color: #ffffff !important;
  display: inline;
}

.kompact-ai-runtime {
  line-height: 140%;
  font-weight: 200 !important;
  color: #FFCE1B !important;
  display: inline;
}

.span {
  font-size: 60px !important;
  line-height: 120% !important;
  font-family: 'Sora', sans-serif !important;
}

.top-20-finalists-container {
  width: 100%;
  max-width: 100%;
  padding-left: 40% !important;
  box-sizing: border-box;
  position: relative;
  font-size: 20px !important;
  line-height: 150% !important;
  font-family: 'DM Sans', sans-serif !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 0.7;
  text-align: left !important;
}

.top-20-finalists-will-get-excl {
  margin: 0;
  padding-left: 27px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 20px !important;
  line-height: 150% !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.top-20-finalists-will-get-excl li,
.top-20-finalists,
.blank-line,
.blank-line2 {
  margin-bottom: 0;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .runtime-card-inner,
  .runtime-section-wrap .frame-parent {
    padding: 40px 24px !important;
  }

  .runtime-title,
  .build-with-the-container {
    font-size: 36px !important;
  }

  .top-20-finalists-container {
    padding-left: 0 !important;
    font-size: 18px !important;
  }

  .top-20-finalists-will-get-excl {
    font-size: 18px !important;
  }
}

@media (max-width: 767px) {
  .runtime-card-inner,
  .runtime-section-wrap .frame-parent {
    padding: 32px 16px !important;
  }

  .runtime-title,
  .build-with-the-container {
    font-size: 28px !important;
  }

  .top-20-finalists-container {
    padding-left: 0 !important;
    font-size: 16px !important;
  }

  .top-20-finalists-will-get-excl {
    font-size: 16px !important;
  }
}

/* ════════════════════════════════════════════════
   AWARDS SECTION (Exact Figma Spec, Image Overlays & Grid)
════════════════════════════════════════════════ */
.awards-section-wrap {
  width: 100%;
  position: relative;
  background-color: #140B0B;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.awards-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.win-over-7-lakhs-named-award-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.win-over-7-container {
  align-self: stretch;
  position: relative;
  font-family: 'Sora', sans-serif !important;
  font-size: 50px !important;
  line-height: 110% !important;
  font-weight: 200 !important;
  margin: 0;
}

.win-over-7 {
  line-height: 110%;
  color: #ffffff !important;
  font-weight: 200 !important;
}

.named-awards {
  color: #FFCE1B !important;
  line-height: 110%;
  font-weight: 200 !important;
}

.frame-container {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 20px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: 'DM Sans', sans-serif !important;
}

.we-are-deeply-container {
  align-self: stretch;
  position: relative;
  line-height: 150%;
  font-weight: 300;
}

.we-are-deeply-privileged-to-an {
  margin: 0;
  padding-left: 27px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 20px !important;
  line-height: 150% !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.we-are-deeply {
  line-height: 150%;
  font-weight: 300 !important;
}

.awards-inner .group-parent {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 60px;
  width: 100%;
}

.group-div,
.award-card-box {
  height: 512px;
  width: 100%;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.the-pushpak-bhattacharya-memor-parent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 512px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 40px;
  box-sizing: border-box;
  gap: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  border-radius: 0px;
}

.award-bg-1 {
  background-image: url('public/assets/hackathon/Ziroh_web_img/Frame 71.png'), url('../../public/assets/hackathon/Ziroh_web_img/Frame 71.png');
}

.award-bg-2 {
  background-image: url('public/assets/hackathon/Ziroh_web_img/Frame 71-1.png'), url('../../public/assets/hackathon/Ziroh_web_img/Frame 71-1.png');
}

.award-bg-3 {
  background-image: url('public/assets/hackathon/Ziroh_web_img/Frame 71-2.png'), url('../../public/assets/hackathon/Ziroh_web_img/Frame 71-2.png');
}

.the-pushpak-bhattacharya {
  position: relative;
  line-height: 140%;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 24px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 300 !important;
}

.div,
.award-amount {
  position: relative;
  font-size: 40px !important;
  line-height: 140% !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  font-family: 'Sora', sans-serif !important;
}

@media (max-width: 1024px) {
  .awards-inner {
    padding: 60px 24px;
  }

  .win-over-7-container {
    font-size: 36px !important;
  }

  .we-are-deeply-privileged-to-an {
    font-size: 18px !important;
  }

  /* Horizontal scroll on tablet */
  .awards-inner .group-parent {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-top: 40px;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Allow scroll to escape the inner padding */
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .awards-inner .group-parent::-webkit-scrollbar {
    display: none;
  }

  .group-div,
  .award-card-box,
  .award-card-bg,
  .the-pushpak-bhattacharya-memor-parent {
    flex: 0 0 340px;
    width: 340px;
    height: 460px;
    scroll-snap-align: start;
    border-radius: 0 !important;
    overflow: hidden;
  }

  .the-pushpak-bhattacharya-memor-parent {
    height: 460px;
    padding: 40px 28px;
  }

  .the-pushpak-bhattacharya {
    font-size: 20px !important;
  }

  .div,
  .award-amount {
    font-size: 32px !important;
  }
}

@media (max-width: 767px) {
  .awards-inner {
    /* Remove horizontal padding so cards go edge-to-edge between vertical lines */
    padding: 40px 0;
  }

  .win-over-7-lakhs-named-award-parent {
    padding: 0 16px;
  }

  .win-over-7-container {
    font-size: 28px !important;
  }

  .we-are-deeply-privileged-to-an {
    font-size: 16px !important;
    padding-left: 20px;
  }

  .awards-inner .group-parent {
    /* Reset from tablet horizontal scroll back to vertical stacking */
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: unset;
    flex-wrap: unset;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 0;
    margin-top: 32px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .group-div,
  .award-card-box,
  .award-card-bg,
  .the-pushpak-bhattacharya-memor-parent {
    height: 380px;
    width: 100% !important;
    flex: 1 1 100% !important;
    /* Sharp corners on mobile */
    border-radius: 0 !important;
    overflow: hidden;
  }

  .the-pushpak-bhattacharya-memor-parent {
    height: 380px;
    padding: 32px 20px;
    /* Sharp corners on mobile */
    border-radius: 0 !important;
  }

  .the-pushpak-bhattacharya {
    font-size: 18px !important;
  }

  .div,
  .award-amount {
    font-size: 28px !important;
  }
}

/* ════════════════════════════════════════════════
   2-PHASE SELECTION SECTION (Exact Figma Spec)
════════════════════════════════════════════════ */
.phase-section-wrap {
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  overflow: hidden;
  background-color: #140B0B;
}

.phase-section-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
}

/* Radial glow — sits to the left behind the text */
.phase-bg-glow {
  width: 570px;
  height: 570px;
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url('public/assets/hackathon/Ziroh_web_img/ellipse-glow.svg') center/contain no-repeat,
              radial-gradient(50% 50% at 50% 50%, #5E2317 0%, rgba(73, 28, 19, 0.4) 50%, rgba(20, 11, 11, 0) 100%);
  filter: blur(60px);
  -webkit-filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

/* Side-by-side layout */
.phase-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 75px;
  position: relative;
  z-index: 1;
}

/* Vertical column divider — bleeds through section inner padding to touch top/bottom borders */
.phase-col-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  /* Bleed through the 80px top + bottom padding of phase-section-inner */
  margin-top: -80px;
  margin-bottom: -80px;
}

/* Left column – title */
.phase-selection-process-wrapper {
  width: 519px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phase-selection-process-container {
  font-family: 'Sora', sans-serif !important;
  font-size: 50px !important;
  font-weight: 200 !important;
  line-height: 1.1;
}

.phase,
.phase2 {
  font-family: 'Sora', sans-serif !important;
  font-weight: 200 !important;
  color: #FFCE1B !important;
  line-height: 110%;
}

.selection-process,
.selection-process2 {
  font-family: 'Sora', sans-serif !important;
  font-weight: 200 !important;
  color: #ffffff !important;
  line-height: 140%;
}

.span2 {
  font-family: 'Sora', sans-serif;
}

/* Right column – phases list */
.phase-cards-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

/* Icon + phase badge row */
.phase-card-row .group-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.frame-item,
.frame-child2 {
  flex-shrink: 0;
}

.frame-div {
  display: flex;
  align-items: center;
}

/* Phase badge: red dot + label */
.ellipse-group {
  height: 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 10px;
}

.frame-inner {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #FB1650;
  flex-shrink: 0;
}

.phase-1 {
  position: relative;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 140%;
  text-transform: uppercase;
  color: #ffffff !important;
  flex-shrink: 0;
}

/* Phase title + body */
.phase-card-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  padding: 0 40px;
}

.project-submission-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.project-submission {
  align-self: stretch;
  font-family: 'Sora', sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 140%;
  color: #ffffff !important;
}

.the-entry-project {
  align-self: stretch;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Horizontal divider between phases */
.phase-divider {
  align-self: stretch;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  /* Extend left by the 75px flex gap so the line touches the center vertical bar */
  width: calc(100% + 75px);
  margin-left: -75px;
  flex-shrink: 0;
}

/* ── Tablet ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .phase-section-inner {
    padding: 60px 24px;
  }

  .phase-layout {
    flex-direction: column !important;
    gap: 40px !important;
  }

  .phase-selection-process-wrapper {
    width: 100% !important;
  }

  .phase-selection-process-container {
    font-size: 36px !important;
  }

  .phase-col-divider {
    display: none !important;
  }

  .phase-cards-col {
    width: 100% !important;
  }

  .project-submission {
    font-size: 20px !important;
  }

  .the-entry-project {
    font-size: 17px !important;
  }

  .phase-card-row {
    padding: 0;
  }

  .phase-divider {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .phase-section-inner {
    padding: 48px 16px;
  }

  .phase-layout {
    flex-direction: column;
    gap: 32px;
  }

  .phase-selection-process-wrapper {
    width: 100%;
  }

  .phase-selection-process-container {
    font-size: 28px !important;
  }

  .phase-card-row {
    padding: 0;
    gap: 24px;
  }

  /* Push the badge pill to the right on mobile */
  .phase-card-row .group-parent {
    width: 100%;
    justify-content: space-between;
  }

  .phase-card-row .group-parent .frame-div {
    margin-left: auto;
  }

  .project-submission {
    font-size: 18px !important;
  }

  .the-entry-project {
    font-size: 15px !important;
  }

  /* Hide vertical divider on mobile */
  .phase-col-divider {
    display: none;
  }

  /* Horizontal phase divider: reach exactly the vertical page bars (negate 16px inner padding only) */
  .phase-divider {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .phase-bg-glow {
    width: 320px;
    height: 320px;
    top: 20%;
    left: -40px;
    transform: none;
  }
}

/* ════════════════════════════════════════════════
   HONOREES SECTION (Figma Spec)
════════════════════════════════════════════════ */
.honorees-section-wrap {
  width: 100%;
  position: relative;
  background-color: #140B0B;
}

.honorees-section-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

/* Section title */
.honorees-section-inner .honorees {
  align-self: stretch;
  font-family: 'Sora', sans-serif !important;
  font-size: 50px !important;
  font-weight: 200 !important;
  line-height: 110%;
  color: #ffffff !important;
  text-align: center;
}

/* ── Desktop: 3-column row, cards side by side with vertical dividers ── */
.honorees-frame-parent {
  align-self: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-right: none;
  margin-left: -40px;
  margin-right: -40px;
  width: calc(100% + 80px);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* Each honoree column */
.honorees-section-wrap .frame-wrapper.honoree-col {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  text-align: left;
}

.honorees-section-wrap .frame-wrapper.honoree-col:last-child {
  border-right: none;
}

/* Inner group: image on top, text below */
.honorees-section-wrap .frame-group {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.honorees-section-wrap .rectangle-wrapper {
  width: 182px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.honorees-section-wrap .frame-child {
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.honorees-section-wrap .frame-container {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.honorees-section-wrap .dr-pushpak-bhattacharyya-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.honorees-section-wrap .dr-pushpak-bhattacharyya {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 150%;
  color: #ffffff !important;
}

.honorees-section-wrap .godfather-of-indian {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.6) !important;
}

.honorees-section-wrap .july-1962-parent {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 14px !important;
  color: #868484 !important;
}

.honorees-section-wrap .july-1962 {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 14px !important;
  line-height: 180%;
  color: #868484 !important;
}

.honorees-section-wrap .frame-item {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #FB1650;
  flex-shrink: 0;
}

/* ── Tablet: stack rows vertically, image + text side by side per row ── */
@media (max-width: 1024px) {
  .honorees-section-inner {
    padding: 60px 24px;
  }

  .honorees-section-inner .honorees {
    font-size: 36px !important;
  }

  .honorees-frame-parent {
    flex-direction: column;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .honorees-section-wrap .frame-wrapper.honoree-col {
    flex: unset;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
  }

  .honorees-section-wrap .frame-wrapper.honoree-col:last-child {
    border-bottom: none;
  }

  /* Image and text side by side on tablet */
  .honorees-section-wrap .frame-group {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .honorees-section-wrap .rectangle-wrapper {
    flex-shrink: 0;
  }

  .honorees-section-wrap .frame-container {
    flex: 1;
    gap: 24px;
  }
}

/* ── Mobile: horizontal scroll, snap per card ── */
@media (max-width: 767px) {
  .honorees-section-inner {
    padding: 48px 0;
    gap: 28px;
  }

  .honorees-section-inner .honorees {
    font-size: 28px !important;
    padding: 0 16px;
  }

  .honorees-frame-parent {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .honorees-frame-parent::-webkit-scrollbar {
    display: none;
  }

  .honorees-section-wrap .frame-wrapper.honoree-col {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    scroll-snap-align: start;
    padding: 24px 20px;
  }

  .honorees-section-wrap .frame-wrapper.honoree-col:last-child {
    border-right: none;
  }

  /* Vertical stack inside each card on mobile */
  .honorees-section-wrap .frame-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .honorees-section-wrap .frame-child {
    width: 120px;
    height: 120px;
  }

  .honorees-section-wrap .frame-container {
    gap: 20px;
  }
}

/* ════════════════════════════════════════════════
   WHO CAN APPLY SECTION (Figma Spec)
════════════════════════════════════════════════ */
.apply-section-wrap {
  width: 100%;
  position: relative;
  background-color: #140B0B;
}

.apply-section-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 160px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
}

/* Title */
.who-can-apply-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-can-apply {
  font-family: 'Sora', sans-serif !important;
  font-size: 50px !important;
  font-weight: 200 !important;
  line-height: 110%;
  color: #ffffff !important;
}

/* Cards container */
.apply-frame-group {
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: stretch;
  text-align: left;
}

/* Card shared base */
.apply-frame-wrapper,
.apply-frame-div {
  flex: 1;
  background-color: rgba(52, 32, 31, 0.4);
  border: 1px solid rgba(143, 137, 123, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  box-sizing: border-box;
}

/* Inner content layout */
.file-text-1-parent,
.users-parent {
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* Icon */
.file-text-1-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Heading wrapper */
.apply-frame-container {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading-3-wrapper {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.heading-3 {
  flex: 1;
  font-family: 'Sora', sans-serif !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  line-height: 150%;
  color: #ffffff !important;
}

/* ── Tablet ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .apply-section-inner {
    padding: 60px 40px;
    gap: 40px;
  }

  .who-can-apply {
    font-size: 36px !important;
  }

  .apply-frame-group {
    flex-direction: row !important;
    align-items: stretch !important;
  }

  .apply-frame-wrapper,
  .apply-frame-div {
    flex: 1 !important;
    width: auto !important;
  }

  .heading-3 {
    font-size: 22px !important;
  }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .apply-section-inner {
    padding: 48px 16px;
    gap: 28px;
  }

  .who-can-apply {
    font-size: 28px !important;
  }

  .apply-frame-group {
    flex-direction: column;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    border: none !important;
    gap: 0;
  }

  .apply-frame-wrapper,
  .apply-frame-div {
    width: 100%;
    padding: 28px 20px;
    border-radius: 0 !important;
    background-color: rgba(30, 18, 17, 0.5);
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-sizing: border-box;
  }

  .apply-frame-div {
    border-bottom: none !important;
  }

  .file-text-1-parent,
  .users-parent {
    gap: 32px;
  }

  .file-text-1-icon {
    width: 44px;
    height: 44px;
  }

  .heading-3 {
    font-size: 18px !important;
  }
}

/* ════════════════════════════════════════════════
   CTA SECTION — Ready to Build (Figma Spec)
════════════════════════════════════════════════ */
.cta-section-wrap {
  width: 100%;
  position: relative;
  background-color: #140B0B;
}

.cta-section-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 64px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Centred group with glow behind */
.cta-section-wrap .ellipse-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  isolation: isolate;
  gap: 40px;
  border: none !important;
  border-top: none !important;
}

/* Radial glow blob */
.cta-glow {
  width: 570px;
  height: 570px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: url('public/assets/hackathon/Ziroh_web_img/ellipse-glow.svg') center/contain no-repeat,
              radial-gradient(50% 50% at 50% 50%, #5E2317 0%, rgba(73, 28, 19, 0.4) 50%, rgba(20, 11, 11, 0) 100%);
  filter: blur(60px);
  -webkit-filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  flex-shrink: 0;
  opacity: 0.95;
}

/* Headline wrapper */
.display-2-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  flex-shrink: 0;
}

/* Gradient headline text */
.display-2 {
  width: 1092px;
  max-width: 100%;
  position: relative;
  font-family: 'Sora', sans-serif !important;
  font-size: 60px !important;
  font-weight: 600 !important;
  line-height: 120%;
  background: linear-gradient(121.52deg, #FFC01D 0%, rgba(251, 227, 218, 0.98) 62.5%, rgba(255, 196, 93, 0.97) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0px 3.48px 3.48px #411C09);
  text-align: center;
}

/* Deadline subtitle */
.cta-heading-3 {
  align-self: stretch;
  font-family: 'Sora', sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 150%;
  color: #FEF9EE !important;
  text-align: center;
  z-index: 2;
  flex-shrink: 0;
}

/* Button row */
.component-25-parent {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  z-index: 3;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* Primary button — yellow */
.component-25 {
  height: 36px;
  border-radius: 4px;
  background-color: #FFCE1B;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  box-sizing: border-box;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  line-height: 1 !important;
  transition: opacity 0.2s ease;
}

.component-25:hover {
  opacity: 0.88;
}

/* Secondary button — ghost */
.component-26 {
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  gap: 10px;
  color: #ffffff !important;
  text-decoration: none;
  cursor: pointer;
  line-height: 1 !important;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.component-26:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Button label */
.cta-section-wrap .register-for-build {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 140%;
  text-transform: uppercase;
  flex-shrink: 0;
  color: #000000;
}

.component-26 .register-for-build {
  color: #ffffff !important;
}

/* Arrow icon */
.arrowright {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .cta-section-inner {
    padding: 80px 40px;
  }

  .display-2 {
    font-size: 44px !important;
    width: 100%;
  }

  .cta-heading-3 {
    font-size: 20px !important;
  }

  .cta-glow {
    width: 400px;
    height: 400px;
    top: calc(50% - 200px);
    left: calc(50% - 200px);
    filter: blur(180px);
  }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .hero-badges-row {
    justify-content: flex-start;
    width: 100%;
  }

  .btn-download-brochure {
    display: inline-flex;
    width: 100%;
    max-width: 100%/*260px*/;
    padding: 12px 28px !important;
    justify-content: center !important;
    margin: 12px auto 0 auto !important;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-image-wrapper {
    width: 100%;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 0 !important;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 0 !important;
    border: none !important;
  }

  .cta-section-inner {
    padding: 56px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .cta-section-wrap .ellipse-parent {
    width: 100%;
    box-sizing: border-box;
  }

  .display-2-wrapper {
    width: 100%;
    box-sizing: border-box;
  }

  .display-2 {
    font-size: 30px !important;
    line-height: 130%;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
  }

  .cta-heading-3 {
    font-size: 15px !important;
  }

  .component-25-parent {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .component-25 {
    align-self: stretch;
    width: 100%;
    height: auto;
    min-height: 40px;
    border-radius: 4px !important;
    background-color: #FFCE1B !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    box-sizing: border-box;
    gap: 8px;
    text-decoration: none;
  }

  .component-26 {
    align-self: stretch;
    width: 100%;
    height: auto;
    min-height: 40px;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background-color: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    box-sizing: border-box;
    gap: 8px;
    text-decoration: none;
  }

  .component-25 .register-for-build {
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 140% !important;
    text-transform: uppercase;
    color: #000000 !important;
    white-space: normal;
    text-align: center;
  }

  .component-26 .register-for-build {
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 140% !important;
    text-transform: uppercase;
    color: #ffffff !important;
    white-space: normal;
    text-align: center;
  }

  .arrowright {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .cta-glow {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
  }
}

/* ════════════════════════════════════════════════
   FAQ SECTION (Figma Spec)
════════════════════════════════════════════════ */
.faq-section-wrap {
  width: 100%;
  position: relative;
  background-color: #140B0B;
}

.faq-section-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.frequently-asked-questions-parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.frequently-asked-questions {
  align-self: stretch;
  font-family: 'Sora', sans-serif !important;
  font-size: 50px !important;
  font-weight: 200 !important;
  line-height: 110%;
  color: #ffffff !important;
  text-align: center;
  margin: 0;
}

.faq-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

/* Base Closed Item: NO border, NO box background */
.faq-item {
  align-self: stretch;
  border-radius: 4px;
  background-color: transparent;
  border: none !important;
  transition: background-color 0.25s ease;
  box-sizing: border-box;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 20px 32px;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.faq-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-question-text {
  align-self: stretch;
  font-family: 'Sora', sans-serif !important;
  font-size: 20px !important;
  font-weight: 200 !important;
  line-height: 140%;
  color: #ffffff !important;
}

.faq-answer-text {
  display: none;
  align-self: stretch;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 12px;
}

.icon-down-arrow {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Opened / Active State: Change in BG color box, NO borders */
.faq-item.active {
  background-color: rgba(52, 32, 31, 0.4);
  border: none !important;
}

.faq-item.active .faq-answer-text {
  display: block;
}

.faq-item.active .icon-down-arrow {
  transform: rotate(180deg);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .faq-section-inner {
    padding: 60px 24px;
  }

  .frequently-asked-questions {
    font-size: 36px !important;
  }

  .faq-question {
    padding: 16px 16px 16px 24px;
  }

  .faq-question-text {
    font-size: 18px !important;
  }

  .faq-answer-text {
    font-size: 16px !important;
  }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .faq-section-inner {
    padding: 48px 16px;
  }

  .frequently-asked-questions {
    font-size: 28px !important;
  }

  .faq-question {
    padding: 16px 12px 16px 16px;
  }

  .faq-question-text {
    font-size: 16px !important;
  }

  .faq-answer-text {
    font-size: 14px !important;
  }
}


@media (max-width: 767px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-desc {
    font-size: 15px;
  }
}

/* Bullet list */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
}

.bullet-icon {
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
}

/* Card Grids */
.award-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.award-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  background: var(--card-bg);
}

.award-card-bg {
  width: 100%;
  height: auto;
  display: block;
}

.award-card-content {
  padding: 20px;
}

.award-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.award-amount {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.phase-card {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
}

.phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.phase-icon {
  width: 24px;
  height: 24px;
}

.phase-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.phase-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

.honorees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.honoree-card {
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
  text-align: center;
}

.honoree-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}

.honoree-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.honoree-role {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 4px;
}

.honoree-dates {
  font-size: 13px;
  color: var(--text-dimmer);
  font-family: var(--font-mono);
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.apply-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
}

.apply-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.apply-text {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.5;
}

/* CTA Section */
.cta-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-deadline {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--secondary);
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 24px;
  background: var(--primary);
  color: #000;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
}

.btn-cta-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-mid);
  color: var(--text-white);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
}

.btn-cta-secondary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}



/* ════════════════════════════════════════════════
   SITEWIDE STANDARD FOOTER (Matching Education Page)
════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  background: #140B0B;
  border-top: 0.1px solid rgba(255, 255, 255, 0.15);
}

.footer-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px;
  box-sizing: border-box;
}

/* Top nav row */
.footer-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 48px;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-nav-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-nav-link:hover {
  color: #ffffff !important;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.20);
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
}

.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.60);
  background: rgba(255, 255, 255, 0.06);
}

/* Bottom row: Big K logo + addresses + ZIROHLabs */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-big-logo {
  flex-shrink: 0;
}

.big-k-square {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 56px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer-addresses {
  display: flex;
  gap: 60px;
  flex: 1;
  padding: 0 60px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-city {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.80) !important;
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-addr-text {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 20px !important;
  margin: 0;
}

.footer-ziroh {
  flex-shrink: 0;
}

.ziroh-logo {
  height: 36px;
  width: auto;
  filter: none;
  transition: filter 0.18s;
}

.ziroh-logo:hover {
  filter: brightness(1.2);
}

/* Legal section */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 0.1px solid rgba(255, 255, 255, 0.15);
}

.footer-legal-links {
  display: flex;
  gap: 32px;
}

.footer-legal-links a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-legal-links a:hover {
  color: #ffffff !important;
}

.footer-copyright {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin: 0;
}

/* ── Tablet Footer (768px - 1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-bottom-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr auto !important;
    row-gap: 40px !important;
    align-items: start !important;
  }

  .footer-addresses {
    grid-column: 1 / 3 !important;
    padding: 0 !important;
  }

  .footer-address {
    margin-left: 0 !important;
    flex: 1 !important;
  }

  .footer-big-logo {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .footer-ziroh {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
  }
}

/* ── Mobile Footer (<= 767px) ── */
@media (max-width: 767px) {
  .footer-nav-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
    margin-bottom: 32px !important;
    padding-bottom: 32px !important;
  }

  .footer-nav-links {
    flex-wrap: nowrap !important;
    gap: 20px !important;
  }

  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }

  .footer-addresses {
    flex-direction: column !important;
    gap: 24px !important;
    padding: 0 !important;
  }

  .footer-ziroh {
    order: 2 !important;
    align-self: flex-end !important;
  }

  .footer-big-logo {
    order: 3 !important;
  }

  .footer-legal {
    flex-direction: column-reverse !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding-top: 32px !important;
    margin-top: 32px !important;
  }
}



  /* ════════════════════════════════════════════════
     UPPER LINE REMOVAL & FOOTER LOWER LINE RESTORATION (<= 1024px)
  ════════════════════════════════════════════════ */
  /* 1. Restore Footer's own Top Border (Lower Line) */
  body .footer,
  body footer.footer,
  body footer#footer,
  body footer#footer-mobile,
  .footer,
  #footer,
  #footer-mobile {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  /* 2. Hide horizontal line dividers directly above footer */
  .line-horizontal,
  .line-horizontal:last-of-type,
  main > .line-horizontal:last-child {
    display: none !important;
    border: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 3. Hide dummy/glow sections right above footer */
  .why-section[style*="min-height:0"],
  .get-started-section[style*="min-height:0"],
  .why-section:last-of-type,
  .get-started-section:last-of-type {
    border-top: none !important;
    border-bottom: none !important;
    display: none !important;
  }

  /* 4. Remove section bottom borders right above footer on mobile (Upper Line) */
  main > section:last-of-type,
  main > div:last-of-type,
  section:last-of-type,
  .models-section,
  .faq-accordion-list,
  .dev-section,
  .tribute-section,
  .community-section,
  .jobs-grid,
  .dynamic-jd-wrapper,
  .phil2-contact-section,
  .phil-status-contact,
  .related-videos,
  .event-detail-body,
  .gallery-large,
  .event-quote,
  .event-meta,
  .md-code-tablet,
  .session-header-row {
    border-bottom: none !important;
  }


/* ════════════════════════════════════════════════
   MOBILE FOOTER OVERRIDES (<= 1024px)
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  body .footer,
  body footer.footer,
  body footer#footer,
  body footer#footer-mobile,
  .footer,
  #footer,
  #footer-mobile {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 32px 0 0 0 !important;
    padding: 0 !important;
    background: #1c1414 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: 10 !important;
  }

  
  /* Remove section bottom border right above footer on mobile to eliminate upper line */
  main > section:last-of-type,
  main > div:last-of-type,
  section:last-of-type,
  .phil2-mobile-page-wrapper > main > section:last-of-type,
  .phil-mobile-page-wrapper > main > section:last-of-type,
  .sbox-page section:last-of-type,
  .page-section:last-of-type,
  .faq-section,
  .get-started-section,
  .community-section,
  .related-videos,
  .phil2-contact-section {
    border-bottom: none !important;
  }

  body .footer .footer-inner,
  body footer#footer-mobile .footer-inner,
  .footer-inner {
    width: calc(100% - calc(var(--px, 24px) * 2)) !important;
    max-width: var(--max-w, 1376px) !important;
    margin: 0 auto !important;
    padding: 32px 20px !important;
    box-sizing: border-box !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
  }

  /* Top Nav Row */
  body .footer .footer-nav-row,
  body footer#footer-mobile .footer-nav-row,
  .footer-nav-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-links,
  body footer#footer-mobile .footer-nav-links,
  .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-link,
  body footer#footer-mobile .footer-nav-link,
  .footer-nav-link {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* Social Icons */
  body .footer .footer-socials,
  body footer#footer-mobile .footer-socials,
  .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
  }

  body .footer .social-icon,
  body footer#footer-mobile .social-icon,
  .social-icon {
    width: 32px !important;
    height: 32px !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  body .footer .social-icon svg path,
  body .footer .social-icon svg circle,
  body footer#footer-mobile .social-icon svg path,
  body footer#footer-mobile .social-icon svg circle,
  .social-icon svg path,
  .social-icon svg circle {
    stroke: #000000 !important;
    fill: #000000 !important;
  }

  body .footer .social-icon svg path[fill="none"],
  body footer#footer-mobile .social-icon svg path[fill="none"],
  .social-icon svg path[fill="none"] {
    fill: none !important;
  }

  /* Middle Row: Addresses & Logos */
  body .footer .footer-bottom-row,
  body footer#footer-mobile .footer-bottom-row,
  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Addresses: Left (Bengaluru) & Right (Palo Alto) */
  body .footer .footer-addresses,
  body footer#footer-mobile .footer-addresses,
  .footer-addresses {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    order: 1 !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-address:first-child,
  body footer#footer-mobile .footer-address:first-child,
  .footer-address:first-child {
    flex: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-address:last-child,
  body .footer .footer-address:nth-child(2),
  body footer#footer-mobile .footer-address:last-child,
  body footer#footer-mobile .footer-address:nth-child(2),
  .footer-address:last-child,
  .footer-address:nth-child(2) {
    flex: 1 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-city,
  body footer#footer-mobile .footer-city,
  .footer-city {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 0 !important;
  }

  body .footer .footer-addr-text,
  body footer#footer-mobile .footer-addr-text,
  .footer-addr-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* ZIROHLabs Logo: Below Addresses, Left Aligned */
  body .footer .footer-ziroh,
  body footer#footer-mobile .footer-ziroh,
  .footer-ziroh {
    order: 2 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-bottom: 24px !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
    text-align: left !important;
  }

  body .footer .ziroh-logo,
  body footer#footer-mobile .ziroh-logo,
  .ziroh-logo {
    height: 28px !important;
    width: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Big K. Square Logo: Below ZIROHLabs Logo, Left Aligned */
  body .footer .footer-big-logo,
  body footer#footer-mobile .footer-big-logo,
  .footer-big-logo {
    order: 3 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
  }

  body .footer .big-k-square,
  body footer#footer-mobile .big-k-square,
  .big-k-square {
    width: 72px !important;
    height: 72px !important;
    border-radius: 4px !important;
    display: block !important;
    margin-left: 0 !important;
  }

  /* Bottom Legal Section */
  body .footer .footer-legal,
  body footer#footer-mobile .footer-legal,
  .footer-legal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-legal-links,
  body footer#footer-mobile .footer-legal-links,
  .footer-legal-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    order: 1 !important;
    width: 100% !important;
  }

  body .footer .footer-legal-links a,
  body footer#footer-mobile .footer-legal-links a,
  .footer-legal-links a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  body .footer .footer-copyright,
  body footer#footer-mobile .footer-copyright,
  .footer-copyright {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
    order: 2 !important;
    width: 100% !important;
    text-align: left !important;
  }
}


