/*
 * INRISE 전역 스타일 — Editorial Light
 *
 * 컬러 위계 (SSOT: _data/브랜드/디자인_토큰.md v2.1)
 *   - Surface: #ffffff 본문 / #f4f6fa 교차 / #141620 임팩트 다크
 *   - Primary: navy #003664 (로고 추출값) — CTA·제목·링크
 *   - Accent : yellow #FFD700 — 배지·dot·수치 단위만, 배경 금지
 *
 * 핵심 규칙:
 *   - 한글에 serif/italic 절대 금지 (가드 포함)
 *   - 그림자 금지 (hairline + 배경 대비로만 depth)
 *   - 폰트 두 개만 (Wanted Sans + DM Serif Display)
 *   - 둥근 모서리 기본 0
 */

/* ═══════════════════════════════════════ TOKENS */
:root {
	/* Surface */
	--bg:        #ffffff;
	--bg-alt:    #f4f6fa;       /* 네이비 틴트 그레이 */
	--bg-white:  #ffffff;
	--bg-deep:   #0b1024;       /* LP·임팩트 딥 */
	--ink-bg:    #141620;       /* 다크 섹션 배경 */
	--cta-navy-start: #001a34;  /* final CTA gradient */
	--cta-navy-end:   #001225;

	/* Primary — Navy (#003664 로고 정확값) */
	--navy:      #003664;
	--navy-ink:  #002a50;
	--navy-800:  #00234a;
	--navy-600:  #0a4a7d;
	--navy-50:   #f4f6fa;
	--navy-100:  #e4ebf3;
	--navy-200:  #c6d3e2;

	/* Ink (text scale) */
	--ink:    #141620;
	--ink-2:  #1e2030;
	--ink-3:  #3f4354;
	--ink-4:  #6b7080;
	--ink-5:  #9ca0b0;

	/* Accent — Yellow (JP LP 검증값, 액센트만) */
	--yellow:     #FFD700;
	--yellow-ink: #c9a300;
	--gold:       #FFD700; /* 레거시 alias */

	/* Lines */
	--line:    #e5e8ef;     /* 네이비 틴트 헤어라인 */
	--line-2:  #cfd4dc;
	--line-dk: rgba(255, 255, 255, 0.12);

	/* Status */
	--ok:   #0e7a4d;
	--warn: #b85a00;

	/* Type */
	--font-sans:  "Wanted Sans Variable", "Wanted Sans", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	--font-serif: "DM Serif Display", "Times New Roman", serif;

	/* Layout */
	--shell-max:  1200px;     /* 본문 컨테이너 */
	--shell-wide: 1320px;     /* 헤더·푸터 와이드 */
	--shell-narrow: 760px;    /* 아티클 */

	/* Radius (member-hub·WC 폼만 사용 — 본 사이트는 0) */
	--r-sm: 4px;
	--r-md: 6px;
	--r-lg: 10px;

	/* Motion */
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--dur-fast: 150ms;
	--dur:      220ms;
}

/* ═══════════════════════════════════════ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.7;
	letter-spacing: -0.005em;
	color: var(--ink-2);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	word-break: keep-all;
	overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--navy); color: #fff; }

.screen-reader-text {
	position: absolute; clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto;
	padding: 12px 20px;
	background: var(--navy); color: #fff;
	top: 0; left: 0; z-index: 100000;
}

/* ═══════════════════════════════════════ 한글 가드 (필수) */
:lang(ko), [lang="ko"] { font-style: normal !important; }
.serif:lang(ko) { font-family: var(--font-sans) !important; }
em:lang(ko) { font-family: var(--font-sans) !important; font-style: normal !important; }

/* ═══════════════════════════════════════ TYPE UTILS */
.serif {
	font-family: var(--font-serif);
	font-weight: 400;
	font-style: italic;
	letter-spacing: -0.01em;
}
em {
	font-style: italic;
	font-family: var(--font-serif);
	font-weight: 400;
	color: inherit;
}
strong, b { font-weight: 700; font-style: normal; }

