/* ========================================
   韓国ドラマ部 - Modern Editorial Design
======================================== */

/* ========================================
   SWELL Theme Overrides - Full Width
======================================== */
html.home,
body.home {
	overflow-x: clip !important;
}

body.home .l-content,
body.home .l-content__inner,
body.home .l-content__main,
body.home .l-content__body,
body.home .l-mainContent,
body.home .post_content,
body.home .c-postContent,
body.home article,
body.home [class*="l-"] {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.home .l-sidebar,
body.home .l-content__side {
	display: none !important;
}

body.home .l-content__inner {
	display: block !important;
}

body.home .l-content__main {
	flex: 0 0 100% !important;
	max-width: 100% !important;
}

body.home .c-breadcrumb,
body.home .p-breadcrumb {
	display: none !important;
}

/* ========================================
   CSS Variables — Modern Korean Drama
======================================== */
:root {
	--white: #ffffff;
	--cream: #f8f7f5;
	--cream-dark: #efede9;
	--bg-dark: #1a1620;
	--bg-dark-alt: #231e2c;
	--bg-dark-card: #2d2738;
	--primary: #3b2d5e;
	--primary-light: #5a4a80;
	--accent: #d4508a;
	--accent-dark: #b83a72;
	--accent-light: rgba(212, 80, 138, 0.08);
	--accent-gradient: linear-gradient(135deg, #d4508a 0%, #e87aaf 100%);
	--gray-100: #f4f3f1;
	--gray-200: #e8e6e3;
	--gray-300: #d1cec9;
	--gray-400: #9e9a94;
	--gray-500: #6e6a64;
	--gray-600: #4d4a45;
	--gray-700: #363430;
	--gray-800: #1f1e1b;
	--text-on-dark: #e6e2de;
	--text-muted-dark: rgba(230, 226, 222, 0.55);
	--font: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	--radius: 8px;
	--radius-lg: 12px;
	--radius-pill: 100px;
}

.front-page {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	overflow-x: clip !important;
	font-family: var(--font);
	font-weight: 400;
	line-height: 1.8;
	color: var(--gray-800);
}

.front-page a { text-decoration: none; color: inherit; }
.front-page img { max-width: 100%; height: auto; }

/* ========================================
   Hero — Gradient, Bright, Modern
======================================== */
.hero {
	background: linear-gradient(160deg, #1a1620 0%, #2d1f3d 40%, #3b2450 70%, #1a1620 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 24px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at 50% 40%, rgba(212, 80, 138, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 50% 70% at 80% 20%, rgba(90, 74, 128, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(to top, var(--bg-dark), transparent);
	pointer-events: none;
}

.hero__inner {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero__label {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.25em;
	color: var(--accent);
	text-transform: uppercase;
	margin-bottom: 28px;
}

.hero__label::before,
.hero__label::after {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--accent);
	opacity: 0.4;
}

.hero__title {
	font-family: var(--font);
	font-size: 42px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--white);
	margin-bottom: 20px;
	letter-spacing: 0.02em;
}

.hero__desc {
	font-size: 15px;
	font-weight: 400;
	line-height: 2;
	color: var(--text-muted-dark);
	margin-bottom: 44px;
	letter-spacing: 0.01em;
}

.hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	border-radius: var(--radius-pill);
	transition: all 0.3s ease;
}

.hero__btn--primary {
	background: var(--accent);
	color: var(--white);
}

.hero__btn--primary:hover {
	background: #e06a9e;
	box-shadow: 0 8px 32px rgba(212, 80, 138, 0.3);
	transform: translateY(-1px);
}

.hero__btn--secondary {
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__btn--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff !important;
}

.hero__btn svg { width: 16px; height: 16px; }

.hero__features {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 72px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__feature { text-align: center; color: var(--text-muted-dark); }

.hero__feature-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	opacity: 0.6;
}

.hero__feature-icon svg { width: 20px; height: 20px; }
.hero__feature-text { font-size: 12px; font-weight: 500; letter-spacing: 0.03em; }

@media (max-width: 900px) {
	.hero { min-height: auto; padding: 100px 24px; }
	.hero__title { font-size: 30px; }
	.hero__features { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
	.hero { padding: 80px 20px; }
	.hero__title { font-size: 24px; }
	.hero__btns { flex-direction: column; }
	.hero__btn { justify-content: center; }
	.hero__features { gap: 20px; }
}

/* ========================================
   Section Common
======================================== */
.section { padding: 96px 24px; }

.section--cream { background: var(--cream); }

.section--dark {
	background: var(--bg-dark);
	color: var(--text-on-dark);
}

.section--dark-alt {
	background: var(--bg-dark-alt);
	color: var(--text-on-dark);
}

.section__inner { max-width: 1100px; margin: 0 auto; }
.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }

.section__label {
	display: inline-block;
	font-family: var(--font);
	font-size: 11px;
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
}

.section--dark .section__label,
.section--dark-alt .section__label { color: var(--accent); }

.section__title {
	font-family: var(--font);
	font-size: 28px;
	font-weight: 700;
	color: var(--gray-800);
	margin-bottom: 10px;
	letter-spacing: 0.02em;
}

.section--dark .section__title,
.section--dark-alt .section__title { color: var(--white); }

.section__subtitle {
	font-size: 14px;
	font-weight: 400;
	color: var(--gray-500);
	letter-spacing: 0.01em;
}

.section--dark .section__subtitle,
.section--dark-alt .section__subtitle { color: rgba(255, 255, 255, 0.7); }

.section__divider {
	width: 32px;
	height: 3px;
	background: var(--accent);
	margin: 16px auto 0;
	border-radius: 2px;
}

@media (max-width: 600px) {
	.section { padding: 64px 20px; }
	.section__title { font-size: 22px; }
}

/* ========================================
   Intro Numbers — Dark
======================================== */
.intro__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(212, 80, 138, 0.08);
	border-radius: var(--radius);
	overflow: hidden;
}

