:root {
  --ink: #070a16;
  --ink-2: #0c1024;
  --paper: #f4f5f8;
  --paper-2: #e9ebf1;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(7,10,22,.14);
  --white: #fff;
  --muted: #a7afc6;
  --blue: #4c6fff;
  --cyan: #39d9ff;
  --violet: #876bff;
  --lime: #d7ff4f;
  --max: 1280px;
  --radius: 22px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.section-dark { color: var(--white); background: var(--ink); }
.section-light { background: var(--paper); }
.section-soft { background: var(--paper-2); }
.desktop-only { display: block; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 2000; padding: 12px 18px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled { background: rgba(5,8,23,.78); border-color: rgba(255,255,255,.1); backdrop-filter: blur(18px); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { display: flex; align-items: flex-end; gap: 4px; height: 31px; }
.brand-mark i { display: block; width: 6px; border-radius: 99px; background: currentColor; }
.brand-mark i:nth-child(1) { height: 17px; }
.brand-mark i:nth-child(2) { height: 31px; background: var(--cyan); }
.brand-mark i:nth-child(3) { height: 23px; }
.brand-word { font-size: 13px; line-height: .86; letter-spacing: -.04em; font-weight: 500; }
.brand-word b { font-size: 17px; font-weight: 900; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a, .text-link { font-size: 12px; font-weight: 700; letter-spacing: .02em; opacity: .74; transition: opacity .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active, .text-link:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 18px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 20px; font-size: 13px; }
.button-large { min-height: 58px; padding: 0 28px; font-size: 15px; }
.button-primary { color: #06101b; background: linear-gradient(135deg, var(--cyan), #86f4ff); box-shadow: 0 12px 34px rgba(57,217,255,.2); }
.button-primary:hover { box-shadow: 0 16px 42px rgba(57,217,255,.31); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.09); }
.button-white { color: var(--ink); background: #fff; }

.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; color: #fff; position: relative; cursor: pointer; }
.menu-toggle span { position: absolute; left: 8px; width: 26px; height: 1px; background: currentColor; transition: transform .25s ease, top .25s ease; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 88px 0 0; padding: 28px 32px 40px; background: rgba(5,8,23,.97); backdrop-filter: blur(20px); }
.mobile-menu nav { display: grid; gap: 0; }
.mobile-menu nav > a:not(.button) { padding: 19px 0; font-size: 28px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu .button { margin-top: 32px; min-height: 58px; }

.hero { position: relative; min-height: 920px; overflow: hidden; padding-top: 88px; background:
  radial-gradient(circle at 76% 29%, rgba(76,111,255,.2), transparent 28%),
  linear-gradient(180deg, #050817 0%, #070b1d 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 72%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .28; pointer-events: none; }
.glow-one { width: 500px; height: 500px; right: 1%; top: 18%; background: #195cff; }
.glow-two { width: 320px; height: 320px; left: 14%; bottom: 4%; background: #862fff; opacity: .15; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .8fr; align-items: center; gap: clamp(40px, 6vw, 96px); min-height: 760px; padding-block: 72px 84px; }
.eyebrow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 31px; }
.eyebrow span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .12em; color: #c5cbe0; }
.hero h1 { margin: 0; font-family: Arial Black, Pretendard, sans-serif; font-size: clamp(62px, 7.2vw, 112px); line-height: .92; letter-spacing: -.075em; }
.title-line { display: block; }
.title-accent { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.88); text-shadow: 0 0 42px rgba(57,217,255,.16); }
.hero-lead { margin: 37px 0 0; font-size: clamp(20px, 2vw, 28px); line-height: 1.45; font-weight: 700; letter-spacing: -.03em; }
.hero-sub { margin: 12px 0 0; color: #9ca8c6; font-size: 16px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-meta div { padding-right: 18px; }
.hero-meta span { display: block; margin-bottom: 8px; color: #7f8ba8; font-size: 11px; font-weight: 700; }
.hero-meta strong { display: block; font-size: 13px; line-height: 1.5; }

.hero-visual { position: relative; justify-self: end; width: min(100%, 480px); }
.poster-frame { position: relative; aspect-ratio: .76; overflow: hidden; border-radius: 3px; background: linear-gradient(145deg, #17224b, #050816 75%); box-shadow: 0 45px 100px rgba(0,0,0,.45); isolation: isolate; }
.poster-frame::before { content: ""; position: absolute; inset: -5%; z-index: -1; background: radial-gradient(circle at 25% 25%, #6feeff, transparent 17%), radial-gradient(circle at 80% 18%, #4a67ff, transparent 12%), linear-gradient(135deg, #0b1a5a, #020713); }
.poster-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; filter: saturate(1.12) contrast(1.04); }
.poster-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,7,19,.08), rgba(3,7,19,.1) 40%, rgba(3,7,19,.94)); }
.poster-grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 50% 25%; }
.poster-label, .poster-index, .poster-title, .poster-bottom { position: absolute; z-index: 3; }
.poster-label { left: 25px; top: 23px; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.poster-index { right: 22px; top: 17px; color: rgba(255,255,255,.42); font-family: Arial Black, sans-serif; font-size: 54px; line-height: 1; }
.poster-title { left: 24px; bottom: 69px; font-family: Arial Black, sans-serif; font-size: clamp(46px, 5vw, 72px); line-height: .78; letter-spacing: -.08em; }
.poster-title span, .poster-title strong { display: block; }
.poster-title strong { color: var(--cyan); }
.poster-bottom { left: 25px; right: 25px; bottom: 23px; display: flex; justify-content: space-between; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.45); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.ticker { position: absolute; left: 0; right: 0; bottom: 0; overflow: hidden; padding: 17px 0; border-block: 1px solid rgba(255,255,255,.13); background: rgba(0,0,0,.22); }
.ticker-track { display: flex; width: max-content; animation: ticker 24s linear infinite; }
.ticker span { padding-right: 26px; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro { padding: 140px 0 130px; }
.intro-grid { display: grid; grid-template-columns: 210px 1fr; gap: 50px; }
.section-kicker { display: flex; gap: 18px; padding-top: 10px; }
.section-kicker span { font-family: Arial Black, sans-serif; font-size: 38px; }
.section-kicker p { margin: 3px 0 0; color: #6c7383; font-size: 10px; line-height: 1.45; font-weight: 800; letter-spacing: .1em; }
.display-paragraph { margin: 0; font-size: clamp(42px, 5.2vw, 75px); line-height: 1.17; letter-spacing: -.065em; font-weight: 850; }
.intro-body { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px; max-width: 820px; margin: 55px 0 0 auto; }
.intro-body p { margin: 0; color: #5f6675; font-size: 17px; line-height: 1.86; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 92px; }
.stat-card { min-height: 265px; padding: 30px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.5); transition: transform .3s var(--ease), background .3s ease, box-shadow .3s ease; }
.stat-card:hover { transform: translateY(-7px); background: #fff; box-shadow: 0 22px 60px rgba(8,14,35,.08); }
.stat-number { display: block; margin-bottom: 50px; color: var(--blue); font-family: Arial Black, sans-serif; font-size: 45px; letter-spacing: -.06em; }
.stat-card h2 { margin: 0 0 14px; font-size: 21px; letter-spacing: -.03em; }
.stat-card p { margin: 0; color: #707787; font-size: 14px; line-height: 1.7; }

.audition { padding: 140px 0; background: linear-gradient(180deg, #070a16, #090d20); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; }
.section-heading .overline, .overline { display: block; margin-bottom: 15px; color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.section-heading h2 { margin: 0; font-size: clamp(43px, 5vw, 68px); line-height: 1.05; letter-spacing: -.06em; }
.section-heading > p { max-width: 410px; margin: 0; color: #909ab4; font-size: 16px; line-height: 1.75; }
.heading-dark { color: var(--ink); }
.heading-dark .overline { color: var(--blue); }
.heading-dark > p { color: #687080; }
.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.persona-card { position: relative; min-height: 410px; padding: 25px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.persona-no { position: absolute; left: 25px; top: 22px; color: #69728d; font-family: Arial Black, sans-serif; font-size: 15px; }
.persona-icon { height: 155px; display: flex; align-items: center; justify-content: center; margin-top: 38px; color: var(--cyan); font-size: 74px; text-shadow: 0 0 30px rgba(57,217,255,.4); }
.icon-team { letter-spacing: -25px; transform: translateX(-12px); color: #7e75ff; }
.icon-anon { color: var(--lime); }
.persona-card h3 { margin: 22px 0 12px; font-size: 23px; letter-spacing: -.035em; }
.persona-card p { margin: 0; color: #9ca6bd; font-size: 14px; line-height: 1.7; }
.persona-en { position: absolute; left: 25px; bottom: 22px; color: #5e6880; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.persona-image { padding: 0; }
.persona-image img { width: 100%; height: 100%; object-fit: cover; }
.persona-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,8,23,.05), rgba(5,8,23,.93)); }
.persona-image .persona-no { color: #fff; z-index: 2; }
.persona-content { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 20px; }
.persona-content .persona-en { position: static; display: block; margin-top: 20px; color: rgba(255,255,255,.56); }
.qualification-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; margin-top: 18px; padding: 48px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: linear-gradient(135deg, rgba(76,111,255,.11), rgba(57,217,255,.035)); }
.qualification-title span { color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.qualification-title h3 { max-width: 360px; margin: 15px 0 0; font-size: 33px; line-height: 1.25; letter-spacing: -.04em; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 34px; }
.check-list > div { display: grid; grid-template-columns: 27px 1fr; gap: 12px; }
.check { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--cyan); font-size: 13px; font-weight: 900; }
.check-list p { margin: 0; color: #9ea8bf; font-size: 14px; line-height: 1.65; }
.check-list strong { color: #fff; font-size: 15px; }

.apply { padding: 140px 0; }
.steps-grid { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: stretch; gap: 0; }
.step-card { padding: 38px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: #fff; }
.step-number { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.step-art { height: 150px; display: grid; place-items: center; margin: 30px 0 27px; border-radius: 16px; background: #eef1ff; overflow: hidden; }
.step-art span { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: 39px; font-weight: 300; box-shadow: 0 18px 40px rgba(76,111,255,.25); }
.art-form { background: #e9fbff; }
.art-form span { background: #0ec8ee; }
.step-card h3 { margin: 0 0 12px; font-size: 29px; letter-spacing: -.045em; }
.step-card > p { margin: 0 0 24px; color: #6b7280; font-size: 15px; line-height: 1.7; }
.step-card ul { margin: 0; padding: 21px 0 0; list-style: none; border-top: 1px solid var(--line-dark); }
.step-card li { position: relative; margin: 10px 0; padding-left: 17px; color: #454c5b; font-size: 13px; }
.step-card li::before { content: ""; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.step-arrow { display: grid; place-items: center; color: #8c92a0; font-size: 31px; }
.format-panel { display: grid; grid-template-columns: .68fr 1.32fr; gap: 50px; margin-top: 18px; padding: 42px; border-radius: var(--radius); background: #0b1024; color: #fff; }
.format-heading span { color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.format-heading h3 { margin: 13px 0 0; font-size: 30px; letter-spacing: -.04em; }
.format-content { display: grid; gap: 11px; }
.copy-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.04); }
.copy-row > div { min-width: 0; }
.copy-row span { display: block; margin-bottom: 5px; color: #7f8aa5; font-size: 10px; }
.copy-row code { color: #fff; font-family: inherit; font-size: 14px; font-weight: 700; white-space: normal; }
.copy-button { flex: 0 0 auto; padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff; background: transparent; cursor: pointer; font-size: 11px; }
.copy-button:hover { background: rgba(255,255,255,.1); }
.example { margin: 3px 3px 0; color: #77819a; font-size: 11px; }
.apply-banner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-top: 18px; padding: 48px; border-radius: var(--radius); color: #fff; background: linear-gradient(125deg, #384fff 0%, #623dff 56%, #8f4cff 100%); box-shadow: 0 26px 70px rgba(71,67,255,.21); }
.apply-banner h3 { margin: 12px 0 0; font-size: clamp(40px, 4vw, 57px); line-height: 1.08; letter-spacing: -.06em; }
.apply-banner-action { display: flex; align-items: flex-end; gap: 32px; }
.apply-banner-action p { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.65; }
.apply-banner-action strong { color: #fff; font-size: 15px; }

.schedule { padding: 140px 0; }
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 230px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.16); }
.timeline-item { display: grid; grid-template-columns: 200px 60px 1fr; min-height: 185px; }
.timeline-date { padding-top: 24px; color: #7f899f; font-family: Arial Black, sans-serif; font-size: 19px; letter-spacing: -.03em; }
.timeline-date b { margin: 0 8px; color: #4b5367; font-weight: 400; }
.timeline-dot { position: relative; display: flex; justify-content: center; padding-top: 29px; }
.timeline-dot i { position: relative; z-index: 2; width: 13px; height: 13px; border: 3px solid var(--ink); border-radius: 50%; background: #5c667d; box-shadow: 0 0 0 1px #5c667d; }
.timeline-content { margin-bottom: 12px; padding: 24px 32px 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.025); }
.timeline-content .status { color: #677189; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.timeline-content h3 { margin: 9px 0 9px; font-size: 27px; letter-spacing: -.04em; }
.timeline-content p { margin: 0; color: #8e98b0; font-size: 14px; }
.timeline-item.active .timeline-date, .timeline-item.highlight .timeline-date { color: #fff; }
.timeline-item.active .timeline-dot i { background: var(--cyan); box-shadow: 0 0 0 1px var(--cyan), 0 0 0 8px rgba(57,217,255,.11), 0 0 28px rgba(57,217,255,.4); }
.timeline-item.active .timeline-content { border-color: rgba(57,217,255,.35); background: rgba(57,217,255,.06); }
.timeline-item.active .status { color: var(--cyan); }
.timeline-item.highlight .timeline-dot i { background: var(--violet); box-shadow: 0 0 0 1px var(--violet), 0 0 0 8px rgba(135,107,255,.12); }
.timeline-item.highlight .timeline-content { border-color: rgba(135,107,255,.35); background: linear-gradient(120deg, rgba(135,107,255,.11), rgba(76,111,255,.04)); }
.timeline-item.highlight .status { color: #a895ff; }

.faq { padding: 140px 0; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-intro .overline { color: var(--blue); }
.faq-intro h2 { margin: 0; font-size: clamp(48px, 5vw, 67px); line-height: 1.06; letter-spacing: -.065em; }
.faq-intro p { max-width: 330px; margin: 28px 0 18px; color: #687080; font-size: 15px; line-height: 1.75; }
.faq-intro a { color: var(--blue); font-size: 13px; font-weight: 800; }
.accordion details { border-top: 1px solid var(--line-dark); }
.accordion details:last-child { border-bottom: 1px solid var(--line-dark); }
.accordion summary { position: relative; display: grid; grid-template-columns: 45px 1fr 26px; align-items: center; gap: 12px; min-height: 92px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 750; letter-spacing: -.025em; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary > span { color: #9aa0ad; font-family: Arial Black, sans-serif; font-size: 12px; }
.accordion summary i, .accordion summary i::after { display: block; width: 16px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.accordion summary i::after { content: ""; transform: rotate(90deg); }
.accordion details[open] summary i::after { transform: rotate(0); }
.answer { overflow: hidden; }
.answer p { margin: -4px 38px 30px 57px; color: #666e7e; font-size: 14px; line-height: 1.75; }

.partners { padding: 90px 0 110px; }
.partners-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.partners-heading span { color: #767d8b; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.partners-heading p { margin: 0; color: #767d8b; font-size: 13px; }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.logo-card { height: 126px; display: grid; place-items: center; padding: 24px; border: 1px solid rgba(7,10,22,.1); border-radius: 16px; background: rgba(255,255,255,.55); filter: grayscale(1); opacity: .68; transition: opacity .25s ease, filter .25s ease, transform .25s var(--ease); }
.logo-card:hover { opacity: 1; filter: grayscale(0); transform: translateY(-3px); }
.logo-card img { max-width: 100%; max-height: 75px; object-fit: contain; mix-blend-mode: multiply; }
.logo-card.logo-failed::after { content: attr(data-label); color: #323947; font-family: Arial Black, Pretendard, sans-serif; font-size: 18px; letter-spacing: -.04em; }

.final-cta { padding: 120px 0; overflow: hidden; background: radial-gradient(circle at 72% 55%, rgba(76,111,255,.22), transparent 23%), #070a16; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.final-cta h2 { margin: 0; font-size: clamp(48px, 6vw, 82px); line-height: 1.06; letter-spacing: -.07em; }
.final-cta h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.75); }
.round-cta { flex: 0 0 auto; width: 190px; height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border-radius: 50%; color: var(--ink); background: var(--cyan); font-weight: 900; box-shadow: 0 0 0 0 rgba(57,217,255,.2); transition: transform .35s var(--ease), box-shadow .35s ease; }
.round-cta:hover { transform: scale(1.04) rotate(-4deg); box-shadow: 0 0 0 18px rgba(57,217,255,.08); }
.round-cta span { font-size: 20px; }
.round-cta b { font-size: 24px; }

.site-footer { padding: 70px 0 25px; color: #fff; background: #03050d; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.brand-footer { color: #fff; }
.footer-brand p { margin: 25px 0 0; color: #737c91; font-size: 13px; line-height: 1.75; }
.footer-links { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links span { margin-bottom: 18px; color: #535c72; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.footer-links a { margin: 7px 0; color: #afb6c7; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 62px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #515a6e; font-size: 9px; letter-spacing: .08em; }
.mobile-apply { display: none; }
.toast { position: fixed; left: 50%; bottom: 34px; z-index: 1100; transform: translate(-50%, 25px); padding: 12px 18px; border-radius: 999px; color: #fff; background: #0b1024; box-shadow: 0 12px 40px rgba(0,0,0,.22); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; font-size: 12px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr .75fr; gap: 45px; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-card { min-height: 380px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 36px), var(--max)); }
  .header-inner { height: 74px; }
  .site-header.scrolled { background: rgba(5,8,23,.92); }
  .text-link, .header-actions > .button { display: none; }
  .mobile-menu { inset: 74px 0 0; }
  .hero { min-height: auto; padding-top: 74px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: 65px 92px; }
  .hero-copy { position: relative; z-index: 3; }
  .hero h1 { font-size: clamp(59px, 16vw, 90px); }
  .hero-lead { font-size: 21px; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
  .hero-visual { justify-self: center; width: min(85vw, 500px); margin-top: 18px; }
  .intro, .audition, .apply, .schedule, .faq { padding: 96px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 35px; }
  .intro-body { margin-left: 0; }
  .stats-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .stat-card { min-height: 230px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 42px; }
  .section-heading > p { max-width: 100%; }
  .qualification-panel { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-arrow { transform: rotate(90deg); height: 45px; }
  .format-panel { grid-template-columns: 1fr; }
  .apply-banner, .apply-banner-action { align-items: flex-start; flex-direction: column; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; min-height: 0; margin-bottom: 18px; }
  .timeline-date { grid-column: 2; padding-top: 0; margin-bottom: 10px; font-size: 16px; }
  .timeline-dot { grid-column: 1; grid-row: 1 / span 2; justify-content: flex-start; padding: 7px 0 0 18px; }
  .timeline-content { grid-column: 2; }
  .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .round-cta { align-self: flex-end; width: 160px; height: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 30px), var(--max)); }
  .brand-word { font-size: 11px; }
  .brand-word b { font-size: 15px; }
  .hero-grid { padding-top: 50px; }
  .eyebrow span:nth-child(3) { display: none; }
  .hero h1 { font-size: 16vw; }
  .desktop-only { display: none; }
  .hero-lead { font-size: 19px; }
  .hero-sub { font-size: 14px; }
  .hero-cta { display: grid; grid-template-columns: 1fr; }
  .button-large { min-height: 55px; padding-inline: 22px; }
  .hero-meta { grid-template-columns: 1fr; gap: 13px; }
  .hero-meta div { display: grid; grid-template-columns: 105px 1fr; align-items: start; }
  .hero-meta span { margin: 0; }
  .hero-visual { width: 100%; }
  .display-paragraph { font-size: 39px; }
  .intro-body { grid-template-columns: 1fr; gap: 18px; }
  .section-heading h2 { font-size: 42px; }
  .persona-grid { grid-template-columns: 1fr; }
  .qualification-panel { padding: 28px 22px; }
  .check-list { grid-template-columns: 1fr; }
  .step-card { padding: 28px 22px; }
  .format-panel, .apply-banner { padding: 30px 22px; }
  .copy-row { align-items: flex-start; }
  .apply-banner h3 { font-size: 41px; }
  .apply-banner-action { width: 100%; gap: 22px; }
  .apply-banner-action .button { width: 100%; }
  .timeline-content { padding: 21px 20px; }
  .accordion summary { grid-template-columns: 34px 1fr 20px; min-height: 86px; font-size: 16px; }
  .answer p { margin-left: 46px; margin-right: 0; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-card { height: 110px; }
  .partners-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .final-cta { padding: 90px 0 110px; }
  .final-cta h2 { font-size: 44px; }
  .round-cta { width: 135px; height: 135px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; padding-bottom: 65px; }
  .mobile-apply { position: fixed; left: 14px; right: 14px; bottom: 12px; z-index: 450; display: flex; justify-content: space-between; align-items: center; min-height: 56px; padding: 0 22px; border-radius: 999px; color: #06101b; background: linear-gradient(135deg, var(--cyan), #85f4ff); box-shadow: 0 15px 45px rgba(0,0,0,.28); font-size: 15px; font-weight: 900; }
  .toast { bottom: 82px; }
}

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


/* SH-OFFLINE-HEADER-START */
/* SH-OFFLINE-HEADER-MODE:solid-fixed */
.site-header {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 1500 !important;
  background: #050817 !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  isolation: isolate !important;
}
.site-header.scrolled {
  background: #050817 !important;
  border-color: rgba(255,255,255,.10) !important;
}
.site-header .header-inner { position: relative; z-index: 2; }
.site-header .mobile-menu { z-index: 3; }
.noise { z-index: 400 !important; }
html { scroll-padding-top: 104px !important; }
section[id] { scroll-margin-top: 104px !important; }
@media (max-width: 760px) {
  html { scroll-padding-top: 86px !important; }
  section[id] { scroll-margin-top: 86px !important; }
}
/* SH-OFFLINE-HEADER-END */
