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

:root {
  --content-width: min(56rem, 92vw);
  --wide-width: min(72rem, 94vw);
  --page-padding: clamp(1.25rem, 5vw, 3rem);
  --immersive-pad: clamp(4rem, 10vw, 7rem);
  --immersive-min: clamp(28rem, 72vh, 46rem);
  --kao: "˖᯽ ݁˖";
  --bg: #faf9f5;
  --blue: #e8f0f8;
  --blue-border: rgba(120, 165, 230, 0.28);
  --blue-divider: #111;
  --text: #111;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.875rem var(--page-padding);
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ebebeb;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #111;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  flex-shrink: 0;
}

.site-header__logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.site-nav a {
  color: #555;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active:not(.button) {
  color: #111;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #111;
  padding: 0.25rem;
  line-height: 1;
}

/* ── typography ── */

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: #555;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}

.headline {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.body {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: #555;
  margin-bottom: 1rem;
}

.body:last-child {
  margin-bottom: 0;
}

/* ── buttons ── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  min-height: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  font-family: inherit;
}

.button:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

/* nav apply — simple dark, white text, no rainbow */
.site-nav .button {
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.site-nav .button:hover,
.site-nav .button.is-active {
  color: #fff;
  background: #333;
  border-color: #333;
}

.button--sm {
  padding: 0.5rem 1.125rem;
  min-height: auto;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ── kaomoji accent ── */

.kao {
  opacity: 0.55;
  font-size: 0.9em;
  user-select: none;
}

.kao--float {
  display: block;
  text-align: center;
  font-size: 1rem;
  margin: 1.5rem 0;
  opacity: 0.4;
}

/* ── cycle tag (hero) ── */

.cycle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.01em;
  border: 1px solid #ddd;
  border-radius: 2rem;
  background: var(--bg);
}

.cycle-tag__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #22a06b;
  flex-shrink: 0;
}

.cycle-tag--upcoming .cycle-tag__dot {
  background: #888;
}

/* ── status pill (other pages) ── */

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #555;
  padding: 0.5rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 2rem;
}

.status-pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #22a06b;
  flex-shrink: 0;
}

/* ── page shell ── */

.page-section {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--page-padding);
  text-align: center;
}

.page-section--blue {
  max-width: none;
  background-color: var(--blue);
  background-image: none;
}

body > section:nth-of-type(even),
#services-protected > section:nth-of-type(even) {
  background-color: var(--blue);
}

body > section:nth-of-type(even).page-section,
#services-protected > section:nth-of-type(even).page-section {
  max-width: none;
}

/* homepage bands — hero stays white, then alternate cream / blue */
.home-page > section {
  background-color: var(--bg);
}

.home-page > .page-hero--home {
  background-color: var(--bg);
  max-width: none;
  width: 100%;
}

.home-page > #roadmap.home-roadmap {
  background-color: var(--bg);
}

.home-page > #founders.ig-showcase {
  background-color: var(--blue);
  max-width: none;
}

.home-page > #faq {
  background-color: var(--bg);
}

.page-section .body,
.page-section .headline,
.page-section .section-title,
.page-section .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.page-section .body {
  max-width: 42rem;
}

.page-section--wide {
  max-width: var(--wide-width);
}

.page-section--border {
  border-top: 1px solid #e5e5e5;
}

/* ── immersive sections (site-wide) ── */

.immersive-section {
  max-width: none;
  min-height: var(--immersive-min);
  padding: var(--immersive-pad) var(--page-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.immersive-section__inner {
  width: 100%;
  max-width: min(96rem, 100%);
  margin: 0 auto;
}

.immersive-section .section-title,
.immersive-section .section-lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.home-page #faq .section-title,
.home-page #faq .home-faq__title,
.home-page #faq .immersive-section__inner,
.home-page #faq .eyebrow {
  text-align: center;
}

.home-page #faq .home-faq__title {
  margin-left: auto;
  margin-right: auto;
}

.home-faq__title {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.home-page #faq .faq-list {
  margin-top: 0.5rem;
}

.home-page .about-story__copy a {
  color: #111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.home-page .about-story__copy a:hover {
  color: #333;
}

.cycles-page #opportunities .immersive-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cycles-page #opportunities .section-title,
.cycles-page #opportunities .section-lead,
.cycles-page #opportunities .resource-bento-shell,
.cycles-page #opportunities .resource-bento-lock {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cycles-page #opportunities .section-title,
.cycles-page #opportunities .section-lead {
  width: 100%;
  max-width: 44rem;
}

.cycles-page #opportunities .section-lead {
  max-width: 44rem;
}

