:root {
  --accent: #168cdb;
  --accent-dark: #106ea8;
  --accent-purple: #531B93;
  --gradient: linear-gradient(180deg, #168cdb 0%, #168cdb 45%, #531B93 100%);
  --gradient-hover: linear-gradient(180deg, #106ea8 0%, #106ea8 45%, #3f1570 100%);
  --text: #1a1a1a;
  --muted: #5f6368;
  --bg: #ffffff;
  --bg-soft: #f3f6fc;
  --border: #d9e2f1;
  --radius: 12px;
  --max: 960px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
header.site .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); font-size: 18px; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--gradient);
  display: inline-block;
}
nav.site a {
  color: var(--text);
  margin-left: 22px;
  font-weight: 500;
  font-size: 15px;
}
nav.site a:hover { color: var(--accent); text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.hero {
  padding: 72px 20px 72px;
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero .tagline {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
@media (max-width: 820px) { .hero-actions { justify-content: center; } }

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.hero-points li { position: relative; padding-left: 18px; }
.hero-points li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 820px) { .hero-points { justify-content: center; } }

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 520px;
}
.hero-phone { width: 220px; height: 452px; }
.hero-phone .screen { border-radius: 28px; font-size: 13px; }
.hero-phone.offset {
  position: absolute;
  right: 0; top: 40px;
  transform: rotate(6deg);
  opacity: 0.92;
}
.hero-visual > .hero-phone:first-child { transform: rotate(-3deg); z-index: 2; margin-right: 40px; }
@media (max-width: 820px) {
  .hero-visual { min-height: 480px; }
  .hero-phone.offset { right: calc(50% - 140px); top: 30px; }
  .hero-visual > .hero-phone:first-child { margin-right: 0; position: absolute; left: calc(50% - 140px); top: 0; }
}

.cta {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
}
.cta:hover { background: var(--gradient-hover); text-decoration: none; }
.cta.secondary { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.cta.secondary:hover { background: var(--bg-soft); }

section { padding: 72px 0; }
.section-tinted { background: var(--bg-soft); }

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 10px;
}
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-heading.narrow { max-width: 560px; }
.section-heading h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.section-heading p { color: var(--muted); font-size: 17px; margin: 0; }
section h2 {
  font-size: 30px;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.feature h3 { margin: 0 0 8px; font-size: 17px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

.page { padding-top: 56px; padding-bottom: 80px; }
.page h1 { font-size: 34px; margin: 0 0 8px; }
.page .updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.page h2 { font-size: 22px; margin: 36px 0 12px; }
.page h3 { font-size: 17px; margin: 24px 0 8px; }
.page p, .page li { color: #2a2a2a; }
.page ul { padding-left: 22px; }

footer.site {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 32px 20px;
  color: var(--muted);
  font-size: 14px;
}
footer.site .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site a { color: var(--muted); }
footer.site nav a { margin-left: 16px; }

.attribution {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

/* Screenshot gallery */
.screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  justify-items: center;
  align-items: start;
}
.shot {
  text-align: center;
  max-width: 280px;
}
.phone {
  width: 240px;
  height: 492px;
  border-radius: 38px;
  background: #111;
  padding: 10px;
  box-shadow: 0 20px 40px -20px rgba(83, 27, 147, 0.35), 0 8px 16px -8px rgba(0,0,0,0.2);
  position: relative;
  margin: 0 auto 16px;
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #111;
  border-radius: 14px;
  z-index: 2;
}
.phone .screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  background: linear-gradient(160deg, #f7f5fa 0%, #e9dff2 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.phone img.screen {
  object-fit: cover;
  padding: 0;
}
.shot .caption {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.shot .caption strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }

/* Help page */
.help-search {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: var(--bg);
  margin-bottom: 32px;
  transition: border-color 0.15s;
}
.help-search:focus {
  outline: none;
  border-color: var(--accent);
}
.help-section {
  margin-bottom: 20px;
}
.help-section h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  padding: 0 4px;
  color: var(--accent);
  font-weight: 600;
}
details.help-item {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}
.help-section details.help-item:first-of-type { border-top: 1px solid var(--border); }
details.help-item[open] { background: var(--bg-soft); }
details.help-item summary {
  padding: 18px 44px 18px 18px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  position: relative;
}
details.help-item summary::-webkit-details-marker { display: none; }
details.help-item summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--muted);
  font-weight: 400;
  transition: transform 0.15s;
}
details.help-item[open] summary::after { content: "−"; }
details.help-item .answer {
  padding: 4px 18px 20px;
  color: #2a2a2a;
  white-space: pre-wrap;
  line-height: 1.65;
}
.help-status {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
}
.help-empty {
  text-align: center;
  color: var(--muted);
  padding: 24px;
  font-style: italic;
}
.help-contact {
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  text-align: center;
}
.help-contact p { margin: 0 0 8px; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* Comparison */
.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.compare-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.compare-card.emphasis {
  border-color: var(--accent);
  background: linear-gradient(180deg, #f4f8fd, var(--bg));
  box-shadow: 0 12px 32px -20px rgba(22, 140, 219, 0.4);
}
.compare-card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  color: var(--accent);
}
.compare-card:not(.emphasis) h3 { color: var(--muted); }
.compare-card ul { margin: 0; padding-left: 20px; }
.compare-card li { margin-bottom: 8px; color: #2a2a2a; font-size: 15px; }
.compare-card:not(.emphasis) li { color: var(--muted); }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 16px 40px -20px rgba(83, 27, 147, 0.4);
}
.price-card .badge {
  position: absolute;
  top: -11px; right: 24px;
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-card h3 { margin: 0 0 6px; font-size: 20px; }
.price-card .price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.price-card .price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 0; }
.price-card li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: #2a2a2a;
  font-size: 15px;
  border-top: 1px solid var(--border);
}
.price-card li:first-child { border-top: none; }
.price-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* Disclaimer */
.disclaimer-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 28px;
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.disclaimer-box .eyebrow { margin-bottom: 8px; }
.disclaimer-box h2 { font-size: 22px; margin: 0 0 12px; }
.disclaimer-box p { margin: 0; color: var(--muted); font-size: 15px; }

/* Final CTA */
.cta-final {
  text-align: center;
  background: linear-gradient(180deg, #168cdb 0%, #2768c4 55%, #531B93 100%);
  color: #fff;
  padding: 72px 20px;
}
.cta-final h2 { font-size: clamp(28px, 3.2vw, 36px); margin: 0 0 12px; color: #fff; }
.cta-final > .container > p { font-size: 18px; color: rgba(255,255,255,0.9); margin: 0 0 28px; }
.cta-final .cta { background: #fff; color: var(--accent-purple); }
.cta-final .cta:hover { background: #f0ecfa; }
.cta-final .fine-print { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 20px; }
.cta-final .fine-print a { color: #fff; text-decoration: underline; }
