:root {
  --paper: #ECEFF4;
  --surface: #FFFFFF;
  --ink: #0A0F1C;
  --muted: #6B7280;
  --line: #E5E7EB;
  --brand: #3D5AFE;
  --brand-dark: #2845d8;
  --green: #2f765f;
  --amber: #a96c19;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
a { color: inherit; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 72px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(10, 15, 28, .08);
  background: rgba(236, 239, 244, .9);
  backdrop-filter: blur(18px);
}

.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark img { display: block; width: 210px; height: auto; }
.site-footer .wordmark img { width: 184px; }

.site-header nav { display: flex; gap: 30px; }
.site-header nav a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}
.site-header nav a:hover { color: var(--ink); }

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-login,
.header-cta {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.header-login {
  border: 1px solid rgba(10, 15, 28, .10);
  background: rgba(255, 255, 255, .58);
  color: var(--ink);
}

.header-login:hover {
  border-color: rgba(10, 15, 28, .18);
  background: #fff;
}

.header-cta {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 34px rgba(61, 90, 254, .20);
}

.header-cta:hover {
  background: var(--brand-dark);
}

main { max-width: 1480px; margin: 0 auto; }
section { border-bottom: 1px solid rgba(10, 15, 28, .08); }

.section-kicker,
.pilot-label {
  display: inline-flex;
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.landing-hero {
  min-height: 720px;
  padding: 118px 56px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 78px;
  align-items: center;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(10, 15, 28, .04) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(10, 15, 28, .04) 1px);
  background-size: 48px 48px;
}

.hero-copy h1 {
  max-width: 910px;
  margin: 18px 0 24px;
  font-size: clamp(64px, 7.2vw, 108px);
  line-height: .9;
  letter-spacing: -.078em;
}

.audience-line {
  max-width: 620px;
  margin: 14px 0 0;
  color: #344054;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -.01em;
}

.hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

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

.cta {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 15, 28, .16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.cta.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 42px rgba(61, 90, 254, .22);
}
.cta.primary:hover { background: var(--brand-dark); }
.cta.secondary { background: rgba(255, 255, 255, .76); }

.hero-copy > small,
.final-cta small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}

.briefing-card {
  padding: 26px;
  border: 1px solid rgba(10, 15, 28, .10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(61, 90, 254, .18), transparent 28%),
    linear-gradient(145deg, #fff 0%, #f8f9fc 100%);
  box-shadow: 0 32px 90px rgba(10, 15, 28, .12);
}

.briefing-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.briefing-card header span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.briefing-card header img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.briefing-card header b {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 118, 95, .10);
  color: var(--green);
  font-size: 10px;
}

.delivery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.delivery-row span {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #344054;
  font-size: 11px;
  font-weight: 800;
}

.delivery-row img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  border-radius: 50%;
}

.mail-icon,
.dashboard-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  border-radius: 50%;
  background: var(--brand);
  position: relative;
}

.mail-icon::before {
  content: "";
  position: absolute;
  inset: 5px 4px;
  border: 1.7px solid #fff;
  border-radius: 2px;
}

.dashboard-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.product-demo {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(10, 15, 28, .10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(61, 90, 254, .18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .94) 0%, rgba(248, 249, 252, .92) 100%);
  box-shadow: 0 32px 90px rgba(10, 15, 28, .12);
  backdrop-filter: blur(18px);
}

.product-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .72) 42%, transparent 62%);
  transform: translateX(-120%);
  animation: demo-scan 12s cubic-bezier(.6, 0, .2, 1) infinite;
  pointer-events: none;
}

.product-demo:hover::before {
  animation-play-state: paused;
}

.demo-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.demo-header span {
  display: block;
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.demo-header strong {
  display: block;
  margin-top: 7px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.045em;
}

.demo-header > b {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(47, 118, 95, .10);
  color: var(--green);
  white-space: nowrap;
  font-size: 10px;
}

.demo-counters {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 18px;
}

.demo-counters article {
  min-height: 96px;
  padding: 14px;
  display: grid;
  align-content: end;
  border-radius: 22px;
  background: #0A0F1C;
  color: #fff;
  transition: transform .55s ease, background .55s ease;
}

.product-demo[data-stage="filter"] .demo-counters article:nth-child(2),
.product-demo[data-stage="recommend"] .demo-counters article:nth-child(3),
.product-demo[data-stage="briefing"] .demo-counters article:nth-child(3),
.product-demo[data-stage="action"] .demo-counters article:nth-child(3) {
  transform: translateY(-3px);
  background: var(--brand);
}

.demo-counters strong {
  font-size: 40px;
  line-height: .85;
  letter-spacing: -.065em;
}

.demo-counters span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .64);
  font-size: 10px;
  line-height: 1.25;
}

.market-stream {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 15px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .62);
}

.market-stream span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(10, 15, 28, .16), rgba(10, 15, 28, .07));
  transform-origin: left center;
  transition: opacity .75s ease, transform .75s ease, background .75s ease, filter .75s ease;
}

