:root { --bg: #0a0a0d; --panel: #141418; --line: #26262e; --text: #ededf2; --muted: #8e8e9b; --accent: #6d7cff; --accent2: #b86dff; color-scheme: dark; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "Inter", "Noto Sans Georgian", system-ui, sans-serif; line-height: 1.55; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.muted { color: var(--muted); }
.center { text-align: center; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; font: inherit; color: inherit; white-space: nowrap; }
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); border: none; font-weight: 600; color: #fff; }
.btn.ghost { background: transparent; }
.btn.small { padding: 5px 10px; font-size: 12px; }
.btn.big { padding: 16px 28px; font-size: 17px; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: conic-gradient(var(--accent), var(--accent2), #ff7ab6, var(--accent)); }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 18px; }

.nav { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px max(16px, 5vw); background: rgba(10,10,13,.75); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav .links { display: flex; gap: 24px; color: var(--muted); font-size: 14px; }
.nav .links a:hover { color: var(--text); }

.hero { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; padding: 70px max(16px, 5vw) 60px; max-width: 1400px; margin: 0 auto; }
.pill { display: inline-block; font-size: 12px; padding: 5px 12px; border-radius: 99px; border: 1px solid var(--line); color: var(--muted); }
.hero h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.08; letter-spacing: -0.03em; margin: 18px 0; }
.grad { background: linear-gradient(135deg, #8b97ff, #c68cff, #ff8cc6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: var(--muted); font-size: 17px; max-width: 560px; }
.hero-prompt { display: flex; gap: 8px; margin: 26px 0 10px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 6px; max-width: 580px; }
.hero-prompt input { flex: 1; min-width: 0; background: none; border: none; outline: none; color: inherit; font: inherit; padding: 0 12px; }
.hero-demo { position: relative; }
.hero-demo canvas { width: 100%; aspect-ratio: 16/9; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px var(--line); display: block; background: #111; }
.demo-bar { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; color: var(--muted); font-size: 13px; }

.section { padding: 70px max(16px, 5vw); max-width: 1240px; margin: 0 auto; }
.section h2 { font-size: clamp(26px, 3.4vw, 40px); text-align: center; letter-spacing: -0.02em; margin: 0 0 14px; }
.features { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin-top: 30px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.card b { font-size: 16px; }
.card p { color: var(--muted); margin: 8px 0 0; font-size: 14px; }
.tpl-show { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-top: 26px; }
.tpl-show figure { margin: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.tpl-show canvas { width: 100%; aspect-ratio: 16/9; display: block; }
.tpl-show figcaption { padding: 8px 12px; font-size: 13px; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 30px; }
.steps div { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.steps span { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); font-weight: 700; margin-bottom: 10px; }
.steps p { color: var(--muted); margin: 6px 0 0; font-size: 14px; }
.faq { max-width: 800px; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; margin-top: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 10px 0 0; }
.cta { text-align: center; }
.cta h2 { margin-bottom: 24px; }
footer { text-align: center; padding: 30px; border-top: 1px solid var(--line); font-size: 13px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .nav .links { display: none; }
}
