:root {
  color-scheme: light;
  --ink: #111417;
  --ink-soft: #404852;
  --paper: #fbfcf8;
  --white: #ffffff;
  --mist: #eef3f0;
  --line: #d9e0dc;
  --night: #090d10;
  --night-2: #121918;
  --green: #7bd86d;
  --teal: #41c7b4;
  --coral: #ff7c5c;
  --gold: #d8b04c;
  --violet: #8b7dff;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(18, 25, 24, 0.13);
  --container: 1180px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
p { color: var(--ink-soft); margin: 0 0 1rem; }
h1, h2, h3 { color: var(--ink); margin: 0 0 1rem; line-height: 1.04; font-weight: 760; letter-spacing: 0; }
h1 { font-size: 3.65rem; max-width: 14ch; }
h2 { font-size: 3rem; max-width: 15ch; }
h3 { font-size: 1.35rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--green);
  color: var(--night);
  padding: .65rem .9rem;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.85rem max(1rem, calc((100vw - var(--container)) / 2));
  background: rgba(251, 252, 248, 0.92);
  border-bottom: 1px solid rgba(17, 20, 23, .08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 760; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 7px;
  color: var(--night);
  background: linear-gradient(135deg, var(--green), var(--teal) 55%, var(--gold));
  font-size: .82rem;
  font-weight: 850;
}
.brand-text { white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: .25rem; }
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: .55rem .82rem;
  border-radius: 7px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: .94rem;
}
.primary-nav a:hover, .primary-nav a:focus { background: var(--mist); color: var(--ink); }
.primary-nav .nav-cta { background: var(--ink); color: var(--white); }
.nav-toggle { display: none; }

.container, .section, .page-hero, .product-hero, .breadcrumbs, .article-detail, .final-cta {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}
.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: var(--space-5);
  align-items: center;
  padding: 3.25rem max(1rem, calc((100vw - var(--container)) / 2)) 2.5rem;
  overflow: hidden;
}
.hero-dark {
  color: var(--white);
  background:
    radial-gradient(80% 80% at 18% 18%, rgba(65, 199, 180, .24), transparent 52%),
    radial-gradient(65% 75% at 88% 36%, rgba(216, 176, 76, .17), transparent 54%),
    linear-gradient(145deg, var(--night), #10140f 52%, #11100e);
}
.hero-dark h1, .hero-dark p, .hero-dark .eyebrow { color: var(--white); }
.hero-subhead { max-width: 58rem; font-size: 1.08rem; opacity: .84; }
.eyebrow {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 .9rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--space-3); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .78rem 1rem;
  border-radius: 7px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 760;
  cursor: pointer;
}
.button-primary { background: var(--green); color: var(--night); }
.button-secondary { border-color: rgba(255,255,255,.26); color: inherit; background: rgba(255,255,255,.07); }
.section .button-secondary, .page-hero .button-secondary, .final-cta .button-secondary { border-color: var(--line); color: var(--ink); background: var(--white); }

