/* Shared visual language (docs/specs/05-marketing-site.md §6.1): a ticket-cut CTA,
   pinned index cards for the real quick-prompt questions, a ruled unnumbered strip,
   and the brand mark. Same components used on every page via templates/layout. */

.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
  font-weight: 700;
  /* Was 18px/23x25 — too small to read as a real logo at a normal glance,
     per live feedback. This is the one wordmark on the page (nav only; the
     footer uses plain text), so it can afford to be the visual anchor of
     the header rather than sit level with the nav links next to it. */
  font-size: 24px;
  text-decoration: none;
  color: var(--ink);
}

.wordmark .mark {
  width: 30px;
  height: 33px;
  color: var(--concierge-brown);
}

/* Ticket button: a single clipped corner + a small dashed-perforation mark near the
   cut, standing in for a rounded pill (spec §6.1: "not defaulting to the generic
   rounded-full button every SaaS landing page reaches for"). */
.cta-ticket {
  position: relative;
  font-family: var(--font-body);
  font-weight: 700;
  background: var(--ink-charcoal);
  color: var(--mist-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.cta-ticket::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 9px;
  height: 9px;
  border-top: 1.5px dashed rgba(234, 240, 234, 0.55);
  border-right: 1.5px dashed rgba(234, 240, 234, 0.55);
  transform: rotate(45deg);
  transform-origin: top right;
}

/* Not published to the Chrome Web Store yet (site/src/cta.mjs): an outline
   treatment instead of the solid dark fill, so it doesn't read as a working
   install button. Still the same ticket silhouette, same position, so the
   layout doesn't jump once this becomes a real link. */
.cta-ticket.is-pending {
  background: transparent;
  border: 1.5px dashed var(--ink-charcoal);
  color: var(--ink-charcoal);
  cursor: default;
}

.cta-ticket.is-pending::after {
  border-top-color: rgba(39, 38, 42, 0.4);
  border-right-color: rgba(39, 38, 42, 0.4);
}

.cta-ticket.sm {
  font-size: 12.5px;
  padding: 10px 18px 10px 16px;
}

.cta-ticket.lg {
  font-size: 14.5px;
  padding: 14px 24px 14px 20px;
  box-shadow: 0 12px 22px -12px rgba(39, 38, 42, 0.5);
}

/* Ruled three-column strip: the three items below the hero aren't a
   sequence, so no numbering (spec §6.1) — a differentiated icon per item
   (house / chat / lock) doesn't carry that same "step 1, step 2" reading
   the way three identical numbered circles would, so it doesn't fight the
   same reasoning the way numbering does. */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 44px;
  border-top: 1px solid rgba(39, 38, 42, 0.16);
  border-bottom: 1px solid rgba(39, 38, 42, 0.16);
}

.strip-item {
  padding: 0 28px;
  border-left: 1px solid rgba(39, 38, 42, 0.16);
}

.strip-item:first-child {
  border-left: none;
  padding-left: 0;
}

.strip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(151, 182, 178, 0.22);
  color: var(--concierge-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.strip-icon svg {
  width: 19px;
  height: 19px;
}

.strip-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  font-weight: 700;
}

.strip-item p {
  font-size: 13.3px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Trust line: no account needed / free with a daily limit / nothing synced. */
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal-ink);
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-list li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 11px;
  border-right: 1.5px solid var(--teal-ink);
  border-bottom: 1.5px solid var(--teal-ink);
  transform: rotate(38deg) translateY(-1px);
}

.eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin: 0 0 16px;
}

.disclaimer {
  font-size: 11.5px;
  color: var(--muted);
}

.link-underline {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--teal-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Site nav and footer, shared by every page. */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-nav .links {
  display: flex;
  gap: 26px;
  font-size: 13.5px;
  font-weight: 700;
}

.site-nav .links a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.75;
}

.site-nav .links a:hover,
.site-nav .links a:focus-visible {
  opacity: 1;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 40px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid rgba(39, 38, 42, 0.14);
}

.site-footer .links {
  display: flex;
  gap: 20px;
}

.site-footer a {
  color: var(--teal-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .strip {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .strip-item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(39, 38, 42, 0.16);
    padding-top: 16px;
  }

  .strip-item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .site-nav .links {
    display: none;
  }

  .site-nav,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}
