:root {
  color-scheme: light;
  --ink: #101214;
  --muted: #667079;
  --line: #dde4e6;
  --paper: #ffffff;
  --soft: #f6f8f8;
  --soft-green: #eaf8f5;
  --accent: #00d8b8;
  --deep: #071312;
  --max: 1120px;
  --page-scroll: 0;
  --hero-scroll: 0;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  src: url("./apgc-lab-public-assets/fonts/SpoqaHanSansNeo-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  src: url("./apgc-lab-public-assets/fonts/SpoqaHanSansNeo-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  src: url("./apgc-lab-public-assets/fonts/SpoqaHanSansNeo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  src: url("./apgc-lab-public-assets/fonts/SpoqaHanSansNeo-Medium.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  src: url("./apgc-lab-public-assets/fonts/SpoqaHanSansNeo-Bold.woff2") format("woff2");
  font-weight: 800 950;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Spoqa Han Sans Neo", "Pretendard", "Nanum Gothic", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body.lang-en {
  font-family: "Spoqa Han Sans Neo", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 900ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#app:focus {
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 24px);
  min-height: 86px;
  padding: 0 clamp(24px, 9vw, 162px);
  border-bottom: 0;
  background: rgba(48, 48, 48, 0.96);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand img {
  width: 166px;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 8px);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.nav-item {
  position: relative;
}

.site-nav .nav-link {
  display: block;
  min-width: clamp(82px, 8vw, 96px);
  padding: 12px clamp(13px, 1.5vw, 18px);
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 0;
  background: rgba(55, 55, 55, 0.94);
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #7de7d1;
  background: rgba(55, 55, 55, 1);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  min-width: 180px;
  padding: 14px 8px 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 8px solid transparent;
  background-clip: padding-box;
  background: rgba(44, 44, 44, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.site-nav .nav-item:last-child .submenu {
  left: auto;
  right: 0;
}

.has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu a {
  display: block;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.2;
}

.submenu a:hover,
.submenu a.active {
  color: #7de7d1;
  background: rgba(255, 255, 255, 0.06);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 9px 12px;
  font-weight: 700;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section {
  padding: 96px clamp(22px, 7vw, 96px);
}

.section.alt {
  background: var(--soft);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 0;
}

.lead {
  max-width: 780px;
  color: #30363b;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 650;
}

.wix-home-hero {
  position: relative;
  min-height: 812px;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: #101010;
  text-align: center;
}

.wix-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 216, 184, calc(0.05 + var(--hero-scroll) * 0.1)), transparent 42%),
    rgba(2, 18, 44, calc(0.32 + var(--hero-scroll) * 0.08));
  pointer-events: none;
}

.wix-home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.78) saturate(0.94);
  transform: scale(calc(1.02 + var(--hero-scroll) * 0.055));
  transform-origin: center center;
  transition: transform 120ms linear;
}

.home-hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 26px;
  row-gap: 26px;
  width: min(100% - 48px, 900px);
  transform: translate(-50%, calc(-42% + var(--hero-scroll) * -18px));
  color: #fff;
  text-align: center;
}

.home-hero-title.reveal-on-scroll {
  transform: translate(-50%, calc(-42% + var(--hero-scroll) * -18px + 26px)) scale(0.985);
}

.home-hero-title.reveal-on-scroll.is-visible {
  transform: translate(-50%, calc(-42% + var(--hero-scroll) * -18px)) scale(1);
}

.wix-home-hero .home-hero-watermark {
  width: clamp(112px, 13vw, 150px);
  height: auto;
  filter: none;
}

.home-hero-title strong {
  display: block;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(54px, 7.5vw, 104px);
  line-height: 1.02;
  font-weight: 950;
}

.home-hero-title span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.7vw, 21px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
}

.home-kicker,
.section-kicker {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: none;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto 92px;
  color: rgba(5, 21, 19, 0.74);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
  font-weight: 750;
  word-break: keep-all;
}

.home-intro {
  min-height: 560px;
  padding: 118px clamp(28px, 8vw, 120px) 128px;
  background: #fff;
}

