/* Dual Camera — site styles
   Dark-only by design: it mirrors the app, which ships a fixed dark scheme. */

:root {
  --pink: #ed458c;
  --orange: #f78f4f;
  --brand: linear-gradient(90deg, var(--pink), var(--orange));
  --bg: #07070f;
  --bg-soft: #0d0d1a;
  --surface: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f6f6fa;
  --muted: rgba(246, 246, 250, 0.62);
  --faint: rgba(246, 246, 250, 0.42);
  --radius: 16px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(
      1100px 600px at 50% -220px,
      rgba(237, 69, 140, 0.16),
      transparent 70%
    ),
    linear-gradient(180deg, #0b0b16 0%, #07070f 55%);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(7, 7, 15, 0.78);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 62px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-right: auto;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  padding: 7px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav a:hover { color: var(--text); background: var(--surface); }
.nav a[aria-current="page"] { color: var(--text); background: var(--surface); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(237, 69, 140, 0.28);
}

.btn-primary:hover { filter: brightness(1.07); }

.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); }

.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Hero ---------- */

.hero {
  padding: 76px 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: block;
  margin-bottom: 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.grad {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 34em;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--faint);
}

.hero-shot {
  justify-self: center;
  max-width: 320px;
  width: 100%;
  border-radius: 26px;
  border: 1px solid var(--border);
  display: block;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

/* ---------- Sections ---------- */

section { padding: 54px 0; }

.section-head { max-width: 46em; margin-bottom: 30px; }

h2 {
  font-size: clamp(24px, 3vw, 31px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.section-head p { color: var(--muted); margin: 0; font-size: 16.5px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--faint);
  margin: 0 0 10px;
}

/* ---------- Cards ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }

.card .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(237, 69, 140, 0.14);
  border: 1px solid rgba(237, 69, 140, 0.28);
  margin-bottom: 14px;
  font-size: 19px;
}

/* ---------- Shots strip ---------- */

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.shots figure { margin: 0; }

.shots img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: block;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

.shots figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ---------- Pricing ---------- */

.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.plan.featured { border-color: rgba(237, 69, 140, 0.55); }

.plan .tag {
  position: absolute;
  top: -11px;
  right: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
}

.plan h3 { margin: 0 0 4px; font-size: 16px; }

.plan .price {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 4px 0 2px;
}

.plan .price span { font-size: 15px; font-weight: 600; color: var(--faint); }
.plan p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.list { list-style: none; padding: 0; margin: 14px 0 0; }

.list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14.5px;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 800;
}

/* ---------- Legal / article pages ---------- */

.page-head {
  padding: 60px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 34px;
}

.page-head h1 {
  font-size: clamp(30px, 4.5vw, 42px);
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}

.page-head .updated { color: var(--faint); font-size: 14.5px; margin: 0 0 26px; }

article { max-width: 760px; padding-bottom: 40px; }

article h2 {
  font-size: 20px;
  margin: 38px 0 10px;
  letter-spacing: -0.01em;
  scroll-margin-top: 80px;
}

article h2 .num {
  color: var(--pink);
  font-weight: 800;
  margin-right: 10px;
}

article h3 { font-size: 16.5px; margin: 26px 0 6px; }
article p { color: var(--muted); margin: 0 0 14px; }
article ul { color: var(--muted); padding-left: 22px; margin: 0 0 16px; }
article li { margin-bottom: 7px; }
article a { color: var(--pink); }
article strong { color: var(--text); }

.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0 0 26px;
}

.callout p { margin: 0; color: var(--muted); }

/* ---------- Support extras ---------- */

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 34px;
}

.contact-card .grow { flex: 1 1 240px; }
.contact-card h3 { margin: 0 0 4px; font-size: 17px; }
.contact-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

details.faq {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 0;
  margin-bottom: 10px;
}

details.faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

details.faq summary::-webkit-details-marker { display: none; }

details.faq summary::after {
  content: "+";
  color: var(--pink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

details.faq[open] summary::after { content: "−"; }

details.faq .answer { padding: 0 18px 16px; color: var(--muted); font-size: 14.8px; }
details.faq .answer p { margin: 0; }


/* ---------- More apps ---------- */

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.app-tile {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}

.app-tile:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(237, 69, 140, 0.38);
}

.app-tile img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: block;
}

.app-tile-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.app-tile-text strong {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-tile-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------- More apps card ---------- */

.more-apps-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.more-apps-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(237, 69, 140, 0.4);
}

.more-apps-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--brand);
  flex: none;
}

.more-apps-ico img { border-radius: 8px; display: block; }

.more-apps-text { display: flex; flex-direction: column; gap: 3px; flex: 1 1 220px; }
.more-apps-text strong { font-size: 16.5px; }
.more-apps-text span { color: var(--muted); font-size: 14.5px; }

.more-apps-cta {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--pink);
  background: rgba(237, 69, 140, 0.16);
  padding: 7px 15px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
  padding: 40px 0 48px;
  margin-top: 30px;
}

.footer-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer a { color: var(--muted); text-decoration: none; font-size: 14.5px; }
.site-footer a:hover { color: var(--text); text-decoration: underline; }

.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.copyright {
  color: var(--faint);
  font-size: 13.5px;
  margin: 26px 0 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 34px;
  }
  .hero-shot { max-width: 260px; }
  .shots { grid-template-columns: 1fr; max-width: 330px; margin: 0 auto; }
  .brand { margin-right: 0; width: 100%; }
  .nav { width: 100%; }
}

@media (max-width: 520px) {
  .nav a { padding: 6px 9px; font-size: 14px; }
  section { padding: 40px 0; }
}