/* ═══════════════════════════════════════ TOP BAR (공지) */
.top-bar {
	background: var(--navy-ink);
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	letter-spacing: 0.01em;
	padding: 8px 0;
}
.top-bar-inner {
	max-width: var(--shell-wide);
	margin: 0 auto;
	padding: 0 32px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px;
}
.top-bar .dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--yellow);
	display: inline-block; margin-right: 8px;
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.top-bar-links { display: flex; gap: 18px; color: rgba(255, 255, 255, 0.58); }
.top-bar-links a:hover { color: #fff; }

/* ═══════════════════════════════════════ HEADER */
.inrise-header, .hdr {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: padding 220ms var(--ease-out);
}
.hdr-inner, .inrise-header__inner {
	max-width: var(--shell-wide);
	margin: 0 auto;
	padding: 18px 40px;
	display: flex; align-items: center; gap: 32px;
}

/* 로고 */
.hdr-logo, .inrise-header__logo, .brand {
	display: flex; align-items: center;
	line-height: 0;
	flex-shrink: 0;
}
.brand svg, .hdr-logo svg,
.brand img,  .hdr-logo img { height: 30px; width: auto; display: block; }
.brand:hover, .hdr-logo:hover { color: inherit; }

/* Nav (메인 네비) */
.nav, .inrise-nav--primary {
	display: none;
	align-items: center;
	flex: 1;
	justify-content: center;
	gap: 4px;
}
.inrise-nav--primary .inrise-nav__list {
	display: flex; align-items: center;
	gap: 4px;
}
.nav a,
.inrise-nav--primary .inrise-nav__list > li > a {
	font-size: 14.5px;
	font-weight: 500;
	color: var(--ink-2);
	padding: 12px 18px;
	position: relative;
	letter-spacing: -0.005em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 160ms var(--ease-out);
}
.nav a::after,
.inrise-nav--primary .inrise-nav__list > li > a::after {
	content: ""; position: absolute;
	left: 18px; right: 18px; bottom: 6px;
	height: 1.5px; background: var(--navy);
	transform: scaleX(0); transform-origin: center;
	transition: transform 240ms var(--ease-out);
}
.nav a:hover::after,
.inrise-nav--primary .inrise-nav__list > li > a:hover::after,
.nav a.active::after,
.inrise-nav--primary .inrise-nav__list > li.current-menu-item > a::after,
.inrise-nav--primary .inrise-nav__list > li.current-menu-parent > a::after {
	transform: scaleX(1);
}
.nav a:hover,
.inrise-nav--primary .inrise-nav__list > li > a:hover,
.nav a.active,
.inrise-nav--primary .inrise-nav__list > li.current-menu-item > a,
.inrise-nav--primary .inrise-nav__list > li.current-menu-parent > a { color: var(--navy); }
.inrise-nav__caret { display: none; }

/* 드롭다운 */
.nav .has-sub, .inrise-nav--primary .has-submenu { position: relative; }
.nav .has-sub::before,
.inrise-nav--primary .has-submenu::before {
	content: ""; position: absolute;
	top: 100%; left: 0; right: 0; height: 14px; /* hover bridge */
}
.nav .sub, .inrise-nav__submenu {
	position: absolute;
	top: calc(100% + 14px); left: 50%;
	transform: translateX(-50%) translateY(-4px);
	background: #fff;
	border: 1px solid var(--line);
	padding: 10px 0;
	min-width: 220px;
	opacity: 0; pointer-events: none;
	transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
	list-style: none;
	z-index: 60;
}
.nav .has-sub:hover .sub,
.inrise-nav--primary .has-submenu:hover > .inrise-nav__submenu,
.inrise-nav--primary .has-submenu:focus-within > .inrise-nav__submenu {
	opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav .sub a, .inrise-nav__submenu li a {
	display: block;
	padding: 10px 20px;
	font-size: 13.5px;
	color: var(--ink-2);
	white-space: nowrap;
}
.nav .sub a:hover, .inrise-nav__submenu li a:hover { background: var(--navy-50); color: var(--navy); }

/* 헤더 우측 액션 */
.hdr-actions, .inrise-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-shrink: 0;
}
.hdr-contact,
.inrise-header__login,
.inrise-header__account {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--ink-3);
	letter-spacing: -0.005em;
	transition: color 160ms ease;
}
.hdr-contact:hover,
.inrise-header__login:hover,
.inrise-header__account:hover { color: var(--navy); }