.ecosystem-visual {
  position: relative;
  min-height: 26rem;
  display: grid;
  place-items: center;
}
.ecosystem-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.ecosystem-visual::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(123,216,109,.18);
  border-radius: 50%;
  transform: rotate(16deg);
}
.network-core, .network-node {
  position: absolute;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: .3rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(9,13,16,.64);
  box-shadow: 0 24px 80px rgba(0,0,0,.27);
  backdrop-filter: blur(14px);
  text-decoration: none;
}
.network-core { width: 11rem; aspect-ratio: 1.25; text-align: center; }
.network-core span, .network-node span {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--night);
  font-weight: 900;
}
.network-core strong, .network-node strong { color: var(--white); font-size: .9rem; }
.network-node { width: 10rem; min-height: 7rem; animation: floatNode 7s ease-in-out infinite; }
.node-1 { transform: translate(-9rem, -9rem); }
.node-2 { transform: translate(8rem, -8rem); animation-delay: -.7s; }
.node-3 { transform: translate(9rem, 5rem); animation-delay: -1.4s; }
.node-4 { transform: translate(-7rem, 8rem); animation-delay: -2.1s; }
.node-5 { transform: translate(-11rem, 1rem); animation-delay: -2.8s; }
@keyframes floatNode {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

.section { padding-block: var(--space-6); }
.section-heading { display: flex; justify-content: space-between; gap: var(--space-3); align-items: end; margin-bottom: var(--space-4); }
.section-heading p { max-width: 42rem; }
.section-heading.narrow { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.muted {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
  background: var(--mist);
}
.split-band {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: var(--space-5);
  border-block: 1px solid var(--line);
}
.split-band p { font-size: 1.08rem; }
.card-grid, .article-grid, .screenshot-grid, .industry-grid, .pillar-grid {
  display: grid;
  gap: 1rem;
}
.card-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card-grid.five { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.product-card, .simple-card, .article-card, .industry-card, .pillar-grid article, .featured-article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.15rem;
  box-shadow: 0 1px 0 rgba(17,20,23,.03);
}
.product-card { display: flex; flex-direction: column; gap: .85rem; }
.product-card p { flex: 1; }
.product-card-top { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.product-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  aspect-ratio: 1;
  border-radius: 7px;
  background: var(--night);
  color: var(--green);
  font-weight: 850;
  font-size: .82rem;
}
.product-industry {
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 720;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.chip-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .32rem .55rem;
  font-size: .78rem;
  color: var(--ink-soft);
  background: var(--paper);
}
.card-actions, .inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .8rem;
}
.card-actions a, .text-link, .inline-links a, .simple-list a {
  color: #156f63;
  font-weight: 760;
}

.pillar-grid { grid-template-columns: repeat(3, 1fr); }
.pillar-number { color: var(--coral); font-weight: 850; font-size: .85rem; }
.industry-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.industry-card span { color: var(--gold); font-weight: 850; }
.industry-card.future { border-style: dashed; }
.ai-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: linear-gradient(120deg, #111417, #172017 52%, #17130f);
}
.ai-section h2, .ai-section p { color: var(--white); }

.screenshot-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.screenshot-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.browser-bar {
  display: flex;
  gap: .35rem;
  align-items: center;
  height: 2rem;
  padding-inline: .8rem;
  background: #edf1ed;
  border-bottom: 1px solid var(--line);
}
.browser-bar span { width: .55rem; aspect-ratio: 1; border-radius: 50%; background: var(--coral); }
.browser-bar span:nth-child(2) { background: var(--gold); }
.browser-bar span:nth-child(3) { background: var(--teal); }
.screenshot-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.screenshot-pending {
  min-height: 18rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .35rem;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(65,199,180,.13), transparent),
    repeating-linear-gradient(45deg, #f6f8f4 0 10px, #edf2ee 10px 20px);
}
.screenshot-pending span { color: var(--ink-soft); }
figcaption { padding: .75rem .9rem; color: var(--ink-soft); font-size: .9rem; border-top: 1px solid var(--line); }

.built-by, .newsroom-preview { border-top: 1px solid var(--line); }
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-block: var(--space-6);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  color: var(--white);
  background: #080c0f;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 70px rgba(17,22,27,.14);
  overflow: hidden;
}
.final-cta h2, .final-cta p { color: var(--white); }
.final-cta h2 {
  max-width: 13ch;
  margin-bottom: 0;
}
.final-cta .eyebrow {
  color: #8fdcce;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem;
}

.page-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.page-hero h1 { max-width: 13ch; }
.page-hero p { max-width: 760px; font-size: 1.18rem; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: 1.5rem;
  color: var(--ink-soft);
  font-size: .9rem;
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: var(--space-5);
  align-items: center;
  padding-block: var(--space-5);
}
.product-hero h1 { font-size: 3.6rem; }
.notice {
  padding: 1rem;
  border-left: 4px solid var(--coral);
  background: #fff6f2;
  color: var(--ink);
}
.large-copy { max-width: 800px; font-size: 1.18rem; }
.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.simple-list { display: grid; gap: .75rem; align-content: start; }
.simple-list a { display: block; }
.check-list { padding-left: 1.2rem; color: var(--ink-soft); }
.check-list li { margin-bottom: .65rem; }

