/* =========================
   Design Tokens
========================= */

:root {
  --bg: #fafafa;
  --text: #111;
  --muted: #555;
  --border: #e6e6e6;
  --accent: #111;
  --gmail: #f8f9fa;
}

/* =========================
   Reset & Base
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  line-height: 1.6;
}

/* =========================
   Layout
========================= */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 120px;
}

header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px 8px 14px;
  margin-bottom: 80px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(250, 250, 250, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

/* =========================
   Logo
========================= */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  display: block;
  position: relative;
  top: 2px;
}

/* =========================
   Buttons & Links
========================= */

.top-btn {
  text-decoration: none;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
  transition: background 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}

.top-btn:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.12);
}

.top-btn:active {
  transform: scale(0.97);
}

.auth-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.about-link {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  padding: 10px 16px;
  white-space: nowrap;
}

.primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1), background-color 160ms ease;
}

.primary:hover {
  background: #000;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.primary:active {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transform: scale(0.97);
}

/* =========================
   Typography
========================= */

h1 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero .hero-reassurance {
  margin: 12px 0 0;
  font-size: 14px;
  color: #86868b;
}

.hero-proof {
  max-width: 300px;
  color: #555;
  font-size: 13px;
  line-height: 1.35;
}

/* =========================
   Email Mock
========================= */

.email {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  font-size: 13px;
  max-width: 700px;
}

.email-header {
  background: var(--gmail);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.email-header div {
  margin-bottom: 4px;
}

.email-body {
  padding: 16px;
  white-space: pre-line;
}

    .attachments {
      padding: 0 16px 16px;
      display: flex;
      gap: 10px;
    }

    .attachments-tight {
      padding-bottom: 0;
      line-height: 0;
      font-size: 0;
    }




.file {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #dadce0;
  border-radius: 6px;
  padding: 4px 10px 4px 6px;
  background: #f6f8fc;
  font-size: 12px;
  white-space: nowrap;
  line-height: 1;
}

.attachment-file {
  cursor: help;
}

.attachment-file:focus {
  outline: 2px solid rgba(0, 122, 255, 0.55);
  outline-offset: 2px;
}

.attachment-tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 6;
  width: max-content;
  max-width: min(300px, calc(100vw - 48px));
  padding: 9px 11px;
  color: #fff;
  background: #1d1d1f;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.attachment-tooltip::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 100%;
  width: 10px;
  height: 10px;
  background: #1d1d1f;
  transform: translateY(-5px) rotate(45deg);
}

.attachment-file:hover .attachment-tooltip,
.attachment-file:focus .attachment-tooltip,
.attachment-file.tooltip-open .attachment-tooltip {
  opacity: 1;
  transform: translateY(0);
}


.icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}




.divider {
  border-top: 1px solid var(--border);
  margin: 0;
}


/* =========================
   Sections
========================= */

.section {
  margin-top: 100px;
}

.section h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* =========================
   Pricing
========================= */

.pricing-section {
  scroll-margin-top: 28px;
}

.pricing-heading {
  max-width: 620px;
  margin-bottom: 24px;
}

.pricing-eyebrow {
  margin-bottom: 8px;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
}

.pricing-heading h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.pricing-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.plans-carousel-wrap {
  position: relative;
}

.plans {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-top: 14px;
  padding-bottom: 4px;
}

.plans::-webkit-scrollbar { display: none; }

.plan {
  position: relative;
  flex: 0 0 80vw;
  max-width: 300px;
  min-width: 240px;
  scroll-snap-align: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 24px 22px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.plan.active {
  transform: translateY(-2px);
}

.plan-recommended {
  border-color: #16a34a;
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.1);
}

.recommended-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0;
  padding: 0 10px;
  color: #fff;
  background: #16a34a;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.plan h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
}

.plan-kicker {
  color: #86868b;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.price {
  font-size: 26px;
  font-weight: 650;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.price span {
  color: #86868b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.plan ul {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.plan li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 20px;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.dot.active {
  background: var(--text);
  transform: scale(1.2);
}

.pricing-nudge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 22px auto 0;
  padding: 14px 16px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #f7fff9;
  color: #1d1d1f;
  text-align: center;
}

.pricing-nudge strong {
  font-size: 14px;
  font-weight: 700;
}

.pricing-nudge span {
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 700px) {
  .plans {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: unset;
    scroll-snap-type: unset;
  }
  .plan {
    flex: unset;
    max-width: unset;
    min-width: unset;
    scroll-snap-align: unset;
  }
  .plan.active {
    transform: none;
  }
  .carousel-dots { display: none; }
}

