:root {
  --bg: #ffffff;
  --ink: #16181c;
  --ink-soft: #3a3f47;
  --muted: #6b7280;
  --charcoal: #16181c;
  --charcoal-2: #1f232b;
  --accent: #2f6df6;
  --accent-dark: #255ad6;
  --green: #1f9d57;
  --cream: #f3efe6;
  --line: #e6e8ec;
  --alt-bg: #f6f7f9;
  --radius: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
a {
  color: inherit;
}

/* MARK: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, transform 0.05s;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover {
  background: var(--alt-bg);
}
.btn-text {
  color: var(--ink-soft);
}
.btn-text:hover {
  color: var(--ink);
}
.btn-lg {
  padding: 14px 24px;
  font-size: 16px;
}

/* App Store badge */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 12px;
}
.appstore-badge:hover {
  background: #1a1a1a;
}
.appstore-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.appstore-badge small {
  font-size: 11px;
  opacity: 0.85;
}
.appstore-badge strong {
  font-size: 17px;
  font-weight: 600;
}

/* MARK: Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
}
.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 14px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* MARK: Hero */
.hero {
  background: radial-gradient(120% 90% at 80% 0%, #eef3ff 0%, #ffffff 55%);
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: #e7efff;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 30em;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions.center {
  justify-content: center;
}
.hero-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

/* Hero visuals */
.hero-visual {
  position: relative;
}
.window {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(16, 24, 40, 0.16);
  overflow: hidden;
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #f3f4f6;
  border-bottom: 1px solid var(--line);
}
.window-bar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d3d6db;
}
.window-url {
  margin-left: 10px;
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  border-radius: 6px;
  padding: 3px 10px;
}
.window-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 230px;
}
.mock-sidebar {
  background: var(--charcoal);
  color: #c7ccd4;
  padding: 14px 10px;
  font-size: 12px;
}
.mock-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
}
.mock-mark {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
}
.mock-nav-item {
  padding: 7px 9px;
  border-radius: 6px;
  margin-bottom: 2px;
}
.mock-nav-item.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.mock-main {
  padding: 16px;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.mock-stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}
.mock-stat b {
  display: block;
  font-size: 17px;
}
.mock-stat span {
  font-size: 11px;
  color: var(--muted);
}
.mock-stat.accent b {
  color: var(--accent);
}
.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  padding-top: 6px;
}
.mock-chart span {
  flex: 1;
  background: linear-gradient(180deg, #5b8bf8, var(--accent));
  border-radius: 4px 4px 0 0;
}

.phone {
  position: absolute;
  right: -8px;
  bottom: -36px;
  width: 168px;
  background: #0d0f12;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 24px 48px rgba(16, 24, 40, 0.28);
  border: 1px solid #2a2e36;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 14px;
  background: #0d0f12;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.phone-screen {
  background: #f5f6f8;
  border-radius: 22px;
  padding: 22px 12px 14px;
  min-height: 250px;
  display: flex;
  align-items: center;
}
.swipe-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.1);
  padding: 14px;
  width: 100%;
}
.swipe-route {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.swipe-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.swipe-dot.start {
  background: var(--accent);
}
.swipe-dot.end {
  background: var(--green);
}
.swipe-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, #cbd2dc 0 5px, transparent 5px 9px);
}
.swipe-info strong {
  display: block;
  font-size: 13px;
}
.swipe-info span {
  font-size: 11px;
  color: var(--muted);
}
.swipe-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
}
.swipe-personal {
  color: var(--accent);
}
.swipe-business {
  color: var(--green);
}

/* MARK: Sections */
.section {
  padding: 84px 0;
}
.section-alt {
  background: var(--alt-bg);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-icon {
  font-size: 26px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.feature p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 20px;
  margin: 0 0 8px;
}
.step p {
  color: var(--ink-soft);
  margin: 0;
}

/* Value */
.value {
  background: var(--charcoal);
  color: #fff;
}
.value-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.value-figure {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
}
.value-figure span {
  font-size: 28px;
  color: #9aa1ab;
}
.value-copy h2 {
  font-size: 32px;
  margin: 0 0 12px;
}
.value-copy p {
  font-size: 18px;
  color: #c7ccd4;
  margin: 0;
  max-width: 34em;
}
.value-copy strong {
  color: #fff;
}

/* Use cases */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.usecase {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  font-weight: 600;
  font-size: 16px;
}

/* MARK: Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 24px 50px rgba(16, 24, 40, 0.18);
}
.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-name {
  font-weight: 600;
  color: #c7ccd4;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-amount span {
  font-size: 20px;
  font-weight: 500;
  color: #9aa1ab;
}
.price-sub {
  color: #9aa1ab;
  margin: 8px 0 20px;
  font-size: 14px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.price-features li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 15px;
  color: #e6e8ec;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.price-cta {
  width: 100%;
}

.compare {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.compare-title {
  margin: 0 0 22px;
  font-size: 17px;
}
.compare-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-row {
  display: grid;
  grid-template-columns: 84px 1fr 70px;
  align-items: center;
  gap: 12px;
}
.compare-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.compare-track {
  background: #f1f2f4;
  border-radius: 8px;
  overflow: hidden;
  height: 32px;
}
.compare-fill {
  height: 100%;
  background: #cdd3db;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  white-space: nowrap;
  min-width: 44px;
}
.mine-fill {
  background: linear-gradient(90deg, #34b56a, var(--green));
}
.compare-row.mine .compare-name {
  color: var(--green);
  font-weight: 700;
}
.compare-mult {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}
.compare-note {
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.compare-note strong {
  color: var(--ink);
}

/* CTA */
.cta {
  text-align: center;
}
.cta-inner h2 {
  font-size: 38px;
  margin: 0 0 10px;
}
.cta-inner p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: #aeb4be;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}
.footer-brand .brand-logo {
  width: 26px;
  height: 26px;
}
.footer-links {
  display: flex;
  gap: 22px;
  margin-left: 12px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #c7ccd4;
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-copy {
  margin-left: auto;
  font-size: 13px;
  color: #7d838d;
}

/* MARK: Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal h1 {
  font-size: 34px;
  margin: 0 0 6px;
}
.legal .updated {
  color: var(--muted);
  margin: 0 0 32px;
}
.legal h2 {
  font-size: 20px;
  margin: 32px 0 8px;
}
.legal p,
.legal li {
  color: var(--ink-soft);
  font-size: 16px;
}
.legal a {
  color: var(--accent);
}
.legal .back {
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

/* MARK: Responsive */
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 33px;
  }
  .feature-grid,
  .steps,
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  .value-figure {
    font-size: 64px;
  }
  .phone {
    display: none;
  }
  .footer-copy {
    margin-left: 0;
  }
}
