:root {
  --brand-blue: #2e70ed;
  --brand-teal: #1fb6a8;
  --brand-green: #459e4f;
  --text: #1c1c1e;
  --text-secondary: #55555c;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --border: #e2e2e6;

  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color-scheme: light dark;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #f2f2f7;
    --text-secondary: #a9a9b0;
    --bg: #0d0d10;
    --bg-soft: #17171a;
    --border: #2e2e33;
  }
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: var(--brand-blue);
}
img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
}
.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
}
.site-nav a:hover {
  color: var(--text);
}
.nav-cta {
  background: var(--brand-blue);
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
  color: white;
  padding: 64px 0 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 18px;
  opacity: 0.92;
  margin: 0 0 28px;
  max-width: 46ch;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: white;
  color: var(--brand-blue);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-shot {
  justify-self: center;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
}
.hero-shot img {
  width: 240px;
  border-radius: 28px;
}

/* Sections */
section {
  padding: 72px 0;
}
h2 {
  font-size: 30px;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.section-lede {
  color: var(--text-secondary);
  font-size: 17px;
  margin: 0 0 40px;
  max-width: 60ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: var(--bg-soft);
}
.feature-card .icon {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}
.feature-card.pro {
  border-color: var(--brand-green);
}
.pro-badge {
  display: inline-block;
  background: var(--brand-green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.shots {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.shots img {
  width: 200px;
  border-radius: 18px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
}
.price-card.highlight {
  border-color: var(--brand-blue);
  background: var(--bg-soft);
}
.price-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
}
.price {
  font-size: 34px;
  font-weight: 700;
  margin: 12px 0 20px;
}
.price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
}
.price-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.9;
}

/* Support */
.support-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.support-box h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.support-box p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--text-secondary);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer a {
  color: var(--text-secondary);
  margin-left: 16px;
}
.site-footer a:first-child {
  margin-left: 0;
}

/* Legal page */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.legal h1 {
  font-size: 32px;
  margin-bottom: 4px;
}
.legal .effective-date {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  margin-top: 36px;
}
.legal p,
.legal li {
  color: var(--text-secondary);
  line-height: 1.7;
}
.legal ul {
  padding-left: 20px;
}

@media (max-width: 760px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-shot {
    justify-self: start;
  }
  .hero h1 {
    font-size: 32px;
  }
  .site-nav a:not(.nav-cta) {
    display: none;
  }
}