.newsroom-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: var(--space-4);
}
.filter-panel {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  display: grid;
  gap: .45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.filter-panel h2 { font-size: 1rem; }
.filter-panel a { padding: .45rem .5rem; border-radius: 6px; text-decoration: none; color: var(--ink-soft); font-weight: 700; }
.filter-panel a.active, .filter-panel a:hover { background: var(--mist); color: var(--ink); }
.search-form { display: grid; gap: .4rem; margin-top: 1rem; }
input, select, textarea {
  width: 100%;
  min-height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: .7rem .8rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
.featured-article { margin-bottom: 1rem; background: var(--night); }
.featured-article h2, .featured-article p, .featured-article .eyebrow { color: var(--white); }
.article-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.article-card time, .article-meta { color: var(--ink-soft); font-size: .9rem; }
.pagination { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.article-detail { max-width: 880px; padding-block: var(--space-5); }
.article-detail header { margin-bottom: var(--space-4); }
.article-detail h1 { max-width: 14ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.article-hero-image { border-radius: var(--radius); margin-bottom: var(--space-4); }
.prose { max-width: 820px; }
.prose h2, .prose h3 { margin-top: 2rem; max-width: 22ch; }
.prose p, .prose li { color: var(--ink-soft); }
.article-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

.lead-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: var(--space-5);
  align-items: start;
}
.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.lead-form label { display: grid; gap: .35rem; color: var(--ink); font-weight: 720; }
.honeypot {
  display: none;
}
.form-errors { color: #9c2415; background: #fff2ef; padding: .75rem; border-radius: var(--radius); }
.message-stack { padding-top: 1rem; }
.message { padding: .8rem 1rem; border-radius: var(--radius); background: var(--mist); color: var(--ink); }

.site-footer {
  padding: var(--space-5) max(1rem, calc((100vw - var(--container)) / 2));
  color: rgba(255,255,255,.78);
  background: var(--night);
}
.site-footer p, .site-footer h2, .site-footer a, .footer-bottom { color: rgba(255,255,255,.78); }
.site-footer h2 { font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: var(--space-3);
}
.footer-grid div { display: grid; align-content: start; gap: .45rem; }
.footer-grid a { text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,.12);
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  background: var(--white);
}
summary { cursor: pointer; font-weight: 760; }

@media (max-width: 920px) {
  h1 { font-size: 3.35rem; }
  h2 { font-size: 2.45rem; }
  h3 { font-size: 1.22rem; }
  .product-hero h1 { font-size: 3rem; }
  h1 { max-width: 100%; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    padding: .55rem .75rem;
    font-weight: 760;
  }
  .primary-nav {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .hero, .product-hero, .split-band, .lead-layout, .newsroom-layout, .two-column, .article-footer {
    grid-template-columns: 1fr;
  }
  .ecosystem-visual { min-height: 28rem; transform: scale(.86); }
  .pillar-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .filter-panel { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .product-hero h1 { font-size: 2.55rem; }
  .hero-subhead, .page-hero p, .large-copy { font-size: 1.05rem; }
  .hero { min-height: auto; }
  .ecosystem-visual {
    display: flex;
    gap: .5rem;
    align-items: center;
    min-height: 0;
    margin-top: 1rem;
    padding: .6rem;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius);
    transform: none;
  }
  .ecosystem-visual::before, .ecosystem-visual::after { display: none; }
  .network-ring { display: flex; flex-wrap: wrap; gap: .35rem; }
  .network-core, .network-node {
    position: static;
    width: auto;
    min-height: 0;
    aspect-ratio: auto;
    transform: none;
    animation: none;
    padding: .35rem;
  }
  .network-core strong, .network-node strong { display: none; }
  .network-core span, .network-node span { width: 2rem; font-size: .72rem; }
  .section, .page-hero, .product-hero { padding-block: var(--space-5); }
  .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .button { width: 100%; }
}

/* Design revamp: image-led corporate product system */
:root {
  --paper: #f7f8f4;
  --white: #ffffff;
  --mist: #edf1eb;
  --line: #d7ded7;
  --ink: #11161b;
  --ink-soft: #4c5662;
  --night: #080c0f;
  --night-2: #11191e;
  --green: #8be077;
  --teal: #38c4ad;
  --blue: #4977ff;
  --copper: #de7d54;
  --gold: #d4b65c;
  --shadow: 0 24px 70px rgba(16, 23, 27, .14);
  --shadow-strong: 0 36px 110px rgba(0, 0, 0, .32);
}

body { background: var(--paper); }
a { text-decoration: none; }
p { font-size: 1rem; line-height: 1.65; }
h1 { font-size: 3.35rem; max-width: 16ch; }
h2 { font-size: 2.35rem; max-width: 18ch; }
h3 { font-size: 1.2rem; }
.page-hero h1, .article-detail h1 { max-width: 18ch; }

.site-header {
  padding-block: .72rem;
  background: rgba(247, 248, 244, .86);
  box-shadow: 0 10px 30px rgba(17, 22, 27, .04);
}
.brand { gap: .8rem; }
.brand-mark {
  position: relative;
  width: 2.6rem;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.32), transparent 45%),
    conic-gradient(from 220deg, var(--teal), var(--green), var(--gold), var(--blue), var(--teal));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45), 0 10px 26px rgba(56,196,173,.28);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: .42rem;
  border: 1.5px solid rgba(8,12,15,.58);
  border-radius: 9px;
  transform: rotate(8deg);
}
.brand-mark span { position: relative; z-index: 1; color: var(--night); font-weight: 950; letter-spacing: 0; }
.brand-copy { display: grid; gap: .05rem; }
.brand-text { font-size: 1.05rem; line-height: 1; }
.brand-subtitle { color: var(--ink-soft); font-size: .68rem; font-weight: 760; text-transform: uppercase; letter-spacing: .12em; }
.primary-nav a { font-size: .9rem; color: #313942; }
.primary-nav .nav-cta { border-radius: 12px; background: var(--night); color: var(--white); box-shadow: 0 12px 28px rgba(8,12,15,.18); }

.hero {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 3rem;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}
.hero-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(56,196,173,.27), transparent 32rem),
    radial-gradient(circle at 76% 26%, rgba(73,119,255,.18), transparent 28rem),
    radial-gradient(circle at 82% 84%, rgba(212,182,92,.14), transparent 26rem),
    linear-gradient(140deg, #070a0d 0%, #10161b 52%, #11110d 100%);
}
.hero h1 { font-size: 3.25rem; max-width: 16ch; }
.hero-subhead { font-size: 1.1rem; max-width: 43rem; }
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}
.hero-proof-row span {
  padding: .46rem .68rem;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 760;
}
.button { border-radius: 12px; min-height: 2.85rem; padding-inline: 1.05rem; }
.button-primary { background: linear-gradient(135deg, var(--green), var(--teal)); box-shadow: 0 16px 36px rgba(56,196,173,.2); }

