.btn-coming-soon {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  padding: 8px 18px;
  border: 1.5px solid var(--light);
  border-radius: 100px;
  cursor: default;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.btn-coming-soon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
  flex-shrink: 0;
}

/* BREADCRUMB */

.breadcrumb-wrap {
  padding-top: 96px;
}

.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mid);
}

.breadcrumb a:hover {
  color: var(--teal);
}

/* HERO */

.hero-section {
  padding: 32px 0 80px;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

.hero-h1 {
  font-size: clamp(40px,5vw,68px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 20px;
  max-width: 640px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--mid);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.18s,transform 0.12s;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 100px;
}

.btn-secondary {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid var(--light);
  transition: border-color 0.18s,transform 0.12s;
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 100px;
}

/* HERO PROOF PANEL */

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--light);
  border-radius: 14px;
  overflow: hidden;
}

.hero-proof-item {
  padding: 22px 28px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light);
}

.hero-proof-item:last-child {
  border-bottom: none;
}

.hero-proof-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-proof-num span {
  color: var(--teal);
}

.hero-proof-label {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}

/* SECTION GLOBALS */

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-h2 {
  font-size: clamp(26px,2.8vw,38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

/* THE PROBLEM */

.problem {
  border-top: 1px solid var(--light);
  background: var(--off-white);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.problem-body {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 16px;
}

.problem-body strong {
  color: var(--ink);
  font-weight: 600;
}

.partner-wins {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 48px;
}

.win-card {
  background: var(--white);
  border-top: 1px solid var(--light);
  border-right: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  padding: 26px 22px;
}

.win-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.win-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.75;
}

.win-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.win-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* DISCOVERY GUIDE */

.discovery {
  border-top: 1px solid var(--light);
}

.discovery-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: start;
}

.trigger-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.trigger {
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 18px 20px;
}

.trigger-quote {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.trigger-quote::before {
  content: '\201C';
  color: var(--teal);
}

.trigger-quote::after {
  content: '\201D';
  color: var(--teal);
}

.trigger-note {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
}

/* PARTNER SUCCESS STORIES */

.stories {
  border-top: 1px solid var(--light);
  background: var(--off-white);
}

.stories-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 36px 32px;
}

.story-platform {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.story-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}

.story-row {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--light);
}

.story-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.story-row-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.story-row-label.threat {
  color: #b34a3a;
}

.story-row-label.play {
  color: var(--mid);
}

.story-row-label.win {
  color: var(--teal);
}

.story-row-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
}

.story-row-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* HOW IT WORKS */

.how {
  border-top: 1px solid var(--light);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 48px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 6px);
  right: calc(12.5% + 6px);
  height: 1px;
  background: var(--light);
  z-index: 0;
}

.how-step {
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}

.how-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.how-step-body {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

/* PLATFORM FIT */

.fit {
  border-top: 1px solid var(--light);
  background: var(--off-white);
}

.fit-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 48px;
}

.fit-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 32px 28px;
}

.fit-platform {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 4px;
}

.fit-type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.fit-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.fit-signals-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--light);
}

.fit-signal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 7px;
}

.fit-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}

/* CONTACT / INTRODUCE AN OPPORTUNITY */

.contact {
  border-top: 1px solid var(--light);
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px;
}

.contact-people {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: 12px;
}

.contact-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-person-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.contact-person-title {
  font-size: 13px;
  color: var(--mid);
}

.contact-person-email {
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.contact-person-email:hover {
  text-decoration: underline;
}

.contact-person-email:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

.onepager-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.18s,background 0.18s;
}

.onepager-link:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}

.onepager-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 12px;
}

.onepager-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.onepager-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.75;
}

.onepager-text-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2px;
}

.onepager-text-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

/* FORM */

.form-heading {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
  margin-top: 20px;
}

.form-section-label:first-of-type {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.req {
  color: var(--teal);
  margin-left: 1px;
}

input,select,textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: 8px;
  padding: 10px 13px;
  transition: border-color 0.18s;
  outline: none;
  width: 100%;
}

input::placeholder,textarea::placeholder {
  color: #bbb;
}

input:hover,select:hover,textarea:hover {
  border-color: #bbb;
}

input:focus,select:focus,textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,122,107,0.1);
}

input:focus-visible,select:focus-visible,textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 0;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: 13px 28px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.18s,transform 0.12s;
  margin-top: 6px;
}

.btn-submit:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

.btn-submit:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 100px;
}

.form-note {
  font-size: 12px;
  color: var(--mid);
  text-align: center;
  margin-top: 8px;
  line-height: 1.55;
}

@media (max-width:1100px) {
  .breadcrumb {
    padding: 0 24px;
  }
  .hero-section {
    padding: 32px 0 60px;
  }
  .hero {
    padding: 0 24px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-inner,.stories-inner,.how-inner,.fit-inner {
    padding: 60px 24px;
  }
  .discovery-inner {
    padding: 60px 24px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner {
    padding: 60px 24px;
  }
  .calendly-inline-widget {
    height: 660px !important;
    min-width: 0 !important;
  }
  .partner-wins {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
  .how-steps::before {
    display: none;
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
}
