html { scroll-behavior: smooth; }
:root {
  --bg: #f5f5f7;
  --panel: #ffffff;
  --text: #334455;
  --muted: #6e6e73;
  --accent: #0071e3;
  --line: #d2d2d7;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.45;
  color: var(--text);
  background: var(--bg);
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(245,245,247,.82);

  z-index: 10;
  padding: .82rem 0;
}
.brand {
  font-weight: 600;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 24px;
  width: auto;
  display: block;
}
.brand-fallback {
  display: none;
  text-transform: lowercase;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-list { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; }
.nav-list a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.nav-list a:hover { color: var(--text); }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; color: #000; padding: .5rem .75rem; border-radius: .5rem; }

/* Full-bleed team banner */
.team-banner {
  width: 100%;
  overflow: hidden;
  background: #111;
  line-height: 0;
}
.banner-strip {
  display: flex;
  height: 380px;
  width: 100%;
}
.banner-card {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex .45s cubic-bezier(.22,1,.36,1);
}
.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: filter .45s ease;
  filter: brightness(.78);
}
.banner-card:hover {
  flex: 3.2 1 0 !important;
}
.banner-card:hover img {
  filter: brightness(1.0);
}
.banner-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .7rem .75rem .65rem;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
  color: #fff;
  line-height: 1.25;
}
.banner-card-label strong {
  display: block;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.banner-role {
  display: block;
  font-size: .82rem;
  opacity: .9;
  letter-spacing: .01em;
}
.banner-traits {
  display: block;
  font-size: .72rem;
  opacity: .65;
  letter-spacing: .01em;
  margin-top: .1rem;
}
.tagline-traits {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

.hero { padding: 5.5rem 0 3.2rem; text-align: center; background: linear-gradient(135deg, #eef6ff 0%, #f8f5ff 50%, #f0faff 100%); }
.eyebrow { color: var(--accent); font-weight: 600; letter-spacing: .01em; }
h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  margin: .2rem 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}
h2 {
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 500;
}

h3, h4 {
  font-weight: 500;
}
.lead { color: var(--muted); max-width: 72ch; margin: 0 auto; font-size: 1.1rem; }
.hero-cta { display: flex; justify-content: center; gap: .75rem; margin-top: 1.4rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: .72rem 1.5rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 300;
}
.btn:hover { filter: brightness(1.05); }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); filter: none; }
.btn-small { padding: .42rem .68rem; border-radius: 999px; }
.section { padding: 3.4rem 0; border-top: 1px solid rgba(0,0,0,.06); }
.alt { background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 55%, #eaf3ff 100%); }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.3rem; }
.card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.card {
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
}
/* ── Employee Carousel ─────────────────────────────── */
.carousel-section {
  background: #111;
  padding: 2.6rem 0 1.6rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.carousel-section h2 {
  color: #f5f5f7;
  text-align: center;
  margin-bottom: 1.4rem;
}
.carousel-stage {
  display: flex;
  align-items: stretch;
  width: min(1120px, 92%);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(255,255,255,.07);
}
.carousel-photo {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
}
.carousel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity .3s ease;
}
.carousel-photo img.fading { opacity: 0; }
.carousel-info {
  flex: 1;
  background: #1c1c1e;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .55rem;
}
.carousel-flavour {
  color: rgba(255,255,255,.42);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}
.carousel-name {
  color: #f5f5f7;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: .1rem 0 .4rem;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.carousel-desc {
  color: rgba(255,255,255,.68);
  font-size: .97rem;
  line-height: 1.62;
  margin: 0 0 .9rem;
}
.carousel-cta-btn { align-self: flex-start; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
}
.carousel-arrow {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.carousel-arrow:hover { background: rgba(255,255,255,.18); }

.carousel-arrow-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.carousel-arrow-overlay:hover { background: rgba(255,255,255,.4); }
.carousel-arrow-overlay:hover svg { transform: scale(1.18); }
.carousel-arrow-overlay svg { width: 20px; height: 20px; display: block; }
.carousel-arrow-overlay.prev { left: .6rem; }
.carousel-arrow-overlay.next { right: .6rem; }
.carousel-dots { display: flex; gap: .38rem; flex-wrap: wrap; justify-content: center; }
.cdot {
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.cdot.active { background: #fff; width: 1.1rem; }
.modal { position: fixed; inset: 0; display: none; z-index: 100; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.modal-panel {
  position: relative;
  width: min(860px, 92%);
  max-height: 88vh;
  overflow: auto;
  margin: 6vh auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.1rem;
}
.modal-close {
  position: absolute;
  right: .7rem;
  top: .6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.modal-hero { display: flex; gap: .9rem; align-items: center; padding-right: 2.2rem; }
#modal-avatar { width: 110px; height: 110px; border-radius: 14px; object-fit: cover; border: 1px solid var(--line); }
.modal-traits { font-size: .88rem; margin-top: .2rem; }
.email-example { margin-top: 1rem; }
.mail { border: 1px solid var(--line); border-radius: 14px; padding: .8rem; margin-top: .65rem; background: #fff; }
.mail-customer { background: #fafafc; }
.mail-agent { background: #f4f9ff; }
.mail-label {
  margin: 0 0 .35rem;
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.mail-meta { border: 1px solid var(--line); border-radius: 10px; padding: .55rem .65rem; background: #fff; margin-bottom: .6rem; }
.mail-meta p { margin: .18rem 0; font-size: .9rem; color: #4f4f55; }
.redacted {
  display: inline-block;
  background: #111;
  color: transparent;
  border-radius: .2rem;
  padding: 0 .28rem;
  letter-spacing: .02em;
  user-select: none;
}
.attachments-row { margin-top: .3rem; }
.attachment-chip {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .1rem .45rem;
  margin-right: .35rem;
  font-size: .82rem;
  color: var(--text);
  background: #f8f8fa;
}
.hidden-row { display: none; }
.steps { padding-left: 1.1rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .8rem; }
.pill { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .35rem .7rem; color: var(--muted); }
.tiers { display: grid; gap: .9rem; grid-template-columns: repeat(3, 1fr); }
.plan-tabs {
  display: inline-flex;
  gap: .45rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(21,101,192,.18);
  border-radius: 999px;
  padding: .3rem;
  margin: .2rem 0 1.1rem;
}
.plan-tab {
  border: 0;
  border-radius: 999px;
  padding: .45rem .85rem;
  font: 600 .85rem/1 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  cursor: pointer;
}
.plan-tab.active {
  background: #1565c0;
  color: #fff;
}
.plan-tab.disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}
.plan-panel { margin-top: .3rem; }
.tiers-solo { grid-template-columns: repeat(3, 1fr); }
.tier { background: #1565c0; border-radius: 16px; padding: 1rem; display: flex; flex-direction: column; color: #fff; }
.tier h3, .tier p, .tier .lowkey { color: #fff; }
.price {
  margin: .15rem 0 .55rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
}
.tier .muted { color: rgba(255,255,255,.72); }
.tier .status.live { color: #90ee90; }
.tier .status.soon { color: #ffd580; }
.tier-live {
  border-color: #5b9bd5 !important;
  background: linear-gradient(145deg, #3a8ef6 0%, #1565c0 48%, #0d47a1 100%) !important;
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.28), inset 0 1px 0 rgba(255,255,255,.12);
}
.tier-inactive {
  background: #d8d8dc !important;
  border-color: #c4c4c8 !important;
}
.tier-inactive h3 {
  color: #3a3a3c !important;
}
.tier-inactive p {
  color: #555558 !important;
}
.tier-link { margin-top: auto; padding-top: .78rem; margin-top: .9rem; text-align: center; font-size: .92rem; }
.status { font-size: .93rem; margin-top: .8rem; }
.live { color: #007a2f; }
.soon { color: #8a5a00; }
.lowkey { color: var(--muted); margin-top: 1rem; }
.narrow { width: min(700px, 92%); }
form { display: grid; gap: .6rem; margin-top: 1rem; }
input { width: 100%; border: 1px solid var(--line); background: #fff; color: var(--text); border-radius: 10px; padding: .7rem .8rem; }
.form-note { color: var(--muted); min-height: 1.2rem; }
/* ── CTA Inline Microform ───────────────────────────── */
.cta-microform {
  background: var(--accent);
  border-radius: 14px;
  padding: .65rem .75rem;
  display: inline-flex;
  flex-direction: column;
  gap: .45rem;
  animation: cta-pop .18s ease-out;
}
@keyframes cta-pop {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
.cta-form-title {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.cta-form-row { display: flex; gap: .4rem; align-items: center; }
.cta-form-input,
.cta-form-pic {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  padding: .5rem .8rem;
  font-size: .9rem;
  outline: none;
  font-family: inherit;
  width: auto;
}
.cta-form-input::placeholder,
.cta-form-pic::placeholder { color: rgba(255,255,255,.55); }
.cta-form-input:focus,
.cta-form-pic:focus { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.55); }
.cta-form-pic {
  letter-spacing: .06em;
  font-weight: 600;
  text-transform: uppercase;
}
.cta-form-submit {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 999px;
  padding: .5rem 1rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.cta-form-submit:hover { filter: brightness(.96); }
.cta-form-submit:disabled { opacity: .6; cursor: default; }
.cta-form-error {
  margin: .35rem 0 0;
  font-size: .85rem;
  color: #ffcdd2;
  font-weight: 500;
}
.cta-form-input.input-error { border-color: #ef9a9a; background: rgba(239,154,154,.12); }

/* Use-case dropdown — matches input visual style */
.cta-form-usecase {
  width: 100%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-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='rgba(255,255,255,.7)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.2rem;
}
.cta-form-usecase option { background: #2a2a3a; color: #fff; }
.cta-form-usecase:focus { background-color: rgba(255,255,255,.26); border-color: rgba(255,255,255,.55); }

/* ── Welcome message (replaces form on success) ── */
.cta-welcome {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  animation: fadeIn .35s ease;
}
.cta-welcome-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.4);
}
.cta-welcome-body { flex: 1; min-width: 0; }
.cta-welcome-name {
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  margin: 0 0 .2rem;
}
.cta-welcome-role {
  font-weight: 400;
  font-size: .78rem;
  opacity: .75;
  margin-left: .3rem;
}
.cta-welcome-msg {
  font-size: .88rem;
  color: rgba(255,255,255,.88);
  margin: 0;
  line-height: 1.45;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ── Persona selection popup ── */
.persona-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: min(480px, calc(100vw - 2rem));
  background: var(--panel);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  padding: 1.25rem;
  z-index: 1000;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.persona-popup-close {
  position: absolute;
  top: .75rem; right: .85rem;
  background: none; border: none;
  font-size: 1.2rem; color: var(--muted);
  cursor: pointer; line-height: 1;
}
.persona-popup-prompt {
  font-size: .9rem;
  color: var(--text);
  margin: 0 0 .85rem;
}
.persona-popup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: .5rem;
  max-height: 260px;
  overflow-y: auto;
}
.persona-popup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  background: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: .4rem .2rem;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.persona-popup-card:hover { background: var(--bg); }
.persona-popup-card.selected { border-color: var(--accent); }
.persona-popup-card img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.persona-popup-card span {
  font-size: .7rem;
  color: var(--text);
  text-align: center;
}

/* ── Page fade transition (submit → acknowledgement) ── */
#main {
  transition: opacity 0.32s ease;
}
#main.page-transitioning {
  opacity: 0;
  pointer-events: none;
}

/* ── Full-page acknowledgement ── */
.ack-page {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: var(--bg);
}
.ack-card {
  text-align: center;
  max-width: 480px;
  animation: fadeIn .4s ease;
}
.ack-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 1.2rem;
  border: 3px solid var(--line);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.ack-name {
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 .25rem;
  color: var(--text);
  letter-spacing: -.01em;
}
.ack-role {
  font-weight: 400;
  font-size: .85rem;
  color: var(--muted);
  margin-left: .3rem;
}
.ack-message {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.65;
  margin: .65rem 0 0;
}
.ack-logo {
  height: 32px;
  width: auto;
  display: block;
  margin: 0 auto 1.8rem;
  opacity: .85;
}
.ack-beta-badge {
  display: inline-block;
  margin: .5rem 0 0;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: #6e6e73;
  background: #e5e5ea;
}
.ack-waitlist-cta {
  margin-top: 1.6rem;
}
.ack-waitlist-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.025em;
  margin: 0 0 .65rem;
  color: var(--text);
}
.ack-waitlist-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.site-footer { border-top: 1px solid rgba(0,0,0,.06); padding: 1.5rem 0 2.5rem; color: var(--muted); text-align: center; }
.footer-version { font-size: .7rem; color: #c8c8cc; margin: .3rem 0 0; letter-spacing: .04em; font-family: ui-monospace, "SF Mono", monospace; }
.muted { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) {
  .site-header { padding: .55rem 0; }
  .grid-2, .tiers, .tiers-solo { grid-template-columns: 1fr; }
  .nav-list { flex-wrap: wrap; }
  .banner-strip { height: 240px; }
  .banner-card-label strong { font-size: .88rem; }
  .banner-card-label span { font-size: .72rem; }
  .banner-hide-mobile { display: none; }
  .carousel-stage { flex-direction: column; min-height: auto; }
  .carousel-photo { flex: 0 0 auto; }
  .carousel-photo img { height: auto; object-fit: contain; object-position: center top; }
  .carousel-arrow-overlay.prev { left: .45rem; }
  .carousel-arrow-overlay.next { right: .45rem; }
  .carousel-info { padding: 1.4rem 1.2rem; }
}

.footer-logo-wrap {
  text-align: center;
  margin-bottom: 1.2rem;
}
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer-logo {
  height: 52px;
  width: auto;
  display: block;
}