.hero-product-stage {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: center;
  min-width: 0;
  overflow: hidden;
  padding: .35rem;
}
.hero-browser {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow-strong);
  transform: rotate(-1.2deg);
}
.hero-browser img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}
.hero-browser-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  background: rgba(8,12,15,.88);
  color: var(--white);
}
.hero-browser-caption span { color: rgba(255,255,255,.72); font-size: .9rem; }
.hero-product-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .6rem;
}
.hero-product-map a {
  display: grid;
  gap: .22rem;
  min-width: 0;
  padding: .75rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.hero-product-map span {
  display: grid;
  place-items: center;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--night);
  font-size: .74rem;
  font-weight: 920;
}
.hero-product-map strong { font-size: .78rem; min-width: 0; }
.hero-product-map small { color: rgba(255,255,255,.62); min-width: 0; }

.section { padding-block: 4.75rem; }
.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.section-heading.centered h2 { max-width: 18ch; }
.section-heading.centered p { max-width: 680px; }
.section-dark {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
  background: linear-gradient(180deg, #0b1013, #121a1f);
}
.section-dark h2, .section-dark p { color: var(--white); }
.section-dark .eyebrow { color: var(--green); }

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}
.product-showcase-grid .product-card { grid-column: span 4; }
.product-showcase-grid .product-card:nth-child(1),
.product-showcase-grid .product-card:nth-child(2) { grid-column: span 6; }
.product-showcase-grid.compact .product-card { grid-column: span 6; }
.product-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(215,222,215,.82);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(17,22,27,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.section-dark .product-card {
  border-color: rgba(255,255,255,.12);
  background: #f8faf6;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 70px rgba(17,22,27,.14); border-color: rgba(56,196,173,.45); }
.product-card-media {
  display: block;
  overflow: hidden;
  background: #dfe7df;
}
.product-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  transition: transform .22s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.025); }
.product-card-placeholder {
  display: grid;
  place-items: center;
  min-height: 13rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--night), #1a2a28);
  font-size: 2rem;
  font-weight: 900;
}
.product-card-body { padding: 1rem 1rem 0; }
.product-card-top { margin-bottom: .8rem; }
.product-icon { border-radius: 11px; background: linear-gradient(135deg, var(--night), #18232b); }
.product-card h3 { font-size: 1.45rem; line-height: 1.05; margin-bottom: .55rem; }
.product-card h3 a, .article-card h3 a, .industry-feature-card, .industry-row, .solution-card a { text-decoration: none; }
.product-card p { margin: 0; color: var(--ink-soft); }
.product-card .chip-list { padding: 1rem; padding-bottom: 0; }
.product-card .card-actions { padding: 1rem; margin-top: auto; }
.card-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: .52rem .68rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink);
}
.card-actions a:last-child { background: var(--night); color: var(--white); }

.headquarters-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 1.4rem;
}
.headquarters-panel {
  padding: 2rem;
  border-radius: 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(139,224,119,.2), transparent 18rem),
    linear-gradient(135deg, var(--night), #172029);
  box-shadow: var(--shadow);
}
.headquarters-panel h2, .headquarters-panel p { color: var(--white); }
.capability-list {
  display: grid;
  gap: .8rem;
}
.capability-list article {
  display: grid;
  grid-template-columns: minmax(170px, .55fr) 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.54);
}
.capability-list strong { font-size: 1.04rem; }
.capability-list span { color: var(--ink-soft); }

.platform-section { background: var(--paper); }
.platform-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(17,22,27,.08);
}
.platform-flow article {
  padding: 1.55rem;
  border-right: 1px solid var(--line);
}
.platform-flow article:last-child { border-right: 0; }
.platform-flow h3 { font-size: 1.35rem; }

.industries-band {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
  background: #eef2ec;
}
.industry-list {
  display: grid;
  gap: .65rem;
}
.industry-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(17,22,27,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}
.industry-row span { font-size: 1.18rem; font-weight: 850; }
.industry-row p { margin: 0; }
.industry-row strong { color: #146b60; }

.page-hero {
  padding-top: 4.25rem;
  padding-bottom: 3.25rem;
}
.page-hero-compact h1 { font-size: 3.1rem; max-width: 16ch; }
.page-hero-compact { min-height: 0; }
.industry-feature-grid {
  display: grid;
  gap: 1rem;
}
.industry-feature-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17,22,27,.07);
}
.industry-feature-card h2 { font-size: 1.75rem; max-width: none; }
.industry-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(17,22,27,.14);
}
.industry-feature-card strong { color: #146b60; }
.industry-detail-hero {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr);
  gap: 2rem;
  align-items: center;
  padding-block: 3rem;
}
.industry-detail-hero h1 { font-size: 3rem; max-width: 17ch; }
.detail-hero-visual { display: block; }

