/* ===========================================================
   Semq DarkSpeed — theme.css
   Pure-OLED black + cyan #5CE1E6 · Space Grotesk / Inter
   =========================================================== */

:root {
  --bg: #000;
  --surface: #0a0a0a;
  --surface-2: #111;
  --hairline: rgba(255,255,255,.08);
  --fg: #fafafa;
  --muted: #9a9a9a;
  --cyan: #5CE1E6;
  --cyan-soft: rgba(92,225,230,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.semq-ds {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--cyan); color: #000; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.display {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.text-cyan { color: var(--cyan); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 11.5px; font-weight: 500; color: var(--muted);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.lead { color: var(--muted); font-size: 17px; line-height: 1.65; }
.lead-large { color: var(--muted); font-size: 22px; line-height: 1.5; max-width: 780px; }

/* ============ NAV ============ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; letter-spacing: -0.01em; font-size: 17px;
}
.nav-links { display: none; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  display: inline-flex; align-items: center; height: 38px; padding: 0 16px;
  border-radius: 999px; background: var(--cyan); color: #000;
  font-weight: 600; font-size: 13.5px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px -10px var(--cyan-soft); }
@media (min-width: 820px) { .nav-links { display: flex; } }

/* ============ HERO ============ */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
@media (min-width: 1024px) { .hero { padding: 132px 0 112px; } }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; left: 50%; top: -160px;
  width: 60rem; height: 40rem; transform: translateX(-50%);
  border-radius: 50%; filter: blur(80px); opacity: .4;
  background: radial-gradient(closest-side, var(--cyan-soft), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; display: grid; gap: 48px;
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}
.hero-copy { display: flex; flex-direction: column; }
.hero-copy h1 { margin-top: 18px; font-size: clamp(40px, 6vw, 76px); }
.hero-copy .lead { margin-top: 22px; max-width: 560px; font-size: 18px; }
.cta-row { margin-top: 32px; }
.trust-row {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: 12.5px; color: var(--muted);
}
.trust-row .bullet { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); margin-right: 8px; vertical-align: middle; }
.hero-phone { display: flex; justify-content: center; }
@media (min-width: 1024px) { .hero-phone { justify-content: flex-end; } }

/* ============ PHONE FRAME ============ */
.phone-frame {
  width: 18rem; padding: 10px; border-radius: 38px;
  background: linear-gradient(180deg, #1a1a1a, #050505);
  border: 1px solid var(--hairline);
}
@media (min-width: 640px) { .phone-frame { width: 20rem; } }
@media (min-width: 1024px) { .phone-frame { width: 22rem; } }
.phone-frame img { border-radius: 28px; }
.phone-frame--glow {
  box-shadow:
    0 0 0 1px var(--hairline),
    0 30px 80px -20px rgba(92,225,230,.35),
    0 0 120px -10px rgba(92,225,230,.25);
  animation: float-slow 6s ease-in-out infinite;
}
@keyframes float-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============ STORE BUTTONS ============ */
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 22px;
  border-radius: 14px; font-family: 'Inter', sans-serif;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.store-btn:hover { transform: translateY(-1px); }
.store-btn[aria-disabled="true"] { opacity: .65; pointer-events: none; }
.store-btn .store-icon { width: 24px; height: 24px; flex: none; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-btn small { font-size: 10.5px; opacity: .8; letter-spacing: .04em; text-transform: uppercase; }
.store-btn strong { font-size: 15.5px; font-weight: 600; }
.store-btn--apple { background: #fff; color: #000; }
.store-btn--apple:hover { box-shadow: 0 10px 30px -10px rgba(255,255,255,.25); }
.store-btn--google { background: #000; color: #fff; border: 1px solid rgba(255,255,255,.18); }
.store-btn--google:hover { box-shadow: 0 10px 30px -10px rgba(255,255,255,.15); }

/* ============ PILLS ============ */
.pills { padding: 24px 0 8px; }
.pills-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 820px) { .pills-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.pill {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.pill strong { font-size: 14px; font-weight: 600; }
.pill span { font-size: 12.5px; color: var(--muted); }

/* ============ SECTIONS ============ */
.features, .privacy, .whofor, .faq, .final-cta { padding: 96px 0; }
@media (min-width: 1024px) { .features, .privacy, .whofor, .faq, .final-cta { padding: 128px 0; } }

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .display { margin-top: 12px; font-size: clamp(32px, 4vw, 52px); }

/* feature rows */
.feature-rows { display: flex; flex-direction: column; gap: 112px; }
.feature-row {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 80px; }
  .feature-row.is-reverse .feature-copy { order: 2; }
}
.feature-copy h3 { margin: 14px 0 18px; font-size: clamp(28px, 3.2vw, 40px); }
.feature-copy .bullets {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.feature-copy .bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #d4d4d4; }
.feature-copy .check {
  flex: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--cyan-soft);
  position: relative; margin-top: 3px;
}
.feature-copy .check::after {
  content: ""; position: absolute; left: 4px; top: 6px;
  width: 8px; height: 4px; border-left: 1.5px solid var(--cyan); border-bottom: 1.5px solid var(--cyan);
  transform: rotate(-45deg);
}
.feature-img { display: flex; justify-content: center; }

/* privacy */
.privacy-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .privacy-grid { grid-template-columns: repeat(3, 1fr); } }
.privacy-card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: 28px;
}
.privacy-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 0 8px; font-size: 18px;
}
.privacy-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* whofor */
.whofor-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.whofor-inner .lead-large { margin: 18px auto 0; }

/* faq */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--hairline);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chevron {
  width: 10px; height: 10px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] .chevron { transform: rotate(-135deg); border-color: var(--cyan); }
.faq-answer { padding: 0 0 22px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* final CTA */
.final-cta { position: relative; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, var(--cyan-soft), transparent 65%);
  opacity: .55; pointer-events: none;
}
.final-cta-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta-inner .display { font-size: clamp(34px, 4.4vw, 56px); }
.final-cta-inner .lead { margin: 20px auto 28px; }
.final-cta-inner .store-buttons { justify-content: center; }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 32px 0; background: #000;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--fg); }

/* Custom logo (uploaded via Customize → Site Identity) */
.brand.brand--logo { display: inline-flex; align-items: center; }
.brand-logo { display: block; height: 32px; width: auto; max-width: 200px; object-fit: contain; }
.site-footer .brand-logo { height: 24px; }

/* ===========================================================
   Generic page template (Privacy Policy, Terms, Support, …)
   Added in 1.0.1 — renders standard WP pages, not just landing.
   =========================================================== */
.page-main { padding: 96px 0 80px; min-height: 60vh; }
.page-content { max-width: 840px; }
.page-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 34px; line-height: 1.15; font-weight: 700;
  margin: 0 0 36px; text-align: center; color: var(--fg);
}
.entry-content { color: var(--fg); font-size: 15px; line-height: 1.7; }
.entry-content a { color: var(--cyan); text-decoration: underline; }
.entry-content a:hover { color: #fff; }
.entry-content strong { color: var(--fg); }
@media (max-width: 600px) {
  .page-main { padding: 72px 0 56px; }
  .page-title { font-size: 27px; }
}

/* Privacy section — link to full policy (1.0.1) */
.privacy-more { text-align: center; margin: 38px 0 0; }
.privacy-more a {
  color: var(--cyan); font-size: 14.5px; text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .15s ease;
}
.privacy-more a:hover { border-bottom-color: var(--cyan); }

/* Anchor scroll offset so section headings aren't hidden under the sticky nav (1.0.1) */
section[id] { scroll-margin-top: 84px; }