/* 우측 마지막 CTA: 네이비 pill */
.hdr-actions > .hdr-contact:last-child,
.inrise-header__cta {
	background: var(--navy);
	color: #fff;
	font-weight: 700;
	padding: 10px 18px;
	letter-spacing: -0.005em;
	transition: background 160ms ease;
}
.hdr-actions > .hdr-contact:last-child:hover,
.inrise-header__cta:hover { background: var(--navy-ink); color: #fff; }

.inrise-header__logout {
	font-size: 12px;
	color: var(--ink-5);
}
.inrise-header__logout:hover { color: var(--navy); }

/* 헤더에 장바구니 절대 금지 */
.inrise-header__cart, .inrise-header__icon { display: none !important; }

/* 햄버거 */
.hamburger, .inrise-header__toggle {
	display: none;
	width: 40px; height: 40px;
	border: 1px solid var(--line-2);
	background: #fff;
	align-items: center; justify-content: center;
	flex-direction: column;
	gap: 4px;
}
.inrise-header__toggle span,
.hamburger span {
	display: block;
	width: 18px; height: 1.5px;
	background: var(--ink-2);
}

/* 모바일 메뉴 */
.inrise-mobile-nav {
	position: fixed;
	top: 73px; left: 0; right: 0;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
	max-height: 0;
	overflow: hidden;
	transition: max-height 300ms ease;
	z-index: 40;
}
.inrise-mobile-nav[aria-hidden="false"] {
	max-height: calc(100vh - 73px);
	overflow-y: auto;
}
.inrise-mobile-nav .inrise-nav__list {
	flex-direction: column;
	padding: 16px 24px 8px;
	gap: 0;
}
.inrise-mobile-nav .inrise-nav__list li { border-bottom: 1px solid var(--line); }
.inrise-mobile-nav .inrise-nav__list a {
	display: block;
	padding: 14px 0;
	font-size: 15px;
	color: var(--ink-2);
}
.inrise-mobile-nav .inrise-nav__submenu {
	position: static;
	opacity: 1; pointer-events: auto; transform: none;
	background: transparent; border: 0;
	padding: 0 0 8px 16px;
	margin: 0;
}
.inrise-mobile-nav .inrise-nav__submenu li { border: 0; }
.inrise-mobile-nav .inrise-nav__submenu li a { padding: 10px 0; font-size: 13px; color: var(--ink-4); }
.inrise-mobile-nav__actions {
	display: flex; flex-wrap: wrap; gap: 8px;
	padding: 16px 24px 24px;
	border-top: 1px solid var(--line);
}
.inrise-mobile-nav__actions a {
	font-size: 13px; color: var(--ink-4);
	padding: 8px 14px;
	border: 1px solid var(--line-2);
}

/* ═══════════════════════════════════════ SECTION FRAME */
.sec { padding: 96px 24px; position: relative; }
.sec-inner {
	max-width: var(--shell-max);
	margin: 0 auto;
}
.sec.alt   { background: var(--bg-alt); }
.sec.dark  { background: var(--ink-bg); color: #fff; }
.sec.navy  { background: var(--navy); color: #fff; }
.sec.deep  { background: var(--bg-deep); color: #fff; }
.final-cta {
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 16%, color-mix(in srgb, var(--yellow) 18%, transparent) 0, transparent 28%),
		radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--navy-600) 36%, transparent) 0, transparent 34%),
		linear-gradient(135deg, var(--cta-navy-start) 0%, var(--navy-ink) 42%, var(--navy) 72%, var(--cta-navy-end) 100%);
}
.final-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, color-mix(in srgb, var(--bg-white) 8%, transparent), transparent 32%),
		repeating-linear-gradient(90deg, color-mix(in srgb, var(--bg-white) 5.5%, transparent) 0 1px, transparent 1px 82px);
	opacity: 0.38;
	pointer-events: none;
}
.final-cta-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.final-cta-title {
	color: #fff;
	font-size: 48px;
}
.final-cta-lead {
	margin: 16px auto 36px;
	color: rgba(255, 255, 255, 0.78);
}
.final-cta-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 18px;
}
.eyebrow::before {
	content: ""; width: 24px; height: 1px; background: var(--navy);
}
.sec.dark .eyebrow,
.sec.navy .eyebrow,
.sec.deep .eyebrow { color: #fff; }
.sec.dark .eyebrow::before,
.sec.navy .eyebrow::before,
.sec.deep .eyebrow::before { background: rgba(255, 255, 255, 0.6); }

.sec-title {
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.22;
	margin: 0 0 20px;
	color: inherit;
}
.sec-title .serif {
	font-weight: 400;
	font-style: italic;
}
.sec-lead {
	font-size: 16px;
	color: var(--ink-4);
	max-width: 640px;
	line-height: 1.75;
	margin: 0 0 48px;
}
.sec.dark .sec-lead, .sec.navy .sec-lead, .sec.deep .sec-lead { color: rgba(255, 255, 255, 0.72); }

.sec-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 56px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
	flex-wrap: wrap;
}
.sec.dark .sec-header,
.sec.navy .sec-header,
.sec.deep .sec-header { border-bottom-color: rgba(255, 255, 255, 0.14); }
.sec-header .sec-title { margin: 0; }
.sec-header .sec-title + .sec-lead { margin: 12px 0 0; max-width: 480px; }
.sec-header .sec-meta {
	flex-shrink: 0;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 14px;
	color: var(--ink-5);
}
.sec.dark .sec-header .sec-meta,
.sec.navy .sec-header .sec-meta,
.sec.deep .sec-header .sec-meta { color: rgba(255, 255, 255, 0.55); }
.sec-header .sec-meta a {
	color: var(--navy); border-bottom: 1px solid currentColor;
	font-style: normal; font-family: var(--font-sans);
	font-size: 13px; font-weight: 600;
}
.sec-header .sec-meta a:hover { color: var(--navy-ink); }
.sec.dark .sec-header .sec-meta a,
.sec.navy .sec-header .sec-meta a,
.sec.deep .sec-header .sec-meta a { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.6); }

