/* 자동 가계부 · automoneycontrol.com */
:root{
  --brand:#8A6FE0; --brand-strong:#6E4FD6; --brand-tint:#EFE9FC;
  --bg:#FFFDF9; --surface:#ffffff; --border:#ece7f5;
  --text:#241f38; --text-2:#5b5570; --text-3:#928caa;
  --grad1:#B49DF2; --grad2:#8A6FE0;
  --radius:16px; --maxw:1080px;
  --shadow:0 10px 30px rgba(110,79,214,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--text);
  font-family:-apple-system,'Apple SD Gothic Neo','Malgun Gothic',Roboto,'Noto Sans KR',sans-serif;
  line-height:1.7;-webkit-font-smoothing:antialiased}
a{color:var(--brand-strong);text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* nav */
.nav{position:sticky;top:0;z-index:20;background:rgba(255,253,249,.85);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border)}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:18px;color:var(--text)}
.brand img{width:32px;height:32px;border-radius:8px}
.nav-links a{margin-left:22px;color:var(--text-2);font-weight:600;font-size:15px}
.nav-links a:hover{color:var(--brand-strong)}
@media(max-width:560px){.nav-links a{margin-left:14px;font-size:13px}}

/* hero */
.hero{background:linear-gradient(135deg,var(--grad1),var(--grad2));color:#fff;
  padding:76px 0 84px;text-align:center}
.hero img.appicon{width:96px;height:96px;border-radius:22px;margin:0 auto 22px;box-shadow:0 12px 30px rgba(0,0,0,.18)}
.hero h1{font-size:44px;line-height:1.2;margin:0 0 14px;font-weight:800}
.hero p.sub{font-size:19px;opacity:.95;margin:0 auto 30px;max-width:620px}
@media(max-width:560px){.hero h1{font-size:32px}.hero p.sub{font-size:16px}}
.cta{display:inline-flex;align-items:center;gap:9px;background:#fff;color:var(--brand-strong);
  font-weight:800;font-size:16px;padding:14px 26px;border-radius:999px;box-shadow:var(--shadow)}
.cta:hover{transform:translateY(-1px)}
.hero .note{display:block;margin-top:16px;font-size:14px;opacity:.9}

/* sections */
section{padding:72px 0}
.section-title{text-align:center;font-size:30px;font-weight:800;margin:0 0 8px}
.section-sub{text-align:center;color:var(--text-2);margin:0 auto 44px;max-width:560px}

/* features */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media(max-width:860px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:540px){.grid{grid-template-columns:1fr}}
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:26px;box-shadow:0 4px 14px rgba(110,79,214,.05)}
.card .ic{width:46px;height:46px;border-radius:12px;background:var(--brand-tint);
  display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:14px}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0;color:var(--text-2);font-size:15px}

/* screenshots */
.shots{background:var(--brand-tint)}
.shots .row{display:flex;gap:22px;justify-content:center;flex-wrap:wrap}
.shots img{width:240px;border-radius:22px;box-shadow:var(--shadow);border:6px solid #fff}
@media(max-width:560px){.shots img{width:70%}}

/* cta band */
.band{background:linear-gradient(135deg,var(--grad1),var(--grad2));color:#fff;text-align:center;border-radius:24px;
  padding:48px 24px;margin:0 20px}
.band h2{font-size:28px;margin:0 0 18px}

/* footer */
footer{background:#211d33;color:#c9c3de;padding:44px 0 40px;margin-top:72px;font-size:14px}
footer .cols{display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px}
footer a{color:#d9d3ef}
footer a:hover{color:#fff}
footer .links a{display:inline-block;margin-right:18px}
footer .fine{margin-top:26px;padding-top:22px;border-top:1px solid #372f4f;color:#8b83a6;font-size:13px}

/* legal / simple doc page */
.doc{max-width:760px;margin:0 auto;padding:48px 20px 80px}
.doc h1{font-size:28px;margin-bottom:8px}
.doc .meta{color:var(--text-3);font-size:13px;margin-bottom:26px}
.doc h2{font-size:19px;margin:30px 0 10px;color:var(--brand-strong)}
.doc p,.doc li{color:var(--text-2);font-size:15px}
.doc .box{background:var(--surface);border:1px solid var(--border);border-radius:14px;padding:20px 22px;margin:16px 0}
.doc .back{display:inline-block;margin-bottom:18px;font-weight:700}
.step{display:flex;gap:14px;margin:14px 0}
.step .n{flex:0 0 30px;height:30px;border-radius:50%;background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:15px}
