﻿:root {
  --page-black: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --glass: rgba(35, 20, 17, 0.36);
  --glass-strong: rgba(0, 0, 0, 0.34);
  --pill: #ffffff;
  --pill-text: #090909;
  --font-ui: "Plus Jakarta Sans", "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hero: "Plus Jakarta Sans", "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --thread-accent: #8d939b;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--page-black);
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--page-black);
  color: var(--text);
  font-family: var(--font-ui);
}

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

.site-header {
  position: fixed;
  inset: 7px 0 auto;
  z-index: 20;
  height: 60px;
  color: #ffffff;
  font-family: var(--font-ui);
  isolation: isolate;
  transition: color 300ms cubic-bezier(0, 0, 0.2, 1);
}

body.is-on-light .site-header::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: 0;
  height: 96px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 246, 243, 0.72) 0%, rgba(247, 246, 243, 0.32) 62%, rgba(247, 246, 243, 0) 100%);
  pointer-events: none;
}

.header-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 24px, 1960px);
  height: 60px;
  margin: 0 auto;
}

.nav-cluster {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  height: 60px;
}

.nav-cluster::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: 8px;
  background: var(--glass);
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(24px) saturate(1.16);
  transition:
    opacity 300ms cubic-bezier(0, 0, 0.2, 1),
    background-color 300ms cubic-bezier(0, 0, 0.2, 1),
    box-shadow 300ms cubic-bezier(0, 0, 0.2, 1),
    backdrop-filter 300ms cubic-bezier(0, 0, 0.2, 1);
}

body.is-scrolled .nav-cluster::before,
body.menu-open .nav-cluster-left::before {
  opacity: 1;
}

body.is-on-light .site-header {
  color: #0b0f17;
}

body.is-on-light .nav-cluster::before,
body.is-on-light.menu-open .nav-cluster-left::before {
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.045),
    0 12px 28px rgba(15, 23, 42, 0.035);
  backdrop-filter: blur(28px) saturate(1.24);
}

body.about-page .nav-cluster::before,
body.about-page.is-scrolled .nav-cluster::before,
body.about-page.menu-open .nav-cluster-left::before,
body.about-page.is-on-light .nav-cluster::before,
body.about-page.is-on-light.menu-open .nav-cluster-left::before {
  background: transparent;
  opacity: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.about-page.is-scrolled .nav-cluster::before,
body.about-page.menu-open .nav-cluster-left::before {
  background: var(--glass);
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

body.about-page.is-on-light.is-scrolled .nav-cluster::before,
body.about-page.is-on-light.menu-open .nav-cluster-left::before {
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.045),
    0 12px 28px rgba(15, 23, 42, 0.035);
  backdrop-filter: blur(28px) saturate(1.24);
  -webkit-backdrop-filter: blur(28px) saturate(1.24);
}

.nav-cluster-left {
  gap: 32px;
  padding: 0 26px;
}

.nav-cluster-right {
  gap: 10px;
  padding: 0 17px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 42px;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 142px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
  object-fit: contain;
}

body.is-on-light .brand-logo {
  content: url("./assets/leadport-logo-transparent.png?v=transparent-logo-v1");
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.12));
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.desktop-nav a,
.quiet-link,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  transition:
    color 300ms cubic-bezier(0, 0, 0.2, 1),
    opacity 300ms cubic-bezier(0, 0, 0.2, 1),
    background-color 300ms cubic-bezier(0, 0, 0.2, 1);
}

.desktop-nav a {
  padding: 0 13px 0 21px;
}

.desktop-nav a::after {
  width: 5px;
  height: 5px;
  margin-left: 10px;
  content: "";
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.42;
  transform: translateY(-2px) rotate(45deg);
}

.desktop-nav a:hover,
.quiet-link:hover {
  opacity: 0.72;
}

.quiet-link {
  padding: 0 20px;
}

.nav-cta {
  min-width: 134px;
  padding: 0 22px;
  background: var(--pill);
  color: var(--pill-text);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.86);
}

body.is-on-light .nav-cta {
  background: #0b0f17;
  color: #ffffff;
}

body.is-on-light .nav-cta:hover {
  background: #252a33;
}

.menu-button {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: #ffffff;
  backdrop-filter: blur(20px);
}

body.is-on-light .menu-button {
  background: rgba(255, 255, 255, 0.42);
  color: #0b0f17;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.06),
    0 12px 28px rgba(15, 23, 42, 0.05);
}

.menu-button span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-button span:first-child {
  top: 18px;
}

.menu-button span:last-child {
  top: 27px;
}

body.menu-open .menu-button span:first-child {
  top: 22px;
  transform: rotate(42deg);
}

body.menu-open .menu-button span:last-child {
  top: 22px;
  transform: rotate(-42deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  background: #000000;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(0.78) saturate(1.02) contrast(1.05);
  transform: scale(1.006);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.66) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(255, 178, 125, 0.16) 0%, rgba(255, 178, 125, 0.06) 28%, rgba(0, 0, 0, 0) 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.08) 26%, rgba(0, 0, 0, 0.08) 74%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-bottom-fade {
  position: absolute;
  inset: auto 0 -2px;
  height: 44%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.36) 34%,
    rgba(0, 0, 0, 0.82) 66%,
    #000000 88%,
    #000000 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  width: min(100% - 72px, 1360px);
  margin: 0 auto;
  padding-top: 212px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
  backdrop-filter: none;
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
}

.pill-arrow {
  opacity: 0.58;
}

h1 {
  max-width: 820px;
  margin: 30px 0 0;
  color: #ffffff;
  font-family: var(--font-hero);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
}

.hero-trades-line {
  display: none;
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.35;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  margin-top: 26px;
  padding: 0 23px;
  border-radius: 999px;
  background: #ffffff;
  color: #151515;
  font-size: 14px;
  line-height: 20px;
  transition: transform 220ms ease, background-color 220ms ease;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
}

.hero-safety-note {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.4;
}

.trade-flow-section {
  padding: 70px 24px 78px;
  background: #000000;
  color: #ffffff;
}

.trade-flow-shell {
  display: grid;
  width: min(100%, 1360px);
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.trade-flow-heading {
  max-width: 780px;
}

.trade-flow-heading h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: var(--font-hero);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.04;
}

.trade-flow-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trade-flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trade-flow-steps article {
  min-width: 0;
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.trade-flow-steps span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  font-size: 13px;
  font-weight: 800;
}

.trade-flow-steps h3 {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.14;
}

.trade-flow-steps p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.mobile-phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 32px;
  background: transparent;
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.34),
    0 8px 24px rgba(0, 0, 0, 0.18);
}

.mobile-phone-frame::before {
  display: none;
}

.mobile-phone-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #eef8f7;
  object-fit: cover;
}

.proof-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  scroll-margin-top: 96px;
  padding: 72px 24px 104px;
  background: #000000;
}

.proof-section::before,
.proof-section::after {
  display: none;
}

.proof-overview,
.proof-thesis,
.proof-stats,
.proof-charts {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.proof-thesis {
  display: grid;
  min-height: clamp(420px, 54vh, 560px);
  margin-bottom: clamp(28px, 3vw, 48px);
  padding-bottom: clamp(36px, 3.8vw, 58px);
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  gap: clamp(44px, 8.4vw, 144px);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-thesis-copy {
  display: grid;
  gap: 20px;
  max-width: 640px;
}

.proof-thesis-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-thesis-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-hero);
  font-size: clamp(36px, 4.4vw, 68px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.proof-thesis-copy > p:not(.proof-thesis-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.proof-thesis-points {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.proof-thesis-points li {
  display: grid;
  min-width: 0;
  padding: 15px 16px;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-thesis-points strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 780;
}

.proof-thesis-points span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.35;
}

.proof-mobile-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  width: clamp(300px, 24.6vw, 382px);
  margin-top: clamp(-72px, -5vw, -24px);
  justify-self: end;
  align-self: start;
  justify-items: center;
  pointer-events: none;
}

.mobile-app-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1;
}

.proof-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1fr);
  gap: clamp(68px, 8.2vw, 136px);
  align-items: start;
}

.proof-intro {
  text-align: left;
}

.proof-intro h2 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.75vw, 58px);
  font-weight: 540;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.proof-lede {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.58;
}

.proof-stats {
  display: grid;
  align-self: start;
  margin-top: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-stats article {
  min-height: 158px;
  padding: 5px 32px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-stats article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-transform: uppercase;
}

.proof-stats strong {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-shadow: 0 0 18px rgba(246, 169, 226, 0.16);
}

.proof-stats p {
  max-width: 260px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
}

.proof-charts {
  display: grid;
  margin-top: 100px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 64px);
}

.graph-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(40px, 4vw, 60px) clamp(34px, 4.2vw, 56px) 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.99) 0%, rgba(25, 24, 23, 0.98) 56%, rgba(58, 45, 36, 0.76) 100%),
    #000000;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 72px rgba(0, 0, 0, 0.38);
}

.graph-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(255, 190, 140, 0.022) 100%);
}

.graph-card-head,
.chart-frame,
.graph-copy {
  position: relative;
  z-index: 1;
}