.sec-num {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 13px;
	color: var(--ink-5);
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}
.sec.dark .sec-num,
.sec.navy .sec-num,
.sec.deep .sec-num { color: rgba(255, 255, 255, 0.5); }

/* ═══════════════════════════════════════ BUTTONS */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 24px;
	font-size: 14px; font-weight: 700;
	letter-spacing: -0.005em;
	border: 0;
	transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
	white-space: nowrap;
}
.btn-primary, .btn--primary { background: var(--navy); color: #fff; }
.btn-primary:hover, .btn--primary:hover { background: var(--navy-ink); color: #fff; }
.btn-gold, .btn--gold { background: var(--yellow); color: var(--ink); }
.btn-gold:hover, .btn--gold:hover { background: var(--yellow-ink); color: var(--ink); }
.btn-outline, .btn--outline {
	background: transparent; color: var(--navy);
	border: 1.5px solid var(--navy);
}
.btn-outline:hover, .btn--outline:hover { background: var(--navy); color: #fff; }
.btn-ghost, .btn--ghost {
	background: transparent; color: inherit;
	border: 1px solid currentColor;
}
.btn-ghost:hover, .btn--ghost:hover { background: rgba(0, 0, 0, 0.04); }
.sec.dark .btn-ghost:hover,
.sec.navy .btn-ghost:hover,
.sec.deep .btn-ghost:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.btn-lg, .btn--lg { padding: 16px 28px; font-size: 15px; }
.btn-sm, .btn--sm { padding: 9px 16px; font-size: 12px; }

/* ═══════════════════════════════════════ HERO */
.hero {
	background: var(--bg);
	padding: 64px 24px 88px;
	border-bottom: 1px solid var(--line);
	position: relative;
	overflow: hidden;
}
.hero-inner {
	max-width: var(--shell-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 64px;
	align-items: end;
}
.hero-editorial-mark {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 13px;
	color: var(--ink-5);
	margin-bottom: 20px;
	display: flex; align-items: center; gap: 14px;
}
.hero-editorial-mark::before {
	content: ""; width: 32px; height: 1px; background: var(--ink-5);
}
.hero-kicker {
	font-size: 12px; font-weight: 700;
	color: var(--navy);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.hero h1, .hero-title {
	font-size: 64px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
	margin: 0 0 28px;
	color: var(--ink);
}
.hero h1 .serif, .hero-title .serif {
	font-weight: 400;
	font-style: italic;
	letter-spacing: -0.02em;
	color: var(--navy);
}
.hero h1 .underline, .hero-title .underline {
	position: relative; display: inline-block;
}
.hero h1 .underline::after, .hero-title .underline::after {
	content: ""; position: absolute;
	left: 0; right: 0; bottom: 4px;
	height: 10px;
	background: var(--yellow);
	opacity: 0.55;
	z-index: -1;
}
.hero-desc {
	font-size: 16px;
	color: var(--ink-4);
	margin: 0 0 36px;
	max-width: 460px;
	line-height: 1.8;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--ink-2); border-color: var(--line-2); }
.hero .btn-ghost:hover { background: var(--navy-50); border-color: var(--navy); color: var(--navy); }

/* Hero 우측 스탯 스트립 (다크) */
.hero-stat-strip {
	background: var(--ink-bg);
	color: #fff;
	padding: 36px 32px;
	position: relative;
}
.hero-stat-strip::before {
	content: ""; position: absolute;
	top: -1px; left: 0;
	width: 56px; height: 3px;
	background: var(--yellow);
}
.hero-stat-label {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 22px;
}
.hero-stat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 24px;
}
.hero-stat .big {
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
}
.hero-stat .big .serif {
	font-weight: 400;
	font-style: italic;
	color: var(--yellow);
	font-size: 0.62em;
	margin-left: 2px;
}
.hero-stat .lbl {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 8px;
	letter-spacing: 0.01em;
}
.hero-next {
	display: flex; align-items: center; gap: 12px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
}
.hero-next .live-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--yellow);
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.18);
	animation: pulse 2s ease-in-out infinite;
	flex-shrink: 0;
}
.hero-next b { color: #fff; font-weight: 700; }
.hero-next a {
	margin-left: auto;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	font-size: 12px; font-weight: 600;
	white-space: nowrap;
}
.hero-next a:hover { border-bottom-color: var(--yellow); color: var(--yellow); }

/* Hero placements */
.hero-trust {
	max-width: var(--shell-max);
	margin: 56px auto 0;
	padding: 24px 0 0;
	border-top: 1px solid var(--line);
	display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
	font-size: 13px; color: var(--ink-4);
}
.hero-trust .label {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--ink-5);
}
.hero-trust-schools {
	display: flex; gap: 28px; flex-wrap: wrap;
	font-weight: 600; color: var(--ink-3);
}