.intro__item {
	text-align: center;
	padding: 40px 20px;
	background: var(--bg-dark);
}

.intro__icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	opacity: 0.5;
}

.intro__icon svg { width: 20px; height: 20px; }

.intro__num {
	font-family: var(--font);
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 4px;
	letter-spacing: -0.01em;
}

.intro__text {
	font-size: 11px;
	color: var(--text-muted-dark);
	font-weight: 500;
	letter-spacing: 0.06em;
}

@media (max-width: 900px) { .intro__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .intro__item { padding: 28px 12px; } .intro__num { font-size: 28px; } }

/* ========================================
   Ranking — Card Style
======================================== */
.ranking__list { display: flex; flex-direction: column; gap: 16px; }

.ranking__item {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 28px 32px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ranking__item:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.ranking__item--featured {
	background: linear-gradient(135deg, #ffffff 0%, #fdf5f9 100%);
	box-shadow: 0 2px 12px rgba(212, 80, 138, 0.1);
	position: relative;
	border: 1px solid rgba(212, 80, 138, 0.15);
}

.ranking__item--featured::before {
	content: 'PICK UP';
	position: absolute;
	top: -10px;
	left: 28px;
	background: var(--accent-gradient);
	color: var(--white);
	font-family: var(--font);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 4px 16px;
	border-radius: var(--radius-pill);
}

.ranking__rank {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font);
	font-size: 20px;
	font-weight: 700;
	border-radius: 50%;
}

.ranking__rank--1 { color: var(--white); background: var(--accent); }
.ranking__rank--2 { color: var(--gray-600); background: var(--gray-100); border: 1px solid var(--gray-200); }
.ranking__rank--3 { color: #a0784a; background: #fdf6ef; border: 1px solid #e8d5be; }
.ranking__rank--4,
.ranking__rank--5 { color: var(--gray-400); background: var(--gray-100); }

.ranking__info { min-width: 0; }

.ranking__badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 3px 10px;
	background: var(--accent-light);
	color: var(--accent-dark);
	border-radius: var(--radius-pill);
	margin-bottom: 6px;
}

.ranking__name {
	font-family: var(--font);
	font-size: 18px;
	font-weight: 700;
	color: var(--gray-800);
	margin-bottom: 4px;
}

.ranking__desc { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }
.ranking__features { display: flex; gap: 16px; flex-wrap: wrap; }

.ranking__feature {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--gray-600);
	letter-spacing: 0.01em;
}