.beta-note--red {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #f3c6c6;
  border-radius: 8px;
  background: #fff5f5;
  color: #7a2e2e;
  font-size: 14px;
}

.beta-note--red strong {
  display: block;
  color: #5c1f1f;
  margin-bottom: 4px;
}


/* =========================
   Footer
========================= */

.site-footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #777;
}

/* separators */
.site-footer .sep {
  opacity: 0.4;
}

/* soon labels */
.site-footer .soon {
  opacity: 0.6;
  cursor: default;
}

/* contact link styling */
.site-footer .contact-link {
  color: inherit;          /* removes blue */
  text-decoration: none;  /* removes underline */
}

.site-footer .contact-link:hover {
  text-decoration: underline; /* subtle affordance */
}

/* =========================
   Responsive
========================= */

@media (max-width: 600px) {
  .container {
    padding: 24px 16px 84px;
  }

  header {
    margin-bottom: 46px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 10px;
    margin-top: 12px;
  }

  .hero-actions .primary,
  .hero-actions .trial-badge {
    width: 100%;
  }

  .hero-actions .primary {
    padding: 14px 18px;
  }

  .hero-actions .trial-badge {
    text-align: center;
  }

  .hero-proof {
    max-width: none;
    font-size: 12.5px;
    text-align: center;
  }

  .hero .hero-reassurance {
    font-size: 13px;
    margin-top: 10px;
  }

  .email {
    margin-top: 32px;
  }

  .section {
    margin-top: 72px;
  }

  .logo img {
    height: 36px;
  }

  .auth-actions {
    gap: 8px;
  }

  .top-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .hero-tp {
    display: none;
  }
}


@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 28px 24px 36px;
  }

  .site-footer .sep {
    display: none;
  }

  .site-footer .footer-brand {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
  }

  .site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }

  .site-footer .footer-disclaimer {
    font-size: 11.5px;
    color: #aaa;
    line-height: 1.5;
    max-width: 260px;
    margin: 4px auto;
  }

  .site-footer .footer-copy {
    font-size: 12px;
    color: #bbb;
    margin-top: 4px;
  }
}


.hide-mobile { display: inline; }
.show-mobile { display: none; }

@media (max-width: 600px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block; }
}

