:root {
  --ink: #07111f;
  --muted: #5c6a7b;
  --soft: #eef5ff;
  --paper: #fbfcff;
  --white: #ffffff;
  --line: rgba(7, 17, 31, 0.1);
  --blue: #1677ff;
  --blue-2: #69d2ff;
  --deep-blue: #0a2f7a;
  --orange: #ff7a1a;
  --orange-soft: rgba(255, 122, 26, 0.14);
  --green: #28c76f;
  --violet: #816bff;
  --shadow: 0 28px 80px rgba(24, 67, 126, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #eef5ff 100%);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(22, 119, 255, 0.2), transparent 28%),
    radial-gradient(circle at 78% 14%, rgba(105, 210, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 92%, rgba(255, 122, 26, 0.16), transparent 30%);
  animation: glowDrift 12s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  from {
    transform: scale(1) translateY(0);
  }

  to {
    transform: scale(1.05) translateY(-16px);
  }
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 40;
  width: min(1040px, calc(100% - 28px));
  transform: translateX(-50%);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(22, 119, 255, 0.12);
  backdrop-filter: blur(22px);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #344256;
  font-size: 0.9rem;
  font-weight: 750;
}

.topbar nav a:hover {
  background: rgba(22, 119, 255, 0.08);
  color: var(--deep-blue);
}

.topbar-cta,
.primary-btn,
.secondary-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 850;
  white-space: nowrap;
}

.topbar-cta,
.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #044dce);
  box-shadow: 0 16px 44px rgba(22, 119, 255, 0.28);
}

.secondary-btn {
  color: var(--deep-blue);
  border: 1px solid rgba(22, 119, 255, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  min-height: 92vh;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 98px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.16;
}

.lede {
  max-width: 690px;
  color: #405064;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(22, 119, 255, 0.12);
  border-radius: 999px;
  color: #405064;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 468px;
}

.browser-frame {
  position: absolute;
  inset: 46px 0 auto 0;
  overflow: hidden;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
}

.browser-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 24%, rgba(22, 119, 255, 0.1));
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  padding-top: 32px;
  transform: scale(1.04);
}

.browser-dots {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9d6e8;
}

.browser-dots i:nth-child(1) {
  background: #ff6b62;
}

.browser-dots i:nth-child(2) {
  background: #ffd36b;
}

.browser-dots i:nth-child(3) {
  background: #28c76f;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(22, 119, 255, 0.16);
  backdrop-filter: blur(18px);
  animation: floatSoft 5s ease-in-out infinite alternate;
}

.floating-card span,
.case-card span,
.panel-copy span,
.leverage-grid span,
.timeline span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin: 7px 0;
  font-size: 3rem;
  line-height: 0.9;
}

.floating-card small {
  color: var(--muted);
  font-weight: 700;
}

.card-opps {
  right: 12px;
  bottom: 42px;
}

.card-open {
  left: -12px;
  top: 8px;
  animation-delay: 0.8s;
}

@keyframes floatSoft {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-12px);
  }
}

.proof-strip,
.section-pad,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 0 82px;
}

.metric,
.leverage-grid article,
.case-card,
.timeline article,
.note-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 50px rgba(17, 60, 120, 0.08);
  backdrop-filter: blur(18px);
}

.metric {
  min-height: 230px;
  padding: 26px;
}

.metric span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.88;
  font-weight: 900;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.metric p,
.leverage-grid p,
.section-heading p,
.dashboard-copy p,
.case-card p,
.timeline p,
.fit-copy p,
.final-cta p {
  color: var(--muted);
  line-height: 1.6;
}

.section-pad {
  padding: 94px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.leverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.leverage-grid article {
  min-height: 260px;
  padding: 24px;
}

.leverage-grid span {
  margin-bottom: 72px;
}

.leverage-grid article:nth-child(2) span,
.leverage-grid article:nth-child(2) h3,
.case-card:nth-child(2) span,
.timeline article:nth-child(2) span {
  color: var(--orange);
}

.builder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}

