/* Homepage preview — legacy section styles. Prefer Tailwind for new/edited sections.
   Annotations live in homepage_preview_annotations.css */
.hp-preview-body {
  overflow-x: clip;
}

.hp-preview .shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* Legacy design tokens for sections not yet migrated to Tailwind */
.hp-preview {
  --accent: #111827;
  --accent-hover: #1f2937;
  --accent-soft: #f3f4f6;
  --accent-line: #e5e7eb;
  --ink: #111827;
  --ink-2: #1f2937;
  --g700: #374151;
  --g600: #4b5563;
  --g500: #6b7280;
  --g400: #9ca3af;
  --g300: #d1d5db;
  --g200: #e5e7eb;
  --g100: #f3f4f6;
  --g50: #f9fafb;
  --white: #fff;
  --black: #000;
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s6: 24px;
  --s8: 32px;
  --s12: 48px;
  --s16: 64px;
  --s24: 96px;
  --s32: 128px;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 16px;
  --r-3xl: 24px;
  --sh-sm: none;
  --sh: none;
  --sh-lg: none;
  --ease: cubic-bezier(.2, 0, 0, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --anno-blue: #2563eb;
  --scene-before: #f0cccc;
  --scene-before-deep: #e6baba;
  --scene-before-text: #8f4f4f;
}

.hp-preview *,
.hp-preview *::before,
.hp-preview *::after {
  box-sizing: border-box;
}

.hp-preview {
  scroll-behavior: smooth;
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .hp-preview {
    scroll-behavior: auto;
  }

  .hp-preview * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.hp-preview .wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* Legacy section headings — new sections should use Tailwind utilities instead. */
.hp-preview .section-head h2,
.hp-preview .honest h2,
.hp-preview .case > div:first-child h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-size: clamp(1.875rem, 3.4vw, 2.8125rem);
}

.hp-preview .scene-q h3,
.hp-preview .diff-copy h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(1.3125rem, 2.2vw, 1.8125rem);
}

.hp-preview .effect h4,
.hp-preview .case-note h4,
.hp-preview .panel-foot h4,
.hp-preview .fcard h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: 1rem;
}

.hp-preview p {
  margin: 0;
}

.hp-preview .lede {
  font-size: clamp(1.0625rem, 1.45vw, 1.25rem);
  color: var(--g600);
  line-height: 1.625;
}

.hp-preview .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: var(--s4);
}

.hp-preview section {
  padding: 5rem 0;
}

.hp-preview .band-grey {
  background: var(--g50);
}

.hp-preview .band-tint {
  background: var(--g50);
}

.hp-preview .band-ink {
  background: var(--black);
  color: #fff;
}

.hp-preview .band-ink h2,
.hp-preview .band-ink h3 {
  color: #fff;
}

.hp-preview .section-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--s16);
}

.hp-preview .section-head .lede {
  margin-top: var(--s4);
}

.hp-preview .mark {
  background: linear-gradient(104deg, rgba(17, 24, 39, 0) 0.5%, rgba(17, 24, 39, 0.08) 2%, rgba(17, 24, 39, 0.12) 96%, rgba(17, 24, 39, 0) 99%);
  padding: 0.06em 0.22em;
  margin: 0 -0.1em;
  border-radius: 0.4em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Buttons — pill-shaped, black primary */
.hp-preview .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.hp-preview .btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.hp-preview .btn-primary {
  background: var(--black);
  color: #fff;
}

.hp-preview .btn-primary:hover {
  background: var(--accent-hover);
}

.hp-preview .btn-ghost {
  background: #fff;
  color: var(--g700);
  border-color: var(--g200);
}

.hp-preview .btn-ghost:hover {
  background: var(--g50);
  color: var(--ink);
  border-color: var(--g300);
}

.hp-preview .btn-invert {
  background: #fff;
  color: var(--ink);
}

.hp-preview .btn-invert:hover {
  background: var(--g100);
}

.hp-preview .btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hp-preview .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hp-preview .btn-lg {
  min-height: 52px;
  font-size: 0.9375rem;
  padding: 0 1.75rem;
}

/* Screenshot chrome — used by legacy sections; hero uses Tailwind. */
.hp-preview .shot {
  border-radius: var(--r-2xl);
  border: 1px solid var(--g100);
  overflow: hidden;
  background: #fff;
  display: block;
  width: 100%;
}

.hp-preview .shot-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px var(--s4);
  background: var(--g50);
  border-bottom: 1px solid var(--g100);
}