.about-page .about-story__copy .body,
.about-page .about-belief__main .body {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

#services-protected .immersive-section .section-title,
#services-protected .immersive-section .service-block__title {
  text-align: center;
}

.immersive-section .section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1.25rem;
}

.immersive-section .section-lead {
  font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.immersive-section .headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  max-width: 22ch;
  margin-bottom: 1.5rem;
}

.immersive-section .body {
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  line-height: 1.75;
  max-width: 44rem;
}

.immersive-section--compact {
  min-height: clamp(20rem, 55vh, 34rem);
}

.cycles-page .immersive-section .section-title,
.cycles-page .immersive-section .section-lead,
.cycles-page .immersive-section .info-stack {
  text-align: center;
}

.cycles-page .immersive-section .section-lead,
.cycles-page .immersive-section .info-stack .body {
  margin-left: auto;
  margin-right: auto;
}

.display-eyebrow {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.2;
  font-weight: 500;
  color: #555;
  letter-spacing: -0.01em;
}

.display-heading {
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #111;
}

.display-heading--accent {
  position: relative;
  display: inline-block;
}

.display-heading--accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.14em;
  background: var(--blue);
  border-radius: 1px;
  z-index: -1;
  transform: rotate(-0.5deg);
}

.apply-page .page-hero,
.apply-page .closing-cta {
  min-height: clamp(22rem, 55vh, 36rem);
}

/* ── mission split ── */

.mission-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  width: 100%;
  max-width: min(96rem, 100%);
  margin: 0 auto;
  text-align: left;
}

.mission-split__copy .section-title,
.mission-split__copy .body {
  margin-left: 0;
  margin-right: 0;
}

.mission-split__title {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.mission-split__copy .body {
  max-width: none;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  line-height: 1.75;
}

.mission-split__media {
  margin: 0;
  justify-self: center;
  width: min(100%, 26rem);
}

.mission-split__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.08);
}

@media (min-width: 768px) {
  .mission-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(3rem, 6vw, 5rem);
  }

  .mission-split__media {
    justify-self: end;
    width: min(100%, 30rem);
  }
}

/* ── home hero ── */

.page-hero--home {
  max-width: none;
  width: 100%;
  margin: 0;
  min-height: clamp(28rem, 72vh, 44rem);
  background-color: var(--bg);
}

.page-hero--home .page-hero__title {
  max-width: 14ch;
}

.page-hero--home .page-hero__lead {
  max-width: 42rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.page-hero__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.2s;
}

.page-hero__link:hover {
  color: #000;
}

/* ── home roadmap teaser ── */

.home-roadmap__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
  max-width: 18ch;
}

.home-roadmap__lead {
  max-width: 40rem;
  margin-bottom: 0;
}

.home-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  text-align: left;
}

.home-pillar {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg);
  border: 1px solid var(--blue-border);
  border-radius: 0.75rem;
}

.home-pillar__num {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 0.75rem;
}

.home-pillar__title {
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.home-pillar__body {
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: #555;
}

.home-roadmap__cta {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  text-align: left;
}

@media (min-width: 768px) {
  .home-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .page-hero--home .page-hero__title {
    max-width: 16ch;
  }
}

/* legacy home-hero (unused) */

.home-hero {
  width: 100%;
  max-width: none;
  min-height: clamp(32rem, 88vh, 52rem);
  margin: 0 auto;
  padding: var(--immersive-pad) var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-hero__title {
  font-size: clamp(2.25rem, 7vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 16ch;
  margin: 0 auto 1rem;
}

.home-hero__tagline {
  font-size: clamp(1.0625rem, 2.8vw, 1.375rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: #111;
  max-width: 42ch;
  margin: 0 auto 1.25rem;
}

.home-hero__status {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.home-hero__actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .home-hero__title {
    max-width: 28ch;
  }

  .home-hero__tagline {
    max-width: 52ch;
  }
}

/* ── benefit cards ── */

.benefit-section {
  padding: clamp(2.5rem, 6vw, 3.5rem) var(--page-padding);
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--wide-width);
  margin: 0 auto;
}

.benefit-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--blue-divider);
  text-align: center;
}

.benefit-card:last-child {
  border-right: none;
}

.benefit-card__title {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.benefit-card__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
}

/* ── problem brief ── */

.problem-brief {
  width: 100%;
  max-width: min(52rem, 100%);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.problem-brief__title {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.problem-brief__text {
  font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
  line-height: 1.75;
  color: #444;
  max-width: 44rem;
  margin: 0 auto;
}

.problem-brief__text + .problem-brief__text {
  margin-top: 1rem;
}

/* ── about page ── */

.about-page > section:nth-of-type(even) {
  background-color: var(--blue);
}

.page-hero--about {
  background-color: var(--bg);
  background-image: linear-gradient(
    180deg,
    rgba(250, 249, 245, 0.82) 0%,
    rgba(250, 249, 245, 0.55) 42%,
    rgba(250, 249, 245, 0.72) 78%,
    rgb(250, 249, 245) 100%
  ),
  url('images/about-castle.jpg');
  background-repeat: no-repeat;
  background-position: center 25%;
  background-size: cover;
}

.about-story__media {
  margin: 0;
  position: relative;
}

.about-story__photo {
  display: block;
  width: 100%;
  max-height: clamp(24rem, 52vh, 36rem);
  object-fit: cover;
  object-position: center 15%;
  border-radius: 1.25rem;
  box-shadow: 0 28px 72px rgba(17, 17, 17, 0.1);
}

.about-story__stamp {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: #555;
  text-align: center;
}

.about-story__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: min(96rem, 100%);
  margin: 0 auto;
}

.about-story__copy .body {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-story__title,
.about-belief__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  max-width: 20ch;
}

.about-quote-band {
  max-width: none;
  min-height: clamp(18rem, 42vh, 28rem);
  padding: var(--immersive-pad) var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  text-align: center;
}

.about-quote {
  margin: 0;
  max-width: min(44rem, 100%);
}

.about-quote__text {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #111;
}

.about-quote__cite {
  font-style: normal;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: #555;
}

.about-belief__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
  width: 100%;
  max-width: min(96rem, 100%);
  margin: 0 auto;
}

.about-belief__main .body {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-principles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.about-principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--bg);
  border: 1px solid var(--blue-border);
  border-radius: 0.75rem;
}

