
@font-face{font-family:GmarketSans;src:url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');font-weight:300;font-display:swap}
@font-face{font-family:GmarketSans;src:url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');font-weight:500;font-display:swap}
@font-face{font-family:GmarketSans;src:url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');font-weight:700;font-display:swap}
:root{
  --max:1180px;
  --gutter:24px;
  --pink:#f53674;
  --pink-2:#ff5a91;
  --pink-soft:#fff2f7;
  --ink:#15171d;
  --muted:#70747e;
  --muted-2:#8f929a;
  --line:#eee8ed;
  --card:#fff;
  --shadow:0 22px 70px rgba(25,25,40,.075);
  --soft-shadow:0 13px 32px rgba(25,25,40,.075);
  --r-lg:30px;
  --r-md:22px;
  --r-sm:16px;
  --font:GmarketSans,-apple-system,BlinkMacSystemFont,'Apple SD Gothic Neo','Noto Sans KR',sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  font-weight:500;
  letter-spacing:-.035em;
  color:var(--ink);
  background:
    radial-gradient(circle at 80px 130px,rgba(245,54,116,.065),transparent 110px),
    radial-gradient(circle at 88% 22%,rgba(245,54,116,.095),transparent 300px),
    linear-gradient(180deg,#fff 0%,#fff8fb 52%,#fff 100%);
  overflow-x:hidden;
}
.sprite{position:absolute;overflow:hidden}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
svg{width:1em;height:1em;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}

.site-header{
  width:min(var(--max),calc(100% - var(--gutter)*2));
  height:78px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:32px;
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
  font-size:29px;
  font-weight:700;
  line-height:1;
  letter-spacing:-.045em;
}
.brand img{width:42px;height:42px;border-radius:13px;object-fit:cover}
.brand.small{
  display:inline-flex;
  flex-direction:row;
  align-items:center;
  gap:10px;
  font-size:20px;
  font-weight:700;
  line-height:1;
}
.brand.small img{width:30px;height:30px;border-radius:10px}

.nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:42px;
  font-size:15px;
  font-weight:500;
  color:#24262c;
}
.nav a{display:inline-flex;align-items:center;height:40px;white-space:nowrap}
.download-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:48px;
  padding:0 27px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--pink-2),var(--pink));
  color:white;
  font-weight:700;
  font-size:16px;
  box-shadow:0 18px 34px rgba(245,54,116,.20);
  transition:transform .2s ease,box-shadow .2s ease;
}
.download-btn:hover,.btn:hover,.cta-button:hover{transform:translateY(-3px);box-shadow:0 24px 45px rgba(245,54,116,.24)}

