/* SavePal marketing site — calm premium fintech */
@font-face { font-family: 'Inter'; font-weight: 400 800; font-display: swap; src: url('assets/Inter.ttf'); }

:root {
  --emerald:#10B981; --teal:#0EA5A5; --amber:#F59E0B; --ink:#0B1220;
  --credit:#22C55E; --debt:#EF4444;
  --bg:#F7F8FA; --surface:#FFFFFF; --muted:#5B6472; --line:#E7EBF0;
  --radius:18px; --maxw:1120px;
  --shadow:0 10px 30px rgba(11,18,32,.08); --shadow-lg:0 24px 60px rgba(11,18,32,.14);
}
* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter',system-ui,sans-serif; color:var(--ink); background:var(--bg);
  -webkit-font-smoothing:antialiased; line-height:1.55; font-feature-settings:"tnum" 0;
}
a { color:inherit; text-decoration:none; }
.container { max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.tnum { font-variant-numeric:tabular-nums; }

/* nav */
.nav { position:sticky; top:0; z-index:20; background:rgba(247,248,250,.8); backdrop-filter:blur(12px); border-bottom:1px solid var(--line); }
.nav .container { display:flex; align-items:center; justify-content:space-between; height:68px; }
.nav .logo { display:flex; align-items:center; gap:10px; font-weight:700; font-size:20px; }
.nav .logo img { height:30px; }
.nav .links { display:flex; gap:28px; align-items:center; }
.nav .links a { color:var(--muted); font-weight:600; font-size:15px; }
.nav .links a:hover { color:var(--ink); }

/* buttons */
.btn { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:16px; padding:14px 22px; border-radius:14px; border:0; cursor:pointer; }
.btn-primary { background:var(--emerald); color:#fff; }
.btn-primary:hover { background:#0ea372; }
.btn-ghost { background:var(--surface); color:var(--ink); border:1px solid var(--line); }

/* hero */
.hero { padding:80px 0 60px; }
.hero .grid { display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
.hero h1 { font-size:54px; line-height:1.08; letter-spacing:-1.5px; font-weight:800; }
.hero h1 .accent { color:var(--emerald); }
.hero p.sub { font-size:20px; color:var(--muted); margin:20px 0 28px; max-width:36ch; }
.badges { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.badge { height:56px; display:block; }
.coming { font-size:13px; color:var(--muted); font-weight:600; margin-top:12px; }

/* phone mockup */
.phone { width:300px; margin:0 auto; background:var(--ink); border-radius:42px; padding:12px; box-shadow:var(--shadow-lg); }
.phone .screen { background:var(--bg); border-radius:32px; overflow:hidden; }
.phone .pbar { height:44px; display:flex; align-items:center; justify-content:center; }
.phone .pbar .notch { width:120px; height:26px; background:var(--ink); border-radius:0 0 16px 16px; }
.scr-head { padding:18px 18px 8px; }
.scr-head .title { font-weight:700; font-size:18px; }
.net { display:flex; gap:12px; padding:8px 18px 16px; }
.net .col { flex:1; background:var(--surface); border-radius:14px; padding:12px; box-shadow:var(--shadow); }
.net .lbl { font-size:12px; color:var(--muted); font-weight:600; }
.net .amt { font-size:22px; font-weight:800; margin-top:4px; }
.net .amt.credit { color:var(--credit); } .net .amt.debt { color:var(--debt); }
.row { display:flex; align-items:center; gap:12px; padding:12px 18px; }
.row .av { width:38px; height:38px; border-radius:50%; background:var(--emerald); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }
.row .nm { font-weight:600; flex:1; }
.row .pill { font-weight:700; font-size:14px; padding:4px 10px; border-radius:999px; background:#EEF2F6; }
.row .pill.credit { color:var(--credit); } .row .pill.debt { color:var(--debt); }
.fab { margin:14px 18px 22px; height:48px; border-radius:16px; background:var(--emerald); color:#fff; display:flex; align-items:center; justify-content:center; gap:8px; font-weight:700; }

/* sections */
section.block { padding:72px 0; }
.eyebrow { color:var(--emerald); font-weight:700; letter-spacing:1.5px; text-transform:uppercase; font-size:13px; }
h2.sec { font-size:38px; letter-spacing:-1px; font-weight:800; margin:10px 0 8px; }
.lead { color:var(--muted); font-size:18px; max-width:60ch; }
.features { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px; }
.card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:26px; box-shadow:var(--shadow); }
.card .ico { width:44px; height:44px; border-radius:12px; background:#E7F8F1; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.card .ico svg { width:24px; height:24px; stroke:var(--emerald); fill:none; stroke-width:2; }
.card h3 { font-size:19px; margin-bottom:6px; }
.card p { color:var(--muted); font-size:15px; }

/* how it works */
.steps { display:flex; flex-direction:column; gap:14px; margin-top:36px; max-width:760px; }
.bubble { background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:16px 20px; box-shadow:var(--shadow); }
.bubble .you { color:var(--muted); font-size:13px; font-weight:600; margin-bottom:4px; }
.bubble .said { font-size:17px; font-weight:600; }
.bubble .ai { margin-top:8px; color:var(--emerald); font-weight:700; font-size:15px; }

/* cta */
.cta { background:linear-gradient(135deg,var(--emerald),var(--teal)); border-radius:28px; padding:56px; text-align:center; color:#fff; box-shadow:var(--shadow-lg); }
.cta h2 { font-size:34px; font-weight:800; letter-spacing:-.5px; }
.cta p { opacity:.92; margin:10px 0 24px; font-size:18px; }

/* footer */
footer { border-top:1px solid var(--line); padding:48px 0; color:var(--muted); }
footer .grid { display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap; align-items:center; }
footer a { color:var(--muted); font-weight:600; }
footer a:hover { color:var(--ink); }
footer .flinks { display:flex; gap:24px; flex-wrap:wrap; }

/* legal / generic page */
.page { padding:56px 0 72px; }
.page h1 { font-size:40px; letter-spacing:-1px; font-weight:800; }
.page .updated { color:var(--muted); margin:8px 0 8px; }
.note { background:#FEF3C7; border:1px solid #FCD34D; color:#92400E; padding:12px 16px; border-radius:12px; font-weight:600; font-size:14px; margin:16px 0 28px; }
.prose h2 { font-size:24px; margin:28px 0 10px; }
.prose p, .prose li { color:#33404f; margin-bottom:10px; }
.prose ul { padding-left:22px; }

/* contact */
.form { max-width:560px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow); }
.form label { display:block; font-weight:700; font-size:14px; margin:14px 0 6px; }
.form input, .form textarea { width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:12px; font:inherit; }
.form textarea { min-height:130px; resize:vertical; }
.form .status { margin-top:14px; font-weight:700; }
.form .status.ok { color:var(--credit); } .form .status.err { color:var(--debt); }

@media (max-width:860px){
  .hero .grid, .features { grid-template-columns:1fr; }
  .hero { padding:48px 0 32px; } .hero h1 { font-size:40px; }
  .nav .links a:not(.btn){ display:none; }
  h2.sec{ font-size:30px; } .cta{ padding:36px 24px; }
}