.builder-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.builder-tab {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
  color: #405064;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.builder-tab.active,
.builder-tab:hover {
  color: var(--white);
  border-color: rgba(22, 119, 255, 0.3);
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
}

.builder-panel {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 28px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(235, 245, 255, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(22, 119, 255, 0.15), transparent 32%);
  box-shadow: var(--shadow);
}

.panel-copy {
  display: none;
  max-width: 560px;
}

.panel-copy.active {
  display: block;
}

.panel-copy h3 {
  margin: 16px 0;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  line-height: 1;
}

.panel-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.panel-visual {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-node {
  min-width: 76px;
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 18px;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.flow-node.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.flow-line {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(22, 119, 255, 0.15), rgba(22, 119, 255, 0.7));
}

.dashboards {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}

.dashboard-copy p {
  margin-top: 22px;
  font-size: 1.06rem;
}

.dashboard-stack {
  position: relative;
  min-height: 470px;
}

.dashboard-stack img {
  position: absolute;
  width: 82%;
  border: 1px solid rgba(22, 119, 255, 0.12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.shot-one {
  right: 0;
  top: 0;
}

.shot-two {
  left: 0;
  bottom: 0;
}

.notes {
  padding-top: 70px;
}

.note-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
}

.note-card {
  flex: 0 1 320px;
  min-height: 0;
  padding: 28px;
  border-left: 4px solid transparent;
}

.note-card.active {
  flex-basis: 620px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.95), rgba(10, 47, 122, 0.96)),
    var(--blue);
}

.note-card:nth-child(2),
.note-card:nth-child(6) {
  flex: 0 1 300px;
}

.note-card:nth-child(3),
.note-card:nth-child(5),
.note-card:nth-child(7) {
  flex: 0 1 400px;
}

.note-card:nth-child(4),
.note-card:nth-child(8),
.note-card:nth-child(9) {
  flex: 0 1 360px;
}

.note-card:not(.active) {
  border-left-color: var(--orange);
}

.proof-chip {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #7a3500;
  background: var(--orange-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.note-card.active .proof-chip {
  color: #fff3e8;
  background: rgba(255, 122, 26, 0.32);
}

.note-card p {
  margin-bottom: 28px;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1.18;
  font-weight: 850;
}

.note-card:not(.active) p {
  color: #27364a;
  font-size: 1.22rem;
}

.note-card span {
  display: block;
  margin-top: 5px;
  color: inherit;
  opacity: 0.68;
  font-weight: 750;
}

.note-card .testimonial-name,
.media-quote .testimonial-name {
  display: block;
  margin-top: 0;
  color: inherit;
  opacity: 0.9;
  font-weight: 500;
}

.note-card .testimonial-company,
.media-quote .testimonial-company {
  display: block;
  margin-top: 5px;
  color: inherit;
  opacity: 0.62;
  font-weight: 600;
}

.note-card .proof-chip {
  display: inline-block;
  margin-top: 0;
  color: #7a3500;
  opacity: 1;
  font-weight: 900;
}

.note-card.active .proof-chip {
  color: #fff3e8;
}

.proof-with-media {
  padding-top: 10px;
}

.media-proof-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(22, 119, 255, 0.12);
  border-radius: 30px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(238, 245, 255, 0.72)),
    radial-gradient(circle at 80% 10%, var(--orange-soft), transparent 34%);
  box-shadow: var(--shadow);
}

.media-proof-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.media-quote {
  margin-top: 28px;
  border-left: 4px solid var(--orange);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.media-quote p {
  color: #152236;
  font-size: 1.3rem;
  line-height: 1.28;
  font-weight: 850;
}

.media-quote .testimonial-name {
  color: #344256;
}

.media-quote .testimonial-company {
  color: var(--muted);
}

.media-proof-visual {
  position: relative;
  min-height: 390px;
}

.media-proof-visual img {
  position: absolute;
  inset: 46px 0 auto auto;
  width: 92%;
  border: 1px solid rgba(22, 119, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(17, 60, 120, 0.14);
}

.media-stat {
  position: absolute;
  z-index: 2;
  width: 166px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(17, 60, 120, 0.12);
  backdrop-filter: blur(16px);
}

.media-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 2.6rem;
  line-height: 0.9;
}

.media-stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.media-stat.orange {
  left: 0;
  top: 0;
}

.media-stat.orange strong {
  color: var(--orange);
}

.media-stat.blue {
  right: 8px;
  bottom: 24px;
}

.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-card {
  min-height: 270px;
  padding: 24px;
}

.case-card h3 {
  margin: 46px 0 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline article {
  min-height: 300px;
  padding: 24px;
}

.timeline span {
  color: var(--blue);
  font-size: 3.2rem;
  line-height: 1;
}

.timeline h3 {
  margin: 74px 0 12px;
}

.fit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.fit-list {
  display: grid;
  gap: 10px;
}

.fit-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
  color: #27364a;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 850;
  box-shadow: 0 18px 50px rgba(17, 60, 120, 0.06);
}

.final-cta {
  margin-bottom: 28px;
  padding: 84px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 32px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.9), rgba(22, 119, 255, 0.72)),
    url("assets/dashboard-main.png") center / cover;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta p {
  max-width: 720px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.final-cta .eyebrow {
  color: #bfe3ff;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar {
    justify-content: space-between;
    border-radius: 24px;
  }

  .topbar nav {
    display: none;
  }

  .hero,
  .dashboards,
  .fit,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .proof-strip,
  .leverage-grid,
  .timeline,
  .case-studies {
    grid-template-columns: 1fr;
  }

  .note-grid {
    display: flex;
  }

  .media-proof-card {
    grid-template-columns: 1fr;
  }

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

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

  .dashboard-stack {
    min-height: 410px;
  }
}

@media (max-width: 640px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .topbar-cta {
    width: 100%;
  }

  .hero {
    width: calc(100% - 28px);
    min-height: auto;
    padding: 96px 0 46px;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .trust-row span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-visual {
    min-height: 400px;
  }

  .browser-frame {
    inset: 58px 0 auto;
    transform: none;
  }

  .floating-card {
    width: 156px;
    padding: 14px;
  }

  .floating-card strong {
    font-size: 2.3rem;
  }

  .card-open {
    left: 0;
    top: 10px;
  }

  .card-opps {
    right: 0;
    bottom: 16px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

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

  .builder-panel {
    padding: 24px;
    padding-bottom: 120px;
  }

  .panel-visual {
    left: 24px;
    right: 24px;
    justify-content: center;
    transform: scale(0.84);
    transform-origin: center;
  }

  .dashboard-stack {
    min-height: 360px;
  }

  .dashboard-stack img {
    width: 92%;
  }

  .note-card {
    min-height: auto;
  }

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

  .metric,
  .case-card,
  .timeline article {
    min-height: auto;
  }

  .metric span {
    font-size: 3.1rem;
  }

  .media-proof-card {
    padding: 24px;
  }

  .media-proof-visual {
    min-height: 330px;
  }

  .media-proof-visual img {
    width: 100%;
    inset: 70px 0 auto;
  }

  .media-stat {
    width: 138px;
  }

  .media-stat strong {
    font-size: 2.05rem;
  }

  .media-stat.blue {
    bottom: 0;
  }

  .media-quote p {
    font-size: 1.1rem;
  }

  .timeline h3 {
    margin-top: 52px;
  }

  .final-cta {
    width: calc(100% - 28px);
    padding: 44px 24px;
    border-radius: 24px;
  }
}

@media (min-width: 981px) {
  .note-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
  }

  .note-card {
    flex: 0 1 320px;
    width: auto;
    min-height: 0;
    margin: 0;
  }

  .note-card.active {
    flex-basis: 620px;
  }

  .note-card:nth-child(2),
  .note-card:nth-child(6) {
    flex: 0 1 300px;
  }

  .note-card:nth-child(3),
  .note-card:nth-child(5),
  .note-card:nth-child(7) {
    flex: 0 1 400px;
  }

  .note-card:nth-child(4),
  .note-card:nth-child(8),
  .note-card:nth-child(9) {
    flex: 0 1 360px;
  }
}
