:root {
  --ink: #171717;
  --muted: #6d6d6d;
  --line: #c9c9c9;
  --soft: #f3f3f3;
  --paper: #fff;
  --max: 1180px;
  --navy: #030621;
  --blue: #31c8ff;
  --pink: #ff3d78;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--navy); font-family: Inter, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif; line-height: 1.75; }
main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(76, 129, 255, .045), transparent 30%),
    radial-gradient(ellipse at 84% 30%, rgba(162, 80, 255, .04), transparent 28%),
    radial-gradient(ellipse at 22% 52%, rgba(36, 204, 255, .025), transparent 26%),
    radial-gradient(ellipse at 82% 72%, rgba(118, 91, 255, .032), transparent 30%),
    radial-gradient(ellipse at 46% 90%, rgba(255, 67, 144, .028), transparent 32%),
    linear-gradient(180deg, #010316 0%, #010316 64%, #02051e 100%);
}
main::before,
main::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}
main::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .72) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(95, 219, 255, .42) 0 1px, transparent 1.6px),
    radial-gradient(ellipse at 22% 28%, rgba(93, 60, 255, .18), transparent 30%),
    radial-gradient(ellipse at 78% 44%, rgba(36, 204, 255, .1), transparent 26%);
  background-position: 0 0, 34px 52px, center, center;
  background-size: 96px 96px, 148px 148px, 100% 100%, 100% 100%;
  opacity: .24;
  z-index: 0;
}
main::after {
  background:
    radial-gradient(ellipse at 64% 22%, transparent 0 52%, rgba(101, 212, 255, .145) 52.2% 52.45%, transparent 52.7%),
    radial-gradient(ellipse at 34% 43%, transparent 0 50%, rgba(171, 116, 255, .12) 50.2% 50.45%, transparent 50.7%),
    radial-gradient(ellipse at 72% 66%, transparent 0 55%, rgba(80, 218, 255, .1) 55.2% 55.45%, transparent 55.7%);
  background-size: 150vw 620px, 120vw 540px, 135vw 600px;
  background-position: -18vw 820px, 34vw 1280px, -24vw 1840px;
  background-repeat: no-repeat;
  opacity: .58;
  z-index: 0;
}
main > * {
  position: relative;
  z-index: 1;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.site-header { position: fixed; z-index: 20; top: 0; right: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 82px; padding: 0 clamp(28px, 3vw, 56px); color: white; border-bottom: 1px solid rgba(111, 195, 255, .16); background: linear-gradient(180deg, rgba(2, 5, 28, .92), rgba(2, 5, 28, .2)); transition: min-height .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { min-height: 72px; border-bottom-color: rgba(111, 195, 255, .28); background: rgba(2, 5, 28, .82); box-shadow: 0 12px 32px rgba(0, 0, 0, .28); backdrop-filter: blur(14px); }
.brand { display: flex; gap: 14px; align-items: center; font-size: 18px; font-weight: 800; letter-spacing: .08em; }
.brand-mark { font-size: 24px; letter-spacing: -.08em; }
.global-nav { display: flex; gap: 38px; font-size: 13px; font-weight: 700; }
.global-nav a { text-shadow: 0 0 12px rgba(55, 173, 255, .45); }
.global-nav a:hover { color: #70d9ff; }
.header-cta { justify-self: end; }
.header-cta.button-dark { border-color: #ff678f; border-radius: 12px; background: linear-gradient(115deg, #ff174e, #ff5278); box-shadow: 0 0 14px rgba(255, 47, 103, .55); }
.menu-button { display: none; border: 0; background: none; }
.mb-br { display: none;}

@keyframes menuOrbit {
  to { transform: rotate(360deg); }
}

@keyframes starDrift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .2; }
  50% { transform: translate3d(-12px, 18px, 0); opacity: .34; }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 47, 103, .7), inset 0 0 10px rgba(255, 255, 255, .28); }
  50% { box-shadow: 0 0 24px rgba(255, 47, 103, .86), 0 0 38px rgba(49, 200, 255, .22), inset 0 0 14px rgba(255, 255, 255, .34); }
}