.market-stream span:nth-child(1) { width: 92%; transition-delay: .02s; }
.market-stream span:nth-child(2) { width: 68%; transition-delay: .06s; }
.market-stream span:nth-child(3) { width: 84%; transition-delay: .1s; }
.market-stream span:nth-child(4) { width: 58%; transition-delay: .14s; }
.market-stream span:nth-child(5) { width: 76%; transition-delay: .18s; }
.market-stream span:nth-child(6) { width: 88%; transition-delay: .22s; }
.market-stream span:nth-child(7) { width: 52%; transition-delay: .26s; }
.market-stream span:nth-child(8) { width: 72%; transition-delay: .3s; }

.product-demo[data-stage="analyse"] .market-stream span {
  animation: market-pulse 1.4s ease-in-out infinite;
}

.product-demo[data-stage="filter"] .market-stream span[data-market="discard"],
.product-demo[data-stage="recommend"] .market-stream span[data-market="discard"],
.product-demo[data-stage="briefing"] .market-stream span[data-market="discard"],
.product-demo[data-stage="action"] .market-stream span[data-market="discard"] {
  opacity: .16;
  filter: blur(1px);
  transform: translateX(30px) scaleX(.42);
}

.product-demo[data-stage="filter"] .market-stream span[data-market="keep"],
.product-demo[data-stage="recommend"] .market-stream span[data-market="keep"],
.product-demo[data-stage="briefing"] .market-stream span[data-market="keep"],
.product-demo[data-stage="action"] .market-stream span[data-market="keep"] {
  background: linear-gradient(90deg, var(--brand), rgba(61, 90, 254, .35));
  transform: translateX(0) scaleX(1.02);
}

.demo-recommendation,
.demo-briefing,
.demo-final-action {
  position: relative;
  z-index: 1;
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
}

.demo-recommendation {
  padding: 18px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 24px;
  background: #fff;
}

.demo-recommendation header,
.demo-briefing header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.demo-recommendation header span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(61, 90, 254, .10);
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-recommendation header b {
  color: var(--muted);
  font-size: 13px;
}

.demo-recommendation h2 {
  margin: 16px 0 12px;
  font-size: 26px;
  line-height: .98;
}

.demo-points {
  display: grid;
  gap: 7px;
}

.demo-points p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.demo-points b {
  margin-right: 6px;
  color: var(--ink);
}

.demo-briefing {
  margin-top: 12px;
  padding: 16px;
  border-radius: 22px;
  background: #0A0F1C;
  color: #fff;
}

.demo-briefing header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
}

.demo-briefing header img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.demo-briefing header b {
  color: #9fb0ff;
  font-size: 10px;
  text-transform: uppercase;
}

.demo-briefing p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.52;
}

.demo-briefing .delivery-row span {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
}

.demo-final-action {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-final-action a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(61, 90, 254, .24);
}

.demo-final-action span {
  color: var(--muted);
  font-size: 12px;
}

.product-demo[data-stage="analyse"] .demo-recommendation,
.product-demo[data-stage="filter"] .demo-recommendation {
  opacity: .42;
  filter: saturate(.75);
  transform: translateY(8px);
}

.product-demo[data-stage="analyse"] .demo-briefing,
.product-demo[data-stage="filter"] .demo-briefing,
.product-demo[data-stage="recommend"] .demo-briefing {
  opacity: .22;
  filter: blur(.5px) saturate(.75);
  transform: translateY(10px);
}

.product-demo[data-stage="analyse"] .demo-final-action,
.product-demo[data-stage="filter"] .demo-final-action,
.product-demo[data-stage="recommend"] .demo-final-action,
.product-demo[data-stage="briefing"] .demo-final-action {
  opacity: .28;
  transform: translateY(8px);
}

.product-demo[data-stage="recommend"] .demo-recommendation,
.product-demo[data-stage="briefing"] .demo-recommendation,
.product-demo[data-stage="action"] .demo-recommendation {
  opacity: 1;
  transform: translateY(0);
}

.product-demo[data-stage="briefing"] .demo-briefing,
.product-demo[data-stage="action"] .demo-briefing,
.product-demo[data-stage="action"] .demo-final-action {
  opacity: 1;
  filter: none;
  transform: translateY(0);
}

@keyframes demo-scan {
  0%, 16% { transform: translateX(-120%); }
  38%, 48% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes market-pulse {
  0%, 100% { opacity: .55; transform: scaleX(.82); }
  50% { opacity: 1; transform: scaleX(1); }
}

.briefing-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.briefing-numbers article {
  min-height: 102px;
  padding: 16px;
  display: grid;
  align-content: end;
  border-radius: 22px;
  background: #0A0F1C;
  color: #fff;
}
.briefing-numbers strong {
  font-size: 42px;
  line-height: .85;
  letter-spacing: -.065em;
}
.briefing-numbers span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  line-height: 1.25;
}

.briefing-reco {
  padding: 20px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .75);
}
.briefing-reco > span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.briefing-reco h2 {
  margin: 14px 0 14px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.055em;
}
.briefing-reco p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.briefing-reco a {
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.problem-section,
.matching-section,
.pricing-section,
.trust-section,
.founder-section,
.faq-section {
  padding: 100px 56px;
}

.problem-section {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 42px;
}

h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: .96;
  letter-spacing: -.065em;
}

.section-copy > p,
.receive-section > div > p,
.example-copy p,
.pricing-section > div > p,
.trust-section header p,
.final-cta p {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.pain-grid,
.solution-grid,
.receive-grid,
.data-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pain-grid { margin-top: 34px; }

.pain-grid article,
.solution-grid article,
.receive-grid article,
.data-map article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .66);
}

