/* Base */
:root {
  --bg: #0b0b0c;
  --panel: #121214;
  --panel-2: #16161a;
  --text: #eaeaf0;
  --muted: #9aa0a6;
  --accent: #7c5cff;
  --accent-2: #00e5a8;
  --border: #1f1f24;
  --shadow: 0 8px 24px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 50% -10%, rgba(124,92,255,.15), transparent 60%) , var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

.container { width: 100%; max-width: 1040px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: linear-gradient(180deg, rgba(11,11,12,.9), rgba(11,11,12,.6)); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; box-shadow: var(--shadow); }
.brand-name { font-weight: 700; letter-spacing: .2px; }

.nav-actions { display: flex; gap: 12px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--border); background: var(--panel); color: var(--text); text-decoration: none; font-weight: 600; transition: transform .12s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; box-shadow: 0 2px 0 rgba(255,255,255,.05) inset; }
.btn:hover { transform: translateY(-1px); border-color: #2c2c33; background: var(--panel-2); }
.btn:active { transform: translateY(0); }

.btn-primary { background: linear-gradient(180deg, #ffd86f, #e6aa2c); color: #1a1200; border-color: rgba(230,170,44,.6); box-shadow: 0 10px 24px rgba(230,170,44,.35); }
.btn-primary:hover { background: linear-gradient(180deg, #ffe089, #e0a018); }

.btn-cta { padding: 14px 22px; font-size: 16px; background: linear-gradient(180deg, #ffd86f, #e6aa2c); color: #1a1200; border-color: rgba(230,170,44,.6); box-shadow: 0 10px 24px rgba(230,170,44,.35); }
.btn-cta:hover { background: linear-gradient(180deg, #ffe089, #e0a018); }

/* Hero */
.site-main { padding: 32px 0 56px; }
.hero { text-align: center; padding-top: 24px; }
.hero-title { margin: 8px 0 8px; font-size: 36px; letter-spacing: .2px; }
.hero-subtitle { margin: 0 auto 20px; max-width: 680px; color: var(--muted); }
.hero-cta { margin: 16px 0 28px; }

.media-frame { margin: 0 auto; max-width: 880px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--panel-2); box-shadow: var(--shadow); }
.media-frame img, .media-frame iframe, .media-frame video { display: block; width: 100%; height: auto; }

.follow-cta { margin: 18px 0 18px; display: flex; justify-content: center; }
.btn-follow-lg { padding: 10px 14px; font-weight: 700; border-radius: 999px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.step { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: left; }
.step-num { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 8px; background: #1a1a22; border: 1px solid var(--border); color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.step h3 { margin: 4px 0; font-size: 14px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
}

/* Footer */
.site-footer { padding: 26px 0 40px; border-top: 1px solid var(--border); margin-top: 40px; background: linear-gradient(0deg, rgba(11,11,12,.6), rgba(11,11,12,0)); }
.footer-inner { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.site-footer a { color: var(--text); text-decoration: none; border-bottom: 1px dashed #3a3a40; }
.site-footer a:hover { color: var(--accent-2); border-bottom-color: var(--accent-2); }
.made-by { margin: 0; }
.btn-follow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: #0e0e10; color: var(--text); text-decoration: none; box-shadow: 0 2px 0 rgba(255,255,255,.04) inset; }
.btn-follow:hover { background: #141418; border-color: #2c2c33; }
.btn-follow .x-icon { opacity: .9; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay[aria-hidden="false"] { display: flex; }
.modal-panel { width: 100%; max-width: 720px; background: var(--panel); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); padding: 22px; position: relative; }
.modal-close { position: absolute; top: 10px; right: 12px; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); background: var(--panel-2); color: var(--text); cursor: pointer; font-size: 22px; line-height: 1; }
.modal-title { margin: 4px 0 4px; font-size: 26px; }
.modal-desc { margin: 0 0 8px; color: var(--muted); }
.modal-features { list-style: none; padding-left: 0; margin: 8px 0 14px; }
.modal-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.modal-features .chk { width: 18px; height: 18px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #00e5a8, #008f6e); box-shadow: 0 0 0 3px rgba(0,229,168,.15); }
.modal-features .muted { color: var(--muted); margin-left: auto; font-weight: 400; }
.install-box { border: 1px solid var(--border); background: var(--panel-2); border-radius: 12px; padding: 12px 14px; margin-bottom: 16px; }
.install-title { font-weight: 700; letter-spacing: .2px; margin-bottom: 8px; }
.install-steps { margin: 0; padding-left: 18px; }
.install-steps li { margin: 6px 0; }
.modal-cta { display: flex; justify-content: center; }