.wix-home-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(56px, 9vw, 128px);
  align-items: center;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.home-intro-copy {
  max-width: 720px;
}

.home-intro-copy p {
  margin: 0 0 28px;
  color: #000;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.95;
  font-weight: 400;
  letter-spacing: 0;
  word-break: keep-all;
  text-align: left;
}

.home-intro-copy span {
  display: block;
}

.home-intro-copy p:last-child {
  margin-bottom: 0;
}

.more-about,
.form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(5, 92, 119, 0.34);
  border-radius: 6px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #38d4cf, #269dc8);
  color: #042f42;
  box-shadow:
    0 9px 20px rgba(7, 91, 124, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.more-about:hover,
.form-actions button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 13px 26px rgba(7, 91, 124, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  filter: saturate(1.06);
}

.home-intro-mark {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 320px;
  text-align: center;
}

.home-icon {
  width: min(210px, 48vw);
  margin: 0 auto 26px;
}

.home-intro-mark p {
  max-width: 280px;
  margin: 0 auto;
  color: #41a2a9;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 82px auto 0;
  max-width: 860px;
}

.proof-strip article {
  min-height: 126px;
  padding: 26px 22px;
  border: 1px solid rgba(0, 216, 184, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f5fbfa);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.06);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: #071312;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.proof-strip span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-core-programs {
  min-height: 720px;
  padding: 24px clamp(22px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at calc(24% + var(--page-scroll) * 36%) 12%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(180deg, #21d8c6 0%, #80eee4 25%, #ffffff 46%);
  overflow: hidden;
  text-align: center;
}

.home-core-programs h2 {
  margin: 0 0 168px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(34px, 5.1vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.34em;
}

.diamond-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(94px, 1fr));
  gap: clamp(10px, 2vw, 18px);
  width: min(820px, 82vw);
  margin: -34px auto 72px;
  padding: clamp(36px, 5vw, 58px) clamp(18px, 4vw, 42px);
}

.diamond-mosaic figure {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: translateY(18px) scale(0.96);
  background: #eee;
}

.diamond-mosaic figure.is-visible {
  transform: translateY(0) scale(1);
}

.diamond-mosaic figure:nth-child(4n + 2),
.diamond-mosaic figure:nth-child(4n + 4) {
  margin-top: clamp(34px, 5vw, 56px);
}

.diamond-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.more-about {
  min-width: 190px;
  letter-spacing: 0.04em;
}

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

.program-card {
  display: grid;
  grid-template-rows: 168px auto;
  min-height: 386px;
  border: 1px solid rgba(8, 27, 24, 0.1);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 216, 184, 0.5);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.12);
}

.program-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  background: #eaf8f5;
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.program-card.is-visible img,
.wix-media-grid.is-visible img {
  transform: scale(1.018);
}

.program-card-body {
  padding: 22px;
  text-align: left;
}

.program-card-body span {
  display: block;
  margin-bottom: 12px;
  color: #078c7b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: none;
  word-break: keep-all;
}

.program-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.22;
}

.program-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.program-index-hero,
.program-detail-hero {
  padding: 124px clamp(22px, 7vw, 96px) 76px;
  background:
    radial-gradient(circle at calc(16% + var(--page-scroll) * 28%) 10%, rgba(0, 216, 184, 0.2), transparent 28%),
    #fff;
  text-align: center;
}

.program-dark-hero {
  display: grid;
  align-items: start;
  padding: 118px clamp(22px, 7vw, 96px) 62px;
  background:
    radial-gradient(circle at calc(20% + var(--hero-scroll) * 24%) 20%, rgba(0, 216, 184, 0.24), transparent 28%),
    #020605;
  text-align: center;
}

