/* Postman marketing site — brand-matched (light lavender, purple→pink, Manrope). */
:root {
  --bg: #e8eefa; --panel: #ffffff; --panel-2: #f7f9ff;
  --text: #181b2e; --muted: #6b7091; --line: #e2e7f5;
  --accent: #695cff; --accent-2: #ed628b;
  --grad: linear-gradient(135deg, #695cff 0%, #ed628b 100%);
  --shadow: 0 18px 40px -22px rgba(24,27,46,.28);
  --shadow-sm: 0 10px 24px -16px rgba(24,27,46,.22);
  --radius: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500; color: var(--text); line-height: 1.6;
  background: radial-gradient(1200px 620px at 50% -8%, #f2f4fe 0%, rgba(242,244,254,0) 60%), var(--bg);
  min-height: 100vh;
}
a { color: inherit; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 22px; }

/* nav */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 22px; letter-spacing: -0.02em; text-decoration: none; }
.brand img { width: 38px; height: 38px; }
.nav-links { display: flex; gap: 22px; align-items: center; font-weight: 600; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--text); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 16px;
  font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer; border: none; }
.btn.primary { background: var(--grad); color: #fff; box-shadow: 0 14px 28px -12px rgba(105,92,255,.6); }
.btn.ghost { background: var(--panel); color: var(--text); box-shadow: var(--shadow-sm); }

/* hero */
.hero { text-align: center; padding: 60px 0 40px; }
.hero .mark { width: 96px; height: 96px; margin: 0 auto 20px; display: block; }
.hero h1 { font-size: 56px; font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; }
.hero .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 20px; color: var(--muted); margin: 18px auto 30px; max-width: 560px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 50px 0; }
.card { background: var(--panel); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.card .ico { width: 44px; height: 44px; border-radius: 14px; background: var(--panel-2); display: grid; place-items: center; font-size: 22px; margin-bottom: 14px; }
.card h3 { font-size: 18px; font-weight: 900; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 15px; }

/* legal */
.legal { background: var(--panel); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); margin: 30px 0 60px; }
.legal h1 { font-size: 34px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 6px; }
.legal h2 { font-size: 20px; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--text); margin: 8px 0; }
.legal ul { padding-left: 20px; }
.legal .muted { color: var(--muted); font-size: 14px; }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 30px 0 50px; text-align: center; color: var(--muted); font-size: 14px; }
.footer a { color: var(--muted); text-decoration: none; margin: 0 10px; font-weight: 600; }
.footer a:hover { color: var(--text); }

@media (max-width: 560px) { .hero h1 { font-size: 40px; } .hero p.lead { font-size: 17px; } }
