:root {
  --bg: #0A0A0A;
  --bg-deep: #050505;
  --card: rgba(255, 255, 255, 0.045);
  --card-hi: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.10);
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, 0.64);
  --ink-dim: rgba(255, 255, 255, 0.42);
  --accent: #34C759;
  --accent-bright: #30D158;
  --accent-deep: #1E8E3E;
  --blue: #0A84FF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
main { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 76px 0; }
h1, h2 { font-family: -apple-system, sans-serif; font-weight: 800; letter-spacing: -0.5px; }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 22px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.2px; font-size: 17px; text-decoration: none; color: var(--ink); }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: 100px; font-weight: 700; font-size: 13px;
}

/* Hero */
.hero { padding: 36px 0 60px; text-align: center; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(52,199,89,0.14); color: var(--accent-bright);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 26px;
}
h1 {
  font-size: clamp(32px, 5.8vw, 56px);
  line-height: 1.08; letter-spacing: -1px;
  margin-bottom: 20px;
}
h1 em { background: linear-gradient(135deg, var(--accent-bright), #7CE38B); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; }
.hero-sub {
  color: var(--ink-soft); font-size: clamp(16px, 2.2vw, 19px);
  max-width: 600px; margin: 0 auto 34px; font-weight: 400;
}
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep)); color: #fff; text-decoration: none;
  padding: 15px 28px; border-radius: 16px; font-weight: 700; font-size: 16px;
  box-shadow: 0 14px 30px -10px rgba(52,199,89,0.5);
}
.btn-store svg { width: 20px; height: 20px; }
.coming-soon-note { color: var(--ink-dim); font-size: 13px; }
.rating-note { color: var(--ink-dim); font-size: 13px; }

.hero-showcase {
  margin-top: 56px; display: flex; justify-content: center; gap: 18px;
  overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x proximity;
}
.hero-showcase a { flex-shrink: 0; scroll-snap-align: center; }
.hero-showcase img {
  width: 210px; border-radius: 18px; border: 1px solid var(--border);
  box-shadow: 0 18px 40px -18px rgba(52,199,89,0.35);
  object-fit: cover;
}

.trust-strip {
  margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px 28px; padding-top: 28px; border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.trust-icon { font-size: 15px; }

/* Section headers */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.kicker {
  color: var(--accent-bright); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.5px; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

/* Screens grid (real screenshots gallery) */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { text-align: center; }
.gallery-item a { display: block; text-decoration: none; color: inherit; }
.gallery-item img { border-radius: 16px; border: 1px solid var(--border); margin-bottom: 12px; width: 100%; height: auto; }
.gallery-item span { font-size: 13px; font-weight: 700; color: var(--ink-soft); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px 20px; }
.step-num {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(52,199,89,0.16);
  color: var(--accent-bright); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 14px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(52,199,89,0.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-bright); font-size: 18px; font-weight: 800;
}
.feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.feature p { color: var(--ink-soft); font-size: 14px; }

/* Connector / network chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  background: var(--card); border: 1px solid var(--border); border-radius: 100px;
  padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.chip strong { color: var(--ink); }

/* Editorial */
.editorial { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 48px; }
.editorial .kicker { text-align: center; }
.editorial h2 { text-align: center; margin-bottom: 22px; }
.editorial > p { color: var(--ink); font-size: 17px; line-height: 1.75; max-width: 720px; margin: 0 auto; }
.editorial > p + p { margin-top: 16px; }

.checklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.check-card { background: var(--bg-deep); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.check-card .num { color: var(--accent-bright); font-weight: 800; font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.check-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.check-card p { color: var(--ink-soft); font-size: 14px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 640px; margin: 0 auto; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; text-align: center; }
.price-card.featured { border-color: rgba(52,199,89,0.5); background: rgba(52,199,89,0.08); }
.price-card .badge { display: inline-block; background: var(--accent); color: #052711; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.price-card h3 { font-size: 15px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.price-card .amount { font-size: 34px; font-weight: 800; margin-bottom: 4px; }
.price-card .period { color: var(--ink-dim); font-size: 13px; margin-bottom: 16px; }
.price-card p.desc { color: var(--ink-soft); font-size: 13px; }

/* Privacy strip */
.privacy-strip { background: rgba(52,199,89,0.08); border: 1px solid rgba(52,199,89,0.28); color: var(--ink); border-radius: 24px; padding: 44px; text-align: center; }
.privacy-strip h2 { color: var(--ink); font-size: 26px; margin-bottom: 10px; }
.privacy-strip p { color: var(--ink-soft); font-size: 15px; max-width: 540px; margin: 0 auto; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); font-size: 15px; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { color: var(--ink-soft); margin-bottom: 30px; }

footer { border-top: 1px solid var(--border); padding: 36px 20px; text-align: center; }
footer .links { display: flex; justify-content: center; gap: 22px; margin-bottom: 16px; flex-wrap: wrap; }
footer a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--accent-bright); }
footer .copy { color: var(--ink-dim); font-size: 13px; }

/* Blog list */
.blog-cats { display: flex; flex-direction: column; gap: 44px; }
.blog-cat h2 { font-size: 20px; margin-bottom: 18px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.post-card img { width: 100%; height: 140px; object-fit: cover; }
.post-card .pc-body { padding: 16px; }
.post-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
.post-card p { color: var(--ink-soft); font-size: 13px; }

/* Blog post detail */
.post-hero { padding: 12px 0 20px; }
.post-hero-img { max-width: 720px; margin: 0 auto 32px; }
.post-hero-img img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--border); }
.post-title { max-width: 720px; margin: 0 auto 28px; }
.post-title h1 { font-size: clamp(26px, 4.4vw, 40px); }
.post-body { max-width: 720px; margin: 0 auto 40px; color: var(--ink); font-size: 16px; line-height: 1.8; }
.post-body > p.intro { font-size: 18px; color: var(--ink-soft); margin-bottom: 8px; }
.post-body h3 { font-size: 19px; font-weight: 700; margin: 30px 0 10px; color: var(--ink); }
.post-body p { margin-bottom: 6px; }
.post-body ul, .post-body ol { margin: 4px 0 14px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--accent-bright); }
.post-body a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 2px; }
.related-posts { max-width: 720px; margin: 0 auto; }
.related-posts h2 { font-size: 20px; margin-bottom: 16px; }

/* Detail pages (screens) */
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin: 8px 0 28px; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-bright); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.6; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

.detail-hero { padding: 12px 0 20px; }
.detail-image { max-width: 380px; margin: 0 auto 32px; }
.detail-image img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--border); box-shadow: 0 28px 64px -28px rgba(52,199,89,0.4); }
.detail-title { text-align: center; margin-bottom: 28px; }
.detail-title .kicker { justify-content: center; }
.detail-title h1 { font-size: clamp(28px, 4.6vw, 42px); }
.detail-caption { max-width: 680px; margin: 0 auto 36px; color: var(--ink); font-size: 16px; line-height: 1.8; }
.detail-caption p + p { margin-top: 14px; }
.detail-caption ul { margin: 10px 0; padding-left: 22px; }
.detail-caption li { margin-bottom: 8px; }
.detail-cta { text-align: center; margin-bottom: 20px; }

.related-head { text-align: center; margin: 8px 0 24px; }
.related-head .kicker { justify-content: center; }

@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial { padding: 32px 24px; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