.program-dark-hero h1 {
  margin: 0 auto 22px;
  max-width: none;
  color: #65e6d1;
  font-size: 60px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  word-break: normal;
  background: linear-gradient(180deg, #70ead8 0%, #f3f5f5 72%, #67817c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.program-tagline {
  max-width: 760px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 850;
  word-break: keep-all;
}

.program-dark-copy {
  max-width: 884px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.78;
  font-weight: 500;
  word-break: keep-all;
}

.program-dark-copy p {
  margin: 0;
}

.program-dark-copy p + p {
  margin-top: 22px;
}

.program-dark-body {
  padding-top: 24px;
  padding-bottom: 112px;
  background: #020605;
  color: #fff;
}

.program-dark-body .wix-question-grid div {
  border-color: rgba(255, 255, 255, 0.12);
  background: #080808;
}

.program-dark-body .wix-question-grid p {
  color: #fff;
}

.program-dark-body .wix-media-grid figure,
.program-dark-body .wix-media-grid img {
  background: #080808;
}

.program-index-hero h1,
.program-detail-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 900;
  word-break: keep-all;
}

.program-index-hero p,
.program-detail-hero p,
.program-detail-hero span {
  display: block;
  margin: 0;
  font-size: clamp(22px, 3.4vw, 42px);
  line-height: 1.05;
  font-weight: 850;
  word-break: keep-all;
}

.program-detail-hero p,
.program-detail-hero span {
  color: rgba(0, 0, 0, 0.18);
}

.program-index-hero p {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

.narrow {
  max-width: 920px;
}

.wix-copy {
  max-width: 884px;
  margin: 0 auto 82px;
  text-align: center;
  color: #242424;
  font-size: 17px;
  line-height: 1.95;
  word-break: keep-all;
}

.wix-copy p {
  margin-bottom: 20px;
}

.wix-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 auto 44px;
}

.wix-question-grid div {
  min-height: 126px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(8, 27, 24, 0.1);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.wix-question-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
  word-break: keep-all;
}

.wix-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin: 34px auto 0;
}

.wix-media-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #f7f7f7;
}

.wix-media-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #f7f7f7;
  transition: transform 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.wix-media-grid .youtube-thumb img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.startup-tour-companies {
  margin: 18px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.startup-tour-companies > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.company-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.company-logo-row figure {
  width: 132px;
  height: 94px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 15px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
}

.company-logo-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-extra-block {
  margin: 0 auto 42px;
  padding-top: 8px;
}

.program-editorial {
  margin: 0 auto 46px;
  padding: 54px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.program-editorial .editorial-label {
  margin: 0 0 14px;
  color: #54dcd5;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.program-editorial > h2 {
  max-width: 780px;
  margin: 0 auto 42px;
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  word-break: keep-all;
}

.startup48-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.startup48-flow article {
  min-height: 220px;
  padding: 34px 28px;
}

.startup48-flow article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.startup48-flow span,
.partners-journey span {
  display: block;
  margin-bottom: 28px;
  color: #54dcd5;
  font-size: 13px;
  font-weight: 900;
}

.startup48-flow h3,
.ideathon-editions h3,
.partners-journey h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.startup48-flow p,
.ideathon-editions p,
.partners-journey p,
.fail-editorial > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.ideathon-editions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ideathon-editions article {
  min-height: 180px;
  display: grid;
  place-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
}

.partners-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 34px;
  text-align: left;
}

.partners-journey article {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.fail-editorial {
  max-width: 760px;
}

.fail-editorial > p:last-child {
  font-size: 15px;
  line-height: 1.8;
}

.program-extra-block > h2,
.internship-inquiry h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 30px;
  line-height: 1.12;
  word-break: keep-all;
}

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

.program-highlight-grid article,
.program-stat-grid article {
  min-height: 176px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #080808;
}

.program-highlight-grid h3 {
  margin: 0 0 14px;
  color: #73e8d6;
  font-size: 17px;
  line-height: 1.35;
  word-break: keep-all;
}

.program-highlight-grid p,
.program-stat-grid p,
.inquiry-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
}

.program-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 42px;
}

