/* Shared page styles for For Managers, For Owners, Pricing, Resources, About, Contact. */

/* ─────── Page hero (light variant) ─────── */
.page-hero {
  background: var(--bg);
  padding: 80px 0 96px;
  position: relative;
  border-bottom: 1px solid var(--line-subtle);
  overflow: hidden;
}
.page-hero--dark {
  background: var(--ink);
  color: #fff;
  border-bottom-color: transparent;
}
.page-hero--dark::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  right: -160px; top: -200px;
  background: radial-gradient(circle, rgba(0,87,255,.30) 0, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.page-hero__breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 16px;
}
.page-hero--dark .page-hero__breadcrumb { color: var(--soft); }
.page-hero__breadcrumb a { color: var(--blue); }
.page-hero--dark .page-hero__breadcrumb a { color: #8aa9ff; }
.page-hero__breadcrumb .crumb-sep { color: var(--line-strong); }
.page-hero--dark .page-hero__breadcrumb .crumb-sep { color: #555; }

.page-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: end;
  position: relative;
}
.page-hero__copy { position: relative; }
.page-hero h1 {
  font-size: 80px; line-height: 0.98; font-weight: 900;
  letter-spacing: -0.03em; margin: 20px 0 24px;
  text-wrap: balance;
}
.page-hero h1 .accent { color: var(--blue); }
.page-hero--dark h1 .accent { color: #6e93ff; }
.page-hero__lede {
  font-size: 19px; line-height: 1.55; max-width: 560px; margin: 0 0 32px;
  color: var(--muted); text-wrap: pretty;
}
.page-hero--dark .page-hero__lede { color: var(--soft); }

.page-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero__art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}

.page-hero__chips {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px;
}
.page-hero__chip {
  padding: 8px 14px; border-radius: 999px;
  background: var(--bg-muted);
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.page-hero--dark .page-hero__chip {
  background: rgba(255,255,255,.06);
  color: var(--soft);
  border: 1px solid rgba(255,255,255,.08);
}

/* ─────── Pricing ─────── */
.pricing-toggle {
  display: inline-flex; padding: 4px;
  background: var(--bg-muted);
  border-radius: 999px;
  gap: 4px;
  margin: 24px auto 0;
}
.pricing-toggle button {
  border: 0; padding: 8px 18px;
  background: transparent;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  color: var(--ink-3);
  transition: background-color 160ms, color 160ms;
}
.pricing-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}
.pricing-toggle__save {
  font-size: 11px; font-weight: 700; color: var(--green);
  margin-left: 4px;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-2xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: box-shadow 220ms, transform 220ms, border-color 220ms;
}
.pricing-card--featured {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 24px 48px -12px rgba(0,87,255,.30);
}
.pricing-card--featured::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 100%, rgba(0,87,255,.30), transparent 60%);
  pointer-events: none;
}
.pricing-card > * { position: relative; }
.pricing-card__head {
  display: flex; align-items: center; justify-content: space-between;
}
.pricing-card__name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.pricing-card--featured .pricing-card__name { color: #8aa9ff; }
.pricing-card__tag { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--blue); color: #fff; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pricing-card__price {
  display: flex; align-items: baseline; gap: 6px;
}
.pricing-card__price strong {
  font-size: 56px; font-weight: 900; letter-spacing: -0.03em; line-height: 1;
}
.pricing-card__price em {
  font-style: normal; font-size: 16px; color: var(--muted); font-weight: 500;
}
.pricing-card--featured .pricing-card__price em { color: var(--soft); }

.pricing-card__sub { font-size: 14px; color: var(--muted); margin: 0; }
.pricing-card--featured .pricing-card__sub { color: var(--soft); }
.pricing-card__list {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  border-top: 1px solid var(--line-subtle);
  padding-top: 20px;
}
.pricing-card--featured .pricing-card__list { border-color: rgba(255,255,255,.10); }
.pricing-card__list li { display: flex; align-items: flex-start; gap: 10px; }
.pricing-card__list b { font-weight: 700; }
.pricing-card__check {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 999px;
  background: var(--blue-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pricing-card--featured .pricing-card__check { background: rgba(255,255,255,.10); color: #fff; }
.pricing-card__cta { margin-top: auto; padding-top: 12px; }

.pricing-addons {
  background: var(--bg-paper);
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  overflow: hidden;
}
.pricing-addons__row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  padding: 16px 24px; border-top: 1px solid var(--line-subtle);
  align-items: center;
}
.pricing-addons__row:first-child { border-top: 0; }
.pricing-addons__row--head {
  background: var(--bg-muted);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 500; color: var(--muted);
}
.pricing-addons__row strong { font-weight: 700; }
.pricing-addons__row p { margin: 2px 0 0; font-size: 13px; color: var(--muted); }
.pricing-addons__price { font-family: "Roboto Mono", monospace; font-weight: 700; font-size: 15px; }

/* ─────── Compare table ─────── */
.compare {
  background: var(--bg-paper);
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  overflow: hidden;
}
.compare__head {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 24px;
  background: var(--bg-muted);
}
.compare__head h4 { margin: 0; font-size: 13px; font-weight: 700; }
.compare__row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 16px 24px; border-top: 1px solid var(--line-subtle);
  font-size: 14px; align-items: center;
}
.compare__row:first-child { border-top: 0; }
.compare__feat strong { font-weight: 600; display: block; }
.compare__feat span { color: var(--muted); font-size: 12px; }
.compare__cell { text-align: center; }
.compare__check { color: var(--blue); }

/* ─────── FAQ ─────── */
.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-subtle);
}
.faq__row {
  border-bottom: 1px solid var(--line-subtle);
}
.faq__q {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  font-family: inherit;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq__q:hover { color: var(--blue); }
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--bg-muted);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background-color 160ms, transform 200ms;
}
.faq__row.is-open .faq__icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq__a {
  font-size: 15.5px; color: var(--muted); line-height: 1.6;
  padding: 0 60px 24px 0;
  max-width: 720px;
}