/* ═══════════════════════════════════════ POINTS */
.points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.point {
	padding: 44px 32px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: #fff;
	transition: background 200ms ease;
}
.point:hover { background: var(--bg-alt); }
.point-num {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 16px;
	color: var(--navy);
	margin-bottom: 24px;
	letter-spacing: 0.02em;
}
.point h3 {
	font-size: 20px; font-weight: 700;
	margin: 0 0 12px;
	letter-spacing: -0.015em;
	line-height: 1.4;
	color: var(--ink);
}
.point p {
	font-size: 14px;
	color: var(--ink-4);
	margin: 0;
	line-height: 1.8;
}
.sec.dark .points, .sec.navy .points, .sec.deep .points { border-color: rgba(255, 255, 255, 0.12); }
.sec.dark .point, .sec.navy .point, .sec.deep .point { background: transparent; border-color: rgba(255, 255, 255, 0.12); }
.sec.dark .point-num,
.sec.navy .point-num,
.sec.deep .point-num { color: var(--yellow); }
.sec.dark .point h3,
.sec.navy .point h3,
.sec.deep .point h3 { color: #fff; }
.sec.dark .point p,
.sec.navy .point p,
.sec.deep .point p { color: rgba(255, 255, 255, 0.7); }

/* ═══════════════════════════════════════ CURRICULUM / PROGRAMS */
.curriculum {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.curric-card {
	border: 1px solid var(--line);
	padding: 40px;
	background: #fff;
	transition: border-color 180ms ease, transform 220ms var(--ease-out);
	display: flex; flex-direction: column;
}
.curric-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.curric-card .pill {
	display: inline-block;
	font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 11px;
	background: var(--navy);
	color: #fff;
	margin-bottom: 22px;
	align-self: flex-start;
}
.curric-card .pill.alt { background: var(--yellow); color: var(--ink); }
.curric-card .serif-mark {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--ink-5);
	font-size: 14px;
	margin-bottom: 8px;
}
.curric-card h3 {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
	color: var(--ink);
	line-height: 1.2;
}
.curric-card p {
	color: var(--ink-4);
	font-size: 14px;
	margin: 0 0 28px;
	line-height: 1.8;
	flex: 1;
}
.curric-card .tag-row {
	display: flex; gap: 8px; flex-wrap: wrap;
	margin-bottom: 28px;
}
.curric-card .tag {
	font-size: 12px;
	padding: 5px 12px;
	background: var(--bg-alt);
	color: var(--ink-3);
	border: 1px solid var(--line);
}
.curric-card .price-row {
	display: flex; align-items: baseline; justify-content: space-between;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.curric-card .arrow {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--navy);
	font-size: 14px;
}
.curric-card:hover .arrow { color: var(--navy-ink); }

/* ═══════════════════════════════════════ TESTIMONIAL GRID */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.testi-card {
	padding: 36px 28px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	display: flex; flex-direction: column;
	background: #fff;
}
.testi-score {
	margin-bottom: 14px;
	display: flex; align-items: center; gap: 10px;
}
.testi-score .delta {
	font-size: 11px;
	font-weight: 700;
	background: var(--yellow);
	color: var(--ink);
	padding: 3px 9px;
	letter-spacing: 0.02em;
}
.testi-score .big {
	font-size: 22px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.015em;
}
.testi-card .quote {
	font-size: 14px;
	line-height: 1.8;
	flex: 1;
	margin: 0 0 24px;
	color: var(--ink-2);
}
.testi-foot {
	padding-top: 20px;
	border-top: 1px solid var(--line);
	display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 700;
	flex-shrink: 0;
}
.testi-meta b { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-meta span { font-size: 11px; color: var(--ink-5); }

/* ═══════════════════════════════════════ BIG STAT (다크 섹션) */
.bigstat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
	padding: 40px 0;
}
.bigstat {
	border-left: 1px solid rgba(255, 255, 255, 0.16);
	padding-left: 28px;
}
.bigstat .num {
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: #fff;
}
.bigstat .num .unit {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 22px;
	color: var(--yellow);
	font-weight: 400;
	margin-left: 4px;
}
.bigstat .lbl {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 12px;
	letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════ NOAH QUOTE */
.noah {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.noah-portrait {
	aspect-ratio: 4/5;
	background:
		linear-gradient(135deg, rgba(0, 54, 100, 0.92), rgba(0, 26, 51, 0.96)),
		var(--navy-800);
	position: relative;
	display: flex; align-items: flex-end;
	padding: 32px;
	color: #fff;
	overflow: hidden;
}
.noah-portrait::before {
	content: "N";
	position: absolute;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 460px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.06);
	line-height: 0.75;
	top: -30px; right: -20px;
	letter-spacing: -0.04em;
}
.noah-portrait .caption {
	position: relative;
	font-size: 12px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.85);
}
.noah-portrait .caption b {
	display: block;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
	letter-spacing: 0.02em;
}
.noah-quote blockquote {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: -0.02em;
	margin: 0 0 28px;
	color: var(--ink);
	padding-left: 22px;
	border-left: 3px solid var(--navy);
	font-style: normal;
}
.noah-cred {
	font-size: 13px;
	color: var(--ink-4);
	line-height: 1.85;
}
.noah-cred strong {
	color: var(--ink);
	font-weight: 700;
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
}
.noah-cred strong + br { display: none; }

/* ═══════════════════════════════════════ FAQ */
.faq-list { border-top: 1px solid var(--line); }
.sec.dark .faq-list, .sec.navy .faq-list, .sec.deep .faq-list { border-top-color: rgba(255, 255, 255, 0.14); }
.faq-row {
	border-bottom: 1px solid var(--line);
	padding: 0;
}
.sec.dark .faq-row, .sec.navy .faq-row, .sec.deep .faq-row { border-bottom-color: rgba(255, 255, 255, 0.14); }
.faq-row summary {
	padding: 24px 0;
	cursor: pointer;
	list-style: none;
	display: flex; justify-content: space-between; align-items: center;
	gap: 24px;
	font-size: 17px; font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink);
}
.sec.dark .faq-row summary,
.sec.navy .faq-row summary,
.sec.deep .faq-row summary { color: #fff; }
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row .num {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--ink-5);
	font-size: 14px;
	margin-right: 20px;
	flex-shrink: 0;
	width: 32px;
}
.faq-row .text { flex: 1; }
.faq-row .mark {
	width: 32px; height: 32px;
	border: 1px solid var(--line-2);
	display: flex; align-items: center; justify-content: center;
	font-size: 16px;
	color: var(--navy);
	flex-shrink: 0;
	transition: transform 200ms var(--ease-out), background 160ms ease;
}
.sec.dark .faq-row .mark,
.sec.navy .faq-row .mark,
.sec.deep .faq-row .mark {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}
.faq-row[open] .mark { transform: rotate(45deg); background: var(--navy); color: #fff; border-color: var(--navy); }
.faq-row .faq-a {
	padding: 0 0 24px 52px;
	font-size: 14.5px;
	color: var(--ink-3);
	line-height: 1.85;
}
.sec.dark .faq-row .faq-a,
.sec.navy .faq-row .faq-a,
.sec.deep .faq-row .faq-a { color: rgba(255, 255, 255, 0.72); }

/* ═══════════════════════════════════════ NOTICE LIST */
.notice-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 48px;
	border-top: 1px solid var(--line);
}
.notice-row {
	display: flex; align-items: center; gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
}
.notice-row .tag {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 12px;
	color: var(--navy);
	flex-shrink: 0;
	width: 80px;
}
.notice-row .title { flex: 1; font-weight: 500; color: var(--ink-2); }
.notice-row:hover .title { color: var(--navy); }
.notice-row .date {
	font-size: 12px;
	color: var(--ink-5);
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}
.notice-row .pin {
	font-size: 10px; font-weight: 700;
	color: var(--ink);
	background: var(--yellow);
	padding: 2px 6px;
	letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════ FLOATERS */
.floaters {
	position: fixed;
	right: 20px; bottom: 24px;
	display: flex; flex-direction: column;
	gap: 10px;
	z-index: 35;
}
.floater {
	width: 56px; height: 56px;
	background: var(--navy);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	transition: transform 160ms var(--ease-out), background 160ms ease;
	position: relative;
}
.floater:hover { transform: translateY(-2px); color: #fff; background: var(--navy-ink); }
.floater.kakao { background: #FEE500; color: #3C1E1E; }
.floater.kakao:hover { background: #FFE94A; }
.floater .lbl {
	position: absolute;
	right: calc(100% + 10px);
	top: 50%; transform: translateY(-50%);
	background: var(--ink);
	color: #fff;
	padding: 6px 10px;
	font-size: 12px; font-weight: 600;
	white-space: nowrap;
	opacity: 0; pointer-events: none;
	transition: opacity 120ms ease;
}
.floater:hover .lbl { opacity: 1; }

/* ═══════════════════════════════════════ FOOTER */
.inrise-footer, .ftr {
	background: var(--ink-bg);
	color: rgba(255, 255, 255, 0.7);
	padding: 80px 24px 36px;
	font-size: 13px;
}
.ftr-inner, .inrise-footer .ct {
	max-width: var(--shell-wide);
	margin: 0 auto;
	padding: 0 16px;
}
.ftr-top, .inrise-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ftr-brand .brand img { filter: brightness(1) contrast(1); }
.ftr-brand .serif, .inrise-footer__tag {
	font-family: var(--font-serif);
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	display: block;
	margin: 16px 0 12px;
}
.ftr-brand p, .inrise-footer__col--brand p {
	font-size: 13px;
	line-height: 1.75;
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.65);
}
.ftr-brand .phone {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.01em;
	font-variant-numeric: tabular-nums;
}
.ftr-brand .hours {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 4px;
}
.ftr-col h4, .inrise-footer__title {
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 20px;
}
.ftr-col ul, .inrise-footer__links { list-style: none; margin: 0; padding: 0; }
.ftr-col li, .inrise-footer__links li { margin-bottom: 10px; color: rgba(255, 255, 255, 0.65); }
.ftr-col a, .inrise-footer__links a { color: rgba(255, 255, 255, 0.65); }
.ftr-col a:hover, .inrise-footer__links a:hover { color: #fff; }

.inrise-footer__social { display: flex; gap: 14px; font-size: 12px; margin-top: 12px; }
.inrise-footer__social a { color: rgba(255, 255, 255, 0.5); }
.inrise-footer__social a:hover { color: #fff; }

.ftr-bottom, .inrise-footer__bottom {
	padding-top: 32px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.42);
	line-height: 1.95;
}
.inrise-footer__legal { word-break: keep-all; }
.inrise-footer__legal strong { color: rgba(255, 255, 255, 0.78); font-weight: 600; }
.inrise-footer__sep { color: rgba(255, 255, 255, 0.22); margin: 0 6px; }
.inrise-footer__menu {
	display: flex; flex-wrap: wrap; gap: 16px;
	margin: 12px 0;
	list-style: none; padding: 0;
}
.inrise-footer__menu a { color: rgba(255, 255, 255, 0.5); font-size: 12px; }
.inrise-footer__menu a:hover { color: #fff; }
.inrise-footer__copy { color: rgba(255, 255, 255, 0.32); font-size: 12px; margin-top: 12px; }

/* ═══════════════════════════════════════ STICKY MOBILE CTA */
.mbl-sticky {
	display: none;
	position: fixed; bottom: 0; left: 0; right: 0;
	background: var(--navy-ink);
	border-top: 1px solid rgba(255, 215, 0, 0.3);
	padding: 10px 16px;
	z-index: 40;
	gap: 8px;
}
.mbl-sticky .info { flex: 1; color: #fff; font-size: 12px; line-height: 1.4; }
.mbl-sticky .info b { color: var(--yellow); font-weight: 700; display: block; font-size: 11px; }
.mbl-sticky .btn { flex-shrink: 0; padding: 10px 16px; font-size: 13px; }

/* ═══════════════════════════════════════ BLOG / ARCHIVE / SINGLE */
.inrise-main { padding: 64px 0; min-height: calc(100vh - 500px); }
.inrise-main--page { padding: 64px 0 120px; }
.inrise-main--home { padding: 0; }
.inrise-main--single { padding: 64px 0 120px; background: var(--bg); }

.inrise-archive__header {
	max-width: var(--shell-max);
	margin: 0 auto 48px;
	padding: 0 24px 24px;
	border-bottom: 1px solid var(--line);
}
.inrise-archive__title {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.inrise-archive__desc { margin-top: 12px; color: var(--ink-4); }
.inrise-archive__list { max-width: var(--shell-max); margin: 0 auto; padding: 0 24px; display: grid; gap: 40px; }
.inrise-post {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--line);
}
.inrise-post__title { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.35; color: var(--ink); }
.inrise-post__title a:hover { color: var(--navy); }
.inrise-post__meta { font-family: var(--font-serif); font-style: italic; color: var(--ink-5); font-size: 13px; margin-top: 6px; }
.inrise-post__excerpt { margin-top: 12px; color: var(--ink-4); line-height: 1.75; }

.inrise-single__header { max-width: var(--shell-narrow); margin: 0 auto 40px; padding: 0 24px; }
.inrise-single__title { font-size: 40px; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); }
.inrise-single__meta { font-family: var(--font-serif); font-style: italic; color: var(--ink-5); font-size: 13px; margin-top: 14px; }
.inrise-single__thumb { max-width: 1080px; margin: 32px auto; padding: 0 24px; }
.inrise-single__body { max-width: var(--shell-narrow); margin: 0 auto; padding: 0 24px; font-size: 17px; line-height: 1.85; color: var(--ink-2); }
.inrise-single__body h2 { font-size: 28px; font-weight: 700; margin: 56px 0 16px; letter-spacing: -0.015em; color: var(--ink); }
.inrise-single__body h3 { font-size: 20px; font-weight: 700; margin: 40px 0 14px; color: var(--ink); }
.inrise-single__body p { margin-bottom: 20px; }
.inrise-single__body ul, .inrise-single__body ol { margin: 20px 0 20px 28px; }
.inrise-single__body blockquote {
	margin: 32px 0;
	padding: 20px 28px;
	border-left: 3px solid var(--navy);
	background: var(--bg-alt);
	color: var(--ink);
	font-style: normal;
	font-weight: 500;
}
.inrise-single__body a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════ 404 */
.inrise-main--404 { padding: 140px 0 160px; text-align: center; background: var(--bg); }
.inrise-404 { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.inrise-404 .display { font-size: 88px; line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.inrise-404 .display em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--navy); }
.inrise-404 .body { color: var(--ink-4); font-size: 17px; line-height: 1.75; }
.inrise-404__cta { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ═══════════════════════════════════════ PAGINATION */
.wp-pagenavi, .nav-links, .pagination {
	max-width: var(--shell-max);
	margin: 64px auto 0;
	padding: 0 24px;
	display: flex; justify-content: center; gap: 6px; flex-wrap: wrap;
}
.page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 38px; height: 38px;
	padding: 0 12px;
	border: 1px solid var(--line-2);
	color: var(--ink-4);
	font-size: 13px;
	background: #fff;
}
.page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.page-numbers:hover { border-color: var(--navy); color: var(--navy); }
.page-numbers.current:hover { color: #fff; }

/* ═══════════════════════════════════════ COMMENTS */
.comment-list { max-width: var(--shell-narrow); margin: 48px auto; padding: 0 24px; list-style: none; }
.comment-body { padding: 20px 0; border-bottom: 1px solid var(--line); }
.comment-meta { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: var(--ink-5); margin-bottom: 10px; }
.comment-author .fn { font-family: var(--font-sans); font-style: normal; color: var(--ink); font-weight: 700; }
.comment-respond { max-width: var(--shell-narrow); margin: 48px auto; padding: 0 24px; }
.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 14px;
	border: 1px solid var(--line-2);
	background: #fff;
	color: var(--ink);
	margin-bottom: 12px;
}
.comment-form input:focus,
.comment-form textarea:focus { outline: none; border-color: var(--navy); }

/* ═══════════════════════════════════════ RESPONSIVE */
@media (min-width: 1024px) {
	.nav, .inrise-nav--primary { display: flex; }
}

@media (max-width: 1024px) {
	.hdr-inner, .inrise-header__inner { padding: 14px 24px; gap: 20px; }
	.hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.hero h1, .hero-title { font-size: 46px; }
	.hero-stat-strip { padding: 28px; }
	.noah { grid-template-columns: 1fr; gap: 40px; }
	.noah-quote blockquote { font-size: 22px; }
	.bigstat-row { grid-template-columns: 1fr 1fr; gap: 32px; }
	.bigstat .num { font-size: 48px; }
	.sec-header { flex-direction: column; align-items: flex-start; gap: 12px; }
	.curriculum { grid-template-columns: 1fr; gap: 20px; }
	.notice-list { grid-template-columns: 1fr; gap: 0; }
	.ftr-top, .inrise-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.ftr-brand, .inrise-footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
	.hdr-actions .hdr-contact:not(:last-child),
	.inrise-header__login,
	.inrise-header__account,
	.inrise-header__signup { display: none; }
	.hamburger, .inrise-header__toggle { display: flex; }
	.top-bar-links { display: none; }
	.sec { padding: 64px 20px; }
	.hero { padding: 40px 20px 56px; }
	.hero h1, .hero-title { font-size: 36px; letter-spacing: -0.03em; }
	.hero-desc {
		max-width: 100%;
		word-break: break-all;
		overflow-wrap: anywhere;
	}
	.sec-title { font-size: 28px; }
	.points { grid-template-columns: 1fr; }
	.testi-grid { grid-template-columns: 1fr; }
	.bigstat-row { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 24px 0; }
	.bigstat { padding-left: 14px; }
	.bigstat .num { font-size: 36px; }
	.bigstat .num .unit { font-size: 14px; }
	.hero-trust { gap: 16px; }
	.hero-trust-schools { gap: 12px; font-size: 12px; }
	.mbl-sticky { display: flex; align-items: center; }
	.floaters { bottom: 84px; right: 14px; }
	.floater { width: 48px; height: 48px; }
	body { padding-bottom: 68px; }
}