.graph-card-head {
  display: flex;
  min-height: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.graph-card-head span {
  display: block;
  color: rgba(246, 169, 226, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.graph-card-head h3 {
  max-width: 360px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

.graph-card-head .graph-note {
  max-width: 430px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.52;
  text-align: left;
}

.graph-card-head p {
  flex: 0 0 auto;
  margin: 2px 0 0;
  text-align: right;
}

.graph-card-head strong {
  display: block;
  color: #ffffff;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.14),
    0 0 24px rgba(246, 169, 226, 0.14);
}

.graph-card-head p span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.chart-frame {
  margin-top: 54px;
}

.chart-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  font-family: var(--font-ui);
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.chart-axis line {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}

.chart-ticks text,
.axis-title {
  fill: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.axis-title {
  fill: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 500;
}

.axis-title-y {
  fill: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.chart-line-glow {
  fill: none;
  stroke: url(#speedLine);
  opacity: 0.3;
  stroke-linecap: round;
  stroke-width: 5.8;
}

.chart-line {
  fill: none;
  stroke: url(#speedLine);
  stroke-linecap: round;
  stroke-width: 1.55;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.42))
    drop-shadow(0 0 14px rgba(255, 174, 226, 0.42));
}

.graph-card-followup .chart-line,
.graph-card-followup .chart-points circle {
  stroke: url(#followupLine);
}

.graph-card-followup .chart-line-glow {
  stroke: url(#followupLine);
}

.graph-card-followup .chart-line {
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.38))
    drop-shadow(0 0 14px rgba(220, 174, 255, 0.42));
}

.chart-points {
  display: none;
}

.chart-points circle {
  fill: #000000;
  opacity: 0.26;
  stroke: url(#speedLine);
  stroke-width: 1.4;
}

.graph-copy {
  display: flex;
  margin-top: 12px;
  justify-content: flex-end;
}

.graph-copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.55;
}

.graph-copy a {
  color: rgba(255, 255, 255, 0.24);
  font-size: 12px;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  transition: color 180ms ease;
}

.graph-copy a:hover {
  color: rgba(255, 255, 255, 0.64);
}

.proof-source-note {
  position: relative;
  z-index: 1;
  width: min(100%, 1360px);
  margin: 46px auto 0;
  color: rgba(255, 255, 255, 0.24);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.proof-source-note a {
  color: inherit;
  transition: color 180ms ease;
}

.proof-source-note a:hover {
  color: rgba(255, 255, 255, 0.62);
}

.product-section {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  scroll-margin-top: 96px;
  gap: 28px;
  padding: 104px 44px 118px;
  background: #f7f6f3;
  color: #050505;
}

.trade-audience {
  display: grid;
  width: min(100%, 1120px);
  margin: 0 auto;
  gap: 24px;
}

.trade-audience-head {
  display: grid;
  max-width: 680px;
  gap: 12px;
}

.trade-audience-label {
  margin: 0;
  color: rgba(5, 5, 5, 0.48);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trade-audience h2 {
  margin: 0;
  color: #050505;
  font-family: var(--font-hero);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

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

.trade-audience-grid article {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.07);
}

.trade-audience-grid img {
  display: block;
  width: 100%;
  height: clamp(160px, 15vw, 220px);
  background: #e5e7eb;
  object-fit: cover;
}

.trade-audience-grid article > div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.trade-audience-grid span {
  display: block;
  color: rgba(5, 5, 5, 0.48);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trade-audience-grid h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.12;
}

.trade-audience-grid p {
  margin: 0;
  color: rgba(5, 5, 5, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.coming-soon-calculator {
  display: grid;
  width: min(100%, 1120px);
  margin: 10px auto 4px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: stretch;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
}

.calculator-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 3.2vw, 42px);
}

.calculator-copy p {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: #f7f6f3;
  color: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.calculator-copy h2 {
  max-width: 460px;
  margin: 0;
  color: #050505;
  font-family: var(--font-hero);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.calculator-copy span {
  max-width: 470px;
  color: rgba(5, 5, 5, 0.64);
  font-size: 16px;
  line-height: 1.55;
}

.calculator-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #111827;
}

.calculator-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  object-fit: cover;
}

.calculator-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.74), rgba(17, 24, 39, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.48));
}

.calculator-panel,
.offer-preview {
  position: relative;
  z-index: 1;
  width: min(78%, 390px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.calculator-panel {
  margin: 30px 30px 0 auto;
  padding: 18px;
}

.calculator-panel-head,
.calculator-total,
.calculator-panel dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calculator-panel-head {
  margin-bottom: 14px;
}

.calculator-panel-head strong,
.calculator-total strong {
  color: #050505;
  font-size: 18px;
  line-height: 1.1;
}

.calculator-panel-head small,
.calculator-total span,
.calculator-panel dt,
.offer-preview span {
  color: rgba(5, 5, 5, 0.48);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-panel dl {
  display: grid;
  margin: 0;
  gap: 8px;
}

.calculator-panel dl div {
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(15, 23, 42, 0.06);
}

.calculator-panel dd {
  margin: 0;
  color: #050505;
  font-size: 14px;
  font-weight: 760;
}

.calculator-total {
  margin-top: 12px;
  border-radius: 8px;
  padding: 12px;
  background: #050505;
}

.calculator-total span,
.calculator-total strong {
  color: #ffffff;
}

.offer-preview {
  margin: -16px auto 30px 30px;
  padding: 16px;
}

.offer-preview p {
  margin: 9px 0 12px;
  color: rgba(5, 5, 5, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.offer-preview em {
  display: block;
  color: rgba(5, 5, 5, 0.52);
  font-size: 13px;
  font-style: normal;
  font-weight: 680;
}

.product-stack,
.product-stack-sticky {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 28px;
}

.product-block,
.integrations-block {
  --stack-blur: 0px;
  --stack-hover-y: 0px;
  --stack-opacity: 1;
  --stack-scale: 1;
  --stack-shadow-alpha: 0.05;
  --stack-y: 0px;
  --visual-scale: 1;
  --visual-y: 0px;
  width: min(100%, 1360px);
  margin: 0 auto;
  opacity: var(--stack-opacity);
  filter: blur(var(--stack-blur));
  transform: translate3d(0, calc(var(--stack-y) + var(--stack-hover-y)), 0) scale(var(--stack-scale));
  transform-origin: center top;
  will-change: transform, opacity;
}

.product-block {
  position: relative;
  display: grid;
  padding: clamp(34px, 4.8vw, 58px);
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.04);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 22px 70px rgba(15, 23, 42, var(--stack-shadow-alpha));
}

.product-block-inbox {
  order: 3;
  z-index: 3;
  grid-template-columns: minmax(380px, 0.68fr) minmax(0, 1fr);
  gap: clamp(44px, 5.2vw, 76px);
  align-items: center;
}

.product-block-onboarding {
  order: 2;
  z-index: 2;
}

.product-copy {
  min-width: 0;
  max-width: 540px;
}

.product-label {
  margin: 0 0 18px;
  color: rgba(5, 5, 5, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.product-copy h2 {
  margin: 0;
  color: #050505;
  font-family: var(--font-hero);
  font-size: clamp(38px, 3.75vw, 56px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.heading-accent {
  color: var(--thread-accent);
  font: inherit;
}

.product-copy p:not(.product-label) {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(5, 5, 5, 0.58);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}

.product-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  transform: translate3d(0, var(--visual-y), 0) scale(var(--visual-scale));
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 22px;
  background: #f2f4f7;
  box-shadow:
    0 34px 90px rgba(12, 18, 32, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  will-change: transform;
}

.product-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 0 34%, rgba(255, 255, 255, 0.28) 45%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 74% 32%, rgba(93, 203, 255, 0.14), rgba(93, 203, 255, 0) 30%);
  mix-blend-mode: screen;
  opacity: 0.62;
  transform: translateX(-36%);
  animation: productSheen 9s ease-in-out infinite;
}

.product-visual::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 68%, rgba(255, 255, 255, 0.74) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 72%, rgba(255, 255, 255, 0.74) 100%);
}

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

.product-visual.product-visual-inbox {
  justify-self: end;
  width: min(760px, 100%);
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 22%, rgba(78, 150, 255, 0.22), rgba(78, 150, 255, 0) 32%),
    linear-gradient(135deg, #eef6ff 0%, #f8fbff 48%, #ffffff 100%);
  box-shadow: none;
}

.product-visual-inbox::before {
  display: none;
}

.product-visual-inbox::after {
  display: none;
  background: none;
}

.inbox-shot-frame {
  position: absolute;
  inset: 20px 0 20px 18px;
  z-index: 2;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.inbox-shot-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.customer-base-scene {
  position: absolute;
  inset: 34px 36px 34px 32px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 10%, rgba(90, 197, 255, 0.1), rgba(90, 197, 255, 0) 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
  box-shadow:
    0 30px 86px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.scene-topbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
}

.scene-brand {
  display: inline-flex;
  width: 112px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.scene-brand img {
  width: 84px;
  height: auto;
  object-fit: contain;
}

.scene-topbar span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: rgba(15, 23, 42, 0.68);
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.scene-topbar span i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c99a;
  box-shadow: 0 0 14px rgba(34, 201, 154, 0.72);
}

.scene-grid {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-columns: minmax(150px, 0.58fr) minmax(280px, 1.12fr) minmax(220px, 0.78fr);
}

.customer-queue,
.customer-thread,
.ai-reasoning-card {
  min-width: 0;
}

.customer-queue {
  padding: 22px 14px;
  border-right: 1px solid rgba(15, 23, 42, 0.07);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.74), rgba(255, 255, 255, 0.48));
}

.queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 6px;
}

.queue-header span,
.queue-item small,
.incoming-message span,
.draft-head span,
.ai-reasoning-card span {
  color: rgba(15, 23, 42, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.queue-header strong {
  color: rgba(15, 23, 42, 0.5);
  font-size: 11px;
  font-weight: 650;
}

.queue-item {
  display: grid;
  gap: 6px;
  padding: 13px 12px;
  border: 1px solid rgba(15, 23, 42, 0);
  border-radius: 13px;
}

.queue-item + .queue-item {
  margin-top: 7px;
}

.queue-item.is-active {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.queue-item span {
  color: rgba(15, 23, 42, 0.78);
  font-size: 12px;
  font-weight: 650;
}

.queue-item strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.18;
}

.queue-item.is-active small {
  color: #0f9f79;
}

.customer-thread {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 22px;
}

.thread-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.thread-header span {
  display: block;
  margin-bottom: 7px;
  color: rgba(15, 23, 42, 0.48);
  font-size: 12px;
  font-weight: 650;
}

.thread-header strong {
  display: block;
  max-width: 330px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.18;
}

.thread-header small {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: rgba(15, 23, 42, 0.52);
  font-size: 11px;
  font-weight: 650;
}

.incoming-message,
.ai-draft-panel,
.ai-reasoning-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.incoming-message {
  max-width: 420px;
  padding: 15px 16px;
  border-radius: 15px;
}

.incoming-message p,
.ai-draft-panel p,
.ai-reasoning-card p {
  margin: 9px 0 0;
  color: rgba(15, 23, 42, 0.68);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.48;
}

.ai-draft-panel {
  position: relative;
  padding: 18px;
  border-color: rgba(34, 201, 154, 0.22);
  border-radius: 17px;
  background:
    radial-gradient(circle at 92% 0%, rgba(34, 201, 154, 0.11), rgba(34, 201, 154, 0) 30%),
    rgba(255, 255, 255, 0.92);
}

.draft-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.draft-head strong {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(34, 201, 154, 0.1);
  color: #0f9f79;
  font-size: 11px;
  font-weight: 700;
}

.ai-draft-panel p {
  color: rgba(15, 23, 42, 0.78);
}

.draft-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 17px;
}

.draft-actions button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.draft-actions span {
  color: rgba(15, 23, 42, 0.5);
  font-size: 12px;
  font-weight: 620;
}

.ai-reasoning-card {
  align-self: start;
  margin: 24px 20px 0 0;
  padding: 18px 18px 16px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 0% 0%, rgba(146, 215, 255, 0.18), rgba(146, 215, 255, 0) 38%),
    rgba(255, 255, 255, 0.84);
}

.ai-reasoning-card span {
  color: rgba(15, 23, 42, 0.55);
}

.ai-reasoning-card ul {
  display: grid;
  margin: 16px 0 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.ai-reasoning-card li {
  position: relative;
  padding-left: 15px;
  color: rgba(15, 23, 42, 0.64);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.ai-reasoning-card li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #22c99a;
  content: "";
  box-shadow: 0 0 11px rgba(34, 201, 154, 0.48);
}

.inbox-screenshot-layer {
  position: absolute;
  top: 34px;
  right: -116px;
  bottom: -40px;
  left: 172px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background: #ffffff;
  box-shadow:
    -30px 0 70px rgba(255, 255, 255, 0.88),
    0 22px 74px rgba(15, 23, 42, 0.12);
}

.inbox-screenshot-layer::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 9%, rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0.42) 84%, #ffffff 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.12) 52%, rgba(255, 255, 255, 0.88) 100%);
}

.inbox-screenshot-layer img {
  display: block;
  width: 122%;
  max-width: none;
  height: 108%;
  object-fit: cover;
  object-position: 34% 47%;
  opacity: 0.9;
  filter: saturate(0.86) contrast(0.98) brightness(1.02);
  transform: translateX(-8%) scale(1.02);
}

.composer-shot-card {
  position: absolute;
  top: 122px;
  left: 34px;
  z-index: 6;
  width: min(550px, 58%);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 30px 90px rgba(15, 23, 42, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.98) inset;
  backdrop-filter: blur(18px) saturate(1.08);
}

.composer-shot-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 0 42%, rgba(255, 255, 255, 0.42) 52%, rgba(255, 255, 255, 0) 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 72%, rgba(255, 255, 255, 0.24) 100%);
  opacity: 0.58;
}

.composer-shot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.composer-shot-badge {
  position: absolute;
  top: 15px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: rgba(15, 23, 42, 0.6);
  font-size: 11px;
  font-weight: 650;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(14px);
}

.composer-shot-badge i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2ed3a4;
  box-shadow: 0 0 14px rgba(46, 211, 164, 0.72);
}

.leadport-visual-logo {
  position: absolute;
  top: 34%;
  left: 31%;
  z-index: 6;
  display: inline-flex;
  width: 162px;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 24px 68px rgba(15, 23, 42, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  backdrop-filter: blur(18px) saturate(1.12);
  transform: translate(-50%, -50%);
}

.leadport-visual-logo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0 34%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 255, 255, 0) 68%);
  opacity: 0.52;
}

.leadport-visual-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 118px;
  height: auto;
  transform: translateX(-2px);
}