.screenshot-link { display: block; color: inherit; }
.screenshot-gallery article h3 { margin-bottom: .8rem; }
.screenshot-frame { border-radius: 18px; box-shadow: 0 20px 70px rgba(17,22,27,.14); }

.newsroom-layout {
  grid-template-columns: 230px minmax(0, 1fr);
}
.filter-panel {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(17,22,27,.06);
}
.featured-article {
  margin-bottom: 1.1rem;
  padding: 0;
  border: 0;
  background: transparent;
}
.featured-article .article-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
  background: var(--night);
  color: var(--white);
}
.featured-article .article-card .article-card-media { order: 2; }
.featured-article .article-card h3,
.featured-article .article-card p,
.featured-article .article-card time,
.featured-article .article-card .eyebrow { color: var(--white); }
.featured-article .article-card h3 { font-size: 2rem; }
.article-grid { gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.article-card {
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(17,22,27,.07);
}
.article-card-media {
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #11191e, #24352f);
}
.article-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}
.article-card-media span {
  display: grid;
  place-items: center;
  min-height: 9rem;
  color: var(--white);
  font-weight: 850;
}
.article-card > .eyebrow,
.article-card > h3,
.article-card > p,
.article-card > time {
  display: block;
  padding-inline: 1rem;
}
.article-card > .eyebrow { padding-top: 1rem; }
.article-card h3 { font-size: 1.28rem; line-height: 1.1; }
.article-card p { min-height: 5.1rem; }
.article-card time { padding-bottom: 1rem; }
.article-detail-rich { max-width: 980px; }
.article-detail-rich h1 { font-size: 3rem; }
.product-hero h1 { font-size: 3rem; }
.article-hero-fallback {
  display: block;
  margin-bottom: 2rem;
}
.prose { font-size: 1.05rem; }
.prose h2 { font-size: 1.75rem; max-width: 28ch; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.solution-card {
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(56,196,173,.08), transparent),
    var(--white);
}
.solution-card-media {
  display: block;
  overflow: hidden;
  background: var(--mist);
}
.solution-card-media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: top;
}
.solution-card > .eyebrow,
.solution-card > h3,
.solution-card > p {
  display: block;
  padding-inline: 1.25rem;
}
.solution-card > .eyebrow { padding-top: 1.15rem; }
.solution-card > p { padding-bottom: 1.25rem; }
.page-detail-hero {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding-block: 3rem;
}
.page-detail-hero h1 { font-size: 3rem; max-width: 18ch; }
.page-detail-hero p { max-width: 720px; font-size: 1.08rem; }

@media (max-width: 980px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  .hero, .headquarters-section, .industry-detail-hero, .industry-feature-card, .featured-article .article-card, .page-detail-hero {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 3rem; }
  .hero-product-map { grid-template-columns: repeat(2, 1fr); }
  .product-showcase-grid, .solution-grid { grid-template-columns: 1fr; }
  .product-showcase-grid .product-card,
  .product-showcase-grid .product-card:nth-child(1),
  .product-showcase-grid .product-card:nth-child(2),
  .product-showcase-grid.compact .product-card { grid-column: auto; }
  .platform-flow { grid-template-columns: 1fr; }
  .platform-flow article { border-right: 0; border-bottom: 1px solid var(--line); }
  .platform-flow article:last-child { border-bottom: 0; }
  .industry-row { grid-template-columns: 1fr; }
  .capability-list article { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero { padding-top: 2.4rem; padding-bottom: 2.4rem; }
  .hero h1, .page-hero-compact h1, .industry-detail-hero h1, .article-detail-rich h1, .page-detail-hero h1 { font-size: 2.25rem; }
  .hero-product-map { grid-template-columns: 1fr; }
  .hero-product-map a { grid-template-columns: auto 1fr; align-items: center; }
  .hero-product-map small { grid-column: 2; }
  .section { padding-block: 3.25rem; }
  .page-hero { padding-block: 3rem 2rem; }
  .product-card h3 { font-size: 1.3rem; }
  .article-card p { min-height: 0; }
}

/* Premium product-company pass */
.brand { gap: .78rem; }
.brand-mark {
  position: relative;
  overflow: hidden;
  width: 2.55rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 48%),
    linear-gradient(135deg, #38c4ad 0%, #7bd86d 54%, #d8b04c 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 10px 28px rgba(12,18,18,.12);
}
.brand-mark span {
  position: absolute;
  inset: 9px;
  display: block;
  color: transparent;
  font-size: 0;
}
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(8,13,16,.9);
  border-radius: 2px;
}
.brand-mark span::before {
  inset: 0 7px 7px 0;
  border-right: 0;
}
.brand-mark span::after {
  inset: 7px 0 0 7px;
  border-left: 0;
}
.brand-copy { display: grid; gap: .02rem; }
.brand-text { font-weight: 850; letter-spacing: 0; }
.brand-subtitle { color: #63706b; font-size: .72rem; font-weight: 720; text-transform: uppercase; letter-spacing: .08em; }

.hero-dark {
  min-height: calc(100vh - 4.25rem);
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
  background:
    linear-gradient(90deg, rgba(7,10,12,.96) 0%, rgba(7,10,12,.88) 48%, rgba(7,10,12,.52) 100%),
    radial-gradient(70% 90% at 88% 24%, rgba(65,199,180,.22), transparent 58%),
    #070a0c;
}
.hero h1 {
  max-width: 12.5ch;
  font-size: 4rem;
  font-weight: 840;
}
.hero-subhead { max-width: 44rem; font-size: 1.14rem; }
.hero-proof-row span {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
}
.hero-product-stage {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
}
.hero-stage-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: .72;
  filter: saturate(1.04) contrast(1.04);
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}
.hero-browser,
.hero-product-map {
  position: relative;
  z-index: 1;
}
.hero-browser {
  border-radius: 8px;
  border-color: rgba(255,255,255,.16);
  background: rgba(245,248,244,.96);
  box-shadow: 0 26px 110px rgba(0,0,0,.42);
}
.hero-browser-caption { border-radius: 0 0 8px 8px; }
.hero-product-map {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}
.hero-product-map a {
  display: grid;
  grid-template-columns: 1fr;
  gap: .08rem;
  min-height: 4.35rem;
  padding: .82rem .9rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,15,18,.68);
  backdrop-filter: blur(18px);
}
.hero-product-map a:hover,
.hero-product-map a:focus { border-color: rgba(123,216,109,.6); background: rgba(16,24,25,.82); }
.hero-product-map strong { font-size: .9rem; color: var(--white); }
.hero-product-map small { grid-column: auto; color: rgba(255,255,255,.64); }

