.objection-section {
  position: relative;
  padding-top: clamp(88px, 9vw, 132px);
  padding-bottom: clamp(96px, 10vw, 148px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.objection-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(28px, 7vw, 120px);
  width: 1px;
  height: 92px;
  background: var(--amber);
}

.objection-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1360px);
  margin: 0 auto;
}

.objection-intro {
  max-width: 960px;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.objection-intro .eyebrow {
  margin-bottom: 16px;
}

.objection-intro h2 {
  max-width: 900px;
  font-size: clamp(3rem, 5.3vw, 5.9rem);
  line-height: 0.96;
}

.objection-intro > div > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.objection-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.objection-tabs {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 9px;
  padding: 28px 0;
}

.objection-tabs button {
  position: relative;
  width: 92%;
  min-height: 62px;
  padding: 13px 18px;
  border: 1px solid #bfc0bd;
  border-radius: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  font: 700 clamp(0.86rem, 1vw, 1rem)/1.25 var(--body-font);
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: width 260ms var(--ease-out), margin-left 260ms var(--ease-out), color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.objection-tabs button:nth-child(2),
.objection-tabs button:nth-child(5) {
  width: calc(92% - 24px);
  margin-left: 24px;
}

.objection-tabs button:nth-child(3) {
  width: calc(92% - 46px);
  margin-left: 46px;
}

.objection-tabs button:nth-child(4),
.objection-tabs button:nth-child(6) {
  width: calc(92% - 12px);
  margin-left: 12px;
}

.objection-tabs button span {
  color: #8a8d90;
  font: 600 0.66rem/1 "IBM Plex Mono", Consolas, monospace;
}

.objection-tabs button[aria-selected="true"] {
  width: calc(100% + 28px);
  margin-left: 0;
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.objection-tabs button[aria-selected="true"] span {
  color: var(--amber);
}

.objection-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
}

.objection-section.is-auto .objection-tabs button[aria-selected="true"]::after {
  animation: objectionReadProgress 8s linear forwards;
}

.objection-answer {
  --answer-inline: clamp(34px, 5.3vw, 84px);
  position: relative;
  min-height: 650px;
  margin-left: -1px;
  padding: clamp(48px, 5vw, 76px) var(--answer-inline) 0;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}

.objection-answer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(110px, 18vw, 240px);
  height: 5px;
  background: var(--amber);
}

.objection-answer blockquote {
  max-width: 760px;
  margin: clamp(18px, 3vw, 34px) 0 22px;
  color: var(--white);
  font: 700 clamp(2.25rem, 4.8vw, 5.3rem)/0.98 var(--display-font);
  letter-spacing: 0;
}

.objection-reply {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.58;
}

.objection-proof {
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.objection-proof > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.48;
}

.objection-proof a {
  flex: 0 0 auto;
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 800;
}

.objection-proof a[hidden] {
  display: none;
}

.objection-answer.is-switching blockquote,
.objection-answer.is-switching .objection-reply,
.objection-answer.is-switching .objection-proof {
  opacity: 0.18;
  transform: translateY(8px);
}

.objection-answer blockquote,
.objection-answer .objection-reply,
.objection-answer .objection-proof {
  transition: opacity 420ms ease, transform 520ms var(--ease-out);
}

.objection-math {
  position: relative;
  z-index: 5;
  width: auto;
  min-height: 126px;
  margin: auto calc(var(--answer-inline) * -1) 0;
  padding: 22px var(--answer-inline) 26px;
  border: 0;
  border-top: 1px solid rgba(255, 90, 0, 0.78);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 128px 172px minmax(220px, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--white);
  background: #15171c;
}

.objection-math-intro strong,
.objection-math-result strong,
.objection-math-result span {
  display: block;
}

.objection-math-intro .mono-label {
  margin-bottom: 8px;
  color: var(--amber);
}

.objection-math-intro strong {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.3;
}

.objection-math label > span:first-child,
.objection-math-result span {
  margin-bottom: 7px;
  display: block;
  font: 600 0.61rem/1.25 "IBM Plex Mono", Consolas, monospace;
  text-transform: uppercase;
}

.objection-math input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  font: 800 1rem/1 var(--display-font);
  text-align: center;
}

.currency-input {
  position: relative;
  display: block;
}

.currency-input i {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  font-style: normal;
  transform: translateY(-50%);
}

.currency-input input {
  padding-left: 26px;
}

.objection-math-result strong {
  color: var(--amber);
  font: 800 clamp(1.75rem, 3vw, 3rem)/0.95 var(--display-font);
}

.objection-math-result span {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.objection-math-result b {
  color: var(--amber);
}

.objection-math-result small {
  max-width: 280px;
  margin-top: 7px;
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.35;
}

.scroll-nudge .nudge-subcopy {
  margin-top: 2px;
  display: block;
  font-weight: 400;
  line-height: 1.4;
}

@keyframes objectionReadProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 980px) {
  .objection-intro {
    max-width: 760px;
  }

  .objection-intro > div > p {
    max-width: 680px;
  }

  .objection-layout {
    grid-template-columns: 1fr;
  }

  .objection-tabs {
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 32%);
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 0 0 16px;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }

  .objection-tabs.is-swiping { scroll-snap-type: none; scroll-behavior: auto; cursor: grabbing; }
  .objection-tabs.is-swiping button { cursor: grabbing; }

  .objection-tabs::-webkit-scrollbar {
    display: none;
  }

  .objection-tabs button,
  .objection-tabs button:nth-child(n),
  .objection-tabs button[aria-selected="true"] {
    width: 100%;
    min-height: 58px;
    margin-left: 0;
    scroll-snap-align: start;
  }

  .objection-answer {
    margin: 0;
    clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
  }

  .objection-math {
    grid-template-columns: minmax(160px, 1fr) 112px 148px minmax(190px, 1fr);
  }
}

@media (max-width: 720px) {
  .objection-section {
    padding: 64px 18px 72px;
  }

  .objection-section::before {
    right: 28px;
    height: 54px;
  }

  .objection-intro {
    margin-bottom: 38px;
  }

  .objection-intro h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .objection-intro > div > p {
    font-size: 1rem;
  }

  .objection-tabs {
    grid-auto-columns: minmax(204px, 72%);
    margin-right: -18px;
  }

  .objection-tabs button,
  .objection-tabs button:nth-child(n),
  .objection-tabs button[aria-selected="true"] {
    min-height: 52px;
    padding: 11px 14px;
    grid-template-columns: 26px minmax(0, 1fr);
    font-size: 0.82rem;
  }

  .objection-answer {
    --answer-inline: 22px;
    min-height: 590px;
    padding: 38px 22px 30px;
  }

  .objection-answer blockquote {
    margin-top: 24px;
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .objection-reply {
    font-size: 0.98rem;
  }

  .objection-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .objection-proof a {
    margin-top: 8px;
  }

  .objection-math {
    min-height: 0;
    margin: 24px -22px -30px;
    padding: 22px;
    grid-template-columns: 1fr 1.25fr;
    gap: 14px 10px;
  }

  .objection-math-intro,
  .objection-math-result {
    grid-column: 1 / -1;
  }

  .objection-math-result {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .objection-section.is-auto .objection-tabs button[aria-selected="true"]::after {
    animation: none;
  }

  .objection-tabs button,
  .objection-answer blockquote,
  .objection-answer .objection-reply,
  .objection-answer .objection-proof {
    transition: none;
  }
}