.ranking__feature svg { width: 14px; height: 14px; color: var(--accent); }

.ranking__actions { display: flex; flex-wrap: wrap; gap: 8px; }

.ranking__action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	font-family: var(--font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	white-space: nowrap;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none !important;
	border-radius: var(--radius-pill);
}

.ranking__action--detail {
	background: var(--gray-800) !important;
	color: var(--white) !important;
}

.ranking__action--detail:hover {
	background: var(--primary) !important;
}

/* 配信サービス共通 */
.ranking__action--service {
	color: var(--white) !important;
}

/* Netflix — 赤 */
.ranking__action--netflix {
	background: #e50914 !important;
}
.ranking__action--netflix:hover {
	background: #f6121d !important;
}

/* U-NEXT — 青 */
.ranking__action--unext {
	background: #00b4ed !important;
}
.ranking__action--unext:hover {
	background: #12c8ff !important;
}

/* Hulu — グリーン */
.ranking__action--hulu {
	background: #1ce783 !important;
	color: #040405 !important;
}
.ranking__action--hulu:hover {
	background: #3cef98 !important;
}

/* Amazonプライム — ネイビー+ゴールド */
.ranking__action--amazon {
	background: #232f3e !important;
}
.ranking__action--amazon:hover {
	background: #37475a !important;
}

.ranking__more { text-align: center; margin-top: 44px; }

.ranking__more-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 32px;
	border: 1px solid var(--gray-300);
	color: var(--gray-600);
	font-family: var(--font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	border-radius: var(--radius-pill);
	transition: all 0.3s ease;
}

.ranking__more-btn:hover { border-color: var(--accent); color: var(--accent); }
.ranking__more-btn svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
	.ranking__item { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
	.ranking__rank { width: 40px; height: 40px; font-size: 18px; }
	.ranking__actions { width: 100%; }
	.ranking__action { padding: 9px 14px; font-size: 10px; }
}

/* ========================================
   Use Cases (Genres) — White
======================================== */
.usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.usecase__card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.usecase__card:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
	transform: translateY(-4px);
}

.usecase__icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	background: var(--accent-light);
	border-radius: var(--radius);
}

.usecase__icon svg { width: 24px; height: 24px; }

.usecase__title {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	color: var(--gray-800);
	margin-bottom: 8px;
}

.usecase__text { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

@media (max-width: 900px) { .usecases__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .usecases__grid { grid-template-columns: 1fr; } }

/* ========================================
   Categories — Dark
======================================== */
.categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(212, 80, 138, 0.06);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.category__card {
	background: var(--bg-dark-alt);
	padding: 24px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	transition: all 0.3s ease;
}

.category__card:hover { background: var(--bg-dark-card); }

.category__icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	opacity: 0.6;
	flex-shrink: 0;
}

.category__icon svg { width: 20px; height: 20px; }
.category__body { flex: 1; min-width: 0; }

.category__name {
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-on-dark);
	margin-bottom: 2px;
}

.category__count { font-size: 11px; color: var(--text-muted-dark); letter-spacing: 0.03em; }

.category__arrow { color: rgba(212, 80, 138, 0.25); transition: all 0.3s ease; }
.category__card:hover .category__arrow { color: var(--accent); transform: translateX(4px); }
.category__arrow svg { width: 16px; height: 16px; }

@media (max-width: 900px) { .categories__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .categories__grid { grid-template-columns: 1fr; } }

/* ========================================
   Knowledge (Viewing Guide) — Dark Alt
======================================== */
.knowledge__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	position: relative;
}

.knowledge__grid::before {
	content: '';
	position: absolute;
	top: 24px;
	left: 70px;
	right: 70px;
	height: 2px;
	background: linear-gradient(to right, transparent, var(--accent), transparent);
	opacity: 0.1;
	z-index: 0;
}

.knowledge__item { text-align: center; position: relative; z-index: 1; }

.knowledge__num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--white);
	font-family: var(--font);
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.knowledge__title {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 10px;
}

