:root {
--bg: #0f0f14;
--bg-soft: #171721;
--card: rgba(255, 255, 255, 0.06);
--card-border: rgba(255, 255, 255, 0.12);
--text: #f5f5f7;
--muted: #bdbdc7;
--accent: #d8b4fe;
--accent-strong: #c084fc;
--accent-soft: rgba(216, 180, 254, 0.14);
--white-soft: rgba(255,255,255,0.72);
--shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
--radius-xl: 28px;
--radius-lg: 20px;
--max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", Arial, sans-serif;
background:
	radial-gradient(circle at top left, rgba(216,180,254,0.18), transparent 28%),
	radial-gradient(circle at 85% 20%, rgba(255,255,255,0.08), transparent 20%),
	linear-gradient(180deg, #0c0c11 0%, #101019 42%, #0f0f14 100%);
color: var(--text);
line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
width: min(calc(100% - 40px), var(--max));
margin: 0 auto;
}

.site-header {
position: sticky;
top: 0;
z-index: 20;
backdrop-filter: blur(18px);
background: rgba(12, 12, 18, 0.62);
border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
min-height: 74px;
}

.logo {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 1.05rem;
font-weight: 700;
letter-spacing: 0.02em;
}

.logo-mark {
width: 34px;
height: 34px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent), rgba(255,255,255,0.95));
box-shadow: 0 8px 22px rgba(192,132,252,0.35);
}

.nav {
display: flex;
align-items: center;
gap: 18px;
color: var(--white-soft);
font-size: 0.96rem;
}

.nav a:hover { color: var(--text); }

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 50px;
padding: 0 22px;
border-radius: 999px;
font-weight: 700;
transition: 0.25s ease;
border: 1px solid transparent;
cursor: pointer;
}

.btn-primary {
background: linear-gradient(135deg, var(--accent), var(--accent-strong));
color: #120b18;
box-shadow: 0 14px 32px rgba(192,132,252,0.28);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 18px 38px rgba(192,132,252,0.35);
}

.btn-secondary {
border-color: rgba(255,255,255,0.14);
background: rgba(255,255,255,0.04);
color: var(--text);
}

.btn-secondary:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.22);
}

.hero {
padding: 86px 0 48px;
}

.hero-grid {
display: grid;
grid-template-columns: 1.08fr 0.92fr;
gap: 34px;
align-items: center;
}

.eyebrow {
display: inline-flex;
padding: 8px 14px;
border-radius: 999px;
background: var(--accent-soft);
color: #ebd7ff;
font-size: 0.9rem;
font-weight: 700;
margin-bottom: 20px;
border: 1px solid rgba(216,180,254,0.22);
}

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
font-size: clamp(2.4rem, 4vw, 4.8rem);
line-height: 1.08;
letter-spacing: -0.03em;
margin-bottom: 18px;
}

.hero p {
font-size: 1.08rem;
color: var(--muted);
max-width: 640px;
margin-bottom: 28px;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-bottom: 28px;
}

.hero-meta {
display: flex;
flex-wrap: wrap;
gap: 12px;
color: var(--white-soft);
font-size: 0.95rem;
}

.hero-meta span {
padding: 8px 12px;
border-radius: 999px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
}

.hero-visual {
position: relative;
min-height: 520px;
border-radius: var(--radius-xl);
background:
	linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
	url('/wp-content/uploads/2026/03/딸팡플레이.jpg') center/cover;
overflow: hidden;
box-shadow: var(--shadow);
border: 1px solid rgba(255,255,255,0.1);
}

.hero-visual::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(15,15,20,0.12), rgba(15,15,20,0.72));
}

.floating-card {
position: absolute;
z-index: 1;
backdrop-filter: blur(3px);
background: rgba(18, 18, 27, 20%));
border: 1px solid rgba(255,255,255,0.1);
border-radius: 18px;
box-shadow: 0 12px 30px rgba(0,0,0,0.28);
padding: 18px;
color: var(--text);
}

.floating-card.small {
width: 180px;
top: 26px;
right: 22px;
}

.floating-card.large {
width: min(86%, 360px);
left: 22px;
bottom: 22px;
}

.floating-label {
display: block;
font-size: 0.82rem;
color: var(--muted);
margin-bottom: 8px;
}

.floating-title {
font-weight: 700;
font-size: 1.02rem;
margin-bottom: 10px;
}
.floating-title a {
	border:none;
	font-size:1.2em;
}

.mini-list {
display: grid;
gap: 10px;
padding: 0;
margin: 0;
list-style: none;
font-size: 0.93rem;
color: var(--white-soft);
}

.mini-list li {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 10px 12px;
background: rgba(255,255,255,0.04);
border-radius: 12px;
}