.product-network-intro {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(380px, 1.28fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}
.product-network-intro h2 {
  max-width: 13ch;
  color: var(--white);
}
.product-network-intro p { color: rgba(255,255,255,.72); }
.product-network-intro figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 26px 100px rgba(0,0,0,.32);
}
.product-network-intro img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.product-showcase-grid { gap: 1.35rem; }
.product-card,
.article-card,
.industry-feature-card,
.solution-card,
.featured-article .article-card,
.platform-flow,
.headquarters-panel,
.filter-panel {
  border-radius: 8px;
}
.product-card {
  min-height: 100%;
  border: 1px solid rgba(17,22,27,.1);
  background: #fff;
  box-shadow: 0 18px 56px rgba(17,22,27,.09);
}
.section-dark .product-card { background: #f7f9f4; }
.product-card-media { background: #0a0f12; }
.product-card-media img { aspect-ratio: 16 / 10; }
.product-card-placeholder {
  min-height: 17rem;
  background:
    linear-gradient(135deg, rgba(65,199,180,.24), transparent),
    linear-gradient(135deg, #0a0f12, #202822);
  font-size: .9rem;
  letter-spacing: .02em;
}
.product-card-body { padding: 1.15rem 1.2rem 0; }
.product-card-top { justify-content: flex-start; margin-bottom: .75rem; }
.product-industry {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.8rem;
  padding: .28rem .58rem;
  border: 1px solid rgba(20,107,96,.18);
  border-radius: 999px;
  background: rgba(65,199,180,.09);
  color: #146b60;
  font-size: .72rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-card h3 { font-size: 1.5rem; line-height: 1.06; }
.product-card h3 a,
.article-card h3 a { text-decoration: none; }
.product-card .chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 1.05rem 1.2rem 0;
}
.product-card .chip-list li {
  border-color: rgba(17,22,27,.1);
  background: #f5f7f2;
}
.product-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.1rem 1.2rem 1.2rem;
}
.card-actions a {
  border-radius: 7px;
  text-decoration: none;
}

.headquarters-section {
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  align-items: stretch;
}
.headquarters-panel {
  display: grid;
  align-content: end;
  min-height: 28rem;
  padding: 2.2rem;
  background:
    linear-gradient(180deg, rgba(7,10,12,.12), rgba(7,10,12,.88)),
    url("/static/img/generated/software-headquarters-office.webp") center / cover no-repeat;
}
.capability-list article {
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,22,27,.06);
}

.platform-flow {
  border: 0;
  box-shadow: 0 18px 70px rgba(17,22,27,.08);
}
.platform-flow article {
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(65,199,180,.08), transparent 42%),
    #fff;
}
.platform-flow h3 { font-size: 1.45rem; max-width: 16ch; }

.immersive-split {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(440px, 1.25fr);
  gap: 2rem;
  align-items: center;
}
.immersive-split figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(17,22,27,.14);
}
.immersive-split img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-surfaces {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
  background: #f4f6f1;
}
.product-surfaces .section-heading h2 { max-width: 19ch; }
.screenshot-gallery {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.2rem;
}
.screenshot-gallery article h3 { font-size: 1.12rem; }
.screenshot-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(17,22,27,.1);
}

