
:root{
  --bg1:#fff6fb;
  --bg2:#f4edff;
  --bg3:#ffe9dd;
  --card:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.65);
  --text:#5d466b;
  --heading:#ff6d92;
  --heading2:#f07a57;
  --primary:#6d7cff;
  --shadow:0 18px 48px rgba(163, 128, 183, .18);
  --radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Pretendard","Noto Sans KR","Apple SD Gothic Neo","Malgun Gothic",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.8), transparent 22%),
    radial-gradient(circle at 85% 28%, rgba(255,255,255,.75), transparent 20%),
    linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 100%);
  min-height:100vh;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38)),
    url("./assets/soft-bg.png") center/cover no-repeat;
  opacity:.55;
  pointer-events:none;
  z-index:-2;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.9) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.75) 0 1.5px, transparent 1.5px 100%),
    radial-gradient(circle at 70% 18%, rgba(255,255,255,.85) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.8) 0 2px, transparent 2px 100%);
  background-size: 280px 280px, 320px 320px, 380px 380px, 420px 420px;
  opacity:.28;
  pointer-events:none;
  z-index:-1;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(18px);
  background:rgba(255,255,255,.42);
  border-bottom:1px solid rgba(255,255,255,.55);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand img{
  width:56px;
  height:56px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(255,122,167,.18);
  background:#fff;
}
.brand-text{
  font-weight:800;
  font-size:1.35rem;
  letter-spacing:-0.03em;
  background:linear-gradient(90deg, var(--heading), var(--heading2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav a{
  padding:12px 16px;
  border-radius:999px;
  font-weight:600;
  color:#715a7d;
}
.nav a.active{
  background:rgba(255,255,255,.66);
  box-shadow:var(--shadow);
}
.nav .cta{
  background:linear-gradient(135deg, #7a84ff, #6b65ff);
  color:#fff;
  box-shadow:0 16px 36px rgba(108,108,255,.28);
}

.hero{
  padding:44px 0 28px;
}
.hero-shell{
  display:grid;
  grid-template-columns: 440px 1fr;
  gap:34px;
  align-items:center;
}
.hero-visual{
  position:relative;
  padding:26px;
  border-radius:36px;
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.28));
  border:1px solid rgba(255,255,255,.62);
  box-shadow:var(--shadow);
}
.hero-visual::after{
  content:"";
  position:absolute;
  inset:auto 26px 10px 26px;
  height:46px;
  border-radius:50%;
  background:radial-gradient(ellipse at center, rgba(255,168,198,.36), transparent 72%);
  filter:blur(10px);
}
.hero-visual img{
  position:relative;
  z-index:1;
}

.hero-copy{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  align-self:flex-start;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(255,255,255,.7);
  font-weight:700;
  color:#7e6286;
}
h1{
  margin:0;
  font-size:clamp(2.6rem, 5vw, 4.6rem);
  line-height:1.02;
  letter-spacing:-0.05em;
}
.gradient-title{
  background:linear-gradient(90deg, var(--heading), var(--heading2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.subtitle{
  margin:0;
  font-size:clamp(1.1rem, 2vw, 1.6rem);
  color:#725b84;
  font-weight:600;
  letter-spacing:-0.03em;
}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag{
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  color:#fff;
  box-shadow:0 10px 22px rgba(255,255,255,.1);
}
.tag:nth-child(1){background:linear-gradient(135deg,#ff9fc2,#ff7ea5)}
.tag:nth-child(2){background:linear-gradient(135deg,#b3a0ff,#8f84ff)}
.tag:nth-child(3){background:linear-gradient(135deg,#9cc9ff,#7ea6ff)}
.tag:nth-child(4){background:linear-gradient(135deg,#ffcf9a,#f8ab64)}

.notice-card{
  margin-top:4px;
  padding:24px 26px;
  border-radius:30px;
  background:rgba(255,255,255,.54);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow);
}
.notice-card h2{
  margin:0 0 12px;
  font-size:1.28rem;
  letter-spacing:-0.03em;
  color:#90578b;
}
.notice-card p{
  margin:8px 0;
  line-height:1.75;
  font-size:1rem;
}
.notice-card strong{
  color:#7d4a85;
}
.contact{
  display:inline-block;
  margin-top:8px;
  font-weight:800;
  color:#f06f91;
}

.features{
  padding:10px 0 84px;
}
.section-title{
  margin:0 0 18px;
  font-size:1.45rem;
  letter-spacing:-0.03em;
  color:#7a5a87;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:18px;
}
.feature-card{
  padding:22px 20px;
  border-radius:28px;
  background:var(--card);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow);
  min-height:220px;
}
.feature-card .icon{
  font-size:2rem;
  margin-bottom:12px;
}
.feature-card h3{
  margin:0 0 12px;
  font-size:1.5rem;
  letter-spacing:-0.04em;
}
.feature-card p{
  margin:8px 0;
  line-height:1.7;
  font-weight:500;
}

.footer{
  padding:26px 0 50px;
  color:#826d8e;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.6);
}
.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.policy-page{
  padding:46px 0 90px;
}
.policy-card{
  padding:34px;
  border-radius:34px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(255,255,255,.74);
  box-shadow:var(--shadow);
}
.policy-card h1{
  font-size:clamp(2rem,4vw,3.2rem);
  margin-bottom:10px;
}
.policy-card .lead{
  margin:0 0 28px;
  line-height:1.8;
}
.policy-card section+section{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid rgba(221,198,231,.55);
}
.policy-card h2{
  margin:0 0 12px;
  color:#8d5b93;
  font-size:1.3rem;
}
.policy-card p, .policy-card li{
  line-height:1.9;
}
.policy-card ul{
  margin:10px 0 0 20px;
  padding:0;
}

@media (max-width: 1080px){
  .hero-shell{grid-template-columns:1fr;gap:22px}
  .hero-visual{max-width:540px;margin:0 auto}
  .feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 760px){
  .header-inner{flex-wrap:wrap}
  .nav{width:100%;overflow:auto;padding-bottom:4px}
  .nav a{white-space:nowrap}
  .container{width:min(100% - 20px, 1180px)}
  .hero{padding-top:24px}
  .hero-visual{padding:16px;border-radius:28px}
  .notice-card,.policy-card{padding:22px}
  .feature-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;align-items:flex-start}
}