.reply-thread-card {
  position: absolute;
  top: 34px;
  bottom: 48px;
  left: 34px;
  z-index: 5;
  display: flex;
  width: min(500px, 53%);
  min-width: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(27, 28, 31, 0.94), rgba(13, 14, 16, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(115, 125, 255, 0.16), rgba(115, 125, 255, 0) 30%);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(1.1);
}

.reply-thread-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 620;
}

.reply-thread-header strong {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(126, 140, 255, 0.32);
  border-radius: 999px;
  background: rgba(99, 111, 255, 0.12);
  color: rgba(230, 232, 255, 0.9);
  font-size: 11px;
  font-weight: 650;
}

.reply-message-list {
  display: grid;
  padding: 28px 24px 18px;
  gap: 14px;
}

.reply-message {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.74);
}

.reply-message span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 640;
}

.reply-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.48;
}

.reply-message-context {
  justify-self: end;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.reply-message-context span {
  color: rgba(147, 222, 195, 0.94);
}

.reply-composer-panel {
  position: relative;
  display: grid;
  min-height: 184px;
  margin: auto 12px 12px;
  padding: 16px 16px 13px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(9, 10, 12, 0.82);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.reply-composer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
  line-height: 1;
}

.reply-composer-meta strong {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.reply-composer-panel p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.56;
}

.reply-composer-actions {
  display: flex;
  min-height: 36px;
  align-items: center;
  margin-top: 22px;
  gap: 16px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.reply-composer-actions span:nth-child(4) {
  margin-right: auto;
}

.reply-composer-actions button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  background: #5f6bff;
  color: #ffffff;
  font: inherit;
  font-weight: 650;
  box-shadow: 0 10px 28px rgba(95, 107, 255, 0.34);
}

.product-visual-inbox .live-pill {
  z-index: 8;
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(15, 23, 42, 0.62);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.product-visual-inbox .live-pill-draft {
  right: 9%;
  top: 16%;
  bottom: auto;
}

.product-visual-inbox .live-pill-context {
  top: auto;
  right: 16%;
  bottom: 18%;
  left: auto;
}

.product-visual-onboarding {
  justify-self: end;
  width: min(760px, 100%);
  aspect-ratio: 1440 / 920;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    radial-gradient(circle at 76% 18%, rgba(78, 150, 255, 0.12), rgba(78, 150, 255, 0) 34%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 58%, #fbfbfb 100%);
  box-shadow: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0 66%, rgba(0, 0, 0, 0.82) 78%, rgba(0, 0, 0, 0.34) 90%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0 66%, rgba(0, 0, 0, 0.82) 78%, rgba(0, 0, 0, 0.34) 90%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.product-visual.product-visual-onboarding::before {
  display: none;
}

.product-visual.product-visual-onboarding::after {
  display: none;
}

.product-visual-onboarding img {
  width: 100%;
  max-width: 100%;
  object-position: center;
  transform: none;
}

.leadport-marketing-mockup {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  color: #111827;
  font-family: var(--font-ui);
  background:
    radial-gradient(circle at 82% 12%, rgba(60, 151, 255, 0.16), rgba(60, 151, 255, 0) 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
}

.mockup-window-bar {
  display: grid;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.mockup-window-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mockup-window-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.15);
}

.mockup-window-dots i:first-child {
  background: rgba(80, 190, 255, 0.72);
}

.mockup-window-title {
  color: rgba(15, 23, 42, 0.54);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.mockup-safe-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.72);
  color: rgba(6, 95, 70, 0.9);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.mockup-safe-pill i,
.mockup-conversation small i,
.mockup-profile-card p i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.mockup-shell {
  display: grid;
  min-height: 0;
  flex: 1;
  gap: 12px;
  padding: 14px;
}

.mockup-shell-inbox {
  grid-template-columns: 174px minmax(0, 1fr) 210px;
}

.mockup-inbox-list,
.mockup-thread,
.mockup-ai-panel,
.mockup-context-main,
.mockup-profile-card,
.mockup-source-grid,
.mockup-learning-card,
.mockup-flow-card {
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(1.05);
}

.mockup-inbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.mockup-brand-row {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mockup-brand-row img {
  width: 92px;
  height: auto;
  object-fit: contain;
}

.mockup-brand-row span {
  color: rgba(15, 23, 42, 0.48);
  font-size: 10px;
  font-weight: 800;
}

.mockup-conversation {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.52);
}

.mockup-conversation.is-active {
  border-color: rgba(0, 120, 255, 0.18);
  background: rgba(239, 247, 255, 0.9);
  box-shadow: inset 3px 0 0 rgba(41, 132, 255, 0.86);
}

.mockup-conversation strong {
  color: rgba(15, 23, 42, 0.88);
  font-size: 12px;
  line-height: 1.2;
}

.mockup-conversation span,
.mockup-conversation small {
  color: rgba(15, 23, 42, 0.54);
  font-size: 10px;
  line-height: 1.35;
}

.mockup-conversation small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.mockup-thread {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
}

.mockup-thread-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mockup-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(15, 23, 42, 0.44);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mockup-thread h3,
.mockup-context-main h3,
.mockup-learning-card h3 {
  margin: 0;
  color: rgba(15, 23, 42, 0.92);
  font-size: 17px;
  line-height: 1.12;
  letter-spacing: 0;
}

.mockup-status-tag,
.mockup-tags span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.82);
  color: rgba(146, 64, 14, 0.92);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.mockup-message {
  display: grid;
  gap: 7px;
  padding: 12px;
  border-radius: 14px;
}

.mockup-message span {
  color: rgba(15, 23, 42, 0.48);
  font-size: 10px;
  font-weight: 900;
}

.mockup-message p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.mockup-message-customer {
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(248, 250, 252, 0.9);
}

.mockup-message-draft {
  border: 1px solid rgba(41, 132, 255, 0.14);
  background:
    radial-gradient(circle at 96% 0%, rgba(41, 132, 255, 0.12), rgba(41, 132, 255, 0) 30%),
    rgba(255, 255, 255, 0.9);
}

.mockup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.mockup-button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(15, 23, 42, 0.64);
  font-size: 11px;
  font-weight: 900;
}

.mockup-button-primary {
  border-color: rgba(0, 120, 255, 0.34);
  background: linear-gradient(135deg, #1f8fff, #1d6dff);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(29, 109, 255, 0.18);
}

.mockup-ai-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.mockup-ai-card {
  display: grid;
  gap: 8px;
  padding: 11px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.62);
}

.mockup-ai-card p,
.mockup-ai-card li {
  margin: 0;
  color: rgba(15, 23, 42, 0.68);
  font-size: 11px;
  line-height: 1.42;
}

.mockup-ai-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 0 0 15px;
}

.mockup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.mockup-tags span:last-child {
  border-color: rgba(59, 130, 246, 0.18);
  background: rgba(239, 246, 255, 0.78);
  color: rgba(29, 78, 216, 0.86);
}

.mockup-callouts {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mockup-callouts span {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(15, 23, 42, 0.64);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.mockup-context-layout,
.mockup-integration-layout {
  display: grid;
  flex: 1;
  min-height: 0;
  gap: 14px;
  padding: 16px;
}

.mockup-context-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
}

.mockup-context-main,
.mockup-profile-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mockup-context-main p,
.mockup-learning-card p,
.mockup-profile-card p {
  margin: 12px 0 0;
  color: rgba(15, 23, 42, 0.58);
  font-size: 13px;
  line-height: 1.48;
}

.mockup-progress {
  height: 8px;
  margin: 18px 0 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.mockup-progress i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c7ff, #3b82f6);
}

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

.mockup-question-list span {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(15, 23, 42, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.mockup-profile-card h4 {
  margin: 0 0 16px;
  color: rgba(15, 23, 42, 0.92);
  font-size: 20px;
  line-height: 1.1;
}

.mockup-profile-card dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.mockup-profile-card dl div {
  padding: 11px 12px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.mockup-profile-card dt {
  margin: 0 0 4px;
  color: rgba(15, 23, 42, 0.42);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mockup-profile-card dd {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.mockup-profile-card p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  font-weight: 900;
}

.integration-showcase-mockup {
  justify-self: end;
  width: min(760px, 100%);
  aspect-ratio: 16 / 10;
  min-height: auto;
  padding: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(138, 213, 255, 0.18), rgba(138, 213, 255, 0) 38%),
    linear-gradient(135deg, #f8fcff 0%, #eef9ff 52%, #ffffff 100%);
}

.integration-showcase-mockup::before,
.integration-showcase-mockup::after,
.integration-showcase-mockup .integration-routes,
.integration-showcase-mockup .leadport-hub,
.integration-showcase-mockup .integration-node {
  display: none;
}

.mockup-integrations {
  background:
    radial-gradient(circle at 72% 28%, rgba(78, 150, 255, 0.16), rgba(78, 150, 255, 0) 35%),
    radial-gradient(circle at 20% 80%, rgba(76, 217, 188, 0.12), rgba(76, 217, 188, 0) 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.92));
}

.mockup-integration-layout {
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
}

.mockup-source-grid {
  display: grid;
  gap: 10px;
  padding: 14px;
  align-content: start;
}

.mockup-source-grid span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(15, 23, 42, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.source-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.08);
  font-style: normal;
}

.source-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.source-outlook,
.source-form {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.9);
}

.source-meta {
  border-color: rgba(8, 102, 255, 0.12);
  background: rgba(240, 247, 255, 0.94);
}

.source-site {
  border-color: rgba(15, 23, 42, 0.1);
  background: #0f172a;
  color: #ffffff;
}

.source-instagram {
  border-color: rgba(255, 255, 255, 0.5);
  background: #ffffff;
}

.mockup-learning-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.mockup-learning-card img {
  width: 140px;
  max-width: 72%;
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.1));
}

.mockup-flow-card {
  display: grid;
  padding: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.mockup-flow-card span {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 12px;
  background: rgba(239, 246, 255, 0.68);
  color: rgba(30, 64, 175, 0.78);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.live-pill {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: rgba(5, 5, 5, 0.72);
  font-size: 12px;
  font-weight: 660;
  letter-spacing: 0;
  box-shadow: 0 14px 40px rgba(12, 18, 32, 0.12);
  backdrop-filter: blur(16px) saturate(1.25);
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2ed3a4;
  box-shadow: 0 0 14px rgba(46, 211, 164, 0.78);
  animation: livePulse 1.9s ease-in-out infinite;
}

.live-pill-draft {
  right: 15%;
  bottom: 14%;
}

.live-pill-context {
  top: 18%;
  left: 22%;
}

.live-pill-sync {
  top: 12%;
  right: 12%;
}

.live-pill-scan {
  left: 10%;
  bottom: 18%;
}

.live-focus {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 50% 0%, rgba(113, 210, 255, 0.18), rgba(113, 210, 255, 0));
  box-shadow:
    0 20px 60px rgba(12, 18, 32, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  pointer-events: none;
  animation: focusFloat 7s ease-in-out infinite alternate;
}

.live-focus-inbox {
  right: 10%;
  bottom: 6%;
  width: 44%;
  height: 24%;
}

.live-focus-onboarding {
  right: 7%;
  bottom: 9%;
  width: 48%;
  height: 31%;
}

.live-cursor {
  position: absolute;
  z-index: 6;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #050505;
  box-shadow:
    0 0 0 7px rgba(5, 5, 5, 0.08),
    0 12px 28px rgba(5, 5, 5, 0.2);
  pointer-events: none;
  animation: cursorDrift 5.6s ease-in-out infinite alternate;
}

.live-cursor::after {
  position: absolute;
  right: -9px;
  bottom: -7px;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid #050505;
  border-bottom: 2px solid #050505;
  transform: rotate(-18deg);
}

.live-cursor-inbox {
  right: 13%;
  bottom: 19%;
}

.live-cursor-onboarding {
  right: 17%;
  bottom: 23%;
}

@keyframes productSheen {
  0%,
  55% {
    transform: translateX(-44%);
    opacity: 0.28;
  }

  100% {
    transform: translateX(42%);
    opacity: 0.74;
  }
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes automationPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes focusFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(8px, -8px, 0);
  }
}

@keyframes cursorDrift {
  0% {
    transform: translate3d(-10px, 8px, 0);
  }

  100% {
    transform: translate3d(8px, -10px, 0);
  }
}

.integrations-block {
  position: relative;
  z-index: 1;
  order: 1;
  display: grid;
  min-height: 0;
  padding: clamp(34px, 4.8vw, 58px);
  scroll-margin-top: 116px;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.04);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 22px 70px rgba(15, 23, 42, var(--stack-shadow-alpha));
}

.integrations-block .product-copy {
  position: relative;
  z-index: 5;
  max-width: 500px;
  padding-top: 0;
}

.integrations-block .product-copy h2 {
  font-size: clamp(38px, 3.75vw, 56px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.integration-showcase {
  position: relative;
  isolation: isolate;
  min-height: clamp(430px, 36vw, 560px);
  overflow: hidden;
  transform: translate3d(0, var(--visual-y), 0) scale(var(--visual-scale));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 64% 44%, rgba(214, 245, 255, 0.78) 0%, rgba(232, 250, 255, 0.54) 43%, rgba(255, 255, 255, 0) 73%),
    linear-gradient(135deg, #f6fbff 0%, #eefbff 50%, #ffffff 100%);
  box-shadow: none;
  will-change: transform;
}

.integration-showcase-screenshot {
  aspect-ratio: 1440 / 920;
  min-height: auto;
  background: #f8fafc;
}

.integration-showcase-screenshot::before,
.integration-showcase-screenshot::after,
.integration-showcase-screenshot .integration-routes,
.integration-showcase-screenshot .leadport-hub,
.integration-showcase-screenshot .integration-node {
  display: none;
}

.integration-screenshot {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.integration-showcase::before {
  position: absolute;
  inset: 116px 10px 72px -92px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(90, 145, 180, 0.1);
  border-radius: 52% 48% 50% 45% / 54% 52% 42% 46%;
  opacity: 0.88;
  pointer-events: none;
}

.integration-showcase::after {
  position: absolute;
  inset: 24px -90px 18px -150px;
  z-index: 0;
  content: "";
  border-radius: 48% 52% 44% 56% / 45% 55% 45% 55%;
  background:
    radial-gradient(ellipse at 64% 44%, rgba(214, 245, 255, 0.66) 0%, rgba(232, 250, 255, 0.46) 43%, rgba(255, 255, 255, 0) 73%),
    radial-gradient(circle at 18% 68%, rgba(255, 199, 164, 0.12), rgba(255, 199, 164, 0) 31%),
    radial-gradient(circle at 78% 24%, rgba(116, 213, 255, 0.15), rgba(116, 213, 255, 0) 34%);
  filter: blur(0.5px);
  pointer-events: none;
  transform: rotate(-1.5deg);
}

.integration-routes {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.72;
}

.integration-routes path {
  fill: none;
  stroke: url(#integration-route-gradient);
  stroke-linecap: round;
  stroke-width: 1.25;
  stroke-dasharray: 7 15;
  opacity: 0.5;
}

.leadport-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  min-width: 196px;
  min-height: 82px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 12px 18px 10px;
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(12, 18, 32, 0.1);
  backdrop-filter: blur(7px) saturate(1.08);
  transform: translate(-50%, -50%);
}

.leadport-hub img {
  display: block;
  width: 150px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(12, 18, 32, 0.16));
}

.leadport-hub-mark {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 999px 999px 999px 7px;
  background: #050505;
  transform: rotate(-24deg);
}

.leadport-hub small {
  margin-top: 7px;
  color: rgba(5, 5, 5, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.integration-node {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 9px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(5, 5, 5, 0.76);
  font-size: 14px;
  font-weight: 620;
  letter-spacing: 0;
  box-shadow: 0 16px 38px rgba(12, 18, 32, 0.1);
  backdrop-filter: blur(12px);
}

.integration-logo {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  color: #ffffff;
  filter: drop-shadow(0 8px 18px rgba(12, 18, 32, 0.12));
}

.integration-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-outlook {
  background: linear-gradient(135deg, #0f6cbd, #28a8ea);
}

.logo-outlook::before {
  content: "O";
}

.logo-outlook::after {
  position: absolute;
  right: 7px;
  bottom: 9px;
  width: 14px;
  height: 9px;
  content: "";
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  border-top: 0;
  border-radius: 2px;
}

.logo-gmail {
  background: #ffffff;
  color: #202124;
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.08);
}

.logo-gmail::before {
  content: "";
  width: 22px;
  height: 16px;
  border-right: 5px solid #4285f4;
  border-left: 5px solid #ea4335;
  background:
    linear-gradient(135deg, transparent 0 37%, #ea4335 38% 50%, transparent 51%),
    linear-gradient(225deg, transparent 0 37%, #fbbc04 38% 50%, transparent 51%),
    linear-gradient(315deg, transparent 0 37%, #34a853 38% 50%, transparent 51%);
}

.logo-instagram {
  background:
    radial-gradient(circle at 32% 92%, #ffd76f 0%, #f56040 32%, #c13584 62%, #5851db 100%);
}

.logo-instagram::before {
  width: 18px;
  height: 18px;
  content: "";
  border: 2px solid #ffffff;
  border-radius: 6px;
}

.logo-instagram::after {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: #ffffff;
}

.logo-meta {
  background: #0a66ff;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.logo-meta::before {
  content: "âˆž";
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.logo-facebook {
  background: #1877f2;
}

.logo-facebook::before {
  content: "f";
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.logo-whatsapp {
  border-radius: 999px;
  background: #25d366;
}

.logo-whatsapp::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 999px;
}

.logo-whatsapp::after {
  position: absolute;
  right: 11px;
  bottom: 9px;
  width: 7px;
  height: 7px;
  content: "";
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(-28deg);
}

.logo-sms {
  background: #111827;
}

.logo-sms::before {
  content: "SMS";
  font-size: 9px;
  letter-spacing: 0;
}

.integration-logo::before,
.integration-logo::after {
  display: none !important;
  content: none !important;
}

.logo-outlook,
.logo-gmail,
.logo-instagram,
.logo-meta,
.logo-facebook,
.logo-whatsapp,
.logo-website,
.logo-sms {
  background: transparent;
  box-shadow: none;
  font-family: inherit;
}

.integration-logo svg {
  position: relative;
  z-index: 1;
  border-radius: inherit;
}

.node-outlook {
  top: 29%;
  left: 8%;
}

.node-website {
  right: 40%;
  bottom: 25%;
}

.node-gmail {
  bottom: 23%;
  left: 21%;
}

.node-instagram {
  top: 19%;
  right: 20%;
}

.node-meta {
  top: 29%;
  right: 2%;
}

.node-facebook {
  top: 13%;
  left: 43%;
}

.node-whatsapp {
  right: 19%;
  bottom: 13%;
}

.node-sms {
  bottom: 38%;
  left: 0%;
}

@media (min-width: 1000px) {
  .product-section {
    display: block;
  }

  .product-stack {
    position: relative;
    display: block;
    height: max(2260px, 286vh);
  }

  .product-stack-sticky {
    position: sticky;
    top: 88px;
    display: grid;
    height: calc(100vh - 112px);
    min-height: 680px;
    max-height: 820px;
    place-items: center;
    perspective: 1600px;
  }

  .integrations-block,
  .product-block {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    width: min(calc(100vw - 88px), 1360px);
    transform: translate3d(-50%, calc(-50% + var(--stack-y) + var(--stack-hover-y)), 0) scale(var(--stack-scale));
    transform-origin: center center;
    backface-visibility: hidden;
  }

  .integrations-block {
    z-index: 10;
  }

  .product-block-onboarding {
    z-index: 11;
  }

  .product-block-inbox {
    z-index: 12;
  }
}

@media (min-width: 1000px) and (prefers-reduced-motion: no-preference) {
  .integrations-block,
  .product-block {
    transition:
      box-shadow 260ms ease,
      filter 140ms linear,
      opacity 140ms linear,
      transform 140ms linear;
  }

  .integration-showcase,
  .product-visual {
    transition: transform 140ms linear;
  }

  .integrations-block:hover,
  .product-block:hover {
    --stack-hover-y: -2px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 30px 86px rgba(15, 23, 42, 0.08);
  }
}

.faq-section {
  position: relative;
  padding: 86px 44px 46px;
  background: #ffffff;
  color: #050505;
}

.faq-shell {
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
}

.faq-label,
.plans-label,
.plan-kicker {
  margin: 0;
  color: rgba(5, 5, 5, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-intro h2 {
  max-width: 420px;
  margin: 18px 0 0;
  color: #050505;
  font-family: var(--font-hero);
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.faq-intro p:not(.faq-label) {
  display: none;
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(5, 5, 5, 0.58);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.62;
}

.faq-list {
  display: grid;
  gap: 8px;
  border-bottom: 0;
}

.faq-list details {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details:hover {
  border-color: rgba(5, 5, 5, 0.13);
  background: rgba(248, 252, 255, 0.78);
}

.faq-list details[open] {
  border-color: rgba(5, 5, 5, 0.14);
  background: rgba(249, 252, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 34px rgba(12, 18, 32, 0.045);
}

.faq-list summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 20px 18px 20px 22px;
  color: #050505;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 640;
  letter-spacing: 0;
  line-height: 1.25;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.035);
  color: rgba(5, 5, 5, 0.48);
  content: "+";
  font-size: 22px;
  font-weight: 360;
  line-height: 1;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-list details[open] summary::after {
  content: "-";
  background: rgba(5, 5, 5, 0.08);
  color: rgba(5, 5, 5, 0.72);
  transform: rotate(180deg);
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 72px 24px 22px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 16px;
  line-height: 1.65;
}

.closing-wave {
  position: relative;
  min-height: 0;
  overflow: hidden;
  scroll-margin-top: 96px;
  padding: 124px 44px 132px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 18%, rgba(245, 254, 255, 0.92) 58%, #ffffff 100%);
  color: #050505;
}

.closing-wave::after {
  display: none;
}

.closing-copy {
  position: relative;
  z-index: 2;
  display: none;
  width: min(100%, 1360px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.46fr);
  column-gap: clamp(54px, 9vw, 150px);
  row-gap: 24px;
  align-items: start;
}

.closing-label {
  grid-column: 1;
  margin: 0;
  color: rgba(5, 5, 5, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.closing-copy h2 {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: #050505;
  font-family: var(--font-hero);
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.closing-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-top: 42px;
}

.closing-action p {
  max-width: 420px;
  margin: 0;
  color: rgba(5, 5, 5, 0.55);
  font-size: 17px;
  line-height: 1.58;
}

.closing-action a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  font-size: 14px;
  font-weight: 560;
  transition: transform 180ms ease, background-color 180ms ease;
}

.closing-action a:hover {
  background: #23262d;
  transform: translateY(-1px);
}

.plans-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 1360px);
  margin: 0 auto;
  padding-top: 12px;
  scroll-margin-top: 84px;
}

.plans-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.plans-heading h3 {
  max-width: 760px;
  margin: 0;
  color: #050505;
  font-family: var(--font-hero);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.plans-note {
  max-width: 620px;
  margin: -2px 0 0;
  color: rgba(6, 17, 29, 0.62);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
  text-wrap: balance;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
  width: min(100%, 1120px);
  margin: 30px auto 36px;
  padding: 30px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(239, 253, 255, 0.58)),
    rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 22px 58px rgba(28, 92, 126, 0.14);
}

.contact-panel-copy {
  display: grid;
  gap: 12px;
}

.contact-label {
  margin: 0;
  color: rgba(6, 17, 29, 0.58);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-panel h3 {
  margin: 0;
  color: #050505;
  font-family: var(--font-hero);
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.06;
}

.contact-panel-copy p:last-child {
  max-width: 430px;
  margin: 0;
  color: rgba(6, 17, 29, 0.66);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(6, 17, 29, 0.7);
  font-size: 13px;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 17, 29, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #06111d;
  font: inherit;
  font-size: 15px;
  font-weight: 560;
  outline: none;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(6, 17, 29, 0.62) 50%),
    linear-gradient(135deg, rgba(6, 17, 29, 0.62) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 13px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(6, 17, 29, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
}

.contact-form-footer {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.contact-form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #06111d;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  padding: 0 22px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(6, 17, 29, 0.62);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
}

.contact-form-status[data-state="success"] {
  color: #047857;
}

.contact-form-status[data-state="error"] {
  color: #b91c1c;
}

.contact-page-main {
  min-height: 100vh;
  padding: 150px 24px 80px;
  background:
    radial-gradient(circle at 18% 8%, rgba(121, 226, 255, 0.28), rgba(121, 226, 255, 0) 30%),
    linear-gradient(145deg, #f8fbff 0%, #fff6f8 48%, #eefcff 100%);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: end;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.contact-hero-copy {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.contact-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #050505;
  font-family: var(--font-hero);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 690;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-hero-copy p:last-child {
  max-width: 640px;
  margin: 0;
  color: rgba(6, 17, 29, 0.68);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 600;
  line-height: 1.5;
}

.contact-email-card {
  display: grid;
  gap: 10px;
  align-self: end;
  width: 100%;
  min-width: 0;
  margin-top: clamp(18px, 4vw, 48px);
  padding: 24px;
  border: 1px solid rgba(6, 17, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(28, 92, 126, 0.12);
}

.contact-email-card span {
  color: rgba(6, 17, 29, 0.58);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-email-card a {
  display: block;
  max-width: 100%;
  min-width: 0;
  color: #06111d;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-email-card p {
  margin: 0;
  color: rgba(6, 17, 29, 0.62);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.55;
}

.contact-page-panel {
  margin-top: 42px;
  margin-bottom: 0;
}

.plans-trial {
  display: inline-flex;
  max-width: min(100%, 640px);
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 8px 9px 8px 20px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(239, 253, 255, 0.54)),
    rgba(255, 255, 255, 0.54);
  color: rgba(5, 5, 5, 0.72);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.25;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 42px rgba(28, 92, 126, 0.12);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plans-trial:hover {
  border-color: rgba(5, 5, 5, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 20px 52px rgba(28, 92, 126, 0.16);
  transform: translateY(-1px);
}

.plans-trial span {
  display: grid;
  gap: 3px;
}

.plans-trial strong {
  color: #06111d;
  font-size: 15px;
  font-weight: 740;
  letter-spacing: 0;
}

.plans-trial small {
  color: rgba(5, 5, 5, 0.54);
  font-size: 12px;
  font-weight: 620;
}

.plans-trial em {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 17px;
  border-radius: 999px;
  background: #06111d;
  color: #ffffff;
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
}

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

.plan-card {
  position: relative;
  display: flex;
  min-height: 552px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.15) 48%, rgba(255, 255, 255, 0.2) 100%);
  color: #06111d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.13),
    inset 0 0 28px rgba(255, 255, 255, 0.12),
    0 24px 82px rgba(28, 92, 126, 0.12);
  backdrop-filter: blur(6px) saturate(1.58) brightness(1.05);
  -webkit-backdrop-filter: blur(6px) saturate(1.58) brightness(1.05);
}

.plan-card::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 16% 0%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 44%),
    radial-gradient(ellipse at 86% 12%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.62;
  pointer-events: none;
}

.plan-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 21%),
    radial-gradient(circle at 7% 84%, rgba(122, 223, 255, 0.16), rgba(255, 255, 255, 0) 34%),
    linear-gradient(104deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0.18) 68%, rgba(255, 255, 255, 0));
  opacity: 0.76;
  pointer-events: none;
}

.plan-card-featured {
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.23) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14),
    0 30px 100px rgba(28, 92, 126, 0.16);
}

.plan-card .plan-kicker {
  position: relative;
  z-index: 1;
  color: rgba(6, 17, 29, 0.88);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  z-index: 2;
  min-height: 26px;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(6, 17, 29, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 20px rgba(28, 92, 126, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
  font-size: 12px;
  font-weight: 800;
}

.plan-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 24px;
}

.plan-price strong {
  color: rgba(6, 17, 29, 0.96);
  font-size: clamp(36px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
}

.plan-price span {
  padding-bottom: 5px;
  color: rgba(6, 17, 29, 0.58);
  font-size: 14px;
  font-weight: 760;
}

.plan-annual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 12px 28px rgba(28, 92, 126, 0.08);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.plan-annual span {
  color: rgba(6, 17, 29, 0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-annual strong {
  color: rgba(6, 17, 29, 0.94);
  font-size: 15px;
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.1;
}

.plan-card p:not(.plan-kicker) {
  position: relative;
  z-index: 1;
  min-height: 66px;
  margin: 22px 0 0;
  color: rgba(6, 17, 29, 0.68);
  font-size: 15px;
  line-height: 1.58;
}

.plan-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(6, 17, 29, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.plan-card li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  border: 1.4px solid rgba(6, 17, 29, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(6, 17, 29, 0.72) 43% 55%, transparent 56%) 4px 7px / 7px 5px no-repeat;
}

.plan-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.36);
  color: rgba(6, 17, 29, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 10px 26px rgba(28, 92, 126, 0.1);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  font-size: 14px;
  font-weight: 780;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.plan-card-featured .plan-cta {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(6, 17, 29, 0.82);
  color: #ffffff;
}

.plan-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.5);
}

.plan-card-featured .plan-cta:hover {
  background: rgba(255, 255, 255, 0.72);
  color: rgba(6, 17, 29, 0.92);
}

.wave-stage {
  position: absolute;
  display: block;
  inset: 255px 0 92px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.wave-stage::before {
  display: none;
}

.wave-stage::after {
  display: none;
}

.wave-haze {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 76%;
  background:
    radial-gradient(ellipse at 16% 54%, rgba(255, 191, 211, 0.1) 0%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(ellipse at 76% 36%, rgba(82, 221, 255, 0.24) 0%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(118deg, rgba(255, 248, 252, 0.05) 0%, rgba(235, 242, 255, 0.08) 34%, rgba(98, 222, 255, 0.12) 74%, rgba(231, 255, 255, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(230, 252, 255, 0.12) 62%, rgba(255, 255, 255, 0.66) 100%);
  background-position: 0% 52%, 100% 28%, 50% 50%, 50% 50%;
  background-size: 132% 118%, 138% 124%, 120% 108%, 100% 100%;
  opacity: 0.72;
  filter: saturate(1.08);
  transform-origin: 50% 100%;
  animation: waveBreath 21s ease-in-out infinite alternate, ambientFlow 24.4s ease-in-out infinite;
}

.wave-haze::before,
.wave-haze::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.wave-haze::before {
  inset: 4% -18% auto;
  height: 46%;
  background:
    linear-gradient(101deg, rgba(255, 255, 255, 0) 9%, rgba(255, 255, 255, 0.18) 31%, rgba(124, 229, 255, 0.16) 52%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(ellipse at 34% 56%, rgba(255, 214, 235, 0.22), rgba(255, 255, 255, 0) 54%);
  filter: blur(18px);
  opacity: 0.44;
  transform: translate3d(-7%, 12px, 0) rotate(-4deg);
  animation: ambientGlint 24.4s ease-in-out infinite alternate;
}

.wave-haze::after {
  inset: auto -16% 1%;
  height: 54%;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(82, 219, 255, 0.34), rgba(255, 255, 255, 0) 58%),
    linear-gradient(96deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  filter: blur(30px);
  opacity: 0.42;
  transform: translate3d(6%, 8px, 0) rotate(3deg);
  animation: ambientSheen 29s ease-in-out infinite alternate;
}

.wave-surface {
  position: absolute;
  right: -12%;
  bottom: 118px;
  left: -12%;
  z-index: 1;
  width: 124%;
  height: 470px;
  overflow: visible;
  filter:
    blur(0.7px)
    drop-shadow(0 34px 48px rgba(72, 210, 255, 0.17));
  opacity: 0.86;
  transform-origin: 50% 85%;
  animation: surfaceDrift 24.4s ease-in-out infinite alternate;
}

.surface-fill {
  fill: url(#leadport-surface-gradient);
  opacity: 0.38;
  mix-blend-mode: normal;
}

.surface-fill-b {
  opacity: 0.3;
  filter: blur(18px);
}

.surface-glass {
  fill: url(#leadport-surface-glass);
  opacity: 0.86;
}

.wave-lines {
  position: absolute;
  right: -8%;
  bottom: 220px;
  left: -8%;
  z-index: 3;
  width: 116%;
  height: 430px;
  overflow: visible;
  opacity: 0.92;
  filter:
    blur(0.25px)
    drop-shadow(0 18px 28px rgba(64, 210, 255, 0.18));
  mix-blend-mode: multiply;
  animation: lineDrift 28s ease-in-out infinite alternate;
}

.wave-line {
  fill: none;
  stroke: url(#leadport-wave-gradient);
  stroke-linecap: round;
  stroke-width: 2.35;
  stroke-dasharray: none;
  opacity: 0.94;
  animation: linePulseSoft 16s ease-in-out infinite;
}

.wave-line-b {
  stroke-width: 1.75;
  opacity: 0.74;
  animation-delay: -5s;
}

.wave-line-c {
  stroke-width: 1.35;
  opacity: 0.58;
  animation-delay: -9s;
}

.wave-band {
  position: absolute;
  left: -18%;
  width: 136%;
  border-radius: 52% 48% 0 0 / 72% 68% 0 0;
  transform-origin: 50% 100%;
}

.wave-band-one {
  bottom: 180px;
  height: 150px;
  background: linear-gradient(94deg, rgba(255, 214, 225, 0.18), rgba(230, 238, 255, 0.26), rgba(91, 218, 255, 0.28), rgba(232, 255, 255, 0.36));
  filter: blur(30px);
  opacity: 0.46;
  transform: rotate(-4deg);
  animation: ribbonOne 24s ease-in-out infinite alternate, ribbonGlowSoft 19s ease-in-out infinite;
}

.wave-band-two {
  bottom: 88px;
  height: 210px;
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.08), rgba(230, 244, 255, 0.3), rgba(91, 222, 255, 0.34), rgba(237, 255, 255, 0.62));
  filter: blur(46px);
  opacity: 0.66;
  transform: rotate(3deg);
  animation: ribbonTwo 28s ease-in-out infinite alternate, ribbonGlowSoft 23s ease-in-out infinite reverse;
}

.wave-band-three {
  bottom: 52px;
  height: 180px;
  background: linear-gradient(104deg, rgba(255, 255, 255, 0.18), rgba(152, 237, 255, 0.32), rgba(230, 244, 255, 0.28), rgba(255, 255, 255, 0.36));
  filter: blur(38px);
  opacity: 0.44;
  transform: rotate(-2deg);
  animation: ribbonThree 31s ease-in-out infinite alternate, ribbonGlowSoft 27s ease-in-out infinite;
}

.closing-footer {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 40px;
  margin-top: -1px;
  padding: 87px clamp(28px, 8vw, 116px) 24px;
  border-top: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  color: #050505;
}

.closing-footer::before {
  position: absolute;
  top: -28px;
  right: 0;
  left: 0;
  z-index: 0;
  height: 32px;
  content: "";
  background: #ffffff;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 260px;
  grid-template-columns: minmax(240px, 1fr) minmax(520px, 0.98fr);
  gap: clamp(76px, 14vw, 220px);
  align-items: start;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.footer-logo-link img {
  display: block;
  width: 128px;
  height: auto;
  object-fit: contain;
}

.footer-trust {
  margin-top: 70px;
}

.footer-compliance {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(5, 5, 5, 0.5);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-compliance span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #a5e94b;
  box-shadow: 0 0 16px rgba(165, 233, 75, 0.48);
}

.footer-badges {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(5, 5, 5, 0.74);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
}

.footer-badges i {
  color: rgba(5, 5, 5, 0.28);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.footer-badges em {
  max-width: 220px;
  color: rgba(5, 5, 5, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 620;
  line-height: 1.35;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(132px, 1fr));
  gap: clamp(44px, 6vw, 88px);
}

.footer-columns h3 {
  margin: 0 0 22px;
  color: rgba(5, 5, 5, 0.43);
  font-size: 12px;
  font-weight: 540;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  margin: 0 0 18px;
  color: #050505;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.25;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-columns a:hover {
  color: rgba(5, 5, 5, 0.58);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(5, 5, 5, 0.1);
  color: rgba(5, 5, 5, 0.34);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: 460;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.footer-socials a {
  color: rgba(5, 5, 5, 0.36);
  font-size: 19px;
  font-weight: 620;
  line-height: 1;
  transition: color 180ms ease;
}

.footer-socials a:last-child {
  font-size: 16px;
  font-weight: 760;
}

.footer-socials span {
  width: 1px;
  height: 20px;
  background: rgba(5, 5, 5, 0.16);
}

.footer-socials a:hover {
  color: #050505;
}

@keyframes waveBreath {
  0% {
    transform: translate3d(-3.2%, 2.4%, 0) scaleX(1.04) scaleY(0.97);
  }

  100% {
    transform: translate3d(3.4%, -2%, 0) scaleX(1.12) scaleY(1.05);
  }
}

@keyframes ambientFlow {
  0%,
  100% {
    background-position: 0% 52%, 100% 28%, 48% 48%, 50% 50%;
    filter: saturate(0.96) hue-rotate(-2deg);
  }

  48% {
    background-position: 14% 44%, 82% 36%, 58% 52%, 50% 50%;
    filter: saturate(1.08) hue-rotate(4deg);
  }
}

@keyframes ambientGlint {
  0% {
    opacity: 0.38;
    transform: translate3d(-9%, 18px, 0) rotate(-5deg) scaleX(1);
  }

  42% {
    opacity: 0.74;
    transform: translate3d(2%, -4px, 0) rotate(-2deg) scaleX(1.08);
  }

  100% {
    opacity: 0.46;
    transform: translate3d(9%, 10px, 0) rotate(1deg) scaleX(1.03);
  }
}

@keyframes ambientSheen {
  0% {
    opacity: 0.34;
    transform: translate3d(8%, 10px, 0) rotate(3deg) scaleX(1.02);
  }

  52% {
    opacity: 0.66;
    transform: translate3d(-3%, -8px, 0) rotate(1deg) scaleX(1.12);
  }

  100% {
    opacity: 0.42;
    transform: translate3d(-10%, 6px, 0) rotate(-2deg) scaleX(1.04);
  }
}

@keyframes surfaceDrift {
  0% {
    transform: translate3d(-42px, 18px, 0) skewX(-3deg) scaleX(1.02);
  }

  50% {
    transform: translate3d(18px, -20px, 0) skewX(2deg) scaleX(1.08);
  }

  100% {
    transform: translate3d(48px, 10px, 0) skewX(-1deg) scaleX(1.04);
  }
}

@keyframes lineDrift {
  0% {
    transform: translate3d(-42px, 16px, 0) skewX(-4deg) scaleY(0.98);
  }

  100% {
    transform: translate3d(46px, -18px, 0) skewX(3deg) scaleY(1.04);
  }
}

@keyframes linePulse {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.24;
  }

  50% {
    opacity: 0.74;
  }
}

@keyframes linePulseSoft {
  0%,
  100% {
    opacity: 0.26;
  }

  45% {
    opacity: 0.58;
  }
}

@keyframes waveDash {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -380;
  }
}

@keyframes ribbonGlow {
  0%,
  100% {
    opacity: 0.46;
    filter: blur(18px) saturate(1);
  }

  50% {
    opacity: 0.86;
    filter: blur(12px) saturate(1.26);
  }
}

@keyframes ribbonGlowSoft {
  0%,
  100% {
    opacity: 0.42;
    filter: blur(42px) saturate(0.96);
  }

  50% {
    opacity: 0.72;
    filter: blur(34px) saturate(1.12);
  }
}

@keyframes ribbonOne {
  0% {
    transform: translate3d(-5%, 12px, 0) rotate(-6deg) scaleX(1.05) scaleY(0.94);
  }

  100% {
    transform: translate3d(5%, -16px, 0) rotate(-1deg) scaleX(1.16) scaleY(1.08);
  }
}

@keyframes ribbonTwo {
  0% {
    transform: translate3d(4%, -10px, 0) rotate(5deg) scaleX(1.08) scaleY(1.04);
  }

  100% {
    transform: translate3d(-5%, 18px, 0) rotate(0deg) scaleX(1.18) scaleY(0.92);
  }
}

@keyframes ribbonThree {
  0% {
    transform: translate3d(-4%, 14px, 0) rotate(-3deg) scaleX(1.04) scaleY(0.96);
  }

  100% {
    transform: translate3d(6%, -18px, 0) rotate(3deg) scaleX(1.15) scaleY(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-haze,
  .wave-haze::before,
  .wave-haze::after,
  .wave-surface,
  .surface-fill,
  .wave-lines,
  .wave-line,
  .wave-band,
  .product-visual::before,
  .live-pill i,
  .live-focus,
  .live-cursor {
    animation: none;
  }
}

@media (max-width: 1240px) {
  .trade-flow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-block.product-block-inbox,
  .product-block.product-block-onboarding,
  .integrations-block {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-visual.product-visual-inbox,
  .product-visual.product-visual-onboarding,
  .integration-showcase {
    justify-self: stretch;
    width: 100%;
  }

  .product-visual.product-visual-inbox {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .product-visual.product-visual-onboarding {
    aspect-ratio: 1440 / 920;
    height: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .product-visual-onboarding img {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 14px;
  }

  .header-shell {
    width: min(100% - 24px, 900px);
  }

  .desktop-nav,
  .nav-cluster-right {
    display: none;
  }

  .nav-cluster-left {
    padding: 0 18px;
  }

  .nav-cluster-left::before {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-panel {
    position: absolute;
    top: 68px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(20, 12, 10, 0.34);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(24px) saturate(1.14);
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.menu-open .mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.is-on-light .mobile-panel {
    background: rgba(255, 255, 255, 0.52);
    box-shadow:
      inset 0 0 0 1px rgba(15, 23, 42, 0.06),
      0 16px 34px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(24px) saturate(1.18);
  }

  .mobile-panel a {
    padding: 13px 12px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
  }

  body.is-on-light .mobile-panel a {
    color: #0b0f17;
  }

  .mobile-panel a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  body.is-on-light .mobile-panel a:hover {
    background: rgba(15, 23, 42, 0.06);
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 178px;
  }

  h1 {
    max-width: 780px;
    font-size: clamp(48px, 8.6vw, 66px);
    line-height: 1.13;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .proof-section {
    padding: 86px 24px 92px;
  }

  .proof-thesis {
    margin-bottom: 68px;
    min-height: auto;
    padding-bottom: 58px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .proof-thesis-copy {
    max-width: 760px;
  }

  .proof-thesis-copy h2 {
    font-size: clamp(34px, 7vw, 52px);
  }

  .proof-mobile-showcase {
    width: min(320px, 62vw);
    margin-top: 0;
    justify-self: center;
  }

  .proof-overview {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .proof-lede {
    max-width: 620px;
    margin-top: 24px;
  }

  .proof-stats {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .proof-stats article {
    display: grid;
    min-height: 92px;
    padding: 20px 0;
    grid-template-columns: minmax(0, 0.9fr) auto;
    gap: 14px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  .proof-stats article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-stats strong {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: center;
    margin-top: 0;
    font-size: 42px;
  }

  .proof-stats p {
    grid-column: 1;
    margin-top: 0;
  }

  .proof-charts {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .graph-card {
    min-height: auto;
    padding: 34px 28px 30px;
  }

  .graph-copy {
    justify-content: flex-start;
  }

  .graph-copy a {
    text-align: left;
  }

  .proof-source-note {
    text-align: left;
  }

  .product-section {
    padding: 94px 24px 88px;
  }

  .product-block,
  .integrations-block {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-block,
  .product-block-onboarding,
  .integrations-block {
    padding: 34px;
  }

  .product-copy,
  .product-copy p:not(.product-label) {
    max-width: 680px;
  }

  .integrations-block .product-copy {
    padding-top: 0;
  }

  .product-visual-inbox,
  .product-visual-onboarding {
    width: 100%;
    justify-self: stretch;
    transform: none;
  }

  .product-visual-onboarding {
    aspect-ratio: 1440 / 920;
    height: auto;
  }

  .product-visual-inbox {
    aspect-ratio: 16 / 10;
    height: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .inbox-shot-frame {
    inset: 0;
  }

  .inbox-shot-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .customer-base-scene {
    inset: 24px;
  }

  .scene-grid {
    grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1.38fr);
  }

  .ai-reasoning-card {
    grid-column: 1 / -1;
    margin: 0 22px 22px;
  }

  .customer-thread {
    padding: 22px;
  }

  .thread-header {
    flex-direction: column;
    gap: 10px;
  }

  .composer-shot-card {
    top: 88px;
    left: 24px;
    width: min(540px, 64%);
  }

  .leadport-visual-logo {
    top: 34%;
    left: 31%;
    width: 154px;
    height: 46px;
  }

  .leadport-visual-logo img {
    width: 112px;
  }

  .inbox-screenshot-layer {
    top: 46px;
    right: -114px;
    bottom: -38px;
    left: 170px;
  }

  .product-visual-inbox .inbox-screenshot-layer img {
    width: 128%;
    object-position: 35% 47%;
    transform: translateX(-9%) scale(1.02);
  }

  .product-visual-onboarding img {
    width: 100%;
    object-position: 60% 40%;
    transform: none;
  }

  .live-pill {
    min-height: 34px;
    font-size: 11px;
  }

  .integration-showcase {
    position: relative;
    inset: auto;
    min-height: 470px;
    margin-top: -18px;
  }

  .integrations-block {
    margin-bottom: 92px;
  }

  .faq-section {
    padding: 66px 24px 44px;
  }

  .faq-shell {
    width: min(100%, 920px);
  }

  .faq-intro h2 {
    max-width: 620px;
    font-size: clamp(34px, 7vw, 48px);
  }

  .faq-intro p:not(.faq-label) {
    max-width: 640px;
  }

  .closing-wave {
    min-height: 0;
    padding: 96px 24px 82px;
  }

  .closing-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .closing-copy h2 {
    max-width: 720px;
    font-size: clamp(46px, 10vw, 68px);
    line-height: 1.08;
  }

  .closing-action {
    grid-column: 1;
    grid-row: auto;
    padding-top: 0;
  }

  .plans-panel {
    margin-top: 0;
  }

  .plans-heading {
    display: block;
    margin-bottom: 18px;
  }

  .plans-heading h3 {
    margin-top: 12px;
    font-size: clamp(38px, 8vw, 56px);
  }

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

  .plan-card {
    min-height: 0;
    padding-bottom: 32px;
  }

  .wave-stage {
    inset: 320px 0 76px;
  }

  .wave-lines {
    right: -14%;
    bottom: 170px;
    left: -14%;
    width: 128%;
    height: 360px;
  }

  .closing-footer {
    gap: 32px;
    padding: 58px 24px 24px;
  }

  .footer-main {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-trust {
    margin-top: 38px;
  }

  .footer-columns {
    width: min(100%, 760px);
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .site-header {
    isolation: isolate;
  }

  body.is-on-light .site-header::before {
    position: fixed;
    inset: 0 0 auto;
    z-index: 0;
    height: 112px;
    content: "";
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, rgba(255, 255, 255, 0.78) 86%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .header-shell,
  .mobile-panel {
    z-index: 1;
  }

  .brand {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.18),
      0 14px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px) saturate(1.16);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
  }

  .brand-logo {
    display: none;
  }

  .brand::after {
    display: block;
    width: 28px;
    height: 28px;
    content: "";
    background: url("./assets/leadport-mark.png?v=mark-only-v1") center / contain no-repeat;
  }

  body.is-on-light .brand {
    background: rgba(255, 255, 255, 0.58);
    box-shadow:
      inset 0 0 0 1px rgba(15, 23, 42, 0.06),
      0 12px 28px rgba(15, 23, 42, 0.06);
  }

  .launch-pill {
    max-width: 100%;
    font-size: 9px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.24) 45%, rgba(0, 0, 0, 0.72) 100%),
      radial-gradient(ellipse at 50% 38%, rgba(255, 178, 125, 0.16) 0%, rgba(255, 178, 125, 0.06) 30%, rgba(0, 0, 0, 0) 62%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.28) 100%);
  }

  .hero-content {
    width: min(100% - 28px, 520px);
    min-height: 676px;
    padding-top: 154px;
    align-items: center;
    text-align: center;
  }

  h1 {
    margin-top: 24px;
    max-width: 340px;
    font-size: clamp(38px, 10.6vw, 48px);
    letter-spacing: 0;
    line-height: 1.1;
  }

  .hero-subtitle {
    max-width: 318px;
    margin-top: 24px;
    font-size: 16px;
  }

  .proof-section {
    padding: 118px 18px 78px;
  }

  .proof-thesis {
    margin-bottom: 58px;
    min-height: auto;
    padding-bottom: 46px;
    gap: 26px;
  }

  .proof-thesis-copy h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .proof-thesis-copy > p:not(.proof-thesis-kicker) {
    font-size: 15px;
  }

  .proof-thesis-points li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .proof-mobile-showcase {
    width: min(224px, 62vw);
    margin-top: 0;
  }

  .proof-intro h2 {
    font-size: clamp(36px, 9.8vw, 50px);
    line-height: 0.98;
  }

  .proof-lede {
    font-size: 15px;
  }

  .proof-stats article {
    min-height: 92px;
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-stats strong {
    grid-row: auto;
    grid-column: auto;
    font-size: 40px;
  }

  .graph-card {
    padding: 28px 18px 24px;
  }

  .graph-card-head {
    min-height: 0;
    flex-direction: column-reverse;
    gap: 22px;
  }

  .graph-card-head p {
    text-align: left;
  }

  .graph-card-head h3 {
    margin-top: 0;
  }

  .chart-frame {
    margin-top: 26px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .chart-svg {
    width: 520px;
    max-width: none;
  }

  .product-section {
    padding: 76px 18px 72px;
  }

  .product-block,
  .product-block-onboarding,
  .integrations-block {
    padding: 24px;
  }

  .product-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
  }

  .product-copy p:not(.product-label) {
    margin-top: 22px;
    font-size: 15px;
  }

  .product-visual {
    border-radius: 14px;
  }

  .product-visual-inbox,
  .product-visual-onboarding {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .product-visual::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0) 0 76%, rgba(255, 255, 255, 0.62) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0 76%, rgba(255, 255, 255, 0.68) 100%);
  }

  .product-visual-inbox {
    aspect-ratio: 16 / 10;
    height: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .product-visual-onboarding {
    aspect-ratio: 1440 / 920;
    height: auto;
  }

  .inbox-shot-frame {
    inset: 0;
  }

  .inbox-shot-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .customer-base-scene {
    inset: 18px 14px;
    border-radius: 15px;
  }

  .scene-topbar {
    min-height: 52px;
    padding: 0 12px;
  }

  .scene-brand {
    width: 98px;
    height: 31px;
  }

  .scene-brand img {
    width: 74px;
  }

  .scene-topbar span {
    min-height: 27px;
    padding: 0 9px;
    font-size: 10px;
  }

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

  .customer-queue {
    display: none;
  }

  .customer-thread {
    gap: 12px;
    padding: 16px 14px 0;
  }

  .thread-header strong {
    max-width: 260px;
    font-size: 15px;
  }

  .thread-header small {
    display: none;
  }

  .incoming-message {
    max-width: none;
    padding: 13px 14px;
  }

  .incoming-message p,
  .ai-draft-panel p,
  .ai-reasoning-card p {
    font-size: 12px;
    line-height: 1.42;
  }

  .ai-draft-panel {
    padding: 14px;
    border-radius: 14px;
  }

  .draft-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .draft-actions {
    margin-top: 12px;
    gap: 10px;
  }

  .draft-actions button {
    min-height: 31px;
    padding: 0 12px;
  }

  .ai-reasoning-card {
    margin: 12px 14px 16px;
    padding: 14px;
    border-radius: 14px;
  }

  .ai-reasoning-card ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .ai-reasoning-card li {
    padding-left: 10px;
    font-size: 10px;
  }

  .product-visual-onboarding img {
    width: 100%;
    transform: none;
  }

  .product-visual-inbox::after {
    display: none;
    background: none;
  }

  .composer-shot-card {
    top: 38px;
    right: 14px;
    left: 14px;
    width: auto;
    border-radius: 16px;
  }

  .composer-shot-badge {
    top: 11px;
    right: 12px;
    min-height: 25px;
    padding: 0 9px;
    font-size: 10px;
  }

  .leadport-visual-logo {
    top: 31%;
    left: 50%;
    width: 150px;
    height: 44px;
  }

  .leadport-visual-logo img {
    width: 110px;
  }

  .inbox-screenshot-layer {
    top: 148px;
    right: -126px;
    bottom: -42px;
    left: 38px;
    border-radius: 16px;
    opacity: 0.82;
  }

  .product-visual-inbox .inbox-screenshot-layer img {
    width: 143%;
    height: 108%;
    object-position: 34% 47%;
    transform: translateX(-13%) scale(1.02);
  }

  .live-pill {
    min-height: 31px;
    padding: 0 10px;
  }

  .live-pill-context,
  .live-pill-scan {
    display: none;
  }

  .product-visual-inbox .live-pill {
    display: none;
  }

  .live-pill-draft {
    right: 10%;
    bottom: 12%;
  }

  .live-pill-sync {
    top: 10%;
    right: 9%;
  }

  .live-focus-inbox,
  .live-focus-onboarding {
    right: 6%;
    bottom: 5%;
    width: 54%;
    height: 25%;
  }

  .live-cursor {
    width: 13px;
    height: 13px;
  }

  .integration-showcase {
    display: grid;
    min-height: 0;
    padding: 22px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-radius: 18px;
  }

  .integrations-block {
    margin-bottom: 76px;
  }

  .integration-showcase::before,
  .integration-showcase::after,
  .integration-routes {
    display: none;
  }

  .leadport-hub,
  .integration-node {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .leadport-hub {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 98px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    grid-column: 1 / -1;
    border: 1px solid rgba(5, 5, 5, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 34px rgba(12, 18, 32, 0.08);
  }

  .leadport-hub img {
    width: 132px;
  }

  .leadport-hub small {
    margin-top: 7px;
  }

  .integration-node {
    min-height: 50px;
    padding: 7px 10px 7px 8px;
    justify-content: flex-start;
    font-size: 13px;
  }

  .integration-logo {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .faq-section {
    padding: 52px 18px 34px;
  }

  .faq-list details {
    padding: 0;
    border-radius: 8px;
  }

  .faq-list summary {
    gap: 14px;
    min-height: 64px;
    padding: 18px 14px 18px 16px;
    font-size: 18px;
  }

  .faq-list summary::after {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .faq-list p {
    padding: 0 16px 20px;
    font-size: 15px;
    line-height: 1.58;
  }

  .closing-wave {
    min-height: 0;
    padding: 82px 18px 74px;
  }

  .closing-copy h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .closing-action p {
    max-width: 330px;
    font-size: 15px;
  }

  .plans-panel {
    margin-top: 0;
  }

  .plans-heading h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .plans-trial {
    width: 100%;
    max-width: 352px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 15px;
    border-radius: 24px;
    text-align: center;
  }

  .plans-trial em {
    width: 100%;
  }

  .contact-page-main {
    padding: 120px 18px 54px;
  }

  .contact-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .contact-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .contact-email-card {
    margin-top: 10px;
    padding: 20px;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px;
  }

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

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-status {
    text-align: left;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .plan-card {
    min-height: 0;
    padding: 22px 22px 28px;
    border-radius: 6px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.15) 48%, rgba(255, 255, 255, 0.2) 100%);
  }

  .plan-card p:not(.plan-kicker) {
    min-height: 0;
    margin-top: 22px;
  }

  .plan-card ul {
    margin-bottom: 26px;
  }

  .plan-price strong {
    font-size: clamp(32px, 10vw, 42px);
  }

  .plan-annual {
    width: 100%;
  }

  .wave-stage {
    inset: 360px 0 72px;
  }

  .wave-haze {
    height: 72%;
  }

  .wave-lines {
    right: -25%;
    bottom: 236px;
    left: -25%;
    width: 150%;
    height: 300px;
  }

  .wave-band {
    left: -36%;
    width: 170%;
  }

  .closing-footer {
    gap: 24px;
    padding: 54px 18px 24px;
  }

  .footer-logo-link img {
    width: 118px;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-trust {
    margin-top: 26px;
  }

  .footer-badges {
    gap: 10px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .footer-columns h3 {
    margin-bottom: 16px;
  }

  .footer-columns a {
    margin-bottom: 13px;
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 1080px) {
  .trade-flow-shell {
    grid-template-columns: 1fr;
  }

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

  .coming-soon-calculator {
    grid-template-columns: 1fr;
  }

  .mobile-phone-frame {
    border-radius: 28px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 760px;
  }
}

.product-visual.product-visual-inbox {
  aspect-ratio: 760 / 530;
}

@media (max-width: 860px) {
  .mockup-shell-inbox {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .mockup-inbox-list {
    display: none;
  }

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

  .mockup-context-layout,
  .mockup-integration-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero-trades-line {
    max-width: 330px;
    font-size: 15px;
  }

  .hero-safety-note {
    max-width: 310px;
  }

  .trade-flow-section {
    padding: 54px 18px 62px;
  }

  .trade-flow-heading h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .trade-flow-steps,
  .trade-audience-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-calculator {
    margin-top: 0;
  }

  .calculator-visual {
    min-height: 420px;
  }

  .calculator-panel,
  .offer-preview {
    width: auto;
    margin-right: 18px;
    margin-left: 18px;
  }

  .trade-flow-steps article {
    min-height: 0;
  }

  .trade-audience h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .product-visual.product-visual-inbox,
  .product-visual.product-visual-onboarding,
  .integration-showcase.integration-showcase-mockup {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
  }

  .integration-showcase.integration-showcase-mockup {
    display: block;
    padding: 0;
  }

  .leadport-marketing-mockup {
    height: auto;
  }

  .mockup-window-bar {
    min-height: auto;
    padding: 12px;
    grid-template-columns: auto 1fr;
    gap: 9px 12px;
  }

  .mockup-safe-pill {
    grid-column: 1 / -1;
    justify-self: start;
    white-space: normal;
  }

  .mockup-shell,
  .mockup-context-layout,
  .mockup-integration-layout {
    padding: 12px;
  }

  .mockup-shell-inbox {
    grid-template-columns: 1fr;
  }

  .mockup-ai-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mockup-thread,
  .mockup-context-main,
  .mockup-profile-card,
  .mockup-learning-card {
    padding: 14px;
  }

  .mockup-thread-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mockup-thread h3,
  .mockup-context-main h3,
  .mockup-learning-card h3 {
    font-size: 16px;
  }

  .mockup-message p,
  .mockup-context-main p,
  .mockup-learning-card p {
    font-size: 12px;
  }

  .mockup-callouts {
    padding: 0 12px 12px;
  }

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

  .mockup-flow-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .mockup-source-grid {
    grid-template-columns: 1fr;
  }

  .mockup-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mockup-button {
    width: 100%;
  }
}