.about-principle__num {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
  padding-top: 0.15rem;
}

.about-principle__text {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: #444;
}

@media (max-width: 767px) {
  .about-story__stamp {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .about-story__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(3rem, 6vw, 5rem);
  }

  .about-story__stamp {
    text-align: left;
  }

  .about-belief__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

/* ── problem / stats (legacy) ── */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.45;
  color: #555;
  text-align: center;
}

.block {
  padding: clamp(2rem, 5vw, 2.75rem) 0;
  border-top: 1px solid #e5e5e5;
}

.block:first-child {
  border-top: none;
  padding-top: 0;
}

@media (min-width: 768px) {
  .block--with-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }

  .block--with-stats .label,
  .block--with-stats .headline,
  .block--with-stats .body {
    grid-column: 1;
  }

  .block--with-stats .stats {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
    align-self: center;
  }
}

/* ── instagram showcase (homepage) ── */

.ig-showcase {
  max-width: none;
  min-height: clamp(36rem, 88vh, 54rem);
  padding: clamp(4rem, 10vw, 7rem) var(--page-padding);
  display: flex;
  align-items: center;
  text-align: left;
}

.ig-showcase__layout {
  width: 100%;
  max-width: min(96rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.ig-showcase__intro {
  padding-right: clamp(0rem, 2vw, 1.5rem);
}

.ig-showcase__lead {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 500;
  color: #555;
  letter-spacing: -0.02em;
}

.ig-showcase__title {
  margin: 0 0 1.5rem;
  line-height: 0.95;
}

.ig-showcase__title a {
  font-size: clamp(3.25rem, 9vw, 6.25rem);
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
  display: inline-block;
  letter-spacing: -0.04em;
}

.ig-showcase__title a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.14em;
  background: var(--blue);
  border-radius: 1px;
  z-index: -1;
  transform: rotate(-0.5deg);
}

.ig-showcase__title a:hover {
  color: #333;
}

.ig-showcase__desc {
  max-width: 22rem;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: #555;
}

.ig-showcase__desc a,
.ig-showcase__desc a:visited {
  color: #111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ig-showcase__feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.35rem, 0.9vw, 0.5rem);
  width: 100%;
}

.ig-showcase__tile {
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #e4ddd2;
  border-radius: 0;
  transition: opacity 0.25s ease;
  position: relative;
}

.ig-showcase__tile--video .ig-showcase__video {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  pointer-events: none;
}

.ig-showcase__message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
  background: var(--bg);
  border: 1px solid var(--blue-border);
}

.ig-showcase__tile--mock {
  padding: clamp(0.85rem, 2vw, 1.15rem);
  align-items: stretch;
  justify-content: stretch;
  text-align: left;
  border: 1px solid var(--blue-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ig-showcase__tile--mock:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
}

.ig-mock-post__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.45rem;
}

