:root {
  --canvas: #fff;
  --ink: #2b2b2b;
  --ink-soft: #6a5b70;
  --brand: #7f3486;
  --brand-deep: #5a2463;
  --brand-bright: #b16eb7;
  --tint-crm: #f4eaf6;
  --tint-adm: #f8f1f9;
  --tint-wrt: #f6e8f8;
  --tint-tut: #f7eef8;
  --accent-crm: #9e58a4;
  --accent-adm: #5a2463;
  --accent-wrt: #a560ab;
  --accent-tut: #7f3486;
  --background: #fff;
  --card: #fff;
  --secondary: #f8f2f9;
  --border: #7f348626;
  --destructive: #b3261e;
  --radius: 6px;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.hub {
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

.font-display,
h1, h2, h3 {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wrap {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.hub-shell {
  position: relative;
  min-height: 100vh;
}

.hub-shell.is-inner::before,
.hub-shell.is-inner::after,
.hub-orb {
  content: "";
  pointer-events: none;
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  z-index: 0;
}

.hub-shell.is-inner::before {
  left: -8rem;
  top: -10rem;
  width: 560px;
  height: 560px;
  background: color-mix(in srgb, var(--accent-crm) 25%, transparent);
}

.hub-shell.is-inner::after {
  right: -10rem;
  top: 6rem;
  width: 480px;
  height: 480px;
  background: color-mix(in srgb, var(--accent-adm) 20%, transparent);
}

.hub-header {
  position: relative;
  z-index: 30;
}

.hub-header.is-overlay {
  position: absolute;
  inset-inline: 0;
  top: 0;
}

.hub-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 16px;
  background: #ffffff9e;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hub-header.is-overlay .hub-header-bar {
  margin-top: 1.25rem;
  border-radius: 8px;
  background: #ffffffc7;
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 0 0 1px var(--border);
}

.logo img {
  height: 24px;
  width: auto;
}

.hub-header.is-overlay .logo img {
  height: 28px;
}

.hub-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.hub-nav a:hover,
.hub-nav a.is-active {
  color: var(--ink);
}

.hub-nav a.is-active {
  font-weight: 500;
}

.hub-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.signin-link {
  display: none;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.signin-link:hover {
  color: var(--ink);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

body.hub .btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
}

.btn-brand:hover {
  background: var(--brand-bright);
}

.btn-deep {
  background: var(--brand-deep);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--brand-deep);
}

.btn-white:hover {
  background: var(--secondary);
}

.btn-ghost {
  background: color-mix(in srgb, #fff 70%, transparent);
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
}

.btn-tut { background: var(--accent-tut); color: #fff; }
.btn-crm { background: var(--accent-crm); color: #fff; }
.btn-adm { background: var(--accent-adm); color: #fff; }
.btn-wrt { background: var(--accent-wrt); color: #fff; }
.btn-tut:hover,
.btn-crm:hover,
.btn-adm:hover,
.btn-wrt:hover { filter: brightness(0.95); }

.text-tut { color: var(--accent-tut); }
.text-crm { color: var(--accent-crm); }
.text-adm { color: var(--accent-adm); }
.text-wrt { color: var(--accent-wrt); }
.bg-tut { background: var(--tint-tut); }
.bg-crm { background: var(--tint-crm); }
.bg-adm { background: var(--tint-adm); }
.bg-wrt { background: var(--tint-wrt); }

main {
  position: relative;
  z-index: 10;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.eyebrow-dot span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--brand);
}

.page-hero {
  padding: 4rem 0 2.25rem;
}

.page-hero:not(.is-product) .wrap {
  display: grid;
  gap: 1rem 4rem;
}

.page-hero h1 {
  margin-top: 1.25rem;
  max-width: 18ch;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.05;
}

.page-hero .lede {
  margin-top: 1.25rem;
  max-width: 60ch;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-hero.is-product {
  padding: 4.25rem 0 2.75rem;
}

.page-hero.is-product h1 {
  max-width: 16ch;
}

.page-hero.is-product .lede {
  max-width: 46ch;
}

.page-hero.is-product .detail-hero {
  padding-bottom: 0;
}

.page-hero.is-product .media-frame img {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(43, 43, 43, 0.12);
}

.home-hero {
  position: relative;
  color: var(--ink);
  background: var(--secondary);
  overflow: hidden;
}

.home-hero img.hero-photo,
.home-hero video.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.home-hero video.hero-video {
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero video.hero-video { display: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--canvas) 86%, transparent) 0%,
    color-mix(in srgb, var(--secondary) 78%, transparent) 34%,
    color-mix(in srgb, var(--canvas) 42%, transparent) 62%,
    color-mix(in srgb, var(--canvas) 22%, transparent) 100%
  );
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 540px;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
}

.home-hero-copy {
  max-width: 40rem;
}

.home-hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.08;
  color: var(--ink);
}

.home-hero .lede {
  margin-top: 1.25rem;
  max-width: 52ch;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.product-strip {
  border-block: 1px solid var(--border);
  background: #fff;
}

.product-strip-grid {
  display: grid;
}

.product-strip a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.strip-icon {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--secondary);
  font-size: 1.1rem;
}

.product-strip a:last-child {
  border-bottom: 0;
}

.product-strip .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.product-strip .name {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-family: Inter, sans-serif;
}

.product-strip .name svg {
  transition: transform 0.15s ease;
}

.product-strip a:hover .name svg {
  transform: translateX(4px);
}

.stats {
  border-bottom: 1px solid var(--border);
  background: var(--secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
  padding: 1.75rem 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat svg,
.stat i {
  color: var(--brand);
}

.stat i {
  font-size: 1.5rem;
  line-height: 1;
}

.stat strong {
  margin-top: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat span {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.section {
  padding: 2.5rem 0;
}

.crumbs {
  padding: 1.25rem 0 0;
  font-size: 0.8125rem;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  list-style: none;
  color: var(--ink-soft);
}

.crumbs li:not(:last-child)::after {
  content: ">>";
  margin-left: 0.55rem;
  color: var(--ink-soft);
}

.crumbs a:hover { color: var(--ink); }

.crumbs [aria-current="page"] { color: var(--ink); }

.page-faq {
  background: var(--secondary);
}

.page-faq h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.faq-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.section-head {
  max-width: 48rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.section-head.is-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.section-head h2,
.home-hero-copy h1,
.page-hero h1 {
  text-wrap: balance;
}

.section-head h2 {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  line-height: 1.15;
}

.section-head p,
.muted {
  color: var(--ink-soft);
}

.section-head p {
  margin-top: 1.25rem;
  max-width: 42rem;
  line-height: 1.7;
}

.section-head.is-split > p {
  margin-top: 0;
  max-width: 60ch;
}

.product-rows {
  display: flex;
  flex-direction: column;
}

.product-row {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.product-row:last-child {
  border-bottom: 0;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-tile {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 1.05rem;
}

.product-row .category {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-row h3 {
  margin-top: 0;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.product-row .tagline {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: Inter, sans-serif;
}

.product-row .summary {
  margin-top: 1rem;
  max-width: 64ch;
  line-height: 1.7;
  color: var(--ink-soft);
}

.product-row img,
.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.audience-grid {
  display: grid;
  gap: 3rem 2rem;
}

.audience-card {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.audience-card h3 {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}

.audience-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

.quotes {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  padding: 1.75rem;
}

.quote-card svg {
  color: var(--brand);
}

.quote-card blockquote {
  margin-top: 1rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.7;
}

.quote-card figcaption {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.quote-card figcaption strong {
  display: block;
  font-size: 0.875rem;
}

.quote-card figcaption span {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.logo-bar {
  border-block: 1px solid var(--border);
  background: var(--secondary);
  padding: 3rem 0;
}

.logo-bar p {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.logo-bar-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.logo-bar-list span {
  font-family: Fraunces, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.cta-band {
  background: var(--brand-deep);
  color: #fff;
}

.cta-band .eyebrow {
  color: var(--brand-bright);
}

.cta-band h2 {
  margin-top: 0.75rem;
  max-width: 24ch;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: #fff;
}

.cta-band p {
  margin-top: 0.75rem;
  max-width: 56ch;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.cta-inner {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0;
}

.hub-footer {
  position: relative;
  z-index: 10;
  padding: 0 0 3.5rem;
}

.footer-panel {
  margin-top: 0;
  border-radius: 20px;
  padding: 2rem;
  background: #ffffff9e;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-grid p {
  margin-top: 1rem;
  max-width: 34ch;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.footer-grid h4 {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink-soft) 70%, transparent);
}

.footer-grid ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.footer-grid a {
  color: var(--ink-soft);
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--ink-soft) 70%, transparent);
}

.footer-meta nav {
  display: flex;
  gap: 1.25rem;
}

.footer-meta a:hover {
  color: var(--ink);
}

.products-list {
  display: grid;
  gap: 2.5rem;
  padding: 1rem 0 4rem;
}

.product-card {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.product-card:last-child {
  border-bottom: 0;
}

.product-card .audience {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.detail-hero {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

.chip {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.highlights {
  display: grid;
  gap: 1.25rem;
  padding: 1rem 0 3rem;
}

.highlights h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.highlight {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.4rem 1.45rem;
  background: #fff;
}

.highlight h3 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
}

.highlight p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.card-icon {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--secondary);
  color: var(--brand);
  font-size: 0.95rem;
  line-height: 1;
}

.strip-icon.text-tut { background: var(--tint-tut); }
.strip-icon.text-crm { background: var(--tint-crm); }
.strip-icon.text-adm { background: var(--tint-adm); }
.strip-icon.text-wrt { background: var(--tint-wrt); }

.audience-card:has(> .card-icon),
.highlight:has(> .card-icon),
.principle:has(> .card-icon) {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.75rem;
  row-gap: 0.35rem;
  align-items: center;
}

.audience-card:has(> .card-icon) > .card-icon,
.highlight:has(> .card-icon) > .card-icon,
.principle:has(> .card-icon) > .card-icon {
  grid-column: 1;
  grid-row: 1;
}

.audience-card:has(> .card-icon) > h3,
.highlight:has(> .card-icon) > h3,
.principle:has(> .card-icon) > h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.audience-card:has(> .card-icon) > p,
.highlight:has(> .card-icon) > p,
.principle:has(> .card-icon) > p {
  grid-column: 2;
  margin-top: 0;
}

.solution-card:has(> .card-icon),
.contact-card:has(> .card-icon),
.other-card:has(> .card-icon) {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.85rem;
  align-items: start;
}

.solution-card:has(> .card-icon) > .card-icon,
.contact-card:has(> .card-icon) > .card-icon,
.other-card:has(> .card-icon) > .card-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.solution-card:has(> .card-icon) > *:not(.card-icon),
.contact-card:has(> .card-icon) > *:not(.card-icon),
.other-card:has(> .card-icon) > *:not(.card-icon) {
  grid-column: 2;
}

.outcomes {
  background: var(--secondary);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 3rem;
}

.outcomes h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.outcomes li {
  position: relative;
  padding-left: 1.75rem;
  margin: 0.75rem 0;
  color: var(--ink-soft);
}

.outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--brand);
}

.other-products {
  padding: 1rem 0 4rem;
}

.other-products h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.other-grid {
  display: grid;
  gap: 1rem;
}

.other-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  background: #fff;
}

.other-card .cat {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.other-card h3 {
  margin-top: 0.15rem;
  font-size: 1.25rem;
}

.other-card p {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.solutions-grid {
  display: grid;
  gap: 1.25rem;
  padding: 0 0 4rem;
}

.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.solution-card .product-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card h2 {
  margin-top: 0.2rem;
  font-size: 1.5rem;
}

.solution-card p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.solution-card .text-link {
  margin-top: 1rem;
}

.principles {
  display: grid;
  gap: 1.25rem;
  padding: 0 0 3rem;
}

.principle {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.principle h3 {
  font-size: 1.25rem;
}

.principle p {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.about-stat strong {
  display: block;
  font-size: 1.75rem;
}

.about-stat span {
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 3rem;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  background: #fff;
}

.contact-card h2 {
  font-size: 1.5rem;
}

.contact-card p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
}

.support-grid {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 3rem;
}

.support-card h3 {
  font-size: 1.05rem;
  font-family: Inter, sans-serif;
}

.support-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.contact-form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 4rem;
}

.contact-form-panel h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-panel .intro {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-grid input,
.form-grid textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: #fff;
  color: var(--ink);
}

.form-grid textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--brand) 35%, transparent);
  border-color: var(--brand);
}

.full {
  grid-column: 1 / -1;
}

.legal-body {
  max-width: 48rem;
  padding-bottom: 4rem;
}

.legal-body h1,
.legal-body h2,
.legal-body h3 {
  margin: 1.75rem 0 0.75rem;
}

.legal-body h1 { font-size: 1.75rem; }
.legal-body h2 { font-size: 1.25rem; }
.legal-body h3 { font-size: 1.05rem; font-family: Inter, sans-serif; }

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.25rem;
}

.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body a { color: var(--brand); text-decoration: underline; }

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.blog-toolbar h1,
.blog-toolbar h3 {
  font-size: 2rem;
}

.blog-search {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.blog-search input {
  border: 0;
  padding: 0.65rem 0.85rem;
  min-width: 14rem;
  background: transparent;
}

.blog-search button {
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 0 1rem;
  cursor: pointer;
}

.careers-bg,
.blogger-card {
  background: #fff;
  border: 1px solid var(--border) !important;
}

#snackbar {
  visibility: hidden;
  min-width: 280px;
  background: var(--brand-deep);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 1rem;
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
}

#snackbar.show {
  visibility: visible;
}

.cookie-bar {
  display: none;
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  width: min(24rem, calc(100% - 2rem));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(23, 38, 58, 0.12);
  padding: 1.25rem;
}

.cookie-bar h4 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-bar p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cookie-bar a {
  color: var(--brand);
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(23, 38, 58, 0.35);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(20rem, 86vw);
  background: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-drawer-panel a {
  font-size: 1rem;
  color: var(--ink);
  padding: 0.4rem 0;
}

body.drawer-open {
  overflow: hidden;
}

.blogger-card {
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(23, 38, 58, 0.06);
}

.blogger-card-img,
.image-blog img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.careers-bg {
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.careers-bg a.btn,
.careers-bg .btn-outline-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #fff;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

#blogList .card-title,
#blogList .card-text {
  color: var(--ink) !important;
}

#blogList .color-white {
  color: var(--ink) !important;
}

@media (min-width: 640px) {
  .signin-link { display: inline-block; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hub-nav { display: flex; }
  .menu-toggle { display: none; }
  .home-hero-inner {
    min-height: 620px;
    padding: 10rem 0 5.5rem;
  }
  .page-hero:not(.is-product) .wrap {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: end;
  }
  .page-hero:not(.is-product) .eyebrow-dot {
    grid-column: 1;
    grid-row: 1;
  }
  .page-hero:not(.is-product) h1 {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    margin-top: 0.85rem;
  }
  .page-hero:not(.is-product) .lede {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    max-width: none;
  }
  .product-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-strip a {
    padding: 1.75rem 2rem 1.75rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
  .product-strip a:nth-child(2n) { border-right: 0; }
  .product-row,
  .product-card,
  .detail-hero {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: 5fr 7fr; }
  .audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 2rem; }
  .cta-inner { grid-template-columns: 8fr 4fr; align-items: center; }
  .cta-inner .inline-actions { justify-content: flex-end; margin-top: 0; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-panel { padding: 2.5rem; }
  .footer-meta { flex-direction: row; justify-content: space-between; align-items: center; }
  .solutions-grid,
  .other-grid,
  .principles,
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .about-stats,
  .support-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 2.75rem 0; }
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(5, 1fr); padding: 1.75rem 0; }
  .product-strip-grid { grid-template-columns: repeat(4, 1fr); }
  .product-strip a { padding-inline: 2rem; }
  .product-strip a:first-child { padding-left: 0; }
  .product-strip a:last-child { padding-right: 0; border-right: 0; }
  .product-row { grid-template-columns: 7fr 5fr; gap: 2rem; padding: 2.25rem 0; }
}