.media-page-hero {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1.28fr);
  gap: 2rem;
  align-items: end;
}
.media-page-hero h1 { max-width: 15ch; }
.media-page-hero img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 88px rgba(17,22,27,.13);
}

.contact-hero {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1.28fr);
  gap: 2rem;
  align-items: end;
  padding: 3.4rem 0 2.3rem;
}
.contact-hero h1 {
  max-width: 12ch;
  font-size: 3.35rem;
  font-weight: 840;
}
.contact-hero p { max-width: 42rem; font-size: 1.08rem; }
.contact-hero img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(17,22,27,.14);
}
.contact-workspace {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 1.4rem;
  align-items: stretch;
}
.contact-intel,
.contact-form-panel {
  border: 1px solid rgba(17,22,27,.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(17,22,27,.07);
}
.contact-intel {
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: 2rem;
}
.contact-intel h2 { max-width: 14ch; font-size: 2.55rem; }
.contact-methods {
  display: grid;
  gap: .7rem;
  margin-top: .5rem;
}
.contact-methods a,
.contact-methods address {
  display: grid;
  gap: .2rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(17,22,27,.09);
  border-radius: 8px;
  background: #f7f9f4;
  text-decoration: none;
  font-style: normal;
}
.contact-methods span,
.contact-routing span {
  color: #63706b;
  font-size: .78rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-methods strong { color: var(--ink); font-size: 1.08rem; }
.contact-routing {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: auto;
}
.contact-routing span {
  padding: .45rem .58rem;
  border-radius: 999px;
  background: rgba(65,199,180,.1);
  color: #146b60;
}
.contact-form-panel {
  padding: 1.2rem;
}
.contact-form-panel form,
.lead-form {
  display: grid;
  gap: 1rem;
}
.lead-form label { font-weight: 760; color: var(--ink); }
.lead-form input,
.lead-form textarea,
.lead-form select,
.contact-form-panel input,
.contact-form-panel textarea,
.contact-form-panel select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(17,22,27,.14);
  border-radius: 7px;
  background: #fbfcf8;
  color: var(--ink);
  font: inherit;
}
.lead-form textarea,
.contact-form-panel textarea { min-height: 9rem; resize: vertical; }

.newsroom-layout { grid-template-columns: 250px minmax(0, 1fr); }
.featured-article .article-card {
  border-radius: 8px;
  background: #080c0f;
}
.article-card { border: 1px solid rgba(17,22,27,.08); }
.article-card-media img { aspect-ratio: 16 / 8.5; }
.article-card > .eyebrow,
.article-card > h3,
.article-card > p,
.article-card > time { padding-inline: 1.15rem; }
.article-card h3 { font-size: 1.36rem; }
.featured-article .article-card h3 { font-size: 2.25rem; max-width: 13ch; }
.article-detail-rich {
  max-width: 1040px;
  padding-bottom: 3rem;
}
.article-detail-rich header {
  display: grid;
  gap: .65rem;
  max-width: 900px;
  margin-inline: auto;
  padding-top: 2rem;
}
.article-detail-rich h1 {
  max-width: 16ch;
  font-size: 3rem;
}
.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 24px 86px rgba(17,22,27,.14);
}
.prose {
  max-width: 760px;
  margin-inline: auto;
}
.prose p { margin-bottom: 1.15rem; }
.prose h2 {
  max-width: 20ch;
  margin-top: 2.2rem;
  font-size: 1.95rem;
}

@media (max-width: 980px) {
  .hero-dark { min-height: 0; }
  .hero-stage-photo { width: 100%; height: 72%; inset: -1rem 0 auto 0; }
  .product-network-intro,
  .immersive-split,
  .media-page-hero,
  .contact-hero,
  .headquarters-section,
  .contact-workspace {
    grid-template-columns: 1fr;
  }
  .capability-list { min-width: 0; }
  .contact-hero h1 { font-size: 2.8rem; }
  .product-network-intro img,
  .media-page-hero img,
  .contact-hero img { aspect-ratio: 16 / 9; }
}

@media (max-width: 620px) {
  .hero h1,
  .contact-hero h1,
  .article-detail-rich h1 { font-size: 2.35rem; }
  .hero-product-map a { grid-template-columns: 1fr; }
  .hero-product-map small { grid-column: auto; }
  .product-network-intro,
  .immersive-split,
  .contact-workspace { gap: 1rem; }
  .screenshot-gallery { grid-template-columns: 1fr; }
  .contact-intel,
  .contact-form-panel { padding: 1rem; }
  .featured-article .article-card h3 { font-size: 1.55rem; }
}