.hp-preview .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--g300);
}

.hp-preview .shot-label {
  margin-left: var(--s2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--g500);
}

/* Problems cascade — org chart: cause → trunk → branches */
.hp-preview .cascade {
  --cascade-spine: 80px;
  --cascade-trunk: 26px;
  --cascade-branch: 0.69rem; /* half of h4 line box */
  display: grid;
  grid-template-columns: minmax(230px, 320px) var(--cascade-spine) 1fr;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

.hp-preview .cause {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: var(--s6);
}

.hp-preview .cause::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: calc(var(--cascade-spine) - var(--cascade-trunk));
  height: 2px;
  background: var(--g300);
  transform: translateY(-50%);
}

.hp-preview .cause .lab {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: var(--s2);
}

.hp-preview .cause p {
  font-size: clamp(1.1875rem, 1.9vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.hp-preview .spine {
  position: relative;
  align-self: stretch;
}

.hp-preview .spine::after {
  content: "";
  position: absolute;
  right: var(--cascade-trunk);
  top: var(--cascade-trunk-top, var(--cascade-branch));
  bottom: var(--cascade-trunk-bottom, calc(var(--s6) * 2 + var(--cascade-branch)));
  width: 2px;
  background: var(--g300);
}

.hp-preview .effects {
  display: grid;
  position: relative;
}

.hp-preview .effect {
  position: relative;
  padding: var(--s6) 0 var(--s6) var(--s8);
  border-bottom: 1px solid var(--g100);
}

.hp-preview .effect:first-child {
  padding-top: 0;
}

.hp-preview .effect:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hp-preview .effect h4 {
  position: relative;
  font-size: 1.0625rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.hp-preview .effect h4::before {
  content: "";
  position: absolute;
  left: calc(-1 * (var(--s8) + var(--cascade-trunk)));
  top: 50%;
  width: var(--cascade-trunk);
  height: 2px;
  background: var(--g300);
  transform: translateY(-50%);
}

.hp-preview .effect h4::after {
  content: "";
  position: absolute;
  left: calc(-1 * var(--s8) - 5px);
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--g400);
  transform: translateY(-50%);
}

.hp-preview .effect p {
  font-size: 1rem;
  color: var(--g600);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .hp-preview .cascade {
    grid-template-columns: 1fr;
  }

  .hp-preview .spine {
    display: none;
  }

  .hp-preview .cause {
    margin-bottom: var(--s8);
  }

  .hp-preview .cause::after {
    display: none;
  }

  .hp-preview .effect {
    padding-left: 0;
  }

  .hp-preview .effect h4::before,
  .hp-preview .effect h4::after {
    display: none;
  }
}

.hp-preview .cascade-foot {
  max-width: 42rem;
  margin: var(--s16) auto 0;
  text-align: center;
}

.hp-preview .cascade-foot p {
  font-size: clamp(1.1875rem, 1.9vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

/* Calendly source quote */
.hp-preview .source-quote-wrap {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
}

.hp-preview .source-quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--g100);
  border-left: 5px solid var(--anno-blue);
  border-radius: var(--r-2xl);
  padding: var(--s8) var(--s12);
}

.hp-preview .source-quote p {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.hp-preview .source-quote footer {
  margin-top: var(--s4);
  font-size: 0.9375rem;
  color: var(--g500);
  line-height: 1.55;
}

.hp-preview .source-quote-foot {
  max-width: 42rem;
  margin: var(--s12) auto 0;
  text-align: center;
}

/* Before / after */
.hp-preview .scene {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  border: 1px solid var(--g200);
  border-radius: var(--r-3xl);
  overflow: hidden;
  background: #fff;
}

.hp-preview .scene + .scene {
  margin-top: var(--s8);
}

.hp-preview .scene-q {
  grid-column: 1 / -1;
  grid-row: 1;
  padding: var(--s8) var(--s8) var(--s6);
  text-align: center;
  border-bottom: 1px solid var(--g200);
}

.hp-preview .scene-hd {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  border-bottom: 1px solid var(--g200);
  background: linear-gradient(
    90deg,
    var(--scene-before) 0%,
    #f0cccc 16%,
    #f8e8e8 34%,
    #fff 50%,
    #fff 100%
  );
}

.hp-preview .scene-hd .t {
  padding: var(--s3) var(--s8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
}

.hp-preview .scene-hd .t.a {
  color: var(--scene-before-text);
}

.hp-preview .scene-hd .t.b {
  color: var(--ink);
}

.hp-preview .scene-body-bg {
  grid-column: 1 / -1;
  grid-row: 3;
  background: linear-gradient(
    90deg,
    var(--scene-before-deep) 0%,
    #e8bcbc 16%,
    #f4d8d8 34%,
    #fff 50%,
    #fff 100%
  );
  z-index: 0;
}

.hp-preview .pane {
  grid-row: 3;
  position: relative;
  z-index: 1;
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  justify-content: center;
  background: transparent;
}

.hp-preview .pane.a {
  grid-column: 1;
}

.hp-preview .pane.b {
  grid-column: 3;
}

.hp-preview .pane.mid {
  grid-column: 2;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.hp-preview .abadge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--g200);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hp-preview .abadge svg {
  width: 19px;
  height: 19px;
  color: var(--anno-blue);
}

.hp-preview .abadge svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hp-preview .crossrule {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--g300) 0 6px, transparent 6px 12px);
}

.hp-preview .verdict {
  grid-column: 1 / -1;
  grid-row: 4;
  border-top: 1px solid var(--g200);
  padding: var(--s4) var(--s8);
  background: var(--g50);
  font-size: 0.9375rem;
  color: var(--g600);
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
}

.hp-preview .verdict span:nth-child(2) {
  text-align: center;
  color: var(--g400);
  font-weight: 700;
}

.hp-preview .verdict .r {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hp-preview .scene,
  .hp-preview .scene-hd,
  .hp-preview .verdict {
    grid-template-columns: 1fr;
  }

  .hp-preview .scene-hd {
    background: linear-gradient(
      180deg,
      var(--scene-before) 0%,
      #f8e8e8 40%,
      #fff 55%,
      #fff 100%
    );
  }

  .hp-preview .scene-body-bg {
    display: none;
  }

  .hp-preview .pane.a {
    background: linear-gradient(
      180deg,
      var(--scene-before-deep) 0%,
      #f4d8d8 40%,
      #fff 55%,
      #fff 100%
    );
    border-bottom: 1px solid var(--g200);
  }

  .hp-preview .pane.b {
    background: #fff;
  }

  .hp-preview .pane.a,
  .hp-preview .pane.mid,
  .hp-preview .pane.b {
    grid-column: 1;
    grid-row: auto;
  }

  .hp-preview .pane.mid {
    display: block;
    height: 52px;
  }

  .hp-preview .abadge {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .hp-preview .crossrule {
    display: none;
  }

  .hp-preview .scene-hd .t.mid {
    display: none;
  }

  .hp-preview .verdict span:nth-child(2) {
    display: none;
  }
}

.hp-preview .msg {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  font-size: 0.875rem;
  color: var(--g700);
  line-height: 1.45;
}

.hp-preview .msg .hdr {
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  margin-bottom: 3px;
}

.hp-preview .msg .who2 {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--ink);
}

.hp-preview .msg .when {
  font-size: 0.6875rem;
  color: var(--g400);
  white-space: nowrap;
}

.hp-preview .msg.me {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.hp-preview .msg.me .who2 {
  color: #fff;
}

.hp-preview .msg.me .when {
  color: rgba(255, 255, 255, 0.75);
}

.hp-preview .dots {
  text-align: center;
  color: var(--g400);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
}

.hp-preview .ticket {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  padding: 12px;
  font-size: 0.875rem;
}

.hp-preview .ticket .warn {
  margin-top: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: var(--r-sm);
  padding: 7px 10px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hp-preview .fieldrow {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  padding: 10px 12px;
}

.hp-preview .fieldrow .lab {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--g500);
  text-transform: uppercase;
}

.hp-preview .fieldrow .val {
  font-size: 0.875rem;
  color: var(--ink);
  margin-top: 3px;
}

.hp-preview .fieldrow.ok {
  border-color: var(--ink);
  background: var(--g50);
}

.hp-preview .savebar {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8125rem;
  color: var(--ink);
  font-weight: 600;
}

.hp-preview .savebar .pillbtn {
  background: var(--black);
  color: #fff;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hp-preview .linkcard {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  padding: 12px;
}

.hp-preview .avrow {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.hp-preview .av {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  margin-right: -8px;
  flex: none;
}

.hp-preview .avrow .lbl {
  margin-left: 18px;
  font-size: 0.8125rem;
  color: var(--g600);
  font-weight: 600;
}

.hp-preview .b1 { background: #374151; }
.hp-preview .b2 { background: #4b5563; }
.hp-preview .b3 { background: #6b7280; }
.hp-preview .b4 { background: #111827; }

.hp-preview .slotrow {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hp-preview .slotchip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--g200);
  color: var(--g400);
}

.hp-preview .slotchip.on {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.hp-preview .stamp {
  font-size: 0.8125rem;
  color: var(--g500);
}

.hp-preview .stamp b {
  color: var(--ink);
}

.hp-preview .reassign {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  padding: 11px 12px;
  font-size: 0.875rem;
}

.hp-preview .reassign .av {
  margin-right: 0;
}

.hp-preview .reassign .arrowg {
  color: var(--g400);
}

/* Comparison table — admin-style */
.hp-preview .compare {
  background: #fff;
  border: 1px solid var(--g100);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.hp-preview .compare table {
  width: 100%;
  border-collapse: collapse;
}

.hp-preview .compare th,
.hp-preview .compare td {
  text-align: left;
  padding: 1.25rem 1.5rem;
  vertical-align: top;
  font-size: 1rem;
}

.hp-preview .compare thead th {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--g50);
  border-bottom: 1px solid var(--g100);
  color: var(--g400);
}

.hp-preview .compare thead th:nth-child(3) {
  background: var(--g100);
  color: var(--ink);
}

.hp-preview .compare tbody tr + tr {
  border-top: 1px solid var(--g100);
}

.hp-preview .compare td:first-child {
  font-weight: 600;
  width: 25%;
  color: var(--ink);
}

.hp-preview .compare td:nth-child(2) {
  color: var(--g600);
  width: 37.5%;
}

.hp-preview .compare td:nth-child(3) {
  color: var(--ink-2);
  background: var(--g50);
  width: 37.5%;
}

@media (max-width: 860px) {
  .hp-preview .compare thead {
    display: none;
  }

  .hp-preview .compare tr {
    display: block;
    border-top: 1px solid var(--g100);
  }

  .hp-preview .compare td {
    display: block;
    padding: var(--s3) var(--s6);
    width: auto !important;
  }

  .hp-preview .compare td:first-child {
    padding-top: var(--s6);
    font-size: 0.9375rem;
  }

  .hp-preview .compare td:nth-child(2)::before {
    content: "Individual links: ";
    font-weight: 600;
    color: var(--g500);
  }

  .hp-preview .compare td:nth-child(3) {
    padding-bottom: var(--s6);
  }

  .hp-preview .compare td:nth-child(3)::before {
    content: "calendr.so: ";
    font-weight: 600;
    color: var(--ink);
  }
}

/* Differentiators */
.hp-preview .diff {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--s16);
  align-items: center;
  position: relative;
}

.hp-preview .diff + .diff {
  margin-top: var(--s32);
}

.hp-preview .diff.flip .diff-copy {
  order: 2;
}

.hp-preview .diff-copy h3 {
  margin-bottom: var(--s4);
}

.hp-preview .diff-copy p {
  color: var(--g600);
}

.hp-preview .diff-copy p + p {
  margin-top: var(--s3);
}

.hp-preview .diff-copy ul {
  margin: var(--s6) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--s3);
}

.hp-preview .diff-copy li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--g700);
}

.hp-preview .diff-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--g100);
}

.hp-preview .diff-copy li::after {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 11px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(40deg);
}

@media (max-width: 920px) {
  .hp-preview .diff {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .hp-preview .diff.flip .diff-copy {
    order: 0;
  }
}

/* Feature grid */
.hp-preview .fgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}

.hp-preview .fcard {
  background: #fff;
  border: 1px solid var(--g100);
  border-radius: var(--r-2xl);
  padding: var(--s6);
}

.hp-preview .fcard h4 {
  margin-bottom: var(--s2);
  font-weight: 600;
}

.hp-preview .fcard p {
  font-size: 0.9375rem;
  color: var(--g600);
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .hp-preview .fgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hp-preview .fgrid {
    grid-template-columns: 1fr;
  }
}

/* Team tabs */
.hp-preview .tablist {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
  margin-bottom: var(--s12);
}

.hp-preview .tab {
  min-height: 44px;
  padding: 0 var(--s6);
  border-radius: 999px;
  border: 1px solid var(--g200);
  background: #fff;
  color: var(--g700);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.hp-preview .tab:hover {
  background: var(--g50);
  color: var(--ink);
  border-color: var(--g300);
}

.hp-preview .tab:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.hp-preview .tab[aria-selected="true"] {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.hp-preview .panel[hidden] {
  display: none;
}

.hp-preview .panel {
  animation: hp-fade 0.22s var(--ease);
}

@keyframes hp-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hp-preview .pairs {
  border: 1px solid var(--g300);
  border-radius: var(--r-3xl);
  overflow: hidden;
  background: #fff;
}

.hp-preview .pairs-hd {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  border-bottom: 1px solid var(--g300);
  background: linear-gradient(
    90deg,
    var(--scene-before) 0%,
    #f0cccc 16%,
    #f8e8e8 34%,
    #fff 50%,
    #fff 100%
  );
}

.hp-preview .pairs-hd .t {
  padding: var(--s3) var(--s8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
}

.hp-preview .pairs-hd .t.a {
  color: var(--scene-before-text);
}

.hp-preview .pairs-hd .t.b {
  color: var(--ink);
}

.hp-preview .pair {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  position: relative;
}

.hp-preview .pair::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--scene-before-deep) 0%,
    #e8bcbc 16%,
    #f4d8d8 34%,
    #fff 50%,
    #fff 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hp-preview .pair + .pair {
  border-top: 1px solid var(--g300);
}

.hp-preview .pair .l,
.hp-preview .pair .r {
  padding: var(--s6) var(--s8);
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background: transparent;
}

.hp-preview .pair .l {
  color: var(--g600);
}

.hp-preview .pair .r {
  color: var(--ink-2);
}

.hp-preview .pair .m {
  position: relative;
  z-index: 1;
  background: transparent;
}

.hp-preview .pair .m .rule {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--g300) 0 5px, transparent 5px 10px);
}

.hp-preview .pair .m .badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--g200);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hp-preview .pair .m .badge svg {
  width: 14px;
  height: 14px;
  color: var(--anno-blue);
}

