:root {
  --ink: #111827;
  --muted: #667085;
  --line: #e7eaf0;
  --soft: #fff7fb;
  --pink: #ec4899;
  --pink-dark: #b0185f;
  --green: #10b981;
  --green-dark: #07935f;
  --cream: #fffdfb;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8fc 0%, #ffffff 34%, #f8fbff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(231, 234, 240, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--green));
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475467;
  font-size: 14px;
  font-weight: 750;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 34px rgba(16, 185, 129, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--ink);
  border-color: #d9dee8;
  background: #fff;
}

.btn-pink {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 18px 34px rgba(236, 72, 153, 0.22);
}

.hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  padding: 62px 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-dark);
  background: #fff0f8;
  border: 1px solid #ffd5ea;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 850;
}

.hero h1 {
  max-width: 620px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 19px;
  line-height: 1.65;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.trust-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 23px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.desktop-frame,
.phone-frame {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.desktop-frame {
  position: absolute;
  inset: 40px 0 auto 0;
  border-radius: 8px;
  height: 390px;
}

.desktop-frame img,
.phone-frame img,
.screenshot-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-frame img {
  object-position: left top;
}

.phone-frame {
  position: absolute;
  right: 26px;
  top: 168px;
  width: 238px;
  height: 518px;
  border-radius: 34px;
  border: 8px solid #121722;
}

.floating-badge {
  position: absolute;
  left: 28px;
  bottom: 60px;
  width: 260px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.12);
}

.floating-badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.floating-badge span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 36px rgba(17, 24, 39, 0.04);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--pink-dark);
  background: #fff0f8;
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.demo-band {
  background: #0f172a;
  color: #fff;
}

.demo-band .section {
  width: min(1220px, calc(100% - 40px));
}

.demo-band .section-head p {
  color: #cbd5e1;
}

.screens {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 22px;
  align-items: stretch;
}

.screenshot-panel {
  overflow: hidden;
  min-height: 500px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.screenshot-panel.mobile {
  max-width: 390px;
  justify-self: end;
  border-radius: 34px;
  border: 8px solid #ffffff;
}

.screenshot-panel.mobile img {
  object-position: top center;
}

.screenshot-panel.desktop img {
  object-position: left top;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 999px;
  background: var(--green);
  font-weight: 900;
}

.step strong {
  display: block;
  margin-bottom: 8px;
}

.step span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 26px;
  align-items: center;
}

.comparison {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-cell {
  padding: 18px;
  min-height: 64px;
  display: flex;
  align-items: center;
  font-weight: 750;
}

.comparison-cell:first-child {
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.quote {
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #26364f);
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0 0 18px;
  font-size: 23px;
  line-height: 1.42;
  font-weight: 850;
}

.quote span {
  color: #cbd5e1;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-card.pro {
  border-color: #ffcfe8;
  background: linear-gradient(180deg, #fff, #fff5fb);
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.price {
  margin: 0 0 22px;
  font-size: 46px;
  font-weight: 950;
}

.price small {
  color: var(--muted);
  font-size: 15px;
}

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

.check-list li {
  margin: 0;
  padding: 11px 0 11px 30px;
  border-top: 1px solid #eef1f5;
  color: #344054;
  line-height: 1.45;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #fff;
  border: 1px solid var(--green);
}

.cta {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 54px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #24334b);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.cta p {
  max-width: 680px;
  margin: 0;
  color: #d5dbe7;
  line-height: 1.65;
}

.site-footer {
  padding: 30px 20px 44px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-stage {
    min-height: 610px;
  }

  .feature-grid,
  .screens,
  .split,
  .pricing,
  .cta {
    grid-template-columns: 1fr;
  }

  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-panel.mobile {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero,
  .section,
  .demo-band .section,
  .cta {
    width: min(100% - 28px, 1160px);
  }

  .brand span {
    font-size: 18px;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 570px;
  }

  .desktop-frame {
    height: 300px;
  }

  .phone-frame {
    right: 18px;
    top: 188px;
    width: 200px;
    height: 430px;
    border-radius: 28px;
    border-width: 7px;
  }

  .floating-badge {
    left: 0;
    bottom: 36px;
    width: 210px;
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .screenshot-panel {
    min-height: 360px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-cell:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta {
    padding: 34px 24px;
  }
}