.ig-mock-post__handle {
  margin: 0;
  font-size: clamp(0.625rem, 1.2vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}

.ig-mock-post__eyebrow {
  margin: 0;
  font-size: clamp(0.625rem, 1.2vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.ig-mock-post__title {
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #111;
}

.ig-mock-post__body {
  margin: 0;
  flex: 1;
  font-size: clamp(0.6875rem, 1.4vw, 0.8125rem);
  line-height: 1.5;
  color: #555;
}

.ig-mock-post__accent {
  margin-top: auto;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  line-height: 1;
  opacity: 0.55;
}

.ig-mock-post--cream {
  background: var(--bg);
  color: #111;
}

.ig-mock-post--blue {
  background: var(--blue);
  border-color: var(--blue-border);
}

.ig-mock-post--blue .ig-mock-post__title {
  color: #111;
}

.ig-mock-post--dark {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #faf9f5;
}

.ig-mock-post--dark .ig-mock-post__handle,
.ig-mock-post--dark .ig-mock-post__eyebrow {
  color: rgba(250, 249, 245, 0.55);
}

.ig-mock-post--dark .ig-mock-post__title {
  color: #faf9f5;
}

.ig-mock-post--dark .ig-mock-post__body {
  color: rgba(250, 249, 245, 0.72);
}

.ig-mock-post--dark .ig-mock-post__accent {
  color: #faf9f5;
  opacity: 0.7;
}

.ig-showcase__tile:hover {
  opacity: 0.92;
}

.ig-showcase__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ig-showcase__tile:hover img {
  transform: scale(1.05);
}

.ig-showcase__tile--brand {
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  background: var(--blue);
  border: 1px solid var(--blue-border);
  color: #111;
}

.ig-showcase__tile--brand-alt {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #faf9f5;
}

.ig-showcase__brand-kao {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1;
  opacity: 0.9;
}

.ig-showcase__brand-label {
  font-size: clamp(0.75rem, 1.6vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .ig-showcase {
    min-height: auto;
    padding: clamp(3.5rem, 10vw, 5rem) var(--page-padding);
  }

  .ig-showcase__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ig-showcase__intro {
    padding-right: 0;
    text-align: center;
  }

  .ig-showcase__desc {
    max-width: 36rem;
    margin: 0 auto;
  }
}

@media (max-width: 540px) {
  .ig-showcase__feed {
    gap: 0.3rem;
  }
}

/* ── founders feature + ig embed (legacy) ── */

.founders-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
  max-width: var(--wide-width);
  margin: 0 auto;
  text-align: left;
}

.founders-feature__copy .section-title,
.founders-feature__copy .body {
  margin-left: 0;
  margin-right: 0;
}

.founders-feature__title {
  margin-bottom: 1rem;
  text-align: left;
}

.founders-feature__text {
  max-width: none;
  margin-bottom: 0;
}

.founders-feature__text a,
.founders-feature__text a:visited {
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-page #founders .founders-feature__text a:hover {
  color: #111;
}

.founders-feature__embed {
  width: min(100%, 22rem);
  margin: 0 auto;
}

.ig-embed {
  border: 1px solid rgba(120, 165, 230, 0.35);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.ig-embed__iframe {
  display: block;
  width: 100%;
  height: min(28rem, 58vh);
  border: none;
  background: #fff;
}

@media (min-width: 768px) {
  .founders-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .founders-feature__embed {
    margin: 0;
    justify-self: start;
    width: min(100%, 24rem);
  }
}

/* ── founders list (legacy) ── */

.founders-list {
  list-style: none;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: left;
}

.founders-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ebebeb;
  font-size: 0.9375rem;
}

.founders-list li:last-child {
  border-bottom: none;
}

.founders-list__name {
  font-weight: 500;
}

.founders-list__meta {
  color: #888;
  font-size: 0.8125rem;
  text-align: right;
}

.founders-list__empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: #888;
  font-size: 0.9375rem;
}

/* ── instagram ── */

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-bottom: 1.5rem;
}

.ig-card {
  aspect-ratio: 1;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #aaa;
  font-size: 0.8125rem;
  transition: border-color 0.2s, color 0.2s;
}

.ig-card:hover {
  border-color: #ccc;
  color: #555;
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #111;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9375rem;
}

.ig-handle:hover {
  text-decoration: underline;
}

/* ── faq ── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--bg);
  max-width: min(52rem, 100%);
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: #111;
}

.faq-question::after {
  content: "+";
  font-size: 1.125rem;
  color: #888;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ── closing cta ── */

.closing-cta {
  text-align: center;
  min-height: clamp(20rem, 45vh, 30rem);
  padding: var(--immersive-pad) var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #e5e5e5;
  max-width: none;
}

.closing-cta .eyebrow {
  margin-bottom: 1rem;
}

.closing-cta__line {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin: 0 auto 1.75rem;
  line-height: 1.3;
}

/* ── footer ── */

.site-footer {
  width: 100%;
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) var(--page-padding) clamp(2.5rem, 6vw, 3.5rem);
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-bottom: 1.5rem;
}