.status {
font-size: 0.8rem;
color: #f3ddff;
background: rgba(216,180,254,0.18);
padding: 4px 9px;
border-radius: 999px;
white-space: nowrap;
}

section {
padding: 48px 0;
}

.section-head {
margin-bottom: 26px;
}

.section-head h2 {
	font-size:clamp(1.8rem, 2.4vw, 3rem);
	line-height:1.15;
	margin-bottom:12px;
	letter-spacing:-0.02em;
	text-align:center;
}

.section-head p {
color: var(--muted);
margin-bottom: 0;
}

.grid-1 {
display: grid;
grid-template-columns: 1fr;
gap: 22px;
}

.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 22px;
}

.card {
background: var(--card);
border: 1px solid var(--card-border);
border-radius: var(--radius-lg);
padding: 28px;
box-shadow: var(--shadow);
}

.card h3 {
font-size: 1.2rem;
margin-bottom: 10px;
}

.card p,
.card li,
.table-wrap,
.step,
.faq-item p {
color: var(--muted);
}

.reason-list,
.feature-list,
.step-list,
.faq-list {
display: grid;
gap: 18px;
}

.icon-badge {
width: 46px;
height: 46px;
border-radius: 14px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
background: rgba(216,180,254,0.14);
border: 1px solid rgba(216,180,254,0.2);
margin-bottom: 16px;
}

.feature-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}

.compare-table {
width: 100%;
border-collapse: collapse;
overflow: hidden;
border-radius: 18px;
}

.compare-table th,
.compare-table td {
padding: 16px 14px;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.08);
font-size: 0.96rem;
}

.compare-table th {
color: var(--text);
background: rgba(255,255,255,0.04);
font-weight: 700;
}

.compare-table tr:last-child td {
border-bottom: none;
}

.steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}

.step-number {
display: inline-flex;
width: 42px;
height: 42px;
border-radius: 50%;
align-items: center;
justify-content: center;
font-weight: 800;
background: linear-gradient(135deg, var(--accent), var(--accent-strong));
color: #1b1220;
margin-bottom: 16px;
}

.cta-box {
position: relative;
overflow: hidden;
padding: 42px;
border-radius: var(--radius-xl);
background:
	radial-gradient(circle at 20% 20%, rgba(216,180,254,0.22), transparent 30%),
	linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
border: 1px solid rgba(255,255,255,0.1);
box-shadow: var(--shadow);
}

.cta-box h2 {
font-size: clamp(1.8rem, 2.8vw, 3rem);
line-height: 1.14;
margin-bottom: 14px;
}

.cta-box p {
color: var(--muted);
max-width: 680px;
margin-bottom: 24px;
}

.faq-item {
padding: 22px 24px;
border-radius: 18px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
}

.faq-item h3 {
font-size: 1.02rem;
margin-bottom: 8px;
}

.site-footer {
padding: 34px 0 50px;
color: var(--muted);
font-size: 0.94rem;
}

.footer-inner {
display: flex;
justify-content: space-between;
gap: 18px;
flex-wrap: wrap;
padding-top: 18px;
border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 1024px) {
.hero-grid,
.grid-2,
.feature-grid,
.steps {
	grid-template-columns: 1fr;
}

.hero-visual {
	min-height: 420px;
}
}

@media (max-width: 720px) {
.container {
	width: min(calc(100% - 28px), var(--max));
}

.nav {
	display: none;
}

.hero {
	padding-top: 54px;
}

.hero h1 {
	font-size: 2.2rem;
}

.card,
.cta-box {
	padding: 22px;
}

.floating-card.small {
	width: 150px;
}

.floating-card.large {
	width: calc(100% - 44px);
}
}

table.major_content_preview {
	width:100%;
	border:1px solid var(--card-border);
	border-left:0;border-bottom:0;
	color:var(--muted);
}
table.major_content_preview th {
	border-width:0px 0px 1px 1px;
	border-bottom-style:solid;
	border-left-style:solid;
	border-bottom-color:var(--card-border);
	border-left-color:var(--card-border);
}
table.major_content_preview td {
	border-width:0px 0px 1px 1px;
	border-bottom-style:solid;
	border-left-style:solid;
	border-bottom-color:var(--card-border);
	border-left-color:var(--card-border);
	text-align:center;
}

div.quotation_wrap {
	color:var(--muted);
	border:1px solid var(--card-border);
	padding:10px;
	background:var(--card);
}
div.quotation_wrap .content {
	text-align:left;
	margin-bottom:5px;
}
div.quotation_wrap .author {
	text-align:right;
}

div.section_img_wrap {
	text-align:center;
}
div.section_img_wrap img {
	width:520px;
	margin:0 auto;
	box-shadow:var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius:var(--radius-xl);
}