.pain-grid span,
.solution-grid i,
.steps b {
  color: var(--brand);
  font: 800 12px ui-monospace, Consolas, monospace;
}

h3 { margin: 0; letter-spacing: -.035em; }
.pain-grid h3,
.solution-grid h3,
.receive-grid h3,
.data-map h3 {
  margin-top: 34px;
  font-size: 22px;
}
.pain-grid p,
.solution-grid p,
.receive-grid p,
.data-map p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.matching-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 90, 254, .12), transparent 34%),
    #F7F8FB;
}

.matching-section header {
  max-width: 940px;
}

.matching-section h2,
.input-section h2 {
  margin-top: 16px;
}

.matching-section header p,
.input-section header p,
.matching-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.matching-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px minmax(0, 1fr);
  gap: 18px;
  margin-top: 46px;
  align-items: stretch;
}

.match-panel,
.match-agent,
.matching-reco {
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 34px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 24px 70px rgba(10, 15, 28, .07);
}

.match-panel {
  min-height: 360px;
  padding: 28px;
}

.match-panel span,
.match-agent span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.match-panel h3,
.match-agent h3 {
  margin-top: 16px;
  font-size: 30px;
  line-height: 1;
}

.match-panel ul {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.match-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344054;
  font-size: 13px;
  font-weight: 750;
}

.match-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(61, 90, 254, .10);
}

.match-agent {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 30px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(61, 90, 254, .24), transparent 34%),
    #0A0F1C;
  color: #fff;
}

.match-agent::before,
.match-agent::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
}

.match-agent::before { left: -28px; }
.match-agent::after { right: -28px; }

.match-agent h3 {
  max-width: 230px;
  margin-bottom: 22px;
}

.match-agent h3 {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  white-space: nowrap;
}

.match-agent h3 b {
  font: inherit;
}

.match-agent h3 i {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  color: #9fb0ff;
  font-size: 22px;
  font-style: normal;
  line-height: 1;
}

.score-ring {
  width: 162px;
  height: 162px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0A0F1C 0 56%, transparent 57%),
    conic-gradient(var(--brand) 0 83%, rgba(255, 255, 255, .16) 83% 100%);
  box-shadow: 0 22px 60px rgba(61, 90, 254, .28);
}

.score-ring strong {
  font-size: 54px;
  line-height: .85;
  letter-spacing: -.06em;
}

.score-ring small {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.match-agent p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  font-weight: 800;
}

.matching-reco {
  margin-top: 18px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.matching-reco strong {
  font-size: 20px;
  letter-spacing: -.035em;
}

.matching-reco p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.matching-reco b {
  color: var(--ink);
}

.matching-note {
  margin: 26px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.solution-section,
.input-section,
.receive-section,
.example-section,
.how-section {
  padding: 96px 56px;
}

.solution-section header,
.how-section header {
  max-width: 980px;
}
.solution-section h2,
.how-section h2 {
  margin-top: 16px;
}
.solution-grid { margin-top: 44px; }

.input-section header {
  max-width: 940px;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.input-grid article {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .66);
}

.input-grid h3 {
  font-size: 19px;
}

.input-grid p {
  margin: 52px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.52;
}

.receive-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 58px;
  align-items: start;
}

.example-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 72px;
  align-items: center;
  background: #0A0F1C;
  color: #fff;
}
.example-copy p { color: rgba(255, 255, 255, .62); }

.example-card {
  padding: 34px;
  border-radius: 34px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}
.example-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.example-card header span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(61, 90, 254, .10);
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.example-card header strong {
  color: var(--muted);
  font-size: 18px;
}
.example-card h3 {
  max-width: 760px;
  margin: 26px 0 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .98;
}
.example-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.example-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #EEF1FF;
  color: #3C4658;
  font-size: 11px;
  font-weight: 750;
}
.example-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.example-lists div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.example-lists b {
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.example-lists ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--ink);
}
.steps article {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid rgba(10, 15, 28, .10);
}
.steps article:last-child { border-right: 0; }
.steps h3 {
  margin-top: 54px;
  font-size: 21px;
}
.steps p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}
.process-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pricing-section {
  display: grid;
  gap: 24px;
}

.pricing-section header {
  max-width: 980px;
}

.pricing-section h2 {
  margin-top: 16px;
}

.pricing-section header p {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.pricing-progression {
  margin: 2px 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -.01em;
}

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

.pricing-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 15, 28, .09);
  border-radius: 34px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 70px rgba(10, 15, 28, .065);
}

.pricing-card.is-featured {
  border-color: rgba(61, 90, 254, .34);
  background:
    radial-gradient(circle at 92% 0%, rgba(61, 90, 254, .18), transparent 34%),
    #fff;
  box-shadow: 0 32px 90px rgba(61, 90, 254, .16);
}

.value-badge {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-roi {
  width: fit-content;
  margin: 12px 0 0;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(61, 90, 254, .09);
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.plan-label {
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 14px 0 8px;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: .96;
  letter-spacing: -.06em;
}

.plan-price {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -.055em;
}

.plan-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-promise {
  min-height: 72px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  color: #30394a;
  font-size: 13px;
  line-height: 1.38;
}

.pricing-card li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
}

.pricing-card .cta {
  margin-top: auto;
}

.pricing-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.pricing-guarantee {
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(10, 15, 28, .98), rgba(16, 24, 44, .94));
  color: #fff;
}