.site-footer__links a {
  color: #555;
  text-decoration: none;
  font-size: 0.875rem;
}

.site-footer__links a:hover {
  color: #111;
}

.site-footer__cheeky {
  font-size: 0.8125rem;
  color: #aaa;
  letter-spacing: 0.02em;
}

.site-footer__copyright {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.02em;
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 0 auto 1.25rem;
  max-width: 56rem;
}

.site-footer__contacts a,
.site-footer__contacts a:visited {
  color: #555;
  text-decoration: none;
  font-size: 0.875rem;
}

.site-footer__contacts a:hover {
  color: #111;
}

/* ── services gate ── */

.services-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: clamp(4rem, 12vw, 6rem) var(--page-padding);
  text-align: center;
}

.services-gate__intro {
  max-width: 28rem;
}

.services-gate__kao {
  display: block;
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.45;
}

.services-gate__title {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #111;
}

.services-gate__message {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #111;
}

.services-gate__message a,
.services-gate__message a:visited {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.services-gate__message a:hover {
  color: #111;
}

.services-gate__form {
  width: 100%;
  max-width: 22rem;
  text-align: center;
}

.services-gate__label {
  font-size: 0.9375rem;
  color: #555;
  margin-bottom: 1rem;
}

.services-gate__row {
  display: flex;
  gap: 0.625rem;
}

.services-gate__input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  font: inherit;
  font-size: 0.9375rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  background: #fff;
}

.services-gate__input:focus {
  outline: none;
  border-color: #111;
}

.services-gate__error {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #888;
}

/* ── forms ── */

.page-section--apply {
  text-align: left;
  padding-top: 0;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field > p {
  margin: 0;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #333;
}

.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field select,
.form-field textarea,
.form-input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font: inherit;
  font-size: 0.9375rem;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  transition: border-color 0.2s;
}

.form-field input:not([type="checkbox"]):not([type="radio"]):focus,
.form-field select:focus,
.form-field textarea:focus,
.form-input:focus {
  outline: none;
  border-color: #111;
}

.form-field textarea {
  resize: vertical;
  min-height: 5rem;
}

.confirmation {
  display: none;
  padding: 2rem;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
  background: #fafafa;
  text-align: center;
}

.confirmation.is-visible {
  display: block;
}

.confirmation__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.confirmation__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
}

/* ── inner page hero ── */

.page-hero {
  width: 100%;
  max-width: none;
  min-height: clamp(22rem, 55vh, 36rem);
  margin: 0 auto;
  padding: var(--immersive-pad) var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
}

.page-hero .eyebrow {
  color: #111;
}

.page-hero .kao,
.page-hero .kao--float {
  color: #111;
}

.page-hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: #111;
}

.page-hero__lead {
  font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
  line-height: 1.65;
  color: #111;
  max-width: 44rem;
  margin: 0 auto;
}

.page-hero--roadmap {
  max-width: none;
  width: 100%;
  margin: 0;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(24rem, 58vh, 38rem);
  padding: var(--immersive-pad) var(--page-padding);
  background-color: var(--bg);
  background-image: linear-gradient(
    180deg,
    rgba(250, 249, 245, 0.78) 0%,
    rgba(250, 249, 245, 0.52) 38%,
    rgba(250, 249, 245, 0.58) 58%,
    rgba(250, 249, 245, 0.76) 78%,
    rgba(250, 249, 245, 0.94) 92%,
    rgb(250, 249, 245) 100%
  ),
  url('images/roadmap-hero.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.page-hero--roadmap > * {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero--roadmap .page-hero__lead {
  max-width: 40rem;
}

.page-hero--roadmap .callout--disclaimer {
  max-width: var(--content-width);
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(6px);
}

/* ── steps row ── */

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-card {
  padding: 1.5rem;
  border: 1px solid var(--blue-border);
  border-radius: 0.5rem;
  background-color: var(--blue);
  background-image: none;
}

.step-card__num {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 0.5rem;
}

.step-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card__body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555;
}

/* ── day list ── */

.day-list {
  list-style: none;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.day-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ebebeb;
  font-size: 0.9375rem;
  align-items: start;
}

.day-list li:last-child {
  border-bottom: none;
}

.day-list__day {
  font-weight: 600;
  color: #888;
  font-size: 0.8125rem;
}

.day-list__text {
  color: #555;
  line-height: 1.55;
}

