/* =========================================================
   LINKHOUSE – Purple Landing (Dark · Clean · Super-Rounded)
   ========================================================= */

/* Web fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
@font-face{
  font-family:'BMJua';
  src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_three@1.0/BMJUA.woff') format('woff');
  font-weight:400; font-style:normal; font-display:swap;
}
/* 둥글둥글 폰트 보강 */
@font-face{
  font-family:'JalnanGothic';
  src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.0/JalnanGothic.woff') format('woff');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'TmoneyRound';
  src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/TmoneyRoundWindExtraBold.woff') format('woff');
  font-weight:800; font-style:normal; font-display:swap;
}

/* ===== Design Tokens (Purple) ===== */
:root{
  --bg:#221b36;          /* 최상위 배경(짙은 퍼플)   */
  --ink:#f4f3fb;         /* 본문 텍스트(밝은 흰보라) */
  --muted:#c9c5de;       /* 보조 텍스트               */
  --accent:#b16bff;      /* 메인 포인트               */
  --accent-2:#8757ff;    /* 짙은 포인트               */
  --accent-3:#5a39ff;    /* Hover 강조                */
  --panel:#2b2246;       /* 카드/블럭 배경            */
  --panel-2:#312759;     /* 패널 변형                 */
  --border:#43386a;      /* 보더                       */
  --shadow:0 14px 32px rgba(0,0,0,.35);
  --radius:14px;
  --maxw:720px;
}

/* ===== Reset / Base ===== */
*{box-sizing:border-box}
html,body{
  margin:0; padding:0; background:var(--bg); color:var(--ink);
  font-family: Pretendard, ui-sans-serif, -apple-system, Segoe UI, Roboto,
    "Apple SD Gothic Neo", Malgun Gothic, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

/* ===== Layout Container ===== */
.wrap{max-width:var(--maxw); margin:0 auto; padding:28px 18px 72px}

/* ===== Brand / Logo ===== */
.logo{ text-align:center; margin:8px 0 22px; }

/* 라운드한 느낌 강화 */
.logo .ko{
  font-family:'JalnanGothic','TmoneyRound','BMJua', Pretendard, system-ui;
  font-weight:800;
  font-size:64px; line-height:1.04; letter-spacing:-.03em;
  color:#8e5aff;                  /* 보라색 로고 */
  text-shadow:0 18px 40px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.18);
}
.logo .en{
  font-family:'Poppins'; font-weight:700; letter-spacing:.38em;
  font-size:12px; margin-top:6px; color:#fbe6f1; opacity:.9;
}

/* ===== Top Badge ===== */
.badge{
  text-align:center; font-size:12px; color:#e9defc; opacity:.9;
  margin-top:6px;
}

/* ===== Hero Card ===== */
.hero{
  margin-top:22px; padding:22px 20px;
  background:linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border:1px solid var(--border); border-radius:var(--radius);
  box-shadow:var(--shadow); text-align:center;
}
.hero h2{
  font-family:'JalnanGothic','TmoneyRound','BMJua', sans-serif;
  font-weight:800; font-size:40px; margin:6px 0 8px; letter-spacing:-.02em;
}
.hero p{margin:6px 0; color:var(--muted); line-height:1.6}

/* 작은 링크 라인 */
.hero .links{margin-top:12px; color:#e8e5ff; font-size:13px}
.hero .links a{opacity:.95}
.hero .links a:hover{color:#fff}

/* CTA 버튼 */
.cta{
  display:inline-block; margin-top:16px; padding:14px 20px;
  background:linear-gradient(180deg,var(--accent) 0%,var(--accent-2) 100%);
  color:#20153e; font-weight:900; border-radius:12px;
  box-shadow:0 8px 26px rgba(137,109,255,.45);
}
.cta:hover{filter:brightness(1.07) saturate(1.06)}

/* ===== Section ===== */
.section{
  margin:40px 0 0; padding:22px 20px;
  background:linear-gradient(180deg, #261f43 0%, #241d3e 100%);
  border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow);
}
.section h3{
  font-family:'JalnanGothic','TmoneyRound','BMJua'; font-weight:800;
  font-size:34px; margin:4px 0 2px; text-align:center; letter-spacing:-.02em;
}
.section .subtitle{
  text-align:center; color:#dcd7fb; font-weight:700; margin-bottom:18px;
}
.section p{color:#eae6ff; line-height:1.9; margin:10px 0}
.section em{color:#fff}

/* 큰 로고 박스 */
.biglogo{
  margin-top:24px; background:#3a2f66; border:1px dashed #7b6cc8;
  border-radius:16px; padding:22px; text-align:center;
}
.biglogo .mark{
  font-family:'JalnanGothic','TmoneyRound','BMJua';
  font-weight:800; font-size:56px; letter-spacing:-.02em;
  color:#b9a6ff;                  /* 보라색으로 교체 */
  text-shadow:0 10px 26px rgba(0,0,0,.35);
}
.biglogo .sub{font-family:'Poppins'; letter-spacing:.35em; color:#f7eafd}

/* 푸터 */
.footer{margin-top:38px; text-align:center; color:#bfb7e4; font-size:13px}