.section { max-width: var(--max); margin: 0 auto; padding: 104px 24px; }
.eyebrow { margin-bottom: 12px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.section-heading { margin-bottom: 48px; text-align: center; }
.section-heading.compact { margin-bottom: 32px; }
.section-heading h2 { margin-bottom: 12px; font-size: clamp(28px, 4vw, 42px); line-height: 1.35; }
.section-heading h2 span, .hero h1 span { padding: 0 .08em; border: 2px solid var(--ink); }
.section-heading > p:last-child { color: var(--muted); }

.hero { position: relative; display: grid; min-height: calc(min(100svh, 56.25vw) + 86px); overflow: hidden; color: white; background: var(--navy); isolation: isolate; }
.hero::before { position: absolute; z-index: -3; inset: 0; content: ""; background-color: var(--navy); background-image: url("assets/hero-ai-start-club-final-v4.webp"); background-repeat: no-repeat; background-position: center top; background-size: 100% auto; }
.hero::after { position: absolute; z-index: -1; inset: 0; content: ""; pointer-events: none; background: linear-gradient(90deg, rgba(1, 4, 28, .66) 0%, rgba(1, 4, 28, .42) 30%, rgba(1, 4, 28, .08) 52%, transparent 70%), linear-gradient(180deg, rgba(1, 4, 28, .08) 48%, rgba(1, 4, 28, .46) 68%, rgba(1, 3, 22, .92) 84%, #010316 96%, #010316 100%); }
.hero-copy { z-index: 3; width: min(48vw, 590px); margin-left: clamp(28px, 3vw, 56px); align-self: center; padding-top: 96px; text-shadow: 0 3px 24px rgba(0, 0, 20, .8); }
.hero .eyebrow { color: #83dfff; }
.hero h1 { margin-bottom: 24px; font-size: clamp(52px, 5.7vw, 82px); line-height: 1.16; letter-spacing: -.045em; }
.hero h1 span { color: #ff416f; border: 0; text-shadow: 0 0 24px rgba(255, 39, 107, .65); }
.hero-lead { margin-bottom: 36px; font-size: clamp(15px, 1.5vw, 19px); font-weight: 650; }
.hero-visual { display: none; }
.hero-visual img { display: block; width: 100%; height: auto; filter: saturate(1.08) contrast(1.04); }
.hero-scroll { position: absolute; z-index: 4; right: 30px; bottom: 28px; display: flex; color: rgba(255, 255, 255, .7); align-items: center; gap: 9px; font-size: 10px; font-weight: 800; letter-spacing: .14em; writing-mode: vertical-rl; }
.hero-scroll span { display: inline-block; line-height: 1; writing-mode: horizontal-tb; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.button-row.centered { justify-content: center; }
.button { display: inline-flex; min-width: 150px; min-height: 52px; padding: 10px 24px; border: 1px solid var(--ink); border-radius: 3px; align-items: center; justify-content: center; gap: 26px; font-weight: 700; transition: transform .2s, background .2s; }
.button-icon { width: 23px; height: 23px; flex: 0 0 auto; }
.rocket-icon { fill: currentColor; stroke: none; }
.chat-icon { fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.chat-icon circle { fill: currentColor; stroke: none; }
.header-cta .button-icon { width: 19px; height: 19px; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--ink); }
.hero-primary { color: white; border-color: #ff789d; border-radius: 14px; background: linear-gradient(115deg, #ff184f, #ff547b); box-shadow: 0 0 12px rgba(255, 47, 103, .7), inset 0 0 10px rgba(255, 255, 255, .28); }
.hero-secondary { color: white; border-color: rgba(173, 215, 255, .75); border-radius: 14px; background: rgba(4, 10, 48, .62); box-shadow: inset 0 0 18px rgba(38, 123, 255, .15); backdrop-filter: blur(8px); }
.button-small { min-width: 122px; min-height: 42px; padding: 8px 18px; font-size: 13px; }
.button-light { color: var(--ink); border-color: white; background: white; }
.button-outline-light { color: white; border-color: white; }

main::before {
  animation: starDrift 16s ease-in-out infinite;
}

.hero-copy {
  animation: heroRise .9s cubic-bezier(.2, .8, .2, 1) .12s both;
}

.hero-primary {
  animation: glowPulse 3.6s ease-in-out infinite;
}

.button,
.card,
.feature-card,
.concern-card,
.article-card,
.tag-grid p,
.program-panel,
.faq-item {
  will-change: transform;
}

.card,
.feature-card,
.concern-card,
.article-card,
.tag-grid p,
.program-panel,
.faq-item {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease;
}

.feature-card:hover,
.concern-card:hover,
.article-card:hover,
.tag-grid p:hover,
.faq-item:hover {
  transform: translateY(-6px);
  filter: saturate(1.08);
}

.program-visual,
.concern-visual {
  animation: softFloat 5.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  filter: blur(8px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

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

.placeholder { display: flex; min-height: 200px; border: 1px dashed #777; background: repeating-linear-gradient(135deg, #eee, #eee 10px, #e6e6e6 10px, #e6e6e6 20px); align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.placeholder span { padding: 4px 9px; color: white; background: #4b4b4b; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.placeholder strong { margin-top: 18px; font-size: 18px; }
.placeholder small { margin-top: 8px; color: var(--muted); }
.visual-label { display: inline-block; padding: 4px 9px; color: white; background: #4b4b4b; font-size: 11px; font-weight: 800; letter-spacing: .12em; }

.cosmic-flow {
  position: relative;
}
.cosmic-flow > .section {
  position: relative;
  z-index: 1;
}

.concerns,
.features,
.program,
.blog {
  isolation: isolate;
}
.concerns,
.features,
.program,
.blog {
  margin-top: -1px;
}

.concerns {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 62px;
  overflow: hidden;
  color: white;
  border-top: 0;
  background: transparent;
}
.concerns::before {
  display: none;
}
.concerns::after {
  display: none;
}
.concerns .section-heading {
  position: relative;
  z-index: 1;
}
.concerns .section-heading::before,
.concerns .section-heading::after {
  position: absolute;
  top: 50%;
  width: min(34vw, 330px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(153, 215, 255, .46), transparent);
}
.concerns .section-heading::before { right: calc(50% + 260px); }
.concerns .section-heading::after { left: calc(50% + 260px); }
.concerns .section-heading h2 {
  display: inline-flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  font-size: clamp(23px, 2.25vw, 30px);
  font-weight: 900;
  letter-spacing: .03em;
  text-shadow: 0 0 18px rgba(75, 199, 255, .5);
}
.concerns .section-heading h2 span:not(.heading-star) {
  padding: 0;
  color: #ff4f83;
  border: 0;
  text-shadow: 0 0 16px rgba(255, 47, 114, .78);
}
.heading-star {
  color: #a982ff;
  font-size: .9em;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(155, 107, 255, .95));
}
.card-grid { display: grid; gap: 20px; }
.three-columns { grid-template-columns: repeat(3, 1fr); }
.four-columns { grid-template-columns: repeat(4, 1fr); }
.card { border: 1px solid var(--line); background: white; }
.concern-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.concern-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 144px;
  padding: 20px 22px;
  overflow: hidden;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(130, 160, 255, .58);
  border-radius: 13px;
  background:
    linear-gradient(140deg, rgba(12, 20, 76, .88), rgba(8, 11, 48, .72)),
    rgba(7, 11, 50, .84);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 0 32px rgba(35, 101, 255, .12),
    0 0 26px rgba(62, 148, 255, .15);
}
.concern-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(76, 229, 255, .2), transparent 24%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  opacity: .8;
}
.concern-card:nth-child(2) {
  border-color: rgba(161, 112, 255, .66);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 0 34px rgba(124, 66, 255, .16),
    0 0 28px rgba(139, 79, 255, .18);
}
.concern-card:nth-child(3) {
  border-color: rgba(96, 238, 185, .58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 0 34px rgba(40, 236, 189, .13),
    0 0 28px rgba(39, 221, 187, .14);
}
.concern-visual {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 88%, rgba(112, 74, 255, .42), transparent 42%),
    linear-gradient(180deg, rgba(5, 10, 50, .68), rgba(4, 7, 34, .96));
  box-shadow:
    0 0 0 1px rgba(96, 217, 255, .48),
    inset 0 0 26px rgba(45, 205, 255, .2),
    0 12px 28px rgba(0, 0, 0, .28);
}
.concern-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.18);
  filter: drop-shadow(0 0 12px rgba(78, 214, 255, .5));
}
.concern-visual::after {
  position: absolute;
  inset: -10px;
  content: "";
  border-radius: 26px;
  background: radial-gradient(circle at 50% 50%, rgba(77, 219, 255, .3), transparent 64%);
  filter: blur(8px);
  z-index: -1;
}
.concern-visual-blue {
  background-color: rgba(5, 14, 58, .86);
}
.concern-visual-purple {
  box-shadow:
    0 0 0 1px rgba(188, 113, 255, .55),
    inset 0 0 26px rgba(177, 83, 255, .22),
    0 12px 28px rgba(0, 0, 0, .28);
}
.concern-visual-purple::after {
  background: radial-gradient(circle at 50% 50%, rgba(190, 95, 255, .32), transparent 64%);
}
.concern-visual-green {
  box-shadow:
    0 0 0 1px rgba(91, 240, 183, .52),
    inset 0 0 26px rgba(76, 237, 175, .2),
    0 12px 28px rgba(0, 0, 0, .28);
}
.concern-visual-green::after {
  background: radial-gradient(circle at 50% 50%, rgba(89, 238, 176, .28), transparent 64%);
}
.concern-body {
  position: relative;
  z-index: 1;
}
.concern-card h3 {
  margin-bottom: 10px;
  color: white;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.45;
  letter-spacing: .03em;
  text-shadow: 0 0 13px rgba(79, 188, 255, .36);
}
.concern-card p {
  margin-bottom: 0;
  color: rgba(235, 246, 255, .88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}
.bridge-copy {
  position: relative;
  z-index: 1;
  margin: 42px 0 0;
  color: white;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  letter-spacing: .04em;
  text-shadow: 0 0 18px rgba(255, 70, 139, .48);
}
.bridge-star {
  display: inline-block;
  margin: 0 18px;
  color: #ff9ac1;
  filter: drop-shadow(0 0 8px rgba(255, 80, 151, .95));
}
.bridge-highlight {
  color: #ff6fa3;
  text-shadow: 0 0 10px rgba(255, 76, 143, .85), 0 0 18px rgba(255, 76, 143, .5);
}

.features {
  position: relative;
  max-width: none;
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 82px;
  overflow: hidden;
  color: white;
  background: transparent;
}
.features::before {
  display: none;
}
.features::after {
  display: none;
}
.features .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}
.features .section-heading h2 {
  color: white;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 0 0 18px rgba(85, 197, 255, .45);
}
.features .section-heading h2 span {
  padding: 0;
  color: #ff4f83;
  border: 0;
  text-shadow: 0 0 18px rgba(255, 49, 117, .8);
}
.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  position: relative;
  min-height: 236px;
  padding: 28px 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(74, 195, 255, .68);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(8, 23, 70, .86), rgba(6, 9, 43, .72)),
    rgba(8, 13, 55, .72);
  box-shadow: inset 0 0 28px rgba(38, 123, 255, .14), 0 0 22px rgba(63, 189, 255, .17);
}
.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 38%);
  opacity: .7;
}
.feature-card-purple { border-color: rgba(149, 91, 255, .7); box-shadow: inset 0 0 28px rgba(126, 71, 255, .15), 0 0 22px rgba(135, 80, 255, .18); }
.feature-card-pink { border-color: rgba(255, 83, 160, .68); box-shadow: inset 0 0 28px rgba(255, 78, 154, .15), 0 0 22px rgba(255, 73, 149, .16); }
.feature-card-cyan { border-color: rgba(68, 229, 255, .66); box-shadow: inset 0 0 28px rgba(43, 211, 255, .15), 0 0 22px rgba(57, 219, 255, .16); }
.large-icon,
.tag-icon {
  display: block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.large-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: #8de8ff;
  filter: drop-shadow(0 0 10px currentColor);
}
.feature-card-purple .large-icon { color: #c798ff; }
.feature-card-pink .large-icon { color: #ff83c2; }
.feature-card-cyan .large-icon { color: #86f3ff; }
.feature-icon-book,
.tag-icon-cap {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 9c6.7 0 11.6 1.4 15 4.2V39c-3.4-2.4-8.4-3.7-15-3.7V9Zm34 0v26.3c-6.6 0-11.6 1.3-15 3.7V13.2C29.4 10.4 34.3 9 41 9ZM11 14v3.3c3.1.2 5.6.7 7.7 1.6v-3.4C16.5 14.7 14 14.2 11 14Zm26 0c-3 .2-5.5.7-7.7 1.5v3.4c2.1-.9 4.6-1.4 7.7-1.6V14ZM11 22v3.3c3.1.2 5.6.7 7.7 1.6v-3.4C16.5 22.7 14 22.2 11 22Zm26 0c-3 .2-5.5.7-7.7 1.5v3.4c2.1-.9 4.6-1.4 7.7-1.6V22Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 9c6.7 0 11.6 1.4 15 4.2V39c-3.4-2.4-8.4-3.7-15-3.7V9Zm34 0v26.3c-6.6 0-11.6 1.3-15 3.7V13.2C29.4 10.4 34.3 9 41 9ZM11 14v3.3c3.1.2 5.6.7 7.7 1.6v-3.4C16.5 14.7 14 14.2 11 14Zm26 0c-3 .2-5.5.7-7.7 1.5v3.4c2.1-.9 4.6-1.4 7.7-1.6V14ZM11 22v3.3c3.1.2 5.6.7 7.7 1.6v-3.4C16.5 22.7 14 22.2 11 22Zm26 0c-3 .2-5.5.7-7.7 1.5v3.4c2.1-.9 4.6-1.4 7.7-1.6V22Z'/%3E%3C/svg%3E");
}
.feature-icon-sparkle {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M22 4l3.8 11.3L37 19l-11.2 3.8L22 34l-3.8-11.2L7 19l11.2-3.7L22 4Zm14 25l2 5.8 6 2.2-6 2-2 6-2.1-6-5.9-2 5.9-2.2L36 29ZM10 30l1.5 4.4L16 36l-4.5 1.6L10 42l-1.6-4.4L4 36l4.4-1.6L10 30Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M22 4l3.8 11.3L37 19l-11.2 3.8L22 34l-3.8-11.2L7 19l11.2-3.7L22 4Zm14 25l2 5.8 6 2.2-6 2-2 6-2.1-6-5.9-2 5.9-2.2L36 29ZM10 30l1.5 4.4L16 36l-4.5 1.6L10 42l-1.6-4.4L4 36l4.4-1.6L10 30Z'/%3E%3C/svg%3E");
}
.feature-icon-people {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M24 22a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm0 4c-8.3 0-15 4.7-15 10.5V42h30v-5.5C39 30.7 32.3 26 24 26ZM9 24a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm30 0a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM7 28c-3.9 1.2-7 4.2-7 8v4h7v-3.5c0-3.2 1.6-6.1 4.3-8.4A17.8 17.8 0 0 0 7 28Zm34 0c-1.5.1-3 .1-4.3.1 2.7 2.3 4.3 5.2 4.3 8.4V40h7v-4c0-3.8-3.1-6.8-7-8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M24 22a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm0 4c-8.3 0-15 4.7-15 10.5V42h30v-5.5C39 30.7 32.3 26 24 26ZM9 24a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm30 0a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM7 28c-3.9 1.2-7 4.2-7 8v4h7v-3.5c0-3.2 1.6-6.1 4.3-8.4A17.8 17.8 0 0 0 7 28Zm34 0c-1.5.1-3 .1-4.3.1 2.7 2.3 4.3 5.2 4.3 8.4V40h7v-4c0-3.8-3.1-6.8-7-8Z'/%3E%3C/svg%3E");
}
.feature-icon-rocket,
.tag-icon-rocket {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M29.8 5.5C33.9 1.4 39.5.4 44 .7c.3 4.5-.8 10-4.9 14.1L26.6 27.3 16.9 17.6 29.8 5.5Zm4 7.2a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM14.5 20.3 7 21.4 1.5 27l11 1.8 2-8.5Zm13.2 13.2-8.5 2 1.8 11 5.6-5.5 1.1-7.5ZM12.2 33.8c-4.5.5-8.2 4.2-8.7 8.7 2.7-1.7 5.9-2.5 9-2- .5 3.1-1.3 6.3-3 9 4.5-.5 8.2-4.2 8.7-8.7l-6-7Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M29.8 5.5C33.9 1.4 39.5.4 44 .7c.3 4.5-.8 10-4.9 14.1L26.6 27.3 16.9 17.6 29.8 5.5Zm4 7.2a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM14.5 20.3 7 21.4 1.5 27l11 1.8 2-8.5Zm13.2 13.2-8.5 2 1.8 11 5.6-5.5 1.1-7.5ZM12.2 33.8c-4.5.5-8.2 4.2-8.7 8.7 2.7-1.7 5.9-2.5 9-2- .5 3.1-1.3 6.3-3 9 4.5-.5 8.2-4.2 8.7-8.7l-6-7Z'/%3E%3C/svg%3E");
}
.feature-card h3 { position: relative; z-index: 1; margin-bottom: 12px; font-size: 19px; }
.feature-card p { position: relative; z-index: 1; margin-bottom: 18px; color: rgba(235, 246, 255, .86); font-size: 13px; font-weight: 600; line-height: 1.75; }
.feature-card a { position: relative; z-index: 1; display: inline-block; color: #83e9ff; font-size: 13px; font-weight: 800; text-shadow: 0 0 10px rgba(72, 218, 255, .65); }
.feature-card-purple a { color: #c89bff; }
.feature-card-pink a { color: #ff8fc6; }
.feature-card-cyan a { color: #8df4ff; }

.audience { position: relative; z-index: 1; padding-top: 46px; }
.audience .section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.audience .section-heading::before,
.audience .section-heading::after {
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(190, 210, 255, .38), transparent);
}
.audience .section-heading h2 {
  margin: 0;
  color: white;
  font-size: 18px;
  letter-spacing: .08em;
}
.tag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tag-grid p {
  display: flex;
  min-height: 86px;
  margin: 0;
  padding: 17px 20px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(145, 113, 255, .56);
  border-radius: 10px;
  color: rgba(245, 250, 255, .95);
  background: linear-gradient(135deg, rgba(43, 23, 94, .72), rgba(8, 14, 59, .78));
  box-shadow: inset 0 0 22px rgba(108, 74, 255, .15), 0 0 16px rgba(101, 65, 255, .12);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
.tag-icon { width: 42px; height: 42px; color: #c98cff; filter: drop-shadow(0 0 9px currentColor); }
.tag-icon-bag {
  color: #76dfff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 10a7 7 0 0 1 14 0v4h10a3 3 0 0 1 3 3v24a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V17a3 3 0 0 1 3-3h10v-4Zm4 4h6v-4a3 3 0 0 0-6 0v4Zm-13 8v5h32v-5H8Zm0 9v9h32v-9H8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 10a7 7 0 0 1 14 0v4h10a3 3 0 0 1 3 3v24a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V17a3 3 0 0 1 3-3h10v-4Zm4 4h6v-4a3 3 0 0 0-6 0v4Zm-13 8v5h32v-5H8Zm0 9v9h32v-9H8Z'/%3E%3C/svg%3E");
}
.tag-icon-rocket { color: #ff8fc6; }
.tag-icon-building {
  color: #8df4d7;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 42h36v4H6v-4Zm4-23 14-7 14 7v21h-8v-9H18v9h-8V19Zm6 2.5V27h5v-8l-5 2.5ZM27 19v8h5v-5.5L27 19ZM20 7h8v6l-8 4V7Zm1 28v5h6v-5h-6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 42h36v4H6v-4Zm4-23 14-7 14 7v21h-8v-9H18v9h-8V19Zm6 2.5V27h5v-8l-5 2.5ZM27 19v8h5v-5.5L27 19ZM20 7h8v6l-8 4V7Zm1 28v5h6v-5h-6Z'/%3E%3C/svg%3E");
}

.program {
  position: relative;
  max-width: none;
  padding: 76px max(24px, calc((100vw - var(--max)) / 2)) 82px;
  overflow: hidden;
  color: white;
  background: transparent;
}
.program::before {
  display: none;
}
.program::after {
  display: none;
}
.light-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.light-heading h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  color: white;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  text-shadow: 0 0 16px rgba(116, 214, 255, .6);
}
.light-heading h2::before,
.light-heading h2::after {
  position: absolute;
  top: 50%;
  width: 78px;
  height: 16px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(166, 88, 255, .58), rgba(46, 218, 255, .46), transparent);
  filter: drop-shadow(0 0 8px rgba(129, 93, 255, .48));
}
.light-heading h2::before { right: calc(100% + 18px); }
.light-heading h2::after { left: calc(100% + 18px); transform: scaleX(-1); }
.program-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 250px 1fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 28px 38px 46px;
  border: 1px solid rgba(67, 190, 255, .78);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 0%, rgba(114, 80, 255, .24), transparent 28%),
    linear-gradient(135deg, rgba(7, 20, 67, .8), rgba(5, 8, 39, .78));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 0 36px rgba(36, 123, 255, .16),
    0 0 32px rgba(48, 174, 255, .22);
}
.program-panel::before,
.program-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.program-panel::before {
  top: 26px;
  right: 46px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #8de8ff, #5a4bff 42%, #24135f 72%),
    #4c35d8;
  box-shadow: 0 0 24px rgba(109, 91, 255, .7);
  transform: rotate(-18deg);
}
.program-panel::after {
  top: 72px;
  right: 28px;
  width: 148px;
  height: 28px;
  border: 3px solid rgba(236, 101, 255, .86);
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(235, 88, 255, .75);
  transform: rotate(-18deg);
}
.program-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 0;
}
.program-visual img {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 0 16px rgba(65, 205, 255, .48));
}
.program-list {
  position: relative;
  z-index: 1;
}
.program-panel h3 {
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: 0;
  color: white;
  font-size: 15px;
  font-weight: 900;
}
.check-list, .plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(245, 250, 255, .92);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}
.check-list li, .plain-list li { position: relative; margin-bottom: 11px; padding-left: 30px; }
.check-list li::before {
  position: absolute;
  top: .1em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  content: "✓";
  place-items: center;
  color: #ff7aa9;
  border: 1px solid rgba(255, 107, 156, .78);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 0 8px rgba(255, 84, 142, .55);
}
.plain-list li::before {
  position: absolute;
  top: .05em;
  left: 0;
  color: #d79bff;
  font-size: 17px;
  text-shadow: 0 0 8px rgba(205, 126, 255, .65);
}
.program-style li:nth-child(1)::before { content: "▣"; }
.program-style li:nth-child(2)::before { content: "♙"; }
.program-style li:nth-child(3)::before { content: "✦"; }
.program-style li:nth-child(4)::before { content: "▤"; }
.program-style li:nth-child(5)::before { content: "♡"; }
.program-note {
  position: absolute;
  right: 28px;
  bottom: 16px;
  left: 28px;
  margin: 0;
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .05em;
  text-shadow: 0 0 14px rgba(105, 213, 255, .52);
}
.program-planet {
  display: inline-block;
  width: 34px;
  height: 22px;
  margin-right: 12px;
  vertical-align: -5px;
  border: 2px solid rgba(113, 226, 255, .75);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(87, 213, 255, .65);
  transform: rotate(-15deg);
}
.program-sparkle {
  display: inline-block;
  margin-left: 14px;
  color: #85f3ff;
  filter: drop-shadow(0 0 9px rgba(87, 231, 255, .9));
}

.blog {
  max-width: none;
  padding: 78px max(52px, calc((100vw - var(--max)) / 2 + 24px)) 66px;
  background: transparent;
}
.blog::before {
  display: none;
}
.split-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding: 0 22px;
  text-align: left;
}
.split-heading h2 {
  margin-bottom: 0;
  color: #111a3d;
  font-size: clamp(21px, 2.3vw, 29px);
  font-weight: 900;
}
.split-heading > a {
  color: #4b63ff;
  font-size: 13px;
  font-weight: 900;
}
.blog .split-heading,
.article-grid {
  position: relative;
  z-index: 1;
}
.blog {
  position: relative;
}
.blog::after {
  position: absolute;
  top: 36px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 30px;
  content: "";
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250, 253, 255, .96), rgba(245, 249, 255, .94));
  box-shadow: 0 0 46px rgba(87, 133, 255, .26), 0 0 0 1px rgba(196, 214, 255, .5);
  z-index: 0;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding: 0 22px;
}
.article-card {
  overflow: hidden;
  border: 1px solid rgba(205, 218, 255, .9);
  border-radius: 10px;
  background: white;
  box-shadow: 0 12px 26px rgba(17, 32, 92, .13);
}
.article-image {
  position: relative;
  display: block;
  height: 168px;
  margin: 0;
  overflow: hidden;
  background: #06103f;
}
.article-image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 72%, rgba(84, 221, 255, .24), transparent 45%);
}
.article-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-image-blue img,
.article-image-green img,
.article-image-event img { object-position: center; transform: none; }
.article-label {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(120deg, #6065ff, #c04fff);
  box-shadow: 0 0 12px rgba(132, 89, 255, .55);
  font-size: 11px;
  font-weight: 900;
}
.article-body { padding: 17px 18px 18px; }
.article-body h3 {
  margin: 0 0 16px;
  color: #111a3d;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.02em;
}
.article-body h2 {
  margin: 0 0 14px;
  color: #111a3d;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -.02em;
}
.article-meta {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 14px;
  color: #63709d;
  font-size: 12px;
  font-weight: 800;
}
.article-meta time::before {
  content: "◉";
  margin-right: 6px;
  color: #6b7dff;
}
.article-meta span {
  padding: 2px 8px;
  border-radius: 999px;
  color: #4b63ff;
  background: #edf1ff;
}
.blog-card-excerpt {
  margin-bottom: 18px;
  color: #53607f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.faq {
  position: relative;
  max-width: none;
  padding: 78px max(24px, calc((100vw - var(--max)) / 2)) 86px;
  overflow: hidden;
  color: white;
  background: linear-gradient(180deg, #02051e 0%, #070839 58%, #0a0a50 100%);
}
.faq::before {
  display: none;
}
.faq .section-heading,
.faq-grid {
  position: relative;
  z-index: 1;
}
.faq-grid {
  column-count: 2;
  column-gap: 18px;
}
.faq-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(108, 202, 255, .48);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(10, 22, 70, .78), rgba(5, 8, 42, .72)),
    rgba(2, 5, 30, .82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 0 28px rgba(38, 123, 255, .1),
    0 0 22px rgba(63, 189, 255, .12);
}
.faq-item:nth-child(even) {
  border-color: rgba(170, 109, 255, .42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 0 28px rgba(126, 71, 255, .11),
    0 0 22px rgba(135, 80, 255, .12);
}
.faq-item summary {
  position: relative;
  display: flex;
  min-height: 74px;
  padding: 22px 58px 22px 24px;
  align-items: center;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  list-style: none;
  text-shadow: 0 0 12px rgba(96, 212, 255, .42);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  content: "+";
  place-items: center;
  border: 1px solid rgba(132, 226, 255, .58);
  border-radius: 50%;
  color: #8de8ff;
  box-shadow: 0 0 12px rgba(74, 210, 255, .3);
  transform: translateY(-50%);
}
.faq-item[open] summary::after {
  content: "−";
  color: #ff8fc6;
  border-color: rgba(255, 143, 198, .58);
  box-shadow: 0 0 12px rgba(255, 96, 164, .28);
}
.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(235, 246, 255, .86);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.9;
}

.blog-archive,
.blog-detail {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 150px 24px 92px;
  color: white;
  background:
    radial-gradient(ellipse at 18% 16%, rgba(72, 207, 255, .18), transparent 28%),
    radial-gradient(ellipse at 84% 12%, rgba(173, 87, 255, .22), transparent 30%),
    radial-gradient(ellipse at 50% 92%, rgba(255, 80, 165, .18), transparent 34%),
    linear-gradient(180deg, #030621 0%, #060735 58%, #160948 100%);
}
.blog-archive::before,
.blog-detail::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .82) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(95, 219, 255, .56) 0 1px, transparent 1.6px),
    linear-gradient(22deg, transparent 0 58%, rgba(91, 204, 255, .12) 58.2%, transparent 59.2% 100%),
    linear-gradient(146deg, transparent 0 28%, rgba(178, 99, 255, .12) 28.2%, transparent 29.4% 100%);
  background-position: 8px 18px, 74px 58px, center, center;
  background-size: 116px 116px, 178px 178px, 100% 100%, 100% 100%;
  opacity: .42;
}
.blog-archive__inner,
.blog-detail__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.blog-archive .eyebrow {
  color: #83dfff;
  text-align: center;
}
.blog-archive h1 {
  margin-bottom: 14px;
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  text-shadow: 0 0 18px rgba(85, 197, 255, .45);
}
.blog-archive__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 42px;
  color: rgba(235, 246, 255, .86);
  text-align: center;
  font-weight: 700;
}
.blog-filter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto 42px;
  max-width: 720px;
}
.blog-filter__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.blog-filter__label {
  color: rgba(235, 246, 255, .6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-right: 4px;
}
.blog-filter__chip {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(111, 195, 255, .42);
  border-radius: 999px;
  color: rgba(235, 246, 255, .88);
  background: rgba(8, 20, 70, .52);
  font-size: 12px;
  font-weight: 800;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.blog-filter__chip:hover {
  border-color: rgba(111, 195, 255, .78);
  background: rgba(32, 80, 180, .48);
  color: #83dfff;
}
.blog-filter__chip--tag {
  border-color: rgba(170, 109, 255, .42);
}
.blog-filter__chip--tag:hover {
  border-color: rgba(170, 109, 255, .78);
  background: rgba(80, 30, 160, .38);
  color: #c89bff;
}

.blog-archive__back {
  margin: -24px 0 36px;
  text-align: center;
}
.blog-archive__back a {
  color: #83dfff;
  font-size: 13px;
  font-weight: 800;
}
.blog-archive__empty {
  text-align: center;
  color: rgba(235, 246, 255, .7);
  font-size: 15px;
  font-weight: 700;
  margin-top: 48px;
}
.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.blog-detail__inner {
  max-width: 880px;
  padding: 42px;
  border: 1px solid rgba(199, 216, 255, .72);
  border-radius: 24px;
  background: rgba(250, 253, 255, .96);
  box-shadow: 0 0 46px rgba(87, 133, 255, .26), inset 0 0 0 1px rgba(255, 255, 255, .72);
  color: #111a3d;
}
.blog-detail__back {
  display: inline-block;
  margin-bottom: 22px;
  color: #4b63ff;
  font-size: 13px;
  font-weight: 900;
}
.blog-detail__category {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(120deg, #6065ff, #c04fff);
  box-shadow: 0 0 12px rgba(132, 89, 255, .42);
  font-size: 12px;
  font-weight: 900;
}
.blog-detail h1 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
}
.blog-detail__image {
  margin: 30px 0;
  overflow: hidden;
  border-radius: 18px;
  background: #06103f;
  box-shadow: 0 16px 32px rgba(17, 32, 92, .16);
}
.blog-detail__image img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-detail__body {
  color: #27304f;
  font-size: 16px;
  font-weight: 650;
  line-height: 2;
}
.blog-detail__body p {
  margin-bottom: 1.4em;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 180px 24px 102px;
  color: white;
  background:
    linear-gradient(180deg, rgba(9, 6, 44, .08) 0%, rgba(9, 6, 44, .2) 48%, rgba(3, 6, 33, .56) 100%),
    url("assets/final-cta-bg.webp") center / cover no-repeat,
    #130b47;
  text-align: center;
}
.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .16), transparent 18%),
    linear-gradient(180deg, rgba(3, 6, 33, .08), rgba(3, 6, 33, .58));
}
.final-cta h2,
.final-cta p,
.final-cta .button-row {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.25;
  text-shadow: 0 0 18px rgba(255, 255, 255, .38);
}
.final-cta > p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-height: 72px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(93, 190, 255, .2);
  color: white;
  background: #040832;
}
.site-footer nav { display: flex; gap: 24px; font-size: 11px; font-weight: 800; }
.footer-social {
  display: flex;
  justify-self: end;
  gap: 12px;
}
.footer-social a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  font-weight: 900;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  border-color: rgba(141, 232, 255, .58);
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}
.footer-social svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; }
  .menu-button { position: relative; display: grid; width: 46px; height: 46px; padding: 0; overflow: hidden; color: white; border: 1px solid rgba(126, 218, 255, .46); border-radius: 15px; background: radial-gradient(circle at 30% 25%, rgba(125, 219, 255, .22), transparent 38%), rgba(3, 8, 39, .64); place-content: center; gap: 5px; cursor: pointer; box-shadow: inset 0 0 18px rgba(68, 165, 255, .15), 0 0 22px rgba(73, 180, 255, .14); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease; }
  .menu-button::before { position: absolute; inset: -70%; content: ""; background: conic-gradient(from 120deg, transparent 0 34%, rgba(94, 221, 255, .55), rgba(255, 75, 140, .55), transparent 64% 100%); opacity: 0; transform: rotate(0deg); transition: opacity .25s ease; }
  .menu-button::after { position: absolute; inset: 2px; content: ""; border-radius: 13px; background: linear-gradient(145deg, rgba(3, 8, 39, .92), rgba(12, 10, 70, .74)); }
  .menu-button span:not(.sr-only) { position: relative; z-index: 1; width: 22px; height: 2px; border-radius: 999px; background: currentColor; box-shadow: 0 0 10px rgba(111, 220, 255, .8); transform-origin: center; transition: transform .34s cubic-bezier(.2, .8, .2, 1), opacity .2s ease, width .25s ease, background .25s ease; }
  .menu-button span:nth-child(2) { width: 16px; justify-self: end; }
  .menu-button:hover { transform: translateY(-1px); border-color: rgba(255, 112, 157, .72); box-shadow: inset 0 0 18px rgba(68, 165, 255, .18), 0 0 28px rgba(255, 72, 131, .22); }
  .menu-button:hover::before,
  .menu-button[aria-expanded="true"]::before { opacity: 1; animation: menuOrbit 2.8s linear infinite; }
  .menu-button[aria-expanded="true"] { border-color: rgba(255, 118, 164, .78); background: rgba(10, 7, 58, .78); box-shadow: inset 0 0 20px rgba(255, 69, 132, .18), 0 0 30px rgba(94, 221, 255, .18); }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translateX(12px) scaleX(.2); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .global-nav { position: absolute; top: 68px; right: 14px; left: 14px; display: flex; visibility: hidden; padding: 22px; border: 1px solid rgba(111, 195, 255, .26); border-radius: 0 0 22px 22px; background: linear-gradient(145deg, rgba(2, 5, 31, .96), rgba(9, 8, 62, .94)); flex-direction: column; gap: 10px; opacity: 0; pointer-events: none; box-shadow: 0 24px 60px rgba(0, 0, 0, .34), inset 0 0 32px rgba(72, 173, 255, .08); backdrop-filter: blur(18px); transform: translateY(-14px) scale(.98); transform-origin: top center; transition: opacity .28s ease, visibility .28s ease, transform .34s cubic-bezier(.2, .8, .2, 1); }
  .global-nav::before { position: absolute; inset: 0; content: ""; border-radius: inherit; background: radial-gradient(circle at 16% 0%, rgba(101, 222, 255, .18), transparent 32%), radial-gradient(circle at 86% 18%, rgba(255, 76, 145, .14), transparent 34%), linear-gradient(90deg, transparent, rgba(110, 218, 255, .2), transparent); opacity: .82; pointer-events: none; }
  .global-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .global-nav a { position: relative; z-index: 1; display: flex; min-height: 44px; padding: 0 14px; border: 1px solid rgba(111, 195, 255, 0); border-radius: 13px; align-items: center; opacity: 0; transform: translateY(-8px); transition: opacity .24s ease, transform .34s cubic-bezier(.2, .8, .2, 1), border-color .2s ease, background .2s ease, color .2s ease; }
  .global-nav.is-open a { opacity: 1; transform: translateY(0); }
  .global-nav.is-open a:nth-child(1) { transition-delay: .04s; }
  .global-nav.is-open a:nth-child(2) { transition-delay: .09s; }
  .global-nav.is-open a:nth-child(3) { transition-delay: .14s; }
  .global-nav.is-open a:nth-child(4) { transition-delay: .19s; }
  .global-nav a:hover { color: white; border-color: rgba(111, 195, 255, .32); background: rgba(95, 212, 255, .08); box-shadow: inset 0 0 18px rgba(89, 202, 255, .09); }
  .header-cta { display: none; }
  .hero { display: flex; min-height: 520px; align-items: flex-start; flex-direction: column; }
  .hero::before { background-position: 57% top; background-size: auto 100%; }
  .hero::after { background: linear-gradient(180deg, rgba(1, 4, 28, .94) 0%, rgba(1, 4, 28, .78) 34%, rgba(1, 4, 28, .28) 58%, rgba(1, 3, 22, .95) 88%, #010316 100%), linear-gradient(90deg, rgba(1, 4, 28, .82) 0%, rgba(1, 4, 28, .46) 48%, rgba(1, 4, 28, .08) 100%); }
  .hero-copy { width: min(430px, calc(100% - 60px)); margin: 0; align-self: flex-start; padding: 132px 30px 0; }
  .hero-visual { display: none; }
  .hero-scroll { display: none; }
  .four-columns, .feature-grid, .tag-grid { grid-template-columns: repeat(2, 1fr); }
  .three-columns { grid-template-columns: 1fr; }
  .concerns { padding-top: 58px; padding-bottom: 58px; }
  .concerns .section-heading::before,
  .concerns .section-heading::after { width: 18vw; }
  .concerns .section-heading::before { right: calc(50% + 210px); }
  .concerns .section-heading::after { left: calc(50% + 210px); }
  .concern-grid { grid-template-columns: 1fr; gap: 18px; }
  .concern-card { grid-template-columns: 96px 1fr; min-height: 134px; }
  .concern-visual img { transform: scale(1.15); }
  .program-panel { grid-template-columns: 1fr 1fr; padding-bottom: 76px; }
  .program-visual { grid-column: 1 / -1; }
  .program-visual img { width: min(280px, 100%); margin: 0 auto; }
  .program-panel::before,
  .program-panel::after { opacity: .45; transform: scale(.72) rotate(-18deg); transform-origin: top right; }
  .article-grid { grid-template-columns: 1fr; }
  .blog-archive__grid { grid-template-columns: 1fr; }
  .blog-detail__inner { padding: 32px 24px; }
  .faq-grid { column-count: 1; }
  .blog::after { right: 18px; left: 18px; }
  .article-grid { padding: 0 12px 20px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand, .site-footer nav { justify-content: center; }
  .footer-social { justify-self: center; }
}

@media (max-width: 560px) {
  .mb-br { display: block;}
  .section { padding: 72px 18px; }
  .hero { min-height: 600px; padding: 0; }
  .hero-copy { width: calc(100% - 36px); padding: 112px 18px 0; }
  .hero h1 { font-size: clamp(43px, 13vw, 54px); }
  .button-row { flex-direction: column; align-items: stretch; }
  .button-row.centered { align-items: center; }
  .button-row .button { width: 100%; min-width: 0; justify-content: center; }
  .button-row.centered .button { width: min(100%, 260px); }
  .hero::before { background-position: 58% top; background-size: auto 100%; }
  .concerns { padding-top: 34px; padding-right: 18px; padding-left: 18px; }
  .concerns .section-heading h2 { gap: 9px; font-size: clamp(20px, 5.5vw, 25px); }
  .concerns .section-heading::before,
  .concerns .section-heading::after { display: none; }
  .heading-star { font-size: .72em; }
  .concern-card { grid-template-columns: 82px 1fr; gap: 15px; padding: 18px; border-radius: 12px; }
  .concern-card h3 { margin-bottom: 6px; font-size: 15px; }
  .concern-card p { font-size: 12px; line-height: 1.7; }
  .concern-visual img { transform: scale(1.12); }
  .bridge-copy { margin-top: 32px; font-size: 16px; line-height: 1.8; }
  .bridge-star { margin: 0 8px; }
  .features { padding-top: 54px; padding-bottom: 62px; }
  .feature-grid, .four-columns, .tag-grid, .program-panel { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; padding: 24px; }
  .audience .section-heading { gap: 10px; }
  .tag-grid p { min-height: 78px; }
  .program { padding-top: 54px; padding-bottom: 58px; }
  .program-panel { padding: 24px 20px 92px; gap: 22px; }
  .program-panel::before,
  .program-panel::after { display: none; }
  .light-heading h2::before,
  .light-heading h2::after { width: 44px; }
  .program-note { right: 16px; bottom: 18px; left: 16px; font-size: 13px; line-height: 1.7; }
  .program-visual { grid-column: auto; }
  .blog { padding: 48px 18px 34px; }
  .blog::after { top: 16px; right: 8px; left: 8px; border-radius: 16px; }
  .split-heading { align-items: start; flex-direction: column; gap: 12px; padding: 0 12px; }
  .article-grid { gap: 18px; }
  .article-image { height: 160px; }
  .blog-archive,
  .blog-detail { padding: 116px 18px 62px; }
  .blog-archive h1 { text-align: left; }
  .blog-archive .eyebrow,
  .blog-archive__inner > p:not(.eyebrow) { text-align: left; }
  .blog-detail__inner { padding: 26px 18px; border-radius: 18px; }
  .faq { padding: 54px 18px 64px; }
  .faq-item summary { min-height: 68px; padding: 18px 52px 18px 18px; font-size: 15px; }
  .faq-item summary::after { right: 18px; }
  .faq-item p { padding: 0 18px 20px; font-size: 13px; }
  .final-cta { padding: 70px 18px 86px; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .menu-button::before,
  .menu-button:hover::before,
  .menu-button[aria-expanded="true"]::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