/* ── theme grid ── */

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.theme-card {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
}

.theme-card__name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.theme-card__body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555;
}

/* ── cycles table ── */

.cycles-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.cycles-table th,
.cycles-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid #ebebeb;
}

.cycles-table th {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}

.cycles-table tr:last-child td {
  border-bottom: none;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 2rem;
  border: 1px solid #e5e5e5;
  color: #555;
}

.badge--open {
  border-color: #b8e6cf;
  background: #f0faf5;
  color: #1a7f4b;
}

.badge--upcoming {
  border-color: #e5e5e5;
  background: #fafafa;
}

.badge--closed {
  color: #888;
}

/* ── service lists ── */

.service-block {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid #e5e5e5;
}

.service-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.service-block__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  padding: 1.125rem 1.25rem;
  background: var(--blue);
  border: 1px solid var(--blue-border);
  border-radius: 0.5rem;
}

.service-list__name {
  font-weight: 500;
}

.service-list__note {
  font-size: 0.8125rem;
  color: #888;
  text-align: right;
}

#services-protected {
  text-align: center;
}

#services-protected .page-section {
  text-align: center;
}

#services-protected .service-block {
  max-width: min(40rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

#services-protected .immersive-section .service-block {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

#services-protected .service-list {
  max-width: 28rem;
  margin: 0 auto;
}

#services-protected .service-list li {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#services-protected .service-list__note {
  text-align: center;
}

/* ── cycles page ── */

.winged-roadmap {
  position: relative;
  max-width: min(56rem, 94vw);
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.winged-roadmap__track {
  position: absolute;
  top: 0.5rem;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 0;
}

.winged-roadmap__line {
  position: absolute;
  inset: 0;
  background: #d8dde3;
  border-radius: 1px;
}

.winged-roadmap__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #111;
  border-radius: 1px;
  will-change: height;
}

.winged-roadmap.is-complete .winged-roadmap__line-fill {
  height: 100% !important;
  will-change: auto;
}

.winged-roadmap.is-complete .winged-roadmap__item {
  opacity: 1;
  transform: none;
  transition: none;
}

.winged-roadmap.is-complete .winged-roadmap__dot {
  background: #111;
  transform: none;
  transition: none;
}

.winged-roadmap__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  margin: 0;
  padding: 0;
}

.winged-roadmap__item {
  display: grid;
  grid-template-columns: 1fr 2rem 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.winged-roadmap__item--left {
  transform: translate(-24px, 28px);
}

.winged-roadmap__item--right {
  transform: translate(24px, 28px);
}

.winged-roadmap__item.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.winged-roadmap__item--left .winged-roadmap__card {
  grid-column: 1;
  text-align: right;
}

.winged-roadmap__item--left .winged-roadmap__dot {
  grid-column: 2;
}

.winged-roadmap__item--right .winged-roadmap__dot {
  grid-column: 2;
}

.winged-roadmap__item--right .winged-roadmap__card {
  grid-column: 3;
  text-align: left;
}

.winged-roadmap__dot {
  position: relative;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.4rem;
  justify-self: center;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid #111;
  box-shadow: 0 0 0 4px var(--bg);
  transition: background 0.4s ease, transform 0.4s ease;
}

body > section:nth-of-type(even) .winged-roadmap__dot {
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue);
}

.winged-roadmap__item.is-visible .winged-roadmap__dot {
  background: #111;
  transform: scale(1.1);
}

.winged-roadmap__card {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.375rem, 2.5vw, 1.875rem);
  border: 1px solid var(--blue-border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.04);
}

.winged-roadmap__item--aside .winged-roadmap__card {
  background: var(--bg);
  border-style: dashed;
  border-color: var(--blue-border);
}

.winged-roadmap__title {
  margin-bottom: 0.625rem;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 600;
  line-height: 1.35;
}

.winged-roadmap__body {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: #555;
}

.winged-roadmap__body a {
  color: #111;
  font-weight: 500;
}

.winged-roadmap__body a:hover {
  text-decoration: underline;
}

.winged-roadmap-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 0.5rem;
}

.winged-roadmap-cta .button .kao {
  margin-left: 0.35rem;
}

.page-hero__lead a {
  color: #111;
  font-weight: 500;
}

.page-hero__lead a:hover {
  text-decoration: underline;
}

.cycle-schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--wide-width);
  margin: 0 auto;
}

.cycle-card {
  padding: 1.25rem 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
  background: var(--bg);
  text-align: left;
}

.cycle-card__name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.cycle-card__track {
  font-weight: 500;
  color: #555;
}

.cycle-card__line {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555;
}

.cycle-card__meta {
  color: #888;
}