.pricing-guarantee strong {
  font-size: 20px;
  letter-spacing: -.04em;
}

.pricing-guarantee p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.58;
}

.pricing-roi-block {
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 50px rgba(10, 15, 28, .05);
}

.pricing-roi-block strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.05em;
}

.pricing-roi-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

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

.pricing-trust-note span {
  padding: 9px 12px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .70);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pricing-section h2,
.trust-section h2,
.founder-content h2,
.final-cta h2 {
  margin-top: 16px;
}

.trust-section header { max-width: 920px; }
.data-map { margin-top: 38px; }
.trust-section small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.founder-section {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 78px;
  align-items: center;
}
.founder-photo {
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 80px rgba(10, 15, 28, .08);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  filter: grayscale(.78) saturate(.76) contrast(1.04);
}
.founder-content { max-width: 790px; }
.founder-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.founder-lead {
  color: var(--ink) !important;
  font-size: 16px !important;
}
.founder-identity {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 15, 28, .14);
}
.founder-identity strong {
  display: block;
  font-size: 20px;
}
.founder-identity span {
  display: block;
  margin-top: 4px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
blockquote {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--brand);
  background: rgba(61, 90, 254, .06);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}
.linkedin-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.linkedin-link img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.linkedin-link:hover { color: var(--brand); }
.ecosystem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.ecosystem-cards article {
  padding: 18px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .62);
}

.ecosystem-cards img {
  width: 132px;
  height: 38px;
  display: block;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.ecosystem-cards article:first-child img {
  width: 142px;
}

.ecosystem-cards p {
  margin-bottom: 0;
  font-size: 12px;
}

.faq-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;
}
.faq-section details {
  border-top: 1px solid rgba(10, 15, 28, .10);
}
.faq-section details:last-child {
  border-bottom: 1px solid rgba(10, 15, 28, .10);
}
.faq-section summary {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}
.faq-section p {
  max-width: 760px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.final-cta {
  padding: 116px 56px;
  text-align: center;
}
.final-cta h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  margin: 18px auto 0;
}
.final-cta .cta {
  margin-top: 28px;
}

.site-footer {
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 48px 42px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.site-footer nav a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}
.site-footer nav a:hover {
  color: var(--ink);
}
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 1080px) {
  .site-header nav { gap: 18px; }
  .landing-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: start;
  }
  .product-demo,
  .briefing-card { max-width: 640px; }
  .matching-visual,
  .matching-reco {
    grid-template-columns: 1fr;
  }
  .match-agent::before,
  .match-agent::after {
    display: none;
  }
  .input-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .receive-section,
  .example-section,
  .pricing-section,
  .founder-section,
  .faq-section,
  .problem-section {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-guarantee,
  .pricing-roi-block {
    grid-template-columns: 1fr;
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps article { border-bottom: 1px solid rgba(10, 15, 28, .10); }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }
  .site-header nav { display: none; }
  .wordmark img { width: 164px; }
  .header-actions { gap: 6px; }
  .header-login,
  .header-cta { min-height: 36px; padding: 0 12px; font-size: 10px; }
  .header-login { display: none; }
  .landing-hero,
  .problem-section,
  .solution-section,
  .matching-section,
  .input-section,
  .receive-section,
  .example-section,
  .how-section,
  .pricing-section,
  .trust-section,
  .founder-section,
  .faq-section,
  .final-cta {
    padding-left: 22px;
    padding-right: 22px;
  }
  .landing-hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 62px;
  }
  .hero-copy h1 { font-size: 52px; }
  h2 { font-size: 42px; }
  .hero-actions,
  .demo-counters,
  .briefing-numbers,
  .matching-visual,
  .matching-reco,
  .pain-grid,
  .solution-grid,
  .input-grid,
  .receive-grid,
  .data-map,
  .example-lists,
  .steps,
  .ecosystem-cards {
    grid-template-columns: 1fr;
  }
  .hero-actions { display: grid; }
  .product-demo { padding: 18px; border-radius: 28px; }
  .demo-header { display: grid; }
  .demo-header > b { justify-self: start; }
  .demo-counters article { min-height: 80px; }
  .demo-recommendation h2 { font-size: 24px; }
  .demo-final-action { align-items: stretch; display: grid; }
  .briefing-numbers article { min-height: 82px; }
  .example-card { padding: 22px; }
  .founder-photo,
  .founder-photo img { min-height: 390px; }
  .site-footer {
    padding: 24px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .site-footer nav {
    justify-content: start;
  }
}

/* ATTRIBIS V29: product-like visuals instead of abstract pictograms */
.visual-icon {
  display: none;
}

.mini-product,
.source-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(61, 90, 254, .14), transparent 34%),
    rgba(255, 255, 255, .86);
  box-shadow: 0 18px 46px rgba(10, 15, 28, .07);
}

.mini-product {
  width: min(100%, 260px);
  min-height: 118px;
  padding: 16px;
}

.pain-grid article {
  gap: 24px;
}