.knowledge__text { font-size: 13px; color: var(--text-muted-dark); line-height: 1.7; }

@media (max-width: 900px) { .knowledge__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } .knowledge__grid::before { display: none; } }
@media (max-width: 600px) { .knowledge__grid { grid-template-columns: 1fr; } }

/* ========================================
   Popular Articles — Dark
======================================== */
.popular__grid { width: 100%; }

.popular__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(212, 80, 138, 0.05);
}

.popular__card {
	background: var(--bg-dark-alt);
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	display: block;
}

.popular__card:hover { background: var(--bg-dark-card); }

.popular__card-rank {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 26px;
	height: 26px;
	background: var(--accent);
	color: var(--white);
	font-family: var(--font);
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	border-radius: 50%;
}

.popular__card-thumb {
	aspect-ratio: 16/10;
	background: var(--bg-dark);
	position: relative;
	overflow: hidden;
}

.popular__card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

.popular__card-body { padding: 18px; }

.popular__card-cat {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	padding: 2px 8px;
	background: rgba(212, 80, 138, 0.12);
	color: var(--accent);
	border-radius: var(--radius-pill);
	margin-bottom: 8px;
}

.popular__card-title {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 600;
	color: var(--text-on-dark);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 900px) { .popular__cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
	.popular__card-body { padding: 14px; }
	.popular__card-title { font-size: 12px; }
}

/* ========================================
   Articles (Latest) — Cream
======================================== */
.articles__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }

.articles__more {
	font-size: 13px;
	font-weight: 600;
	color: var(--accent-dark);
	display: flex;
	align-items: center;
	gap: 6px;
	letter-spacing: 0.02em;
}

.articles__more svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.articles__more:hover svg { transform: translateX(4px); }

.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.article__card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.article__card:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
	transform: translateY(-3px);
}

.article__thumb {
	aspect-ratio: 16/9;
	background: var(--gray-200);
	position: relative;
	overflow: hidden;
}

.article__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.article__card:hover .article__thumb img {
	transform: scale(1.05);
}

.article__body { padding: 20px; }

.article__cat {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 3px 10px;
	background: var(--accent-light);
	color: var(--accent-dark);
	border-radius: var(--radius-pill);
	margin-bottom: 10px;
}

.article__title {
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	color: var(--gray-800);
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article__date { font-size: 12px; color: var(--gray-400); margin-top: 12px; letter-spacing: 0.02em; }

@media (max-width: 900px) { .articles__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 600px) {
	.articles__header { flex-direction: column; align-items: flex-start; gap: 12px; }
	.articles__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.article__body { padding: 14px; }
	.article__title { font-size: 13px; }
}

/* ========================================
   FAQ
======================================== */
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }

.faq__item {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq__item:hover,
.faq__item.is-open { box-shadow: 0 4px 20px rgba(212, 80, 138, 0.1); }

.faq__question {
	width: 100%;
	padding: 22px 24px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	color: var(--gray-800);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: transparent;
	border: none;
	text-align: left;
}

.faq__icon {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
	color: var(--gray-400);
	background: var(--gray-100);
	border-radius: 50%;
}

.faq__item.is-open .faq__icon { color: var(--white); background: var(--accent); transform: rotate(180deg); }
.faq__icon svg { width: 14px; height: 14px; }

.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; }
.faq__answer-inner p { padding: 0 24px 22px; font-size: 14px; line-height: 1.9; color: var(--gray-600); }