.cycle-card__tracks {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #111;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--wide-width);
  margin: 0 auto;
}

.track-card {
  padding: 1.25rem 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
  background: var(--bg);
  text-align: left;
}

.track-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.track-card__body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555;
}

.callout {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
  background: var(--bg);
}

.callout--disclaimer {
  margin-top: 1.25rem;
  max-width: var(--content-width);
  text-align: left;
}

.page-hero .callout--disclaimer {
  margin-top: 1.5rem;
}

.callout__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
}

.callout__text a,
.callout__text a:visited {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.callout__text a:hover {
  color: #111;
}

.schedule-wrap {
  max-width: var(--wide-width);
  margin: 0 auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  text-align: left;
}

.schedule-table th,
.schedule-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.schedule-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}

.schedule-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #888;
  text-align: center;
}

.info-stack {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.info-stack .body {
  margin-bottom: 1rem;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: min(96rem, 100%);
  margin: 2.5rem auto 0;
  text-align: left;
}

.special-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--blue-border);
  border-radius: 0.75rem;
  background: var(--bg);
  min-height: 10rem;
}

.special-card__title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.special-card__body {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: #555;
}

/* ── resource bento tiles ── */

.resource-bento-shell {
  position: relative;
  max-width: min(96rem, 100%);
  margin: 0 auto;
  max-height: 72rem;
  overflow: hidden;
}

.resource-bento-shell .resource-bento {
  margin: 0;
}

.resource-bento-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9.75rem;
  height: 8.5rem;
  background: linear-gradient(to bottom, rgba(250, 249, 245, 0) 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.resource-bento-lock {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 9.75rem;
  padding: 0 1.5rem 1.375rem;
  text-align: center;
  background: var(--bg);
  pointer-events: auto;
}

body > section:nth-of-type(even) .resource-bento-fade {
  background: linear-gradient(to bottom, rgba(232, 240, 248, 0) 0%, var(--blue) 100%);
}

body > section:nth-of-type(even) .resource-bento-lock {
  background: var(--blue);
}

.resource-bento-lock__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.resource-bento-lock__text {
  max-width: 26rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #444;
}

.resource-bento-lock .button {
  margin-top: 0.125rem;
}

.resource-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--wide-width);
  margin: 0 auto;
  text-align: left;
  align-items: stretch;
}

.resource-tile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 18rem;
  padding: 1.375rem 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.resource-tile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.resource-tag {
  display: inline-block;
  padding: 0.3rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: #444;
  background: var(--blue);
  border-radius: 2rem;
}

.resource-tile__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

.resource-tile__org {
  font-size: 0.875rem;
  color: #666;
}

.resource-tile__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #444;
}

.resource-tile__highlights {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 0.125rem;
}

.resource-tile__highlights li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555;
}

.resource-tile__highlights li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #111;
  font-weight: 700;
}

.resource-tile__link {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

.resource-tile__link:hover {
  text-decoration: underline;
}

.resource-bento__empty,
.resource-bento__error {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
}

/* ── founder masonry tiles ── */

.founder-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  gap: 1rem;
  max-width: var(--wide-width);
  margin: 0 auto;
  text-align: left;
  align-items: start;
}

.founder-tile {
  display: block;
  width: 100%;
  padding: 1.25rem 1.375rem;
  border: 1px solid #ebebeb;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.founder-tile--pinned {
  border-color: #111;
  background: var(--bg);
  order: -1;
}

.founder-tile--tall {
  padding-bottom: 1.5rem;
}

.founder-tile__pin {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2rem;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.75rem;
}

.founder-tile__kao {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
  opacity: 0.5;
}

.founder-tile__cta-body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.25rem;
}

.founder-tile__cta-body a,
.founder-tile__cta-body a:visited {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.founder-tile__cta-body a:hover {
  color: #111;
}

.founder-tile__upload {
  width: 100%;
  min-height: auto;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #888;
  background: #f3f3f3;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  cursor: not-allowed;
  opacity: 0.85;
}

.founder-tile__upload:disabled {
  pointer-events: none;
}

.founder-tile__soon {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: #888;
  text-align: center;
}

.founder-tile__meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}

.founder-tile__name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.founder-tile__initiative {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 1rem;
}