.pain-grid .mini-product {
  align-self: center;
}

.mini-noise b,
.mini-time b,
.source-reference b,
.source-capacity b {
  display: block;
  color: var(--ink);
  font-size: 38px;
  line-height: .9;
  letter-spacing: -.06em;
}

.mini-noise small,
.mini-time small,
.source-reference small,
.source-criteria small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.mini-noise i,
.mini-scan i {
  display: block;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(10, 15, 28, .08);
}

.mini-noise i:nth-of-type(1),
.mini-scan i:nth-of-type(1) {
  width: 88%;
}

.mini-noise i:nth-of-type(2),
.mini-scan i:nth-of-type(2) {
  width: 62%;
  background: rgba(61, 90, 254, .20);
}

.mini-noise i:nth-of-type(3),
.mini-scan i:nth-of-type(3) {
  width: 38%;
}

.mini-risk strong {
  width: fit-content;
  display: block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, .14);
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
}

.mini-risk small {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.solution-grid article {
  min-height: 390px;
}

.solution-grid .mini-product {
  width: 100%;
  max-width: 310px;
  min-height: 142px;
  display: grid;
  align-content: center;
}

.mini-scan span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.mini-scan b {
  margin: 7px 0 8px;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -.045em;
}

.mini-score {
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(61, 90, 254, .18), transparent 44%),
    #0a0f1c;
  color: #fff;
}

.mini-score strong {
  font-size: 58px;
  line-height: .85;
  letter-spacing: -.07em;
}

.mini-score small {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.mini-score em {
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  color: #9fb0ff;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}

.mini-decision {
  gap: 8px;
}

.mini-decision button {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 999px;
  background: rgba(247, 248, 251, .86);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.mini-decision button:first-child {
  background: var(--brand);
  color: #fff;
}

.input-grid article {
  min-height: 285px;
}

.source-visual {
  min-height: 104px;
  padding: 14px;
}

.source-tags,
.source-docs,
.source-map {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
}

.source-tags span,
.source-docs span,
.source-map span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(61, 90, 254, .08);
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
}

.source-map {
  background:
    linear-gradient(90deg, rgba(10, 15, 28, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 15, 28, .045) 1px, transparent 1px),
    rgba(255, 255, 255, .86);
  background-size: 24px 24px;
}

.source-reference,
.source-capacity,
.source-criteria {
  display: grid;
  align-content: center;
}

.source-capacity i {
  width: 100%;
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--brand) 0 72%, rgba(10, 15, 28, .08) 72% 100%);
}

.source-criteria b {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(47, 118, 95, .12);
  color: var(--green);
  font-size: 13px;
}

.input-grid h3 {
  margin-top: 34px;
}

.receive-section {
  position: relative;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .52fr);
  gap: 28px 44px;
  align-items: center;
}

.receive-grid {
  grid-column: 1;
}

