/* ============================================================
   Just Click Skip - site styles
   Swap the look by editing the custom properties in :root below.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-primary: #22D3EE;   /* neon cyan */
  --color-secondary: #A78BFA; /* violet */
  --color-accent: #FB7185;    /* rose */
  --color-bg: #020617;        /* deep navy-black */
  --color-bg-alt: #0F172A;    /* dark slate card */
  --color-bg-alt2: #111c33;
  --color-text: #E8EEF7;
  --color-text-muted: #94A3B8;
  --color-border: #1E293B;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 14px;
  --maxw: 1080px;
  --grad: linear-gradient(135deg, var(--color-primary), var(--color-secondary) 55%, var(--color-accent));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; font-weight: 700; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--color-bg-alt); }

/* ---- split media + text layout ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split-media img { width: 100%; border-radius: 20px; box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.split-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 14px; }
.split-text p { color: var(--color-text-muted); }
.split.reverse .split-media { order: 2; }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; text-align: center; }
  .split.reverse .split-media { order: 0; }
}

/* ---- gradient accents ---- */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-brand { display: flex; align-items: center; }
.nav-brand:hover { text-decoration: none; }
.nav-brand .brand-logo { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--color-text-muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--color-text); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; color: var(--color-text); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; display: block; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: var(--radius); border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--grad); color: #04121a; box-shadow: 0 10px 30px rgba(34, 211, 238, 0.25); }
.btn-primary:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 14px 38px rgba(34, 211, 238, 0.35); }
.btn-ghost { background: var(--color-bg-alt); color: var(--color-text); border: 1px solid var(--color-border); }
.btn-ghost:hover { background: var(--color-bg-alt2); text-decoration: none; }
.btn svg { width: 20px; height: 20px; }

/* ---- hero ---- */
.hero { position: relative; overflow: hidden; padding: 96px 0 80px; text-align: center; }
.hero::before {
  content: ''; position: absolute; inset: -40% 0 auto 0; height: 620px; z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(34,211,238,0.16), transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(167,139,250,0.14), transparent 55%),
              radial-gradient(ellipse at 80% 25%, rgba(251,113,133,0.12), transparent 55%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-logo { width: 96px; height: 96px; border-radius: 22px; margin-bottom: 24px; box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.hero-art { width: min(320px, 80%); border-radius: 24px; margin-bottom: 24px; box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.hero .tagline { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--color-text-muted); max-width: 660px; margin: 0 auto 32px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--color-text-muted); }

/* ---- cards / features ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 28px; height: 100%;
}
.card:hover { border-color: rgba(34,211,238,0.4); }
.card .ic {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(34,211,238,0.12); margin-bottom: 16px;
}
.card .ic svg { width: 24px; height: 24px; color: var(--color-primary); }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--color-text-muted); font-size: 15px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--color-text-muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 600; color: var(--color-primary); margin-bottom: 10px; }

/* ---- site list chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 999px; padding: 8px 16px; font-size: 14px; color: var(--color-text); font-weight: 500; }

/* ---- content pages (prose) ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.2rem; margin: 24px 0 8px; color: var(--color-primary); }
.prose p, .prose li { color: var(--color-text-muted); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--color-text); }
.lead { font-size: 1.15rem; color: var(--color-text) !important; margin-bottom: 24px; }

/* ---- steps (support) ---- */
.step { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--color-border); }
.step:last-child { border-bottom: 0; }
.step .num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; font-family: var(--font-heading); font-weight: 700;
  display: flex; align-items: center; justify-content: center; background: var(--grad); color: #04121a;
}
.step h3 { margin-bottom: 4px; font-size: 1.15rem; }
.step p { color: var(--color-text-muted); }

/* ---- FAQ accordion ---- */
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); margin-bottom: 12px; background: var(--color-bg-alt); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--color-text); font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { color: var(--color-primary); font-size: 1.4rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--color-text-muted); }
.faq-item.open .faq-a { max-height: 400px; }

/* ---- contact form ---- */
.form { max-width: 560px; margin: 0 auto; }
.form label { display: block; font-weight: 500; margin: 16px 0 6px; font-size: 14px; }
.form input, .form textarea {
  width: 100%; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 10px;
  color: var(--color-text); font-family: var(--font-body); font-size: 15px; padding: 12px 14px;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--color-primary); }
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { margin-top: 22px; width: 100%; }

/* ---- overlay popup ---- */
.overlay { position: fixed; inset: 0; background: rgba(2,6,23,.75); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.overlay.show { display: flex; }
.overlay-box { background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 36px; max-width: 420px; text-align: center; }
.overlay-box h3 { margin-bottom: 10px; }
.overlay-box p { color: var(--color-text-muted); margin-bottom: 20px; }

/* ---- toggles (uninstall) ---- */
.toggle-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.toggle-btn { background: var(--color-bg-alt); border: 1px solid var(--color-border); color: var(--color-text-muted); border-radius: 999px; padding: 9px 20px; font-weight: 600; cursor: pointer; font-family: var(--font-body); font-size: 14px; }
.toggle-btn.active { background: var(--grad); color: #04121a; border-color: transparent; }
.toggle-section { display: none; }
.toggle-section.active { display: block; }

/* ---- footer ---- */
.footer { margin-top: auto; border-top: 1px solid var(--color-border); background: var(--color-bg-alt); padding: 40px 0 30px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; }
.footer-links a { color: var(--color-text-muted); font-size: 14px; }
.footer-links a:hover { color: var(--color-text); text-decoration: none; }
.footer-copy { color: var(--color-text-muted); font-size: 14px; }

/* ---- cookie banner ---- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 18px 22px; display: none; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  box-shadow: 0 18px 50px rgba(0,0,0,.5); max-width: 760px; margin: 0 auto;
}
.cookie.show { display: flex; }
.cookie p { color: var(--color-text-muted); font-size: 14px; flex: 1; min-width: 240px; }
.cookie .cookie-actions { display: flex; gap: 10px; }
.cookie .btn { padding: 10px 20px; font-size: 14px; }

/* ---- responsive ---- */
@media (max-width: 820px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; border-top: 1px solid var(--color-border); }
}