.program-stat-grid article {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.program-stat-grid strong {
  color: #73e8d6;
  font-size: 44px;
  line-height: 1;
}

.program-stat-grid span {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.program-external-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 34px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.program-external-link:hover {
  color: #73e8d6;
}

.internship-inquiry {
  margin-top: 80px;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.inquiry-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.internship-inquiry .section-kicker {
  margin-bottom: 12px;
  color: #73e8d6;
}

.internship-inquiry form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.internship-inquiry label {
  display: grid;
  gap: 9px;
}

.internship-inquiry label > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.internship-inquiry input,
.internship-inquiry textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: #080808;
  color: #fff;
  font: inherit;
}

.internship-inquiry input {
  min-height: 48px;
  padding: 0 14px;
}

.internship-inquiry textarea {
  padding: 14px;
  resize: vertical;
}

.internship-inquiry input:focus,
.internship-inquiry textarea:focus {
  outline: 2px solid #53ddc7;
  outline-offset: 2px;
}

.internship-inquiry .form-wide {
  grid-column: 1 / -1;
}

.internship-inquiry .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.internship-inquiry .form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-actions button {
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-actions a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.about-hero {
  position: relative;
  min-height: 812px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: grayscale(1) brightness(0.42);
  transform: scale(calc(1.02 + var(--hero-scroll) * 0.055));
  transform-origin: center center;
}

.about-hero::after,
.alumni-hero::after,
.people-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 216, 184, calc(0.12 + var(--hero-scroll) * 0.09)), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, calc(0.34 + var(--hero-scroll) * 0.12)));
  pointer-events: none;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 44px, 760px);
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 30px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 900;
  word-break: keep-all;
}

.about-hero p {
  font-size: 18px;
  line-height: 1.65;
  word-break: keep-all;
}

.about-message {
  display: block;
  max-width: 860px;
}

.about-message article {
  padding: 44px;
  border: 1px solid rgba(8, 27, 24, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbfb);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.07);
}

.about-message h2 {
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 1.1;
}

.about-message p {
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

.about-message .signature {
  margin-top: 32px;
  text-align: right;
  font-weight: 700;
}

.about-team-band {
  background: #fff;
}

.about-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 78px;
  margin-bottom: 70px;
}

.about-people article,
.director-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  column-gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(8, 27, 24, 0.08);
  border-radius: 8px;
  background: #fff;
}

.about-people.two article,
.director-card {
  grid-template-columns: 96px minmax(0, 1fr);
}

.about-people img,
.director-card img {
  grid-row: span 3;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
}

.about-people strong,
.director-card strong {
  display: block;
  font-size: 21px;
}

.about-people span,
.director-card span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 800;
}

.about-people p,
.director-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  word-break: keep-all;
}

.alumni-list {
  display: grid;
  gap: 0;
}

.alumni-hero,
.people-hero {
  position: relative;
  min-height: 812px;
  overflow: hidden;
  background: #111;
}

.people-hero {
  display: grid;
  align-items: center;
}

.alumni-hero img,
.people-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.46);
  transform: scale(calc(1.02 + var(--hero-scroll) * 0.055));
  transform-origin: center center;
}

.alumni-hero-copy,
.people-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 44px, 760px);
  padding-top: 260px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.people-hero-copy {
  padding-top: 0;
}

.alumni-hero-copy h1,
.people-hero-copy h1 {
  margin: 0 0 24px;
  font-size: 64px;
  line-height: 1;
  font-weight: 950;
}

.people-hero-copy h1 {
  font-size: 64px;
  line-height: 1;
}

.alumni-hero-copy p:last-child,
.people-hero-copy p:last-child {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 750;
  word-break: keep-all;
}

.people-hero-copy p:last-child {
  font-size: 18px;
}