.whatsapp-preview {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.phone-frame {
  width: min(100%, 390px);
  margin-left: auto;
  padding: 16px;
  border-radius: 42px;
  background: #0a0f1c;
  box-shadow: 0 34px 90px rgba(10, 15, 28, .18);
}

.phone-frame header {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 850;
}

.chat-bubble {
  margin-top: 12px;
  padding: 18px;
  border-radius: 28px 28px 28px 8px;
  background: #fff;
}

.chat-bubble strong,
.chat-bubble b {
  color: var(--ink);
}

.chat-bubble p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.chat-bubble div {
  padding: 14px;
  border-radius: 20px;
  background: rgba(61, 90, 254, .07);
}

.chat-bubble div span {
  display: block;
  color: var(--brand);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.chat-bubble div b {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.chat-bubble small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .receive-section {
    grid-template-columns: 1fr;
  }

  .receive-grid,
  .whatsapp-preview {
    grid-column: auto;
    grid-row: auto;
  }

  .phone-frame {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .product-demo .demo-recommendation,
  .product-demo .demo-briefing,
  .product-demo .demo-final-action {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .product-demo .market-stream span[data-market="discard"] {
    opacity: .16;
    transform: translateX(30px) scaleX(.42);
  }
  .product-demo .market-stream span[data-market="keep"] {
    background: linear-gradient(90deg, var(--brand), rgba(61, 90, 254, .35));
  }
}

/* ATTRIBIS V28: cleaner Apple-like visual sections */
.section-kicker {
  align-items: center;
  gap: 9px;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(61, 90, 254, .14);
  border-radius: 999px;
  background: rgba(61, 90, 254, .055);
  font-size: 11px;
}

.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(61, 90, 254, .10);
}

.problem-section {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.problem-section .section-kicker,
.faq-section > .section-kicker {
  width: fit-content;
}

.section-copy {
  max-width: 1180px;
}

.problem-section h2 {
  max-width: 1020px;
  margin-top: 18px;
}

.section-copy > p {
  max-width: 690px;
  margin-top: 22px;
  font-size: 18px;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.pain-grid article,
.solution-grid article,
.input-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 15, 28, .075);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(61, 90, 254, .10), transparent 34%),
    rgba(255, 255, 255, .78);
  box-shadow: 0 24px 70px rgba(10, 15, 28, .055);
}

.pain-grid article {
  min-height: 320px;
  padding: 26px;
  display: grid;
  align-content: space-between;
}

.pain-grid article > span {
  color: rgba(10, 15, 28, .08);
  font: 900 clamp(54px, 6vw, 90px) / .82 "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -.08em;
}

.pain-grid h3 {
  max-width: 300px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: .94;
  letter-spacing: -.06em;
}

.pain-grid p {
  display: none;
}

.visual-icon {
  width: 74px;
  height: 74px;
  display: block;
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 25%, rgba(61, 90, 254, .95), transparent 18%),
    linear-gradient(145deg, #0a0f1c, #111827);
  box-shadow: 0 18px 44px rgba(10, 15, 28, .16);
}

.noise-icon {
  background:
    linear-gradient(90deg, transparent 18%, rgba(255,255,255,.92) 18% 25%, transparent 25% 40%, rgba(61,90,254,.95) 40% 48%, transparent 48%),
    #0a0f1c;
}

.risk-icon {
  background:
    conic-gradient(from 180deg at 50% 54%, transparent 0 14%, rgba(61,90,254,.95) 14% 38%, transparent 38% 62%, rgba(255,255,255,.92) 62% 86%, transparent 86%),
    #0a0f1c;
}

.time-icon {
  background:
    radial-gradient(circle at center, #0a0f1c 0 38%, transparent 39%),
    conic-gradient(var(--brand) 0 68%, rgba(255,255,255,.85) 68% 100%),
    #0a0f1c;
}

.solution-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(61, 90, 254, .10), transparent 32%),
    #f7f8fb;
}

.solution-section header {
  max-width: 1060px;
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.solution-grid article {
  min-height: 360px;
  padding: 28px;
  display: grid;
  align-content: space-between;
}

.solution-grid article > span {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(10, 15, 28, .10);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.solution-grid .visual-icon {
  width: 86px;
  height: 86px;
}

.scan-icon {
  background:
    linear-gradient(180deg, transparent 28%, rgba(61,90,254,.95) 28% 36%, transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.92) 0 9%, transparent 10%),
    #0a0f1c;
}

.match-icon {
  background:
    radial-gradient(circle at 28% 50%, rgba(255,255,255,.92) 0 9%, transparent 10%),
    radial-gradient(circle at 72% 50%, rgba(61,90,254,.95) 0 11%, transparent 12%),
    linear-gradient(90deg, transparent 35%, rgba(255,255,255,.58) 35% 65%, transparent 65%),
    #0a0f1c;
}

.decision-icon {
  background:
    linear-gradient(135deg, transparent 36%, rgba(255,255,255,.95) 36% 45%, transparent 45%),
    linear-gradient(45deg, transparent 38%, rgba(61,90,254,.95) 38% 48%, transparent 48%),
    #0a0f1c;
}

.solution-grid h3 {
  margin: 70px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .95;
}

.solution-grid p {
  max-width: 300px;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.5;
}

.input-section {
  background: #fff;
}

.input-section header {
  max-width: 1060px;
}

.input-section h2 {
  max-width: 920px;
}

.input-section header p {
  max-width: 700px;
  font-size: 17px;
}

.input-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.input-grid article {
  min-height: 250px;
  padding: 24px;
}

.input-grid .visual-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  box-shadow: none;
}

.trade-icon {
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 18% 28%, transparent 28% 38%, rgba(61,90,254,.95) 38% 48%, transparent 48%),
    #0a0f1c;
}

.territory-icon {
  background:
    linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.24) 1px, transparent 1px),
    radial-gradient(circle at 66% 34%, var(--brand) 0 10%, transparent 11%),
    #0a0f1c;
  background-size: 18px 18px, 18px 18px, auto, auto;
}

.reference-icon,
.document-icon {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92) 0 16%, transparent 16% 30%, rgba(61,90,254,.95) 30% 46%, transparent 46%),
    #0a0f1c;
}

.capacity-icon {
  background:
    conic-gradient(var(--brand) 0 72%, rgba(255,255,255,.86) 72% 100%),
    #0a0f1c;
}

.criteria-icon {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.92) 0 7%, transparent 8%),
    radial-gradient(circle at 68% 50%, rgba(61,90,254,.95) 0 8%, transparent 9%),
    radial-gradient(circle at 36% 72%, rgba(255,255,255,.62) 0 6%, transparent 7%),
    #0a0f1c;
}

.input-grid h3 {
  margin-top: 54px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: .98;
}

.input-grid p {
  margin-top: 16px;
  font-size: 14px;
}

.matching-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 90, 254, .16), transparent 36%),
    #f7f8fb;
}

.match-panel,
.match-agent {
  box-shadow: 0 28px 90px rgba(10, 15, 28, .08);
}

.match-agent h3 {
  gap: 16px;
}

.match-agent h3 i {
  color: #fff;
  background: var(--brand);
}

.faq-section {
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  padding-top: 116px;
  padding-bottom: 116px;
  background: #fff;
}

.faq-section > .section-kicker {
  height: fit-content;
  margin-top: 4px;
}

.faq-section details {
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 24px;
  margin-bottom: 10px;
  background: rgba(247, 248, 251, .76);
}

.faq-section details:last-child {
  border-bottom: 1px solid rgba(10, 15, 28, .08);
}