/* ─────── About / team ─────── */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.team-card {
  background: var(--bg-paper);
  border-radius: var(--rad-xl);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--line-subtle);
  transition: box-shadow 220ms, transform 220ms;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-card__avatar {
  aspect-ratio: 1; border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
}
.team-card__avatar img { width: 100%; height: 100%; }
.team-card__name { font-size: 16px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.team-card__role { font-size: 13px; color: var(--muted); margin: 0; }
.team-card__bio { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin: 4px 0 0; flex: 1; }
.team-card__links { display: flex; gap: 6px; margin-top: 4px; color: var(--muted); }
.team-card__links a:hover { color: var(--blue); }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 220ms, transform 220ms;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-card__num {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  color: var(--blue); font-weight: 700; letter-spacing: 0.08em;
}
.value-card h3 { font-size: 24px; font-weight: 900; letter-spacing: -0.02em; margin: 0; }
.value-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ─────── Resources hub ─────── */
.res-hub {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px;
}
.res-hub__feat {
  background: var(--ink);
  color: #fff;
  border-radius: var(--rad-xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  min-height: 360px;
}
.res-hub__feat::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(0,87,255,.30), transparent 60%);
  pointer-events: none;
}
.res-hub__feat > * { position: relative; }
.res-hub__feat-tag { font-size: 11px; color: #6e93ff; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; }
.res-hub__feat h3 { font-size: 36px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; margin: 8px 0; }
.res-hub__feat p { font-size: 15px; color: var(--soft); margin: 0; flex: 1; }
.res-hub__feat-meta { font-size: 12px; color: var(--soft); display: flex; gap: 12px; margin-top: 8px; }
.res-hub__side {
  display: flex; flex-direction: column; gap: 16px;
}
.res-hub__side .res-card-mini {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
  transition: box-shadow 220ms, transform 220ms;
}
.res-card-mini:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.res-card-mini__tag { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.res-card-mini h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 4px 0; }
.res-card-mini p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; flex: 1; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 220ms, transform 220ms;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-paper);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card__meta { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.blog-card__dot { width: 3px; height: 3px; border-radius: 999px; background: var(--soft); }
.blog-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 4px 0; line-height: 1.3; }
.blog-card p { font-size: 13.5px; color: var(--muted); margin: 0; flex: 1; line-height: 1.5; }

/* ─────── Contact ─────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  padding: 36px;
}
.contact-card h3 { font-size: 24px; font-weight: 900; letter-spacing: -0.015em; margin: 0 0 8px; }
.contact-card > p { font-size: 14.5px; color: var(--muted); margin: 0 0 24px; }

.contact-channels {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-channel {
  background: var(--bg-paper);
  border-radius: var(--rad-lg);
  padding: 20px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
  align-items: center;
  border: 1px solid var(--line-subtle);
}
.contact-channel__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-channel__label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.contact-channel__val { font-size: 16px; font-weight: 700; }
.contact-channel__sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

.offices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.office {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.office__city { font-size: 22px; font-weight: 900; letter-spacing: -0.015em; }
.office__addr { font-size: 14px; color: var(--muted); line-height: 1.5; white-space: pre-line; }
.office__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; font-size: 12px; }

/* ─────── Workflow timeline ─────── */
.workflow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative;
}
.workflow::before {
  content: ""; position: absolute;
  top: 24px; left: 5%; right: 5%; height: 2px;
  background: var(--line-subtle);
}
.workflow__step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px;
  position: relative;
}
.workflow__dot {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Roboto Mono", monospace; font-size: 14px; font-weight: 700;
  margin-bottom: 16px;
  z-index: 1;
  border: 4px solid var(--bg-muted);
}
.workflow__dot.is-accent { background: var(--blue); }
.workflow__dot.is-faded { background: var(--bg-muted); color: var(--muted); }
.workflow__step h4 { font-size: 14px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.workflow__step p { font-size: 12.5px; color: var(--muted); margin: 4px 0 0; line-height: 1.45; }

/* ─────── Roles / careers list ─────── */
.roles {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-subtle);
}
.role-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr auto;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-subtle);
  gap: 24px;
  cursor: pointer;
  transition: background-color 120ms;
}
.role-row:hover { background: var(--bg-muted); }
.role-row__title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; padding-left: 12px; }
.role-row__team { font-size: 13.5px; color: var(--muted); }
.role-row__loc { font-size: 13.5px; color: var(--muted); }
.role-row__arrow { margin-right: 12px; color: var(--muted); }
.role-row:hover .role-row__arrow { color: var(--blue); transform: translateX(4px); transition: transform 200ms, color 200ms; }

/* ─────── Logos belt ─────── */
.logos-belt {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}
.logos-belt__brand {
  text-align: center;
  font-weight: 700; letter-spacing: 0.08em; font-size: 14px;
  color: var(--muted);
  opacity: 0.7;
  transition: opacity 200ms, color 200ms;
}
.logos-belt__brand:hover { opacity: 1; color: var(--ink); }

@media (max-width: 1080px) {
  .page-hero h1 { font-size: 56px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__art { min-height: 280px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare__head, .compare__row { grid-template-columns: 1fr; gap: 8px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .res-hub { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .offices { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr 1fr; gap: 24px; }
  .workflow::before { display: none; }
  .role-row { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 720px) {
  .page-hero h1 { font-size: 40px; }
  .team-grid { grid-template-columns: 1fr; }
}