.trial-badge {
      display: inline-block;
      margin-top: 16px;
      padding: 8px 16px;
      background: #f5f5f7;
      border-radius: 20px;
      font-size: 14px;
      color: #1d1d1f;
    }

    .trial-badge span {
      color: #16a34a;
      font-weight: 600;
    }

    .ai-notice {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
      padding: 10px 16px;
      background: #f5f5f7;
      border-radius: 8px;
      font-size: 13px;
      color: #86868b;
    }

    .ai-notice span {
      font-size: 14px;
    }

    .faq {
      max-width: 640px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 0;
      font-size: 16px;
      font-weight: 500;
      color: #1d1d1f;
      cursor: pointer;
      user-select: none;
    }

    .faq-q:hover {
      color: #555;
    }

    .faq-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      position: relative;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      background: #86868b;
      border-radius: 1px;
      transition: transform 0.25s ease;
    }

    .faq-icon::before {
      width: 12px;
      height: 2px;
      top: 9px;
      left: 4px;
    }

    .faq-icon::after {
      width: 2px;
      height: 12px;
      top: 4px;
      left: 9px;
    }

    .faq-item.open .faq-icon::after {
      transform: rotate(90deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease, padding 0.25s ease;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
    }

    .faq-a p {
      margin: 0;
      padding: 0 0 18px 0;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
    }

    .guarantee {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 24px;
      padding: 16px;
      background: #f5f5f7;
      border-radius: 10px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .guarantee-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #1d1d1f;
    }

    .guarantee-item svg {
      flex-shrink: 0;
    }

    .pricing-cta {
      text-align: center;
      margin-top: 32px;
    }

    .pricing-cta .primary {
      display: inline-block;
      margin-bottom: 12px;
    }

    .pricing-cta p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
    }

    .pricing-cta p span {
      color: #16a34a;
      font-weight: 500;
    }

    @media (max-width: 500px) {
      .guarantee {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
      }
    }
    /* ── Social proof ── */
    .reviews-section {
      text-align: center;
    }

    .tp-stars {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-bottom: 12px;
    }

    .tp-star {
      width: 32px;
      height: 32px;
      background: #00b67a;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 3px;
    }

    .tp-star svg {
      width: 20px;
      height: 20px;
      fill: #fff;
    }

    .tp-rating-label {
      font-size: 15px;
      color: #1d1d1f;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .tp-rating-sub {
      font-size: 13px;
      color: #86868b;
      margin-bottom: 24px;
    }

    .tp-review-card {
      background: #f5f5f7;
      border-radius: 12px;
      padding: 20px 24px;
      max-width: 500px;
      margin: 0 auto 20px;
      text-align: left;
    }

    .tp-review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 10px;
    }

    .tp-review-star {
      width: 18px;
      height: 18px;
      background: #00b67a;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 2px;
    }

    .tp-review-star svg {
      width: 12px;
      height: 12px;
      fill: #fff;
    }

    .tp-review-text {
      font-size: 15px;
      color: #1d1d1f;
      line-height: 1.55;
      margin-bottom: 10px;
    }

    .tp-review-author {
      font-size: 13px;
      color: #86868b;
    }

    .tp-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #86868b;
      text-decoration: none;
    }

    .tp-link:hover {
      color: #1d1d1f;
    }

    .tp-logo-text {
      font-size: 13px;
      font-weight: 700;
      color: #00b67a;
      letter-spacing: -0.3px;
    }
	    .a-steps {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .a-step {
      display: flex;
      align-items: baseline;
      gap: 20px;
    }

    .a-step-num {
      font-size: 13px;
      font-weight: 700;
      color: #c7c7cc;
      min-width: 18px;
      flex-shrink: 0;
      letter-spacing: 0.02em;
    }

    .a-step-text {
      font-size: 20px;
      font-weight: 500;
      color: #1d1d1f;
      letter-spacing: -0.02em;
      line-height: 1.25;
    }

    .a-step-sub {
      font-size: 14px;
      color: var(--muted);
      font-weight: 400;
      margin-left: 6px;
      letter-spacing: 0;
    }

    .a-uses {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 560px;
      margin: 0;
    }

    .a-uses strong {
      color: #1d1d1f;
      font-weight: 500;
    }

    .a-why {
      font-size: 26px;
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.3;
      max-width: 520px;
      color: #1d1d1f;
    }

    .a-why em {
      font-style: normal;
      color: #86868b;
      font-weight: 400;
    }
           .email-outgoing {
      opacity: 0;
      animation: fadeUp 0.5s ease forwards;
      animation-delay: 0.3s;
      padding-bottom: 0;
      margin-bottom: 0;
    }



        .email-reply {
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.5s ease forwards;
      animation-delay: 2.4s;
    }

    .worker-email {
      width: 100%;
      box-sizing: border-box;
      background: #fff;
      border-top: 1px solid var(--border);
      overflow: hidden;
    }

    .worker-brand {
      padding: 14px 16px;
      background: #fff;
      border-bottom: 1px solid var(--border);
      opacity: 0;
      transform: translateY(8px);
      animation: fadeUp 0.38s ease forwards;
      animation-delay: 2.52s;
    }

    .worker-brand img {
      display: block;
      width: 92px;
      height: auto;
    }

    .worker-email-content {
      display: grid;
      gap: 10px;
      width: 100%;
      box-sizing: border-box;
      padding: 14px 16px 16px;
      background: #fff;
    }

    .worker-message-card,
    .worker-found-card {
      width: 100%;
      box-sizing: border-box;
      padding: 12px 14px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      opacity: 0;
      transform: translateY(8px);
      animation: fadeUp 0.38s ease forwards;
    }

    .worker-message-card { animation-delay: 2.62s; }
    .worker-found-card { animation-delay: 2.72s; }

    .worker-eyebrow {
      margin-bottom: 7px;
      color: #86868b;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .worker-message-title {
      margin-bottom: 5px;
      color: #1d1d1f;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.25;
    }

    .worker-message-card p,
    .worker-found-card p {
      margin: 0;
      color: #1d1d1f;
      font-size: 13px;
      line-height: 1.45;
    }

    .worker-message-card p + p {
      margin-top: 4px;
      color: #86868b;
    }

    .worker-signature {
      margin-top: 11px !important;
    }

    .worker-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      opacity: 0;
      transform: translateY(8px);
      animation: fadeUp 0.38s ease forwards;
      animation-delay: 2.82s;
    }

    .worker-action {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      line-height: 1;
      white-space: nowrap;
      appearance: none;
      cursor: default;
    }

    .primary-action {
      color: #fff;
      background: #1d1d1f;
      border-color: #1d1d1f;
    }

    .primary-action:focus {
      outline: 2px solid rgba(0, 122, 255, 0.55);
      outline-offset: 2px;
    }

    .secondary-action {
      color: #1d1d1f;
      background: #fff;
    }

    .worker-tooltip {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 10px);
      z-index: 5;
      width: max-content;
      max-width: min(260px, calc(100vw - 48px));
      padding: 9px 11px;
      color: #fff;
      background: #1d1d1f;
      border-radius: 8px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
      font-size: 12px;
      font-weight: 600;
      line-height: 1.35;
      text-align: left;
      white-space: normal;
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 6px);
      transition: opacity 0.16s ease, transform 0.16s ease;
    }

    .worker-tooltip::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 100%;
      width: 10px;
      height: 10px;
      background: #1d1d1f;
      transform: translate(-50%, -5px) rotate(45deg);
    }

    .primary-action:hover .worker-tooltip,
    .primary-action:focus .worker-tooltip,
    .primary-action:active .worker-tooltip,
    .primary-action.tooltip-open .worker-tooltip {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .worker-feedback {
      display: grid;
      gap: 7px;
      justify-items: center;
      color: #86868b;
      font-size: 12px;
      opacity: 0;
      transform: translateY(8px);
      animation: fadeUp 0.38s ease forwards;
      animation-delay: 2.92s;
    }

    .worker-thumbs {
      display: flex;
      gap: 8px;
    }

    .worker-thumb {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: #fff;
      font-size: 14px;
    }

    .email-thinking {
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 6px;
      opacity: 0;
      animation: fadeIn 0.3s ease forwards, fadeOut 0.3s ease forwards;
      animation-delay: 0.9s, 2.3s;
      border-top: 1px solid var(--border);
    }


    .email-thinking .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c7c7cc;
  animation: pulse 0.6s ease infinite alternate;
}

