:root {
  color-scheme: light;
  --paper: #fbfbfa;
  --surface: #ffffff;
  --ink: #171719;
  --muted: #737373;
  --faint: #a5a5a5;
  --line: #ececec;
  --line-strong: #dfdfdf;
  --chip: #f2f0ff;
  --blue: #101fd2;
  --green: #22bf82;
  --pink: #f48cb4;
  --shadow: 0 20px 70px rgba(20, 20, 26, 0.1);
  --soft-shadow: 0 8px 30px rgba(20, 20, 26, 0.06);
  --max: 1380px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(24px, 4vw, 84px);
  background: rgba(251, 251, 250, 0.78);
  backdrop-filter: blur(18px);
}

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

.logo img {
  display: block;
  width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4.6vw, 76px);
  font-size: 22px;
  font-weight: 500;
}

.main-nav a,
.language {
  color: #2a2a2d;
}

.main-nav a:hover,
.language:hover {
  color: #000;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.language {
  border: 0;
  background: transparent;
  padding: 8px 0;
  font-size: 21px;
}

.language::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  opacity: 0.6;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 27px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.pill-button.dark {
  color: #fff;
  background: #171719;
  box-shadow: 0 10px 28px rgba(17, 17, 20, 0.12);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  padding: 156px clamp(24px, 4vw, 84px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 251, 250, 0.08) 0%, var(--paper) 86%),
    radial-gradient(70% 68% at 50% 27%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.38) 56%, transparent 78%),
    conic-gradient(
      from 190deg at 50% 0%,
      rgba(176, 255, 211, 0.38),
      rgba(202, 217, 255, 0.5),
      rgba(255, 196, 219, 0.42),
      rgba(255, 236, 177, 0.42),
      rgba(190, 252, 224, 0.34),
      rgba(176, 255, 211, 0.38)
    );
}

.ambient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.28) 24%, rgba(255, 255, 255, 0.62) 54%, rgba(255, 255, 255, 0.18) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px);
  filter: blur(18px);
  opacity: 0.74;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding-top: 126px;
  text-align: center;
}

.hero-kicker {
  margin: 0;
  color: #929292;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 46px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 5.1vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 700;
  white-space: nowrap;
}

h1 em {
  font-style: italic;
  font-weight: 600;
}

.hero-cta {
  margin-top: 74px;
}

.spark {
  margin-right: 9px;
  font-size: 22px;
  line-height: 0;
}

.search-demo {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(960px, calc(100vw - 42px));
  min-height: 126px;
  margin: 224px auto 0;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 226, 226, 0.92);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(18px);
}

.search-demo p {
  margin: 0;
  color: #1f1f22;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.35;
}

.search-demo strong {
  display: inline-block;
  margin: 0 4px;
  padding: 0 8px 2px;
  color: var(--blue);
  background: var(--chip);
  border-radius: 10px;
  font-weight: 800;
}

.search-demo button,
.signup-form button {
  border: 1px solid var(--line);
  background: #fff;
  color: #202024;
  border-radius: 999px;
  font-size: 23px;
  font-weight: 500;
}

.search-demo button {
  min-width: 118px;
  min-height: 57px;
}

.lead-table {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100vw - 80px));
  margin: 18px auto 0;
  color: #858585;
  background: rgba(255, 255, 255, 0.18);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.32fr 0.78fr 0.7fr 1.05fr 1.28fr 0.92fr 0.8fr;
  align-items: center;
}

.table-head span,
.table-row > span {
  min-height: 68px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.table-head {
  font-size: 16px;
  font-weight: 500;
}

.table-row {
  color: #272729;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.muted-row {
  opacity: 0.58;
}

.profile {
  gap: 14px;
}

.avatar {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
}

.avatar.green {
  background: #e5f7ef;
}

.match {
  gap: 8px;
  font-weight: 700;
}

.match i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.link-badge {
  color: #fff;
}

.link-badge::before {
  content: "in";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: #1675c1;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.check-email {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4c4c4c;
  background: #fff;
}

.country {
  gap: 8px;
  font-weight: 600;
}

.country i {
  width: 22px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(#fff 0 50%, #dc2442 50% 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px clamp(24px, 4vw, 84px) 24px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 18px;
  color: #575757;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 650;
}

.trust-strip span::before,
.pricing-copy p::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 132px) clamp(24px, 4vw, 84px);
}

