@font-face{
  font-family:"GmarketSans";
  src:url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff") format("woff");
  font-weight:300;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"GmarketSans";
  src:url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"GmarketSans";
  src:url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}
:root{
  --ink:#271c35;
  --muted:#745d84;
  --line:#ead4ef;
  --soft:#fff6fc;
  --panel:#ffffff;
  --pink:#f6c9e3;
  --pink-strong:#df7fbd;
  --violet:#7a4cc2;
  --violet-deep:#4a2878;
  --mint:#42d5c8;
  --shadow:0 22px 60px rgba(94,53,130,.14);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"GmarketSans";
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(246,201,227,.56), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(210,196,255,.52), transparent 32%),
    linear-gradient(180deg,#fff9fd 0%,#f8efff 100%);
  line-height:1.72;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.site{
  width:min(1160px,calc(100% - 40px));
  margin:0 auto;
}
.topbar{
  position:sticky;
  top:0;
  z-index:5;
  background:rgba(255,249,253,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:210px;
}
.brand img{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#fff;
}
.brand-title{
  display:block;
  font-weight:700;
  font-size:20px;
  letter-spacing:0;
  color:var(--violet-deep);
}
.brand-sub{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:500;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}
.nav a{
  padding:9px 12px;
  border-radius:8px;
  color:#634a74;
  font-size:14px;
  font-weight:700;
}
.nav a:hover,.nav a.active{
  background:#f4e5f8;
  color:var(--violet-deep);
}
.hero{
  min-height:520px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  align-items:center;
  gap:56px;
  padding:72px 0 42px;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--violet);
  font-weight:700;
  letter-spacing:0;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(42px,7vw,86px);
  line-height:.98;
  letter-spacing:0;
  margin-bottom:24px;
  color:var(--violet-deep);
}
h2{
  font-size:clamp(26px,4vw,42px);
  line-height:1.16;
  color:var(--violet-deep);
  margin-bottom:14px;
}
h3{
  font-size:20px;
  color:#372347;
  margin-bottom:8px;
}
.lead{
  font-size:19px;
  color:#604a70;
  max-width:720px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:8px;
  border:1px solid #d7b8e7;
  background:#fff;
  color:var(--violet-deep);
  font-weight:700;
}
.button.primary{
  background:linear-gradient(135deg,#f6a9d6,#9170db);
  color:#fff;
  border-color:transparent;
  box-shadow:0 14px 34px rgba(145,112,219,.25);
}
.tool-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.button.small{
  min-height:40px;
  padding:9px 14px;
  font-size:14px;
}
.hero-figure{
  align-self:end;
  position:relative;
}
.hero-figure:before{
  content:"";
  position:absolute;
  inset:38px 8px 0;
  background:linear-gradient(135deg,#ffe5f5,#e7dcff);
  border:1px solid #edd2f2;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.hero-figure img{
  position:relative;
  width:100%;
  max-height:460px;
  object-fit:contain;
}
.section{
  padding:54px 0;
  border-top:1px solid rgba(234,212,239,.72);
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}
.section-head p{
  color:var(--muted);
  max-width:560px;
  margin-bottom:0;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:8px;
  padding:24px;
  box-shadow:0 12px 34px rgba(74,40,120,.08);
}
.card p,.article p,.article li{color:#655071}
.card-link{
  min-height:178px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card-link:hover{
  transform:translateY(-3px);
  border-color:#d7aee8;
  box-shadow:0 18px 42px rgba(122,76,194,.16);
}
.card-meta{
  margin-top:18px;
  color:var(--violet);
  font-size:13px;
  font-weight:700;
}
.article-shell{
  padding:54px 0 70px;
}
.article{
  max-width:860px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:8px;
  padding:38px;
  box-shadow:var(--shadow);
}
.article h1{
  font-size:clamp(34px,5vw,56px);
  margin-bottom:16px;
}
.article-title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}
.article-title-row h1{
  margin-bottom:0;
}
.article h2{
  font-size:28px;
  margin-top:38px;
}
.article ul{
  padding-left:22px;
}
.note{
  border-left:4px solid var(--pink-strong);
  background:#fff2fa;
  padding:16px 18px;
  border-radius:8px;
  color:#604a70;
}
.directory{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:24px;
  align-items:start;
}
.side-panel{
  position:sticky;
  top:102px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:8px;
  padding:20px;
}
.side-panel a{
  display:block;
  padding:10px 0;
  color:#604a70;
  font-weight:700;
  border-bottom:1px solid #f0dff3;
}
.side-panel a:last-child{border-bottom:0}
.footer{
  border-top:1px solid var(--line);
  padding:34px 0 46px;
  color:#7a6388;
  font-size:14px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer a{font-weight:700;color:var(--violet-deep)}
@media (max-width:880px){
  .topbar-inner{align-items:flex-start;flex-direction:column;padding:14px 0}
  .nav{justify-content:flex-start}
  .hero{grid-template-columns:1fr;gap:22px;padding-top:48px}
  .hero-figure{max-width:320px;margin:0 auto}
  .grid,.grid.two,.directory{grid-template-columns:1fr}
  .section-head{align-items:flex-start;flex-direction:column}
  .side-panel{position:static}
  .article-title-row{flex-direction:column}
}
@media (max-width:560px){
  .site{width:min(100% - 24px,1160px)}
  .article{padding:24px}
  .nav a{padding:8px 9px;font-size:13px}
}