.faq-section summary {
  padding: 22px 24px;
  list-style: none;
  font-size: 18px;
  letter-spacing: -.025em;
}

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

.faq-section summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}

.faq-section details[open] summary::after {
  content: "−";
}

.faq-section p {
  margin: -4px 24px 24px;
  font-size: 15px;
}

@media (max-width: 1080px) {
  .pain-grid,
  .solution-grid,
  .input-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pain-grid article,
  .solution-grid article {
    min-height: 270px;
  }

  .section-copy > p,
  .input-section header p {
    font-size: 15px;
  }
}

/* ATTRIBIS Landing V31 — Free / Pro pilot logic */
.pro-timing-section {
  display: grid;
  gap: 28px;
}

.pro-timing-section header {
  max-width: 940px;
}

.pro-timing-section header p {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

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

.pro-timing-grid article {
  padding: 26px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 30px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 60px rgba(10, 15, 28, .055);
}

.pro-timing-grid span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pro-timing-grid h3 {
  margin: 14px 0 10px;
  font-size: 28px;
  line-height: .98;
  letter-spacing: -.055em;
}

.pro-timing-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.pilot-transparency {
  margin: -10px 0 20px;
  padding: 13px 14px;
  border: 1px solid rgba(61, 90, 254, .16);
  border-radius: 18px;
  background: rgba(61, 90, 254, .07);
  color: #2547dc;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.pilot-dialog {
  width: min(980px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
}

.pilot-dialog::backdrop {
  background: rgba(10, 15, 28, .50);
  backdrop-filter: blur(14px);
}

.pilot-form {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 42px 120px rgba(10, 15, 28, .34);
}

.pilot-form > header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  background:
    radial-gradient(circle at 84% 8%, rgba(61, 90, 254, .22), transparent 34%),
    linear-gradient(135deg, #0a0f1c, #121a2e);
  color: #fff;
}

.pilot-form h2 {
  max-width: 760px;
  margin: 12px 0 10px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .92;
  letter-spacing: -.07em;
}

.pilot-form header p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.6;
}

.pilot-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.pilot-dialog-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  padding: 26px;
}

.pilot-benefits,
.pilot-fields,
.pilot-success {
  padding: 22px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 26px;
  background: #f8f9fc;
}

.pilot-benefits strong,
.pilot-success strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -.04em;
}

.pilot-benefits p,
.pilot-success p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pilot-benefits ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pilot-benefits li {
  color: #30394a;
  font-size: 13px;
}

.pilot-benefits li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--brand);
  font-weight: 900;
}

.pilot-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: #fff;
}

.pilot-fields label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.pilot-fields label.wide,
.pilot-fields .wide {
  grid-column: 1 / -1;
}

.pilot-fields input,
.pilot-fields select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(10, 15, 28, .10);
  border-radius: 14px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.pilot-success {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 320px;
  background: rgba(61, 90, 254, .07);
}

.pilot-success[hidden],
.pilot-fields[hidden] {
  display: none;
}

@media (max-width: 1080px) {
  .pro-timing-grid,
  .pilot-dialog-grid,
  .pilot-fields {
    grid-template-columns: 1fr;
  }
}

/* ATTRIBIS Landing V32 — sharper conversion flow, pricing content untouched */
.hero-proof-line {
  width: fit-content;
  margin: 18px 0 0;
  padding: 12px 15px;
  border: 1px solid rgba(61, 90, 254, .16);
  border-radius: 999px;
  background: rgba(61, 90, 254, .08);
  color: #2444c7;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 900;
  letter-spacing: -.02em;
}

.pain-grid article p {
  max-width: 310px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.match-outcome {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(61, 90, 254, .18);
  border-radius: 18px;
  background: rgba(61, 90, 254, .08);
}

.match-outcome b {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -.02em;
}

.match-outcome small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.example-next-step {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 22px;
  background: rgba(61, 90, 254, .07);
}

.example-next-step strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.example-next-step p {
  margin: 8px 0 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
}

/* ATTRIBIS Landing V33 — premium conversion pass */
.site-header nav {
  gap: 26px;
}

.site-header nav a {
  font-size: 13px;
  font-weight: 760;
}

.header-cta,
.hero-actions .primary,
.final-cta .primary {
  background: linear-gradient(135deg, #0a0f1c 0%, #214dff 100%);
  box-shadow: 0 18px 42px rgba(33, 77, 255, .22);
}

.landing-hero {
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: clamp(62px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 86px);
  grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
  gap: clamp(42px, 5vw, 72px);
}

.pilot-label {
  border-color: rgba(10, 15, 28, .10);
  background: #fff;
  color: #132033;
  box-shadow: 0 14px 38px rgba(10, 15, 28, .06);
}

.audience-line {
  max-width: 760px;
  color: #526071;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 780;
  letter-spacing: -.02em;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(54px, 5.35vw, 82px);
  line-height: .94;
  letter-spacing: -.072em;
}

.hero-copy > p {
  max-width: 700px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.hero-proof-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  padding: 12px 16px;
  border: 1px solid rgba(10, 15, 28, .10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,248,255,.96));
  color: #2c3748;
  box-shadow: 0 18px 46px rgba(10, 15, 28, .08);
}

.hero-proof-line b {
  color: #214dff;
  font-size: 1.12em;
}

.hero-proof-line span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(10, 15, 28, .25);
}