main,.footer{width:min(var(--max),calc(100% - var(--gutter)*2));margin:0 auto}
.section{padding:58px 0 26px}
.hero{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(470px,.98fr);
  gap:64px;
  align-items:center;
  min-height:660px;
}
.eyebrow{
  display:inline-flex;
  padding:9px 17px;
  border:1px solid rgba(245,54,116,.17);
  border-radius:999px;
  background:#fff3f8;
  color:var(--pink);
  font-size:15px;
  font-weight:500;
}
.hero h1{
  margin:22px 0 20px;
  padding-bottom:.12em;
  font-size:58px;
  line-height:1.28;
  font-weight:700;
  letter-spacing:-.055em;
  overflow:visible;
}
.hero h1 em{font-style:normal;color:var(--pink)}
.lead{
  margin:0 0 34px;
  font-size:19px;
  line-height:1.72;
  color:#3a3e48;
  font-weight:500;
  letter-spacing:-.03em;
}
.benefit-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:540px;
  margin:0 0 42px;
}
.benefit{
  display:grid;
  grid-template-columns:52px 1fr;
  grid-template-rows:auto auto;
  gap:4px 14px;
  align-items:center;
  min-height:60px;
}
.benefit .iconbox{grid-row:1 / span 2}
.iconbox,.step-icon,.privacy-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(180deg,#fff6fa,#ffeaf2);
  display:grid;
  place-items:center;
  color:var(--pink);
  box-shadow:inset 0 0 0 1px rgba(245,54,116,.08);
}
.iconbox svg,.step-icon svg,.privacy-icon svg{width:27px;height:27px}
.benefit strong{
  align-self:end;
  font-size:16px;
  font-weight:700;
  line-height:1.2;
}
.benefit small{
  align-self:start;
  font-size:13px;
  color:var(--muted);
  font-weight:300;
  line-height:1.3;
}
.actions{display:flex;gap:24px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:60px;
  min-width:220px;
  border-radius:14px;
  font-size:17px;
  font-weight:700;
  transition:transform .2s ease,box-shadow .2s ease;
}
.primary{background:linear-gradient(135deg,var(--pink-2),var(--pink));color:#fff;box-shadow:0 16px 35px rgba(245,54,116,.20)}
.secondary{background:#fff;border:1px solid #e8e2e8;box-shadow:0 14px 30px rgba(20,20,30,.035)}

.hero-art{position:relative;min-height:648px}
.hero-art:before{
  content:'';
  position:absolute;
  width:520px;
  height:520px;
  left:30px;
  top:54px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(245,54,116,.10),transparent 64%);
  filter:blur(10px);
}
.phone-shell{
  position:relative;
  width:362px;
  height:646px;
  margin:0 auto;
  padding:12px;
  border-radius:48px;
  background:#111;
  box-shadow:0 32px 70px rgba(20,20,30,.28),inset 0 0 0 2px rgba(255,255,255,.14);
  animation:float 5.5s ease-in-out infinite;
}
.dynamic-island{
  position:absolute;
  left:50%;
  top:23px;
  transform:translateX(-50%);
  width:118px;
  height:31px;
  border-radius:999px;
  background:#030305;
  z-index:5;
}
.phone-screen{
  height:100%;
  border-radius:38px;
  overflow:hidden;
  background:#fff;
  display:grid;
  grid-template-rows:31% 29% 40%;
}
.panel-img{position:relative;overflow:hidden}
.panel-img img{width:100%;height:100%;object-fit:cover}
.receipt-panel img{object-fit:cover}
.face-box{
  position:absolute;
  border:3px solid var(--pink);
  border-radius:15px;
  box-shadow:0 0 0 1px rgba(255,255,255,.28),0 0 18px rgba(245,54,116,.25);
}
.f1{left:20px;top:20px;width:79px;height:108px}
.f2{left:132px;top:18px;width:78px;height:110px}
.f3{left:245px;top:21px;width:75px;height:106px}

.floating-chip{
  position:absolute;
  right:0;
  width:194px;
  height:62px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 18px;
  background:rgba(255,255,255,.93);
  border:1px solid rgba(20,20,30,.06);
  box-shadow:0 16px 35px rgba(20,20,30,.14);
  backdrop-filter:blur(16px);
  font-weight:500;
  font-size:17px;
  line-height:1;
  animation:chip 4s ease-in-out infinite;
}
.floating-chip svg{color:var(--pink);font-size:25px;flex:0 0 auto}
.chip-face{top:104px}
.chip-car{top:190px;animation-delay:.15s}
.chip-receipt{top:276px;animation-delay:.3s}
.chip-phone{top:362px;animation-delay:.45s}
.chip-mail{top:448px;animation-delay:.6s}

.panel{
  margin:32px 0;
  padding:38px 38px 36px;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  background:rgba(255,255,255,.86);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}
.panel h2{
  text-align:center;
  margin:0;
  font-size:32px;
  font-weight:700;
  line-height:1.25;
  letter-spacing:-.05em;
}
.underline{width:48px;height:5px;border-radius:999px;background:var(--pink);margin:16px auto 38px}
.step-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  align-items:start;
}
.step{
  position:relative;
  text-align:center;
  padding:0 24px;
  border-right:1px solid #ece7ed;
}
.step:last-child{border-right:0}
.step:not(:last-child):after{
  content:'›';
  position:absolute;
  right:-10px;
  top:48%;
  transform:translateY(-50%);
  font-size:38px;
  line-height:1;
  font-weight:300;
  color:var(--pink);
}
.step-icon{margin:0 auto 15px}
.step h3{
  margin:0 0 9px;
  font-size:17px;
  font-weight:700;
  line-height:1.35;
}
.step p{
  height:48px;
  margin:0 0 17px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  font-weight:300;
}
.step img{
  width:100%;
  height:105px;
  object-fit:cover;
  border-radius:13px;
  box-shadow:var(--soft-shadow);
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
  align-items:start;
}
.feature-card{
  display:grid;
  grid-template-rows:128px auto auto;
  text-align:center;
  min-width:0;
  align-items:start;
}
.feature-card img{
  width:100%;
  height:128px;
  object-fit:cover;
  border-radius:15px;
  background:#fff7fa;
  box-shadow:0 13px 28px rgba(20,20,30,.055);
}
.feature-card:nth-child(n+3) img{
  object-fit:contain;
  padding:8px;
}
.feature-card h3{
  margin:17px 0 6px;
  font-size:17px;
  font-weight:700;
  line-height:1.3;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.feature-card p{
  margin:0;
  font-size:14px;
  line-height:1.45;
  color:var(--muted);
  font-weight:300;
}
.note{
  text-align:center;
  margin:32px 0 0;
  color:#8b8e98;
  font-size:16px;
  font-weight:300;
}
.privacy{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:center;
  background:linear-gradient(115deg,#fff 0%,#fff3f8 100%);
}
.privacy-text{padding-left:44px}
.privacy-icon{margin-bottom:18px}
.privacy h2{text-align:left;line-height:1.34}
.privacy h2 em{font-style:normal;color:var(--pink)}
.privacy ul{list-style:none;margin:23px 0 0;padding:0}
.privacy li{
  position:relative;
  margin:12px 0;
  padding-left:29px;
  font-weight:500;
  color:#333842;
}
.privacy li:before{
  content:'✓';
  position:absolute;
  left:0;
  top:1px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--pink);
  color:#fff;
  font-size:11px;
  line-height:18px;
  text-align:center;
}
.privacy-art{
  width:min(500px,100%);
  margin:auto;
  filter:drop-shadow(0 28px 50px rgba(245,54,116,.13));
}
.cta{
  margin:36px 0 28px;
  padding:31px 54px;
  border-radius:20px;
  background:linear-gradient(135deg,#ff4f86,var(--pink));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  color:#fff;
  box-shadow:0 24px 55px rgba(245,54,116,.23);
}
.cta h2{margin:0 0 7px;font-size:27px;font-weight:700;line-height:1.3}
.cta p{margin:0;opacity:.92;font-weight:300}
.spark{float:left;font-size:42px;line-height:1;margin-right:19px}
.cta-button{
  height:62px;
  min-width:320px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  background:#fff;
  color:var(--pink);
  font-size:18px;
  font-weight:700;
  transition:transform .2s ease,box-shadow .2s ease;
}
.cta-button svg{width:22px}

.footer{
  padding:22px 0 50px;
  display:grid;
  grid-template-columns:1.45fr 1fr 1fr 1fr;
  gap:42px;
  align-items:start;
  color:#666b73;
}
.footer > div{display:flex;flex-direction:column;align-items:flex-start}
.footer h4{
  margin:0 0 14px;
  color:#1c1e25;
  font-size:16px;
  font-weight:700;
  line-height:1.3;
}
.footer p{
  margin:14px 0 0;
  max-width:330px;
  line-height:1.72;
  font-weight:300;
  color:#6f747d;
}
.footer a{
  display:block;
  margin:6px 0;
  font-weight:300;
  line-height:1.6;
  color:#666b73;
  word-break:break-all;
}
.footer a:hover{color:var(--pink)}
.copyright{
  grid-column:1/-1;
  text-align:center;
  color:#999;
  font-size:13px;
  font-weight:300;
  margin:0!important;
}

.legal-panel{margin-top:64px}
.legal-copy{
  max-width:820px;
  margin:0 auto;
  color:#3b3e46;
  line-height:1.85;
  font-size:17px;
}
.legal-copy.center{
  max-width:760px;
  text-align:center;
  color:#555;
  font-size:18px;
}
.language-block{
  padding:0 0 34px;
  border-bottom:1px solid var(--line);
}
.language-block+.language-block{margin-top:34px}
.language-block:last-child{
  padding-bottom:0;
  border-bottom:0;
}
.language-block.ko{color:#3b3e46}
.language-block h3{margin:24px 0 8px;font-size:22px;font-weight:700;color:var(--ink)}
.language-block h3:first-child{margin-top:0}
.mail-row{margin:28px 0}
.mail-row .btn{display:inline-flex}

[data-reveal]{opacity:0;transform:translateY(24px);transition:opacity .7s cubic-bezier(.2,.8,.2,1),transform .7s cubic-bezier(.2,.8,.2,1)}
[data-reveal].is-visible{opacity:1;transform:translateY(0)}
[data-delay="100"]{transition-delay:.1s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes chip{0%,100%{transform:translateX(0)}50%{transform:translateX(8px)}}

@media (max-width:980px){
  :root{--gutter:18px}
  .site-header{height:70px}
  .nav{display:none}
  .download-btn{height:44px;padding:0 18px;font-size:15px}
  .brand{font-size:25px}
  .brand img{width:36px;height:36px}
  .hero{grid-template-columns:1fr;gap:22px;min-height:auto;padding-top:28px}
  .hero h1{font-size:42px;line-height:1.25}
  .lead{font-size:17px}
  .benefit-row{grid-template-columns:1fr 1fr 1fr;gap:10px}
  .benefit{grid-template-columns:1fr;text-align:center;justify-items:center}
  .benefit .iconbox{grid-row:auto;margin-bottom:6px}
  .benefit small{font-size:12px}
  .actions{flex-direction:column;gap:12px}
  .btn{width:100%;min-width:0}
  .hero-art{min-height:540px;transform:scale(.88);transform-origin:top center;margin-bottom:-70px}
  .floating-chip{right:8px;width:170px;height:55px;font-size:14px}
  .step-grid{grid-template-columns:1fr 1fr;gap:22px}
  .step{border:0;padding:0}
  .step:not(:last-child):after{display:none}
  .step img{height:112px}
  .feature-grid{grid-template-columns:1fr 1fr}
  .feature-card{grid-template-rows:160px auto auto}
  .feature-card img{height:160px}
  .panel{padding:30px 22px}
  .privacy{grid-template-columns:1fr}
  .privacy-text{padding-left:0}
  .cta{flex-direction:column;align-items:flex-start;padding:28px}
  .cta-button{width:100%;min-width:0}
  .footer{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .section{padding-top:22px}
  .hero h1{font-size:35px;line-height:1.28}
  .hero-copy{text-align:left}
  .hero-art{transform:scale(.72);margin-left:-12px;margin-bottom:-170px;height:510px}
  .phone-shell{margin-left:32px}
  .floating-chip{right:-44px}
  .panel h2{font-size:27px}
  .step-grid,.feature-grid,.footer{grid-template-columns:1fr}
  .step p{height:auto}
  .privacy h2{font-size:28px}
  .cta h2{font-size:24px}
}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}
