/* Klyptra landing — brand: Aurora Play (indigo → violet → magenta) */
:root {
  --indigo: #4f2cd9;
  --violet: #7c3aed;
  --magenta: #db2777;
  --ink: #0c0c14;
  --ink-soft: #3a3a4a;
  --muted: #6b6b7b;
  --line: rgba(12, 12, 20, 0.08);
  --card: #ffffff;
  --bg: #fbfbfe;
  --radius: 20px;
  --aurora: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 50%, var(--magenta) 100%);
  --shadow: 0 18px 50px rgba(79, 44, 217, 0.18);
  --maxw: 1080px;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--violet); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 72px 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 14px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 14px; color: var(--ink-soft); }
.lead { font-size: 1.2rem; color: var(--muted); }
.center { text-align: center; }

/* logo mark */
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.logo img { width: 36px; height: 36px; object-fit: contain; }
.logo .name { font-size: 1.15rem; }

/* nav */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,251,254,.78); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav nav { display: flex; align-items: center; gap: 26px; }
.nav nav a { color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.nav nav a:hover { color: var(--ink); text-decoration: none; }
.nav .menu-links { display: flex; gap: 26px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 12px 22px; border-radius: 999px; border: 0; cursor: pointer; font-size: .98rem; }
.btn-primary { background: var(--aurora); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { text-decoration: none; filter: brightness(1.05); transform: translateY(-1px); transition: .15s; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { text-decoration: none; border-color: rgba(124,58,237,.4); }

/* hero */
.hero { background: radial-gradient(1200px 500px at 50% -10%, rgba(124,58,237,.10), transparent 70%); }
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,58,237,.10); color: var(--violet); font-weight: 700; font-size: .8rem; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-note { margin-top: 16px; font-size: .85rem; color: var(--muted); }

/* phone mock with big logo */
.phone { justify-self: center; width: 260px; aspect-ratio: 9/19.5; border-radius: 40px; background: var(--aurora); box-shadow: var(--shadow); display: grid; place-items: center; position: relative; overflow: hidden; }
.phone::before { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 200px at 30% 10%, rgba(255,255,255,.25), transparent 60%); }
.phone .mark { width: 104px; height: 104px; object-fit: contain; padding: 14px; background: #fff; border-radius: 26px; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.phone .wordmark { position: absolute; bottom: 42px; color: #fff; font-weight: 800; font-size: 1.6rem; letter-spacing: -.02em; opacity: .96; }
.phone .tag { position: absolute; bottom: 22px; color: rgba(255,255,255,.85); font-size: .8rem; }

/* feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.card .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(124,58,237,.10); color: var(--violet); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 12px; }
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; font-size: .95rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step .num { width: 34px; height: 34px; border-radius: 10px; background: var(--aurora); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 12px; }

/* privacy band */
.band { background: var(--aurora); color: #fff; border-radius: 28px; padding: 48px; box-shadow: var(--shadow); }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.9); }
.band .pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.band .pill { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .9rem; }

/* pricing */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.price.featured { border: 2px solid transparent; background:
    linear-gradient(#fff,#fff) padding-box,
    var(--aurora) border-box; box-shadow: var(--shadow); }
.price .tier { font-weight: 800; font-size: 1.2rem; }
.price .amt { font-size: 2rem; font-weight: 800; margin: 6px 0 2px; }
.price .per { color: var(--muted); font-size: .9rem; }
.price ul { list-style: none; padding: 0; margin: 16px 0 0; }
.price li { padding: 7px 0; padding-left: 26px; position: relative; font-size: .95rem; color: var(--ink-soft); }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--violet); font-weight: 800; }
.tag-pill { align-self: flex-start; background: rgba(124,58,237,.12); color: var(--violet); font-weight: 700; font-size: .72rem; padding: 4px 10px; border-radius: 999px; margin-bottom: 8px; }

/* contact */
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; text-align: center; }
.contact-card .email { font-size: 1.3rem; font-weight: 800; }

/* contact form */
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.field { text-align: left; margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--bg); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,.15); }
.contact-form button { width: 100%; justify-content: center; margin-top: 4px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-status { margin: 14px 0 0; font-size: .92rem; min-height: 1.2em; }
.form-status.ok { color: #16a34a; }
.form-status.err { color: #dc2626; }

/* footer */
footer.foot { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); }
.foot .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot a { color: var(--ink-soft); font-weight: 600; }
.foot .links { display: flex; gap: 20px; flex-wrap: wrap; }

/* legal (privacy/terms) pages */
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { margin-bottom: 6px; }
.legal .meta { color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 1.3rem; margin-top: 34px; }
.legal h3 { margin-top: 22px; }
.legal ul { padding-left: 20px; }
.legal li { margin: 6px 0; color: var(--ink-soft); }
.legal blockquote { background: rgba(124,58,237,.07); border-left: 4px solid var(--violet); margin: 18px 0; padding: 12px 16px; border-radius: 8px; color: var(--ink-soft); }
.legal code { background: rgba(12,12,20,.06); padding: 2px 6px; border-radius: 6px; font-size: .9em; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .phone { order: -1; }
  .grid, .steps, .prices { grid-template-columns: 1fr; }
  .nav .menu-links { display: none; }
  .band { padding: 32px 24px; }
}