.product-demo {
  border-color: rgba(255,255,255,.78);
  align-self: center;
  box-shadow:
    0 40px 120px rgba(10, 15, 28, .18),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.demo-final-action a {
  background: #0a0f1c;
  color: #fff;
}

.problem-section {
  border: 1px solid rgba(10, 15, 28, .07);
  background:
    radial-gradient(circle at 82% 8%, rgba(61, 90, 254, .12), transparent 31%),
    linear-gradient(180deg, #fff, #f7f9fd);
}

.problem-section .section-copy > p {
  max-width: 760px;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
  color: #3b4657;
}

.pain-grid {
  align-items: stretch;
}

.pain-grid article {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 26px;
  border: 1px solid rgba(10, 15, 28, .08);
  border-radius: 32px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(10, 15, 28, .07);
}

.pain-grid article::after {
  content: "";
  position: absolute;
  inset: auto -30% -38% 18%;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(61,90,254,.13), transparent 68%);
  pointer-events: none;
}

.pain-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 0 22px;
  border: 1px solid rgba(10, 15, 28, .09);
  border-radius: 16px;
  background: #fff;
  color: #214dff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.pain-grid article h3 {
  margin-top: 22px;
  font-size: clamp(25px, 2.2vw, 34px);
  letter-spacing: -.06em;
}

.pain-grid article p {
  max-width: none;
  font-size: 15px;
}

.mini-product {
  min-height: 92px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, #0a0f1c, #17233d);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.mini-product small {
  color: rgba(255,255,255,.65);
}

.mini-time b,
.mini-noise b {
  color: #fff;
  font-size: 32px;
  letter-spacing: -.06em;
}

.score-note {
  margin: 12px 0 0 !important;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 15, 28, .08);
  color: #526071 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.receive-section {
  align-items: center;
}

.receive-grid article {
  min-height: 165px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #fff, #f8faff);
  box-shadow: 0 18px 48px rgba(10, 15, 28, .06);
}

.how-section {
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(61, 90, 254, .28), transparent 31%),
    radial-gradient(circle at 86% 4%, rgba(236, 239, 244, .28), transparent 30%),
    linear-gradient(135deg, #080d18, #101827 58%, #0b1020);
  color: #fff;
}

.how-section header {
  max-width: 900px;
}

.how-section .section-kicker {
  color: rgba(255,255,255,.64);
}

.how-section h2 {
  color: #fff;
}

.how-section header p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.steps {
  position: relative;
  margin-top: 38px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 52px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
}

.steps article {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.steps article b {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(61, 90, 254, .95);
  color: #fff;
  box-shadow: 0 18px 42px rgba(61,90,254,.28);
}

.steps h3 {
  color: #fff;
}

.steps p,
.process-note {
  color: rgba(255,255,255,.66);
}

.process-note {
  width: fit-content;
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}

.input-section {
  background:
    linear-gradient(180deg, #fff, #f8f9fc);
}

.input-grid article {
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(10, 15, 28, .055);
}

.trust-section {
  border: 0;
  background: #fff;
}

.trust-section header {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: end;
  max-width: none;
}

.trust-section header h2 {
  margin: 10px 0 0;
}

.trust-section header p {
  max-width: 760px;
  margin: 0;
  color: #3b4657;
  font-size: clamp(17px, 1.45vw, 21px);
}

.trust-proof-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  margin-top: 36px;
}

.trust-command-card {
  min-height: 390px;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 8%, rgba(61, 90, 254, .42), transparent 31%),
    linear-gradient(135deg, #070c17, #11192c);
  color: #fff;
}

.trust-command-card span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.trust-command-card h3 {
  max-width: 460px;
  margin: 52px 0 16px;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 66px);
  line-height: .92;
  letter-spacing: -.075em;
}

.trust-command-card p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-badges b {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.trust-proof-panel .data-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
}

.trust-proof-panel .data-map article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  align-items: start;
  min-height: 120px;
  padding: 24px;
  border-radius: 28px;
  background: #f7f9fd;
}

.trust-proof-panel .data-map article span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff;
  color: #214dff;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(10, 15, 28, .06);
}

.trust-proof-panel .data-map h3 {
  margin: 2px 0 8px;
  font-size: 24px;
}

.trust-proof-panel .data-map p {
  grid-column: 2;
  max-width: 620px;
  font-size: 15px;
}

.trust-section > small {
  display: block;
  width: fit-content;
  margin-top: 22px;
  padding: 11px 14px;
  border-radius: 999px;
  background: #f5f7fb;
  color: #526071;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 90, 254, .20), transparent 36%),
    linear-gradient(180deg, #fff, #f7f9fd);
}

@media (max-width: 1080px) {
  .trust-section header,
  .trust-proof-panel {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-proof-line {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 22px;
  }

  .hero-proof-line span {
    display: none;
  }

  .pain-grid article {
    min-height: auto;
  }

  .trust-command-card {
    min-height: auto;
    padding: 28px;
  }

  .trust-command-card h3 {
    margin-top: 36px;
  }

  .trust-proof-panel .data-map article {
    grid-template-columns: 1fr;
  }

  .trust-proof-panel .data-map p {
    grid-column: auto;
  }
}