.founder-tile__compare {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.founder-tile__block {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ebebeb;
}

.founder-tile__block--before {
  background: var(--bg);
}

.founder-tile__block--after {
  background: var(--blue);
  border-color: var(--blue-border);
}

.founder-tile__phase {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.375rem;
}

.founder-tile__metric {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.founder-tile__summary {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #555;
}

.founder-tile__quote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ebebeb;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #444;
  font-style: italic;
}

.founder-masonry__empty,
.founder-masonry__error {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.9375rem;
  color: #888;
}

.form-hint {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #888;
  margin: -0.125rem 0 0;
}

.form-checkgroup {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  border: 1px solid #ebebeb;
  border-radius: 0.375rem;
  background: #fff;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #444;
  cursor: pointer;
}

.form-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-input--nested {
  margin-top: 0.5rem;
}

.apply-form .button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.apply-form [hidden] {
  display: none !important;
}

.page-section--apply .confirmation {
  max-width: 36rem;
  margin: 0 auto;
}

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

  .founder-masonry {
    grid-template-columns: 1fr;
  }

  .resource-bento {
    grid-template-columns: 1fr;
  }

  .resource-bento-shell {
    max-height: 58rem;
  }
}

.track-calendar {
  list-style: none;
  max-width: 32rem;
  margin: 0 auto;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
  overflow: hidden;
  text-align: left;
}

.track-day {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ebebeb;
  align-items: start;
}

.track-day:last-child {
  border-bottom: none;
}

.track-day--open {
  background: var(--blue);
}

.track-day__num {
  font-size: 0.875rem;
  font-weight: 600;
  color: #888;
  line-height: 1.4;
}

.track-day__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.track-day__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111;
}

.track-day__status {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a7f4b;
}

.track-day__status--locked {
  color: #aaa;
  font-weight: 400;
}

.track-day--more .track-day__title {
  color: #888;
  font-weight: 400;
}

.form-outline {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
}

.form-outline__block {
  padding: 1.5rem 0;
  border-top: 1px solid #e5e5e5;
}

.form-outline__block:first-child {
  border-top: none;
  padding-top: 0;
}

.form-outline__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.form-outline__type {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}

.form-outline__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.5rem;
}

.form-outline__options {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #555;
}

.form-outline__hint {
  color: #888;
}

@media (max-width: 640px) {
  .cycle-schedule {
    grid-template-columns: 1fr;
  }

  .winged-roadmap__track {
    left: 0.375rem;
    transform: none;
  }

  .winged-roadmap__item {
    grid-template-columns: 1.5rem 1fr;
    gap: 1rem;
  }

  .winged-roadmap__item--left .winged-roadmap__card,
  .winged-roadmap__item--right .winged-roadmap__card {
    grid-column: 2;
    text-align: left;
  }

  .winged-roadmap__item--left .winged-roadmap__dot,
  .winged-roadmap__item--right .winged-roadmap__dot {
    grid-column: 1;
    justify-self: center;
  }

  .winged-roadmap__item--left,
  .winged-roadmap__item--right {
    transform: translateY(28px);
  }

  .winged-roadmap__item.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .schedule-table {
    font-size: 0.75rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.625rem 0.5rem;
  }

  .form-outline__list--cols {
    grid-template-columns: 1fr;
  }

  .track-day {
    grid-template-columns: 2rem 1fr;
  }
}

/* ── fade in ── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── responsive ── */

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

  .benefit-card {
    border-right: none;
    border-bottom: 1px solid var(--blue-divider);
  }

  .benefit-card:last-child {
    border-bottom: none;
  }

  .steps-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .resource-bento-shell {
    max-height: 62rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid #ebebeb;
    padding: 0.5rem 0 1rem;
  }

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

  .site-nav a {
    padding: 0.75rem var(--page-padding);
  }

  .site-nav .button--sm {
    margin: 0.5rem var(--page-padding) 0;
    text-align: center;
  }

  .site-header {
    position: relative;
    flex-wrap: wrap;
  }
}

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

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

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

  .cycles-table {
    font-size: 0.8125rem;
  }

  .cycles-table th:nth-child(4),
  .cycles-table td:nth-child(4) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .winged-roadmap__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .winged-roadmap__line-fill {
    height: 100% !important;
  }
}

/* ── cursor sparkle trail ── */

.sparkle-trail-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.sparkle-trail {
  position: fixed;
  pointer-events: none;
  font-size: var(--sparkle-size, 0.8rem);
  line-height: 1;
  color: var(--sparkle-color, #111);
  opacity: var(--sparkle-opacity, 0.3);
  transform: translate(-50%, -50%);
  animation: sparkle-trail-fade 1s ease-out forwards;
  user-select: none;
  will-change: transform, opacity;
}

@keyframes sparkle-trail-fade {
  0% {
    opacity: var(--sparkle-opacity, 0.3);
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translate(
        calc(-50% + var(--sparkle-drift-x, 0px)),
        calc(-50% + var(--sparkle-drift-y, -12px))
      )
      scale(0.5)
      rotate(var(--sparkle-rotate, 0deg));
  }
}