.hp-preview .pair .m .badge svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .hp-preview .pairs-hd {
    grid-template-columns: 1fr;
    background: linear-gradient(
      180deg,
      var(--scene-before) 0%,
      #f8e8e8 40%,
      #fff 55%,
      #fff 100%
    );
  }

  .hp-preview .pairs-hd .t.mid {
    display: none;
  }

  .hp-preview .pair {
    grid-template-columns: 1fr;
  }

  .hp-preview .pair::before {
    background: linear-gradient(
      180deg,
      var(--scene-before-deep) 0%,
      #f4d8d8 40%,
      #fff 55%,
      #fff 100%
    );
  }

  .hp-preview .pair .m {
    height: 34px;
  }

  .hp-preview .pair .m .rule {
    display: none;
  }

  .hp-preview .pair .m .badge {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .hp-preview .pair .l::before {
    content: "Individual links";
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--scene-before-text);
    margin-bottom: 4px;
  }

  .hp-preview .pair .r::before {
    content: "With calendr.so";
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
  }

  .hp-preview .pair .l,
  .hp-preview .pair .r {
    display: block;
  }
}

.hp-preview .panel-foot {
  margin-top: var(--s6);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--s6);
  align-items: center;
  padding: var(--s6);
  border-radius: var(--r-2xl);
  background: var(--g100);
  border: 1px solid var(--g100);
}

