/* Base */
:root {
  --bg: #0b0e14;
  --muted: #b7c1d6;
  --text: #f1f5ff;
  --brand: #6ddcff;
  --brand-2: #7f60ff;
  --border: #1f2536;
  --section: #0e121a;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 500;
}
img { display:block; max-width:100%; height:auto; }
a { color: inherit; text-decoration: none; }
.section { padding: 88px 20px; background: var(--section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section{ position: relative; }
.section::before{ content:""; position:absolute; inset:0; pointer-events:none; background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="128" height="128" filter="url(%23n)" opacity="0.03"/></svg>'); background-size: 200px 200px; }
.section-title { text-align:center; font-size: 34px; margin: 0 0 36px; letter-spacing: .2px; }
.
.section-title { position: relative; display:inline-block; }
.section-title.reveal.show { animation: titleGlow 1s ease forwards; }
@keyframes titleGlow { from { text-shadow: none; } to { text-shadow: 0 4px 24px rgba(125,96,255,.35); } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px); background: rgba(11,14,20,.7); border-bottom: 1px solid var(--border); }
.nav { max-width: 980px; margin: 0 auto; padding: 12px 16px; display:flex; align-items:center; gap:16px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:700; }
.brand-icon { width:28px; height:28px; border-radius:6px; }
.brand-name { letter-spacing:.2px; }
.nav-links { margin-left:auto; display:flex; gap:22px; list-style:none; padding:0; }
.nav-toggle { display:none; margin-left:auto; background:transparent; color:var(--text); border:0; font-size:20px; }

/* Hero */
.hero { padding: 72px 20px 52px; background: linear-gradient(180deg, #0b0e14 0%, #0f1420 100%); }
.hero-inner { max-width:980px; margin:0 auto; display:grid; grid-template-columns: 1.05fr .95fr; gap:44px; align-items:center; }
.gradient-text { font-size: 46px; line-height:1.1; margin:0 0 14px; background: linear-gradient(135deg, #ffffff, #c9d2ff 45%, #8ae7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: var(--muted); margin:0 0 24px; }
.cta-row { display:flex; gap:16px; align-items:center; }
.apple-badge img { height:64px; filter: drop-shadow(0 6px 16px rgba(0,0,0,.4)); }
.apple-badge.large img { height:68px; }

.device-frame { position:relative; width: 100%; max-width: 300px; margin: 0 auto; border-radius: 32px; overflow:hidden; border:1px solid var(--border); background:#000; box-shadow: 0 20px 80px rgba(0,0,0,.55), 0 0 0 8px rgba(255,255,255,.03) inset; }
.device-notch { position:absolute; top:0; left:50%; transform:translateX(-50%); width:45%; height:22px; background:#000; border-bottom-left-radius:16px; border-bottom-right-radius:16px; z-index:2; }
.device-frame img { width:100%; height:auto; display:block; }

/* Features */
.feature-grid { max-width:980px; margin:0 auto; display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.feature-card { background: rgba(255,255,255,.03); border:1px solid var(--border); border-radius:14px; padding:20px; min-height:160px; box-shadow: 0 8px 28px rgba(0,0,0,.25); backdrop-filter: blur(8px); }
.feature-card i { font-size:22px; width:40px; height:40px; display:grid; place-items:center; border-radius:10px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color:#0b0d13; margin-bottom:10px; }
.feature-card h3 { margin:8px 0 6px; font-size:18px; }
.feature-card p { margin:0; color:var(--muted); font-size:15px; }

/* Gallery */
.gallery .shots-grid { max-width:980px; margin:0 auto; display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }
.shot { width:100%; height:520px; object-fit:cover; border-radius:14px; border:1px solid var(--border); background:#000; cursor:pointer; box-shadow: 0 10px 30px rgba(0,0,0,.35); }

/* Lightbox */
.lightbox { position:fixed; inset:0; background:rgba(0,0,0,.85); display:grid; place-items:center; z-index:50; }
.lightbox.hidden { display:none; }
.lightbox-img { max-width: min(92vw, 980px); max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 100px rgba(0,0,0,.6); }
.lightbox-close { position:absolute; top:18px; right:18px; background:rgba(255,255,255,.08); color:#fff; border:1px solid var(--border); width:40px; height:40px; border-radius:50%; display:grid; place-items:center; cursor:pointer; }
.lb-btn { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.1); color:#fff; border:1px solid var(--border); width:44px; height:44px; border-radius:50%; display:grid; place-items:center; cursor:pointer; }
.lb-prev { left:24px; }
.lb-next { right:24px; }

/* Download */
.download-inner { max-width:980px; margin:0 auto; display:grid; grid-template-columns: 1fr; gap:32px; align-items:center; }
.download p { color:var(--muted); margin-bottom:16px; }
.download-shot img { border-radius:14px; border:1px solid var(--border); box-shadow: 0 16px 60px rgba(0,0,0,.35); max-width: 360px; margin-left:auto; }
.download-copy ul { margin: 10px 0 0 18px; color: var(--muted); }
.download-copy li::marker { color: var(--brand); }

/* Footer */
.site-footer { border-top:1px solid var(--border); padding:22px; text-align:center; color:var(--muted); background: #0b0e14; }

/* (removed) Mobile sticky CTA styles */

/* Animations */
.reveal { opacity:0; transform: translateY(12px); transition: all .45s ease; }
.reveal.show { opacity:1; transform:none; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap:28px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .download-inner { grid-template-columns: 1fr; }
  .nav-toggle { display:inline-grid; }
  .nav-links { display:none; }
  .nav.open .nav-links { display:flex; position:absolute; top:56px; right:16px; background: rgba(11,14,20,.95); border:1px solid var(--border); padding:12px; border-radius:10px; flex-direction:column; gap:12px; }
  .shot { height: 440px; }
}

@media (max-width: 640px) {
  .section { padding:64px 16px; }
  .gradient-text { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .apple-badge img { height:60px; }
  .gallery .shots-grid { grid-template-columns: 1fr !important; }
  .shot { height: 360px; }
  .download-shot img { max-width: 300px; margin: 0 auto; }
}

/* Prose (privacy) */
.prose { max-width: 820px; margin: 0 auto; color: var(--text); }
.prose .muted { color: var(--muted); }
.prose h2 { font-size: 30px; margin: 0 0 10px; }
.prose h3 { font-size: 20px; margin: 24px 0 8px; }
.prose p { margin: 8px 0 12px; color: var(--text); }
.prose ul { margin: 8px 0 16px 18px; color: var(--muted); }
.prose a { color: var(--brand); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: rgba(255,255,255,.03); border:1px solid var(--border); border-radius: 12px; padding: 12px 16px; }
.faq-item summary { list-style: none; cursor: pointer; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item[open] { background: rgba(255,255,255,.05); }
.faq-item .answer { color: var(--muted); padding-top: 8px; }