.email-thinking .dot:nth-child(2) { animation-delay: 0.15s; }
.email-thinking .dot:nth-child(3) { animation-delay: 0.3s; }


    .thinking-label {
      font-size: 12px;
      color: #86868b;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes fadeOut {
      from { opacity: 1; }
      to   { opacity: 0; }
    }

    @media (max-width: 460px) {
      .worker-email-content {
        padding: 12px;
      }

      .worker-brand {
        padding: 12px;
      }

      .worker-actions {
        grid-template-columns: 1fr;
        gap: 8px;
      }
    }

    @keyframes pulse {
      from { opacity: 0.3; transform: scale(0.85); }
      to   { opacity: 1;   transform: scale(1); }
    }
	    .cta-inline {
      font-size: 15px;
      color: var(--muted);
      margin-top: 20px;
    }

    .cta-inline a {
      color: #1d1d1f;
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cta-inline a:hover { color: #555; }

	    /* ── Review carousel ── */
    .card-stack-outer {
      max-width: 500px;
      margin: 0 auto;
      overflow: hidden;
      padding: 4px 4px 0;
    }

    .card-stack {
      position: relative;
    }

    .review-card {
      width: 100%;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px 26px;
      text-align: left;
    }

    .card-hans {
      position: relative;
      z-index: 1;
    }

    .card-etienne {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 2;
      transform: translateX(130%) rotate(6deg);
      opacity: 0;
      box-shadow: none;
    }

    .card-etienne.fly-in {
      animation: flyInSwing 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes flyInSwing {
      0%   { transform: translateX(130%) rotate(6deg);   opacity: 0.5; }
      65%  { transform: translateX(-4%) rotate(-2deg);   opacity: 1;   }
      80%  { transform: translateX(2%)  rotate(0.8deg);               }
      90%  { transform: translateX(-1%) rotate(-0.3deg);              }
      100% { transform: translateX(0)   rotate(0deg);    opacity: 1;   }
    }

    .review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }

    .review-star {
      width: 16px;
      height: 16px;
      background: #00b67a;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 2px;
    }

    .review-star svg { width: 10px; height: 10px; fill: #fff; }

    .review-title {
      font-size: 15px;
      font-weight: 600;
      color: #1d1d1f;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .review-text {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .review-author {
      font-size: 12px;
      color: #86868b;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .review-avatar {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #e5e5ea;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: #86868b;
      flex-shrink: 0;
    }

    .tp-link-wrap {
      max-width: 500px;
      margin: 20px auto 0;
      text-align: center;
    }
