:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --text: #11132c;
  --muted: #65708f;
  --line: #dce3f2;
  --blue: #566df4;
  --blue-strong: #3246d3;
  --teal: #12a59a;
  --gold: #d89425;
  --coral: #e35d6a;
  --green: #16a34a;
  --shadow: 0 22px 64px rgba(17, 19, 44, 0.12);
  --soft-shadow: 0 14px 34px rgba(17, 19, 44, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0, #f4f7ff 330px, var(--bg) 100%),
    var(--bg);
}

a {
  color: var(--blue-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px 16px;
  z-index: -1;
  border: 1px solid rgba(220, 227, 242, 0.85);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(17, 19, 44, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 10px 20px rgba(86, 109, 244, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-soft);
  text-decoration: none;
}

nav .nav-cta {
  margin-left: 6px;
  color: #ffffff;
  background: var(--text);
}

nav .nav-cta:hover {
  color: #ffffff;
  background: var(--blue-strong);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 72px;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: 46px 0 72px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(86, 109, 244, 0.26);
}

.button:hover {
  text-decoration: none;
  background: var(--blue-strong);
}

.button.secondary {
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.button.secondary:hover {
  background: var(--surface-soft);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.screenshot-stack {
  position: relative;
  width: min(100%, 430px);
  min-height: 620px;
}

.app-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 242, 0.96);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.app-shot::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 84px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(17, 19, 44, 0.18);
}

.app-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-primary {
  top: 0;
  right: 40px;
  z-index: 3;
  width: 288px;
  aspect-ratio: 9 / 19.5;
}

.shot-secondary {
  right: 0;
  bottom: 46px;
  z-index: 2;
  width: 214px;
  aspect-ratio: 9 / 19.5;
  transform: rotate(5deg);
}

.shot-tertiary {
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 216px;
  aspect-ratio: 9 / 19.5;
  transform: rotate(-6deg);
}

.shot-placeholder {
  width: 100%;
  height: 100%;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(86, 109, 244, 0.12), rgba(18, 165, 154, 0.08)),
    #ffffff;
  color: var(--text);
  font-weight: 850;
}

.shot-placeholder img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.shot-placeholder strong {
  font-size: 30px;
  line-height: 1;
}

.shot-placeholder span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

article,
.document {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

article {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.card-mark {
  display: block;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.mark-blue {
  background: var(--blue);
}

.mark-gold {
  background: var(--gold);
}

.mark-teal {
  background: var(--teal);
}

.mark-coral {
  background: var(--coral);
}

article h2,
.document h2,
.feature-carousel h2,
.plus-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

article p,
.document p,
.document li,
.plus-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

article p {
  margin: 0;
}

.feature-band {
  margin-top: 20px;
  padding: 46px 0 0;
}

.feature-carousel {
  margin-top: 20px;
  padding: 46px 0 0;
}

.carousel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.feature-carousel h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.carousel-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.carousel-tab {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}

.carousel-tab:hover,
.carousel-tab:focus-visible {
  color: var(--text);
  outline: none;
  background: var(--surface-soft);
}

.carousel-tab.is-active {
  color: #ffffff;
  background: var(--blue);
}

.carousel-stage {
  margin-top: 26px;
  min-height: 452px;
}

.feature-slide {
  animation: fadeSlide 360ms ease;
}

.feature-slide[hidden] {
  display: none;
}

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

.feature-list article {
  min-height: 220px;
}

.feature-list h3,
.feature-list h4 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plus-section {
  position: relative;
  margin-top: 28px;
  padding: 2px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
  gap: 0;
  align-items: stretch;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #ff4fb8, #ffb84d 22%, #a8f24a 42%, #36d6ff 62%, #8a7cff 82%, #ff4fb8),
    #ffffff;
  box-shadow: 0 24px 72px rgba(86, 109, 244, 0.18);
}

.plus-section::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 18%, rgba(54, 214, 255, 0.18), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(255, 79, 184, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.94);
}

.plus-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 36px;
}

.plus-section h2 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.plus-eyebrow {
  margin: 0 0 16px;
  background: linear-gradient(90deg, #ff4fb8, #ffb84d, #36d6ff, #8a7cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plus-copy p:last-child {
  max-width: 650px;
  margin-bottom: 0;
}

.plus-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plus-benefits li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(220, 227, 242, 0.88);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.45;
}

.plus-benefits li::before {
  content: "+";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4fb8, #ffb84d, #36d6ff, #8a7cff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.plan-placeholder {
  position: relative;
  z-index: 1;
  margin: 18px 18px 18px 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(17, 19, 44, 0.94), rgba(50, 70, 211, 0.86)),
    var(--text);
  box-shadow: 0 18px 46px rgba(17, 19, 44, 0.16);
}

.plus-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(var(--text), var(--text)) padding-box,
    linear-gradient(135deg, #ff4fb8, #ffb84d, #a8f24a, #36d6ff, #8a7cff) border-box;
  border: 3px solid transparent;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.plan-kicker {
  margin: 0 0 12px;
  color: #36d6ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan-placeholder h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.plan-placeholder p {
  color: rgba(255, 255, 255, 0.76);
}

.plan-placeholder p:last-child {
  margin-bottom: 0;
}

.document {
  max-width: 900px;
  padding: 52px;
}

.document h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 24px;
}

.document h2 {
  margin-top: 38px;
  padding-top: 4px;
}

.document h3 {
  margin: 24px 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
}

.document ul {
  padding-left: 22px;
}

.document p:first-of-type {
  font-size: 18px;
}

.contact-card {
  display: inline-flex;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  font-weight: 820;
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 44px;
  border-top: 1px solid var(--line);
}

footer p {
  max-width: 900px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 0 56px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .screenshot-stack {
    min-height: 520px;
  }

  .shot-primary {
    right: auto;
    left: 76px;
    width: 250px;
  }

  .shot-secondary,
  .shot-tertiary {
    width: 188px;
  }

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

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

  .carousel-head {
    grid-template-columns: 1fr;
  }

  .carousel-head {
    display: grid;
    align-items: start;
  }

  .carousel-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .carousel-tab {
    flex: 1 0 auto;
  }

  .carousel-stage {
    min-height: 0;
  }

  .plus-section {
    grid-template-columns: 1fr;
  }

  .plan-placeholder {
    margin: 0 18px 18px;
  }
}

@media (max-width: 660px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px 0;
  }

  .site-header::before {
    inset: 8px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 14px;
  }

  nav .nav-cta {
    margin-left: 0;
  }

  main {
    padding: 26px 18px 56px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .lede {
    font-size: 18px;
  }

  .actions,
  .button {
    width: 100%;
  }

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

  .screenshot-stack {
    min-height: 440px;
  }

  .app-shot {
    border-radius: 24px;
  }

  .shot-primary {
    left: 56px;
    width: 206px;
  }

  .shot-secondary {
    right: 10px;
    bottom: 32px;
    width: 148px;
  }

  .shot-tertiary {
    width: 148px;
  }

  .document {
    padding: 30px 22px;
    border-radius: 14px;
  }

  .plus-section {
    border-radius: 14px;
  }

  .plus-section::before {
    border-radius: 12px;
  }

  .plus-copy {
    padding: 24px 18px;
  }

  .plan-placeholder {
    margin: 0 10px 10px;
    padding: 20px;
  }
}