.hp-preview .panel-foot p {
  font-size: 1rem;
  color: var(--ink);
}

.hp-preview .panel-foot h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hp-preview .panel-foot img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}

@media (max-width: 920px) {
  .hp-preview .panel-foot {
    grid-template-columns: 1fr;
  }

  .hp-preview .panel-foot img {
    height: 180px;
  }
}

/* Internal case */
.hp-preview .case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}

.hp-preview .case-note {
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: var(--r-2xl);
  padding: var(--s8);
}

.hp-preview .case-note h4 {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: var(--s4);
  font-weight: 600;
}

.hp-preview .case-note ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: var(--s3);
}

.hp-preview .case-note li {
  font-size: 1rem;
  color: var(--g700);
}

.hp-preview .case-note li strong {
  color: var(--ink);
}

@media (max-width: 920px) {
  .hp-preview .case {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
}

/* Honest */
.hp-preview .honest {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: var(--r-2xl);
  padding: var(--s12);
}

.hp-preview .honest h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: var(--s4);
}

.hp-preview .honest p {
  color: var(--g700);
  font-size: 1rem;
}

.hp-preview .honest ul {
  margin: var(--s8) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--s6);
}

.hp-preview .honest li {
  position: relative;
  padding-left: 2rem;
  color: var(--g700);
  font-size: 1rem;
  line-height: 1.65;
}