.split-section,
.pricing-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 7vw, 120px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 20px;
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.copy-block {
  padding-top: 44px;
  font-size: 22px;
}

.product-showcase {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px clamp(24px, 4vw, 84px) clamp(72px, 8vw, 126px);
}

.showcase-copy {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(24px, 6vw, 96px);
  align-items: end;
  margin-bottom: 32px;
}

.showcase-copy h2 {
  max-width: 800px;
}

.showcase-frame {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 86px rgba(16, 16, 20, 0.12);
}

.showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
}

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

.flow-step {
  min-height: 310px;
  padding: 34px 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-step span {
  display: block;
  margin-bottom: 72px;
  color: var(--faint);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
}

.flow-step p {
  margin: 14px 0 0;
  font-size: 17px;
}

.directory-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.centered {
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
}

.role-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 940px;
  margin: 48px auto 0;
}

.role-cloud span {
  padding: 15px 20px;
  color: #252528;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 650;
  box-shadow: var(--soft-shadow);
}

.feature-ledger {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(34px, 6vw, 94px);
}

.ledger {
  display: grid;
  border-top: 1px solid var(--ink);
}

.ledger > div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
}

.ledger h3 {
  font-size: 19px;
}

.ledger p {
  margin: 0;
}

.pricing-section {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    conic-gradient(from 140deg at 50% 0%, rgba(237, 243, 255, 0.8), rgba(255, 242, 211, 0.52), rgba(255, 219, 235, 0.58), rgba(225, 255, 238, 0.62), rgba(237, 243, 255, 0.8));
  border-radius: 28px;
}

.pricing-copy p {
  display: flex;
  margin: 0 0 30px;
  font-size: 20px;
}

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

.objection {
  min-height: 188px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.objection p {
  margin: 12px 0 0;
}

.final-cta {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 24px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(66% 100% at 50% 0%, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.22) 60%, transparent 100%),
    conic-gradient(from 210deg at 50% 10%, rgba(193, 255, 224, 0.42), rgba(219, 226, 255, 0.48), rgba(255, 219, 235, 0.5), rgba(255, 242, 204, 0.38), rgba(193, 255, 224, 0.42));
}

.final-cta h2 {
  max-width: 780px;
  margin: 24px auto 0;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(240px, 420px) auto;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.signup-form input {
  min-height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 23px;
  background: rgba(255, 255, 255, 0.88);
  outline: none;
}

.signup-form input:focus {
  border-color: #171719;
}

.signup-form button {
  min-height: 58px;
  padding: 0 30px;
  color: #fff;
  background: #171719;
  border-color: #171719;
  font-weight: 700;
}

.signup-form p {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    gap: 28px;
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .main-nav,
  .language {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    padding-top: 80px;
  }

  .search-demo,
  .split-section,
  .pricing-section,
  .showcase-copy,
  .feature-ledger,
  .flow-section,
  .objection-section {
    grid-template-columns: 1fr;
  }

  .search-demo {
    margin-top: 150px;
  }

  h1 {
    white-space: normal;
  }

  .lead-table {
    width: calc(100vw - 24px);
    overflow: hidden;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1.2fr 0.8fr 0.7fr 1.1fr;
    min-width: 760px;
  }

  .table-head span:nth-child(n + 5),
  .table-row > span:nth-child(n + 5) {
    display: none;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 0 16px;
  }

  .logo {
    width: 104px;
  }

  .logo img {
    width: 104px;
  }

  .pill-button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero {
    min-height: 920px;
    padding-top: 92px;
  }

  .hero-copy {
    padding-top: 70px;
  }

  h1 {
    margin-top: 34px;
    font-size: 55px;
  }

  .hero-cta {
    margin-top: 50px;
  }

  .search-demo {
    grid-template-columns: 1fr;
    margin-top: 120px;
    padding: 22px;
    border-radius: 24px;
  }

  .search-demo button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h2 {
    font-size: 42px;
  }

  .copy-block {
    padding-top: 0;
    font-size: 18px;
  }

  .product-showcase {
    padding-left: 16px;
    padding-right: 16px;
  }

  .showcase-frame {
    border-radius: 18px;
  }

  .ledger > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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