.people-apply-band {
  background: linear-gradient(180deg, #fff, #f7fbfa);
}

.people-apply {
  max-width: 820px;
}

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

.people-section-heading h2 {
  margin: 0 0 20px;
  color: #071312;
  font-size: 38px;
  line-height: 1.05;
}

.people-section-heading > p:last-child:not(.section-kicker) {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.alumni-section-heading {
  margin-bottom: 52px;
}

.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;
}

.about-content-band,
.board-empty-band,
.alumni-band {
  background: linear-gradient(180deg, #fff, #f7fbfa);
}

.about-content-section {
  max-width: 1120px;
}

.about-content-section h2 {
  margin-bottom: 28px;
  color: #071312;
  font-size: 44px;
  line-height: 1;
}

.about-lead {
  max-width: 860px;
  margin-bottom: 44px;
  color: #071312;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  word-break: keep-all;
}

.about-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.about-copy-grid.single {
  grid-template-columns: minmax(0, 820px);
}

.about-copy-stack {
  display: grid;
  gap: 42px;
}

.about-copy-grid article p,
.about-copy-stack article p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
  word-break: keep-all;
}

.startup-map {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(8, 27, 24, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.startup-map img {
  width: 100%;
  border-radius: 4px;
}

.startup-map figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.about-channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.director-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 78px;
  margin-top: 38px;
}

.about-copy-grid article .director-list + p {
  margin-top: clamp(34px, 4vw, 48px);
}

.about-channel-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(8, 27, 24, 0.16);
  border-radius: 999px;
  color: #071312;
  font-size: 14px;
  font-weight: 850;
}

.board-empty-section {
  max-width: 860px;
}

.board-empty-section h2 {
  margin-bottom: 0;
  color: #071312;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
}

.page-anchor {
  scroll-margin-top: 92px;
}

.cohort {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  border-top: 1px solid rgba(8, 27, 24, 0.12);
  padding: 34px 0 32px;
}

.cohort h3 {
  margin: 0;
  color: #071312;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.cohort-roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.role-block {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 0;
}

.role-block h4 {
  margin: 6px 0 0;
  color: #078c7b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.name-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 36px;
}

.name-cloud span {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #101214;
  font-size: 14px;
  line-height: 1.5;
  word-break: keep-all;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.loading,
.error {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

@media (max-width: 980px) {
  .about-message {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .wix-question-grid,
  .wix-media-grid,
  .about-people,
  .program-highlight-grid,
  .partners-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diamond-mosaic {
    grid-template-columns: repeat(3, minmax(96px, 1fr));
    width: min(680px, 88vw);
    margin-top: -12px;
    margin-bottom: 56px;
  }

  .program-dark-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 14px;
    min-height: 84px;
    gap: 10px;
  }

  .brand img {
    width: 130px;
  }

  .menu-button {
    display: inline-flex;
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: #303030;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .site-nav .nav-link {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 8px 18px;
    border: 0;
    background: rgba(0, 0, 0, 0.16);
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu,
  .site-nav.open .submenu {
    display: block;
  }

  .section,
  .wix-home-hero,
  .program-index-hero,
  .program-detail-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wix-home-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .wix-home-hero,
  .about-hero,
  .alumni-hero,
  .people-hero {
    min-height: 720px;
  }

  .wix-home-hero > img {
    object-position: 54% 58%;
  }

  .home-hero-title {
    grid-template-columns: 1fr;
    row-gap: 14px;
    transform: translate(-50%, -36%);
  }

  .home-hero-title.reveal-on-scroll {
    transform: translate(-50%, calc(-36% + 22px)) scale(0.985);
  }

  .home-hero-title.reveal-on-scroll.is-visible {
    transform: translate(-50%, -36%) scale(1);
  }

  .wix-home-hero .home-hero-watermark {
    justify-self: center;
    width: 112px;
  }

  .home-hero-title strong {
    font-size: 54px;
  }

  .home-hero-title span {
    max-width: 320px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0.08em;
  }

  .program-grid,
  .wix-question-grid,
  .wix-media-grid,
  .program-highlight-grid,
  .startup48-flow,
  .ideathon-editions,
  .partners-journey,
  .program-stat-grid,
  .internship-inquiry form,
  .about-copy-grid,
  .director-list,
  .about-people,
  .cohort-roles,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .startup48-flow article {
    min-height: 0;
    padding: 30px 10px;
  }

  .startup48-flow article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .program-editorial {
    padding-top: 42px;
  }

  .company-logo-row {
    gap: 10px;
  }

  .company-logo-row figure {
    width: calc(33.333% - 7px);
    height: 78px;
    padding: 12px;
  }

  .program-dark-hero {
    padding: 94px 20px 48px;
  }

  .program-dark-body {
    padding-top: 20px;
    padding-bottom: 78px;
  }

  .program-tagline {
    margin-bottom: 30px;
  }

  .program-dark-copy {
    font-size: 15px;
    line-height: 1.76;
  }

  .program-highlight-grid article,
  .program-stat-grid article {
    min-height: 0;
  }

  .internship-inquiry {
    margin-top: 60px;
    padding-top: 54px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-intro {
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .wix-home-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-intro-copy p {
    font-size: 16px;
    line-height: 1.78;
  }

  .home-intro-mark {
    min-height: 0;
  }

  .home-icon {
    width: min(176px, 54vw);
  }

  .home-intro-mark p {
    font-size: 19px;
  }

  .section-lead {
    margin-bottom: 54px;
  }

  .program-card {
    min-height: 0;
  }

  .program-dark-hero {
    min-height: 680px;
    padding-top: 112px;
  }

  .program-dark-hero h1 {
    font-size: 24px;
    line-height: 1.1;
  }

  .program-tagline {
    font-size: 15px;
  }

  .program-editorial > h2,
  .program-extra-block > h2,
  .internship-inquiry h2 {
    font-size: 26px;
  }

  .about-hero h1,
  .alumni-hero-copy h1,
  .people-hero-copy h1,
  .program-index-hero h1 {
    font-size: 40px;
  }

  .about-hero p,
  .alumni-hero-copy p:last-child,
  .people-hero-copy p:last-child,
  .program-index-hero p {
    font-size: 16px;
  }

  .about-content-section h2,
  .people-section-heading h2 {
    font-size: 34px;
  }

  .about-lead,
  .about-copy-grid article p,
  .about-copy-stack article p,
  .people-section-heading > p:last-child:not(.section-kicker) {
    font-size: 15px;
  }

  .about-message article {
    padding: 28px;
  }

  .alumni-hero-copy {
    padding-top: 220px;
  }

  .diamond-mosaic {
    grid-template-columns: repeat(2, minmax(112px, 1fr));
    width: min(360px, 88vw);
    margin: -12px auto 28px;
    padding: 20px 8px 40px;
  }

  .diamond-mosaic figure:nth-child(4n + 2),
  .diamond-mosaic figure:nth-child(4n + 4) {
    margin-top: 0;
  }

  .diamond-mosaic figure:nth-child(even) {
    margin-top: 34px;
  }

  .about-people article,
  .about-people.two article,
  .director-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .about-people img,
  .director-card img {
    width: 78px;
    height: 78px;
  }

  .about-people strong,
  .director-card strong {
    font-size: 21px;
  }

  .about-people span,
  .director-card span {
    margin-top: 4px;
    font-size: 14px;
  }

  .about-people p,
  .director-card p {
    margin-top: 8px;
    font-size: 14px;
  }

  .cohort {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 30px;
  }

  .cohort h3 {
    font-size: 22px;
  }

  .role-block,
  .name-cloud {
    grid-template-columns: 1fr;
  }

  .role-block {
    gap: 10px;
  }

  .role-block h4 {
    margin-top: 0;
  }

  .site-footer {
    display: block;
  }
}

@media (max-width: 360px) {
  .program-dark-hero h1 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll,
  .wix-home-hero > img,
  .about-hero > img,
  .alumni-hero img,
  .people-hero img {
    opacity: 1;
    transform: none;
  }

  .home-hero-title.reveal-on-scroll,
  .home-hero-title.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate(-50%, -42%);
  }

  .diamond-mosaic figure,
  .diamond-mosaic figure.is-visible {
    opacity: 1;
    transform: none;
  }
}