/* Fix featured newsroom story composition */
.featured-article {
  margin-bottom: 1.35rem;
}
.featured-article .article-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "media eyebrow"
    "media title"
    "media excerpt"
    "media date";
  gap: 0 2rem;
  align-items: start;
  min-height: 0;
  padding: 1rem;
  border: 0;
  border-radius: 8px;
  background: #080c0f;
  color: var(--white);
  box-shadow: 0 22px 70px rgba(17,22,27,.16);
}
.featured-article .article-card .article-card-media {
  grid-area: media;
  order: 0;
  height: 100%;
  min-height: 23rem;
  border-radius: 6px;
}
.featured-article .article-card .article-card-media img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  aspect-ratio: auto;
  object-fit: cover;
}
.featured-article .article-card > .eyebrow {
  grid-area: eyebrow;
  padding: 1.25rem 1.25rem .15rem 0;
  color: var(--green);
}
.featured-article .article-card > h3 {
  grid-area: title;
  max-width: 16ch;
  margin: 0;
  padding: .1rem 1.25rem 0 0;
  color: var(--white);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.02;
}
.featured-article .article-card > p {
  grid-area: excerpt;
  max-width: 48rem;
  min-height: 0;
  margin: 0;
  padding: 1rem 1.25rem 0 0;
  color: rgba(255,255,255,.76);
  font-size: 1.02rem;
}
.featured-article .article-card > time {
  grid-area: date;
  align-self: end;
  padding: 1.4rem 1.25rem 1rem 0;
  color: rgba(255,255,255,.64);
}

@media (max-width: 980px) {
  .final-cta {
    grid-template-columns: 1fr;
  }
  .final-cta-actions {
    justify-content: flex-start;
  }
  .newsroom-layout {
    grid-template-columns: 1fr;
  }
  .filter-panel {
    position: static;
  }
  .featured-article .article-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "eyebrow"
      "title"
      "excerpt"
      "date";
    gap: 0;
  }
  .featured-article .article-card .article-card-media,
  .featured-article .article-card .article-card-media img {
    min-height: 16rem;
  }
  .featured-article .article-card > .eyebrow,
  .featured-article .article-card > h3,
  .featured-article .article-card > p,
  .featured-article .article-card > time {
    padding-inline: .65rem;
  }
  .featured-article .article-card > h3 {
    font-size: 1.8rem;
    max-width: 19ch;
  }
}

/* Brand mark simplification */
.brand-mark {
  position: static;
  width: auto;
  min-width: 2.25rem;
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.brand-mark span {
  position: static;
  inset: auto;
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.brand-mark span::before,
.brand-mark span::after {
  content: none;
}
.footer-brand .brand-mark {
  color: var(--white);
}

/* Product network card polish */
.brand-text {
  font-size: 1.21rem;
  line-height: 1;
}
.brand-subtitle {
  font-size: .83rem;
  line-height: 1;
}

.product-network-grid,
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.product-showcase-grid .product-card,
.product-showcase-grid .product-card:nth-child(1),
.product-showcase-grid .product-card:nth-child(2),
.product-showcase-grid.compact .product-card {
  grid-column: auto;
}
.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 0;
  min-width: 0;
  border-radius: 10px;
  border-color: rgba(17,22,27,.12);
  background: #fff;
  box-shadow: 0 16px 46px rgba(17,22,27,.08);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 62px rgba(17,22,27,.13);
}
.product-card-media {
  border-bottom: 1px solid rgba(17,22,27,.08);
}
.product-card-media img {
  aspect-ratio: 16 / 8.8;
}
.product-card-body {
  padding: 1.25rem 1.3rem 0;
}
.product-card-top {
  margin-bottom: .85rem;
}
.product-card h3 {
  margin-bottom: .55rem;
  font-size: 1.58rem;
}
.product-card p {
  min-height: 3.2rem;
  font-size: .98rem;
}
.product-card .chip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .48rem;
  padding: 1.15rem 1.3rem 0;
}
.product-card .chip-list li {
  display: flex;
  align-items: center;
  min-height: 2.25rem;
  padding: .45rem .58rem;
  border-radius: 7px;
  background: #f4f7f2;
  font-size: .82rem;
  line-height: 1.2;
}
.product-card .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  margin-top: 1.15rem;
  padding: 1rem 1.3rem 1.3rem;
  border-top: 1px solid rgba(17,22,27,.08);
}
.product-card .card-actions a {
  justify-content: center;
  min-height: 2.55rem;
  padding-inline: .7rem;
  border-radius: 7px;
  font-size: .88rem;
}

.legal-section {
  padding-top: 0;
}
.legal-content {
  display: grid;
  gap: 1rem;
  max-width: 880px;
}
.legal-content article {
  padding-block: 1.35rem;
  border-top: 1px solid rgba(17,22,27,.12);
}
.legal-content h2 {
  margin-bottom: .55rem;
  font-size: 1.35rem;
}
.legal-content p {
  max-width: 72ch;
  color: var(--muted);
  font-size: 1.02rem;
}

@media (max-width: 1100px) {
  .product-network-grid,
  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .product-network-grid,
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }
  .product-card .chip-list,
  .product-card .card-actions {
    grid-template-columns: 1fr;
  }
}