/* ========================================
   CTA — Dark Gradient
======================================== */
.cta {
	background: linear-gradient(160deg, #1a1620 0%, #2d1f3d 50%, #1a1620 100%);
	padding: 110px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(212, 80, 138, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.cta__inner { max-width: 560px; margin: 0 auto; position: relative; }

.cta__label {
	display: inline-block;
	font-family: var(--font);
	font-size: 11px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.cta__title {
	font-family: var(--font);
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 14px;
	letter-spacing: 0.02em;
}

.cta__desc {
	font-size: 14px;
	color: var(--text-muted-dark);
	margin-bottom: 40px;
}

.cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 40px;
	background: var(--accent);
	color: var(--white);
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	border-radius: var(--radius-pill);
	transition: all 0.3s ease;
}

.cta__btn:hover {
	background: #e06a9e;
	box-shadow: 0 8px 40px rgba(212, 80, 138, 0.3);
	transform: translateY(-1px);
}

.cta__btn svg { width: 18px; height: 18px; }

@media (max-width: 600px) {
	.cta { padding: 72px 20px; }
	.cta__title { font-size: 22px; }
}

/* ========================================
   Keyframes
======================================== */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(32px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes scaleIn {
	from { opacity: 0; transform: scale(0.85); }
	to   { opacity: 1; transform: scale(1); }
}

@keyframes slideRight {
	from { opacity: 0; transform: translateX(-24px); }
	to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideLeft {
	from { opacity: 0; transform: translateX(24px); }
	to   { opacity: 1; transform: translateX(0); }
}

@keyframes growWidth {
	from { width: 0; }
	to   { width: 32px; }
}

@keyframes shimmer {
	0%   { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

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

@keyframes pulse {
	0%, 100% { opacity: 0.06; }
	50%      { opacity: 0.12; }
}

@keyframes heroGlow {
	0%, 100% { opacity: 0.08; transform: scale(1); }
	50%      { opacity: 0.15; transform: scale(1.05); }
}

/* ========================================
   Hero Entrance Sequence
======================================== */
.hero__label,
.hero__title,
.hero__desc,
.hero__btns,
.hero__features {
	opacity: 0;
}

.hero.is-loaded .hero__label {
	animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero.is-loaded .hero__title {
	animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.hero.is-loaded .hero__desc {
	animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero.is-loaded .hero__btns {
	animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.hero.is-loaded .hero__features {
	animation: fadeIn 1s ease 1.1s forwards;
}

/* Hero background glow */
.hero::before {
	animation: heroGlow 6s ease-in-out infinite;
}

/* Hero floating feature icons */
.hero__feature-icon {
	animation: floatY 4s ease-in-out infinite;
}

.hero__feature:nth-child(2) .hero__feature-icon { animation-delay: 1.2s; }
.hero__feature:nth-child(3) .hero__feature-icon { animation-delay: 2.4s; }

/* ========================================
   Scroll Reveal — Section Level
======================================== */
.js-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ========================================
   Stagger Children — Grid Items
======================================== */
.js-stagger > * {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-stagger.is-visible > *:nth-child(1)  { transition-delay: 0.05s; }
.js-stagger.is-visible > *:nth-child(2)  { transition-delay: 0.12s; }
.js-stagger.is-visible > *:nth-child(3)  { transition-delay: 0.19s; }
.js-stagger.is-visible > *:nth-child(4)  { transition-delay: 0.26s; }
.js-stagger.is-visible > *:nth-child(5)  { transition-delay: 0.33s; }
.js-stagger.is-visible > *:nth-child(6)  { transition-delay: 0.40s; }
.js-stagger.is-visible > *:nth-child(7)  { transition-delay: 0.47s; }
.js-stagger.is-visible > *:nth-child(8)  { transition-delay: 0.54s; }

.js-stagger.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Ranking Items — Slide In
======================================== */
.ranking__list .ranking__item {
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ranking__list.is-visible .ranking__item:nth-child(1) { transition-delay: 0.05s; }
.ranking__list.is-visible .ranking__item:nth-child(2) { transition-delay: 0.13s; }
.ranking__list.is-visible .ranking__item:nth-child(3) { transition-delay: 0.21s; }
.ranking__list.is-visible .ranking__item:nth-child(4) { transition-delay: 0.29s; }
.ranking__list.is-visible .ranking__item:nth-child(5) { transition-delay: 0.37s; }

.ranking__list.is-visible .ranking__item {
	opacity: 1;
	transform: translateX(0);
}

/* ========================================
   Section Divider — Grow Animation
======================================== */
.section__divider {
	width: 0;
	transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.js-reveal.is-visible .section__divider,
.is-visible .section__divider {
	width: 32px;
}

/* ========================================
   Counter Number — Scale Pop
======================================== */
.intro__num {
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro__num.is-counted {
	transform: scale(1);
	animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ========================================
   Category Cards — Alternating Slide
======================================== */
.categories__grid .category__card {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            background 0.3s ease;
}

.categories__grid.is-visible .category__card:nth-child(1) { transition-delay: 0.05s; }
.categories__grid.is-visible .category__card:nth-child(2) { transition-delay: 0.10s; }
.categories__grid.is-visible .category__card:nth-child(3) { transition-delay: 0.15s; }
.categories__grid.is-visible .category__card:nth-child(4) { transition-delay: 0.20s; }
.categories__grid.is-visible .category__card:nth-child(5) { transition-delay: 0.25s; }
.categories__grid.is-visible .category__card:nth-child(6) { transition-delay: 0.30s; }

.categories__grid.is-visible .category__card {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Popular Cards — Stagger
======================================== */
.popular__cards .popular__card {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            background 0.3s ease;
}

.popular__cards.is-visible .popular__card:nth-child(1) { transition-delay: 0.05s; }
.popular__cards.is-visible .popular__card:nth-child(2) { transition-delay: 0.10s; }
.popular__cards.is-visible .popular__card:nth-child(3) { transition-delay: 0.12s; }
.popular__cards.is-visible .popular__card:nth-child(4) { transition-delay: 0.17s; }
.popular__cards.is-visible .popular__card:nth-child(5) { transition-delay: 0.22s; }
.popular__cards.is-visible .popular__card:nth-child(6) { transition-delay: 0.27s; }
.popular__cards.is-visible .popular__card:nth-child(7) { transition-delay: 0.32s; }
.popular__cards.is-visible .popular__card:nth-child(8) { transition-delay: 0.37s; }

.popular__cards.is-visible .popular__card {
	opacity: 1;
	transform: scale(1);
}

/* ========================================
   CTA — Background Pulse
======================================== */
.cta::before {
	animation: pulse 4s ease-in-out infinite;
}

.cta__inner {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta.is-visible .cta__inner {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Button Shimmer on Hover
======================================== */
.hero__btn--primary,
.cta__btn {
	position: relative;
	overflow: hidden;
}

.hero__btn--primary::after,
.cta__btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
	transition: none;
	pointer-events: none;
}

.hero__btn--primary:hover::after,
.cta__btn:hover::after {
	animation: shimmer 0.6s ease forwards;
}

/* ========================================
   FAQ Items — Stagger
======================================== */
.faq__list .faq__item {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.3s ease;
}

.faq__list.is-visible .faq__item:nth-child(1) { transition-delay: 0.05s; }
.faq__list.is-visible .faq__item:nth-child(2) { transition-delay: 0.12s; }
.faq__list.is-visible .faq__item:nth-child(3) { transition-delay: 0.19s; }
.faq__list.is-visible .faq__item:nth-child(4) { transition-delay: 0.26s; }

.faq__list.is-visible .faq__item {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Article Cards — Stagger
======================================== */
.articles__grid .article__card {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.3s ease;
}

.articles__grid.is-visible .article__card:nth-child(1) { transition-delay: 0.05s; }
.articles__grid.is-visible .article__card:nth-child(2) { transition-delay: 0.13s; }
.articles__grid.is-visible .article__card:nth-child(3) { transition-delay: 0.21s; }
.articles__grid.is-visible .article__card:nth-child(4) { transition-delay: 0.29s; }
.articles__grid.is-visible .article__card:nth-child(5) { transition-delay: 0.37s; }
.articles__grid.is-visible .article__card:nth-child(6) { transition-delay: 0.45s; }

.articles__grid.is-visible .article__card {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Reduced Motion
======================================== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.js-reveal,
	.js-stagger > *,
	.ranking__list .ranking__item,
	.categories__grid .category__card,
	.popular__cards .popular__card,
	.faq__list .faq__item,
	.articles__grid .article__card,
	.cta__inner,
	.hero__label,
	.hero__title,
	.hero__desc,
	.hero__btns,
	.hero__features {
		opacity: 1 !important;
		transform: none !important;
	}
	.section__divider { width: 32px !important; }
}