.hp-preview .honest li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #dc2626;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
}

.hp-preview .honest-outro {
  margin-top: var(--s8);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 620px) {
  .hp-preview .honest {
    padding: var(--s8);
  }
}

/* Quotes */
.hp-preview .quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

.hp-preview .quote {
  background: #fff;
  border: 1px solid var(--g100);
  border-radius: var(--r-2xl);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.hp-preview .quote p {
  font-size: 1rem;
  color: var(--g700);
  line-height: 1.55;
}

.hp-preview .quote footer {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-top: auto;
}

.hp-preview .quote img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  flex: none;
  background: var(--g200);
}

.hp-preview .quote .who {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
}

.hp-preview .quote .role {
  font-size: 0.8125rem;
  color: var(--g500);
}

@media (max-width: 1020px) {
  .hp-preview .quotes {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.hp-preview .price-wrap {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}

.hp-preview .price {
  background: #fff;
  border: 1px solid var(--g100);
  border-radius: var(--r-3xl);
  padding: var(--s12);
  text-align: center;
}

.hp-preview .amount-wrap {
  position: relative;
  display: inline-block;
  padding: var(--s2) var(--s6);
}

.hp-preview .amount {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}

.hp-preview .amount-wrap svg.circle {
  position: absolute;
  inset: -14px -8px;
  width: calc(100% + 16px);
  height: calc(100% + 28px);
  color: var(--ink);
  overflow: visible;
}

.hp-preview .amount-wrap svg.circle ellipse {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.hp-preview .per {
  font-size: 1rem;
  color: var(--g500);
  margin-top: var(--s4);
}

.hp-preview .price ul {
  list-style: none;
  margin: var(--s8) 0;
  padding: 0;
  display: grid;
  gap: var(--s3);
  text-align: left;
}

.hp-preview .price li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--g700);
}

.hp-preview .price li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(40deg);
}

@media (max-width: 620px) {
  .hp-preview .price {
    padding: var(--s8);
  }
}

