:root {
  color-scheme: light;
  --paper: #ffffff;
  --canvas: #f7f9f9;
  --ink: #152428;
  --ink-soft: #34474c;
  --muted: #68787c;
  --line: #e3e9e8;
  --line-strong: #cfdad8;
  --brand: #346673;
  --brand-strong: #244f59;
  --brand-deep: #173a42;
  --brand-soft: #edf5f5;
  --brand-pale: #f5f9f9;
  --green: #16834b;
  --green-soft: #eef8f2;
  --shadow-sm: 0 8px 24px rgba(21, 36, 40, 0.07);
  --shadow-lg: 0 30px 70px rgba(21, 36, 40, 0.14);
  --radius: 6px;
  --content: 1180px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
img, svg { display: block; }
button, input, textarea { font: inherit; letter-spacing: 0; }

button, a, input, textarea {
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease, opacity 160ms ease;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(52, 102, 115, 0.18);
  outline-offset: 3px;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.8vw, 3.65rem);
  line-height: 1.04;
}

h3 { line-height: 1.2; }

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px 24px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
}

.site-header.is-scrolled {
  position: fixed;
  top: 14px;
  right: max(24px, calc((100vw - var(--content) - 100px) / 2));
  left: max(24px, calc((100vw - var(--content) - 100px) / 2));
  width: auto;
  max-width: none;
  margin-inline: 0;
  min-height: 62px;
  padding: 8px 8px 8px 16px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  isolation: isolate;
  background: transparent;
  border-color: transparent;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 31px;
  border-bottom-right-radius: 31px;
  overflow: visible;
  transform: translateY(calc(-100% - 24px));
}

.site-header.is-scrolled.is-animated {
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(207, 218, 216, 0.9);
  border-radius: 8px 31px 31px 8px;
  box-shadow: 0 12px 34px rgba(21, 36, 40, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.site-header.is-scrolled.is-visible {
  transform: translateY(0);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand-lockup span { line-height: 1; }

.site-header .brand-lockup span {
  max-width: 160px;
  overflow: hidden;
  opacity: 1;
}

.site-header .brand-lockup {
  gap: 12px;
  font-size: 1.12rem;
}

.site-header .brand-lockup img,
.site-header.is-scrolled .brand-lockup img {
  width: 40px;
  height: 40px;
}

.site-header.is-scrolled .brand-lockup span {
  max-width: 0;
  opacity: 0;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.main-nav a,
.main-nav button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 0;
  color: var(--brand);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: calc(0.91rem + 2px);
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav button:hover,
.main-nav a.is-active { color: var(--brand-strong); }

.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.sign-in-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 6px;
  color: var(--brand);
  font-size: calc(0.91rem + 2px);
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
}

.sign-in-link::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 3px;
  left: 6px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.sign-in-link:hover { color: var(--brand-strong); }
.sign-in-link:hover::after { transform: scaleX(1); }

.menu-toggle { display: none; }

.button, .icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.button {
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 760;
  white-space: nowrap;
}

.button svg { width: 18px; height: 18px; }

.button.primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(52, 102, 115, 0.2);
}

.button.primary:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
}

.button.light {
  color: var(--brand-strong);
  background: #fff;
}

.button.light:hover { background: var(--brand-soft); }

.button.ghost {
  color: var(--brand-strong);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.button.ghost:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.button.text-button {
  min-height: 44px;
  padding-inline: 20px;
  color: var(--brand-strong);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.button.text-button:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-soft);
}

.button.nav-cta,
.button.sign-in-cta {
  min-height: 40px;
  padding: 9px 15px;
  color: #fff;
  background: var(--brand);
  box-shadow: none;
}

.button.nav-cta:hover,
.button.sign-in-cta:hover { background: var(--brand-strong); }

.button.sign-in-cta { display: none; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(126px, calc(9vw + 50px), 176px) max(24px, calc((100vw - var(--content)) / 2)) clamp(70px, 8vw, 112px);
  background:
    radial-gradient(circle at 83% 25%, rgba(52, 102, 115, 0.09), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f8fbfb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: var(--brand);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
}

.hero-content { min-width: 0; }
.hero h1 {
  max-width: 520px;
  font-size: clamp(3rem, 4.7vw, 4.65rem);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.4vw, 1.23rem);
  line-height: 1.62;
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero-visual {
  position: relative;
  width: calc(100% + clamp(0px, calc((100vw - var(--content)) / 2 - 38px), 120px));
  min-width: 0;
  overflow: visible;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  box-shadow: var(--shadow-lg);
  transform: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  background: var(--brand-soft);
  border: 1px solid #d8e7e7;
  border-radius: 7px;
}

.hero-carousel-viewport {
  position: relative;
  aspect-ratio: 1800 / 1126;
  overflow: hidden;
  background: var(--brand-pale);
  border-radius: 7px 7px 0 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 650ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 38px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  border-radius: 0 0 7px 7px;
}

.hero-carousel-controls button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.hero-carousel-controls button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: #aebcba;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, background-color 180ms ease;
}

.hero-carousel-controls button:hover::before { background: var(--brand); }
.hero-carousel-controls button.is-active::before { width: 17px; background: var(--brand); }

@media (min-width: 1600px) {
  .hero-visual {
    width: calc(100% + clamp(192px, 12vw, 260px));
  }
}

@media (min-width: 1800px) {
  .hero-visual {
    width: calc(100% + clamp(288px, 16vw, 340px));
  }
}

.signal-band {
  position: relative;
  z-index: 4;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2)) clamp(58px, 7vw, 86px);
  background: linear-gradient(180deg, #f8fbfb 0%, #fafcfc 44%, #fff 100%);
}

.signal-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--brand);
}

.signal-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 2.2fr);
  gap: clamp(30px, 4vw, 60px);
  max-width: var(--content);
  margin: -42px auto 0;
  padding: clamp(32px, 4vw, 48px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 96% 0%, rgba(126, 189, 199, 0.19), transparent 32%),
    linear-gradient(135deg, var(--brand-deep), #214d57 72%, #285b66);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(21, 36, 40, 0.2);
}

.signal-strip::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -118px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.signal-heading {
  position: relative;
  z-index: 1;
  align-self: center;
}

.signal-heading .eyebrow {
  margin-bottom: 12px;
  color: #9fcbd1;
}

.signal-heading h2 {
  max-width: 330px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.signal-heading > p:last-child {
  max-width: 310px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.signal-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 21px;
  min-width: 0;
  padding: 2px clamp(20px, 2.5vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #b8e0e4;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
}

.signal-icon svg { width: 22px; height: 22px; }

.signal-item > div:last-child {
  display: grid;
  gap: 7px;
}

.signal-item strong {
  color: #fff;
  font-size: 0.97rem;
  line-height: 1.3;
}

.signal-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.8rem;
  line-height: 1.55;
}

.section {
  padding: clamp(72px, 9vw, 120px) max(24px, calc((100vw - var(--content)) / 2));
  background: #fff;
}

.section.alt {
  background: var(--canvas);
  border-block: 1px solid var(--line);
}

.section.dark { color: #fff; background: var(--brand-strong); }

.section-heading {
  min-width: 0;
  max-width: 740px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.align-left { margin-inline: 0; text-align: left; }

.section-heading p,
.lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.dark h2, .dark .section-heading p { color: #fff; }

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: var(--content);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.role-card {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 410px;
  padding: 34px;
  background: transparent;
  border-right: 1px solid var(--line);
}

.role-card:last-child { border-right: 0; }

.role-icon, .mini-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 5px;
}

.role-icon svg, .mini-icon svg { width: 23px; height: 23px; }

.role-card h3,
.feature-card h3,
.pricing-card h3,
.faq-card h3 {
  margin-bottom: 9px;
  font-size: 1.24rem;
}

.role-card p,
.feature-card p,
.pricing-card p,
.faq-card p { color: var(--muted); }

.value-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}

.value-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 1px;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--green-soft);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
}

.workflow > *, .split-section > *, .role-detail > *, .faq-layout > * { min-width: 0; }

.workflow-copy {
  padding-left: 28px;
  border-left: 4px solid var(--brand);
}

.workflow-copy h2 { max-width: 480px; }

.workflow-steps {
  display: grid;
  counter-reset: step;
}

.workflow-step {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 98px;
  padding: 2px 0 30px 64px;
  background: transparent;
}

.workflow-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 820;
}

.workflow-step::after {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 6px;
  left: 19px;
  width: 2px;
  background: #cbdedd;
}

.workflow-step:last-child { min-height: auto; padding-bottom: 0; }
.workflow-step:last-child::after { display: none; }
.workflow-step strong { color: var(--ink); font-size: 1.05rem; }
.workflow-step span { max-width: 600px; color: var(--muted); line-height: 1.55; }

.product-showcase-section {
  overflow: hidden;
  padding-inline: max(24px, calc((100vw - 1400px) / 2));
}

.split-section.product-showcase {
  grid-template-columns: 1fr;
  gap: clamp(42px, 5vw, 68px);
  max-width: 1400px;
}

.product-showcase-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.65fr);
  grid-template-rows: auto auto;
  column-gap: clamp(54px, 8vw, 112px);
  align-items: end;
  width: min(1180px, 100%);
  max-width: none;
  justify-self: center;
}

.product-showcase-copy .eyebrow { grid-column: 1; grid-row: 1; }

.product-showcase-copy h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.15vw, 3.15rem);
  line-height: 1.08;
}

.product-showcase-copy .lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 460px;
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.7;
}

.screen-stack {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 0;
  padding-bottom: clamp(40px, 4.4vw, 62px);
  justify-self: stretch;
}

.screen-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.screen-frame img { display: block; width: 100%; height: auto; }
.screen-frame.main {
  width: calc(100% - clamp(22px, 3vw, 48px));
  border-radius: 8px;
  box-shadow: 0 34px 84px rgba(21, 36, 40, 0.16);
}

.screen-frame.mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(180px, 17.5%, 245px);
  border: 6px solid #fff;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(21, 36, 40, 0.22);
}

.proof-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: var(--content);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.proof-card, .feature-card {
  padding: 28px 30px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-card:nth-child(3n), .feature-card:nth-child(3n) { border-right: 0; }

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.04rem;
}

.proof-card p { margin: 0; color: var(--muted); }

.switch-section { background: #fff; }

.switch-heading {
  max-width: var(--content);
  margin: 0 auto clamp(54px, 7vw, 78px);
}

.switch-heading > div { max-width: 830px; }
.switch-heading h2 { max-width: 790px; margin-bottom: 26px; }
.switch-heading h2 span { color: var(--brand); }

.switch-intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--content);
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.switch-item {
  min-width: 0;
  padding: 31px clamp(28px, 3vw, 45px) 5px;
  border-right: 1px solid var(--line);
}

.switch-item:first-child { padding-left: 5px; }
.switch-item:last-child { padding-right: 5px; border-right: 0; }

.switch-item > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.35;
}

.switch-item > p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.feature-card .mini-icon { margin-bottom: 24px; }

.feature-catalog-control {
  display: flex;
  justify-content: center;
  max-width: var(--content);
  margin: 48px auto 0;
}

.feature-catalog-toggle svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 280ms ease;
}

.feature-catalog-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.feature-catalog-reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease, visibility 0s linear 520ms;
}

.feature-catalog-reveal.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition: grid-template-rows 620ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease;
}

.feature-catalog-reveal > .feature-catalog-section {
  min-height: 0;
  overflow: hidden;
  padding-block: 0;
  border-block-width: 0;
  transition: padding 520ms cubic-bezier(0.22, 1, 0.36, 1), border-width 0s linear 520ms;
}

.feature-catalog-reveal.is-open > .feature-catalog-section {
  padding-block: clamp(72px, 9vw, 120px);
  border-block-width: 1px;
  transition: padding 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(36px, 8vw, 108px);
  align-items: end;
  max-width: var(--content);
  margin: 0 auto 48px;
}

.catalog-intro h2 { max-width: 680px; margin-bottom: 0; }
.catalog-intro .lead { margin: 0; }

.feature-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content);
  margin: 0 auto;
}

.catalog-group {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 36, 40, 0.045);
}

.catalog-group header {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  padding: 26px 28px 23px;
  background: linear-gradient(135deg, #f9fbfb, var(--brand-pale));
  border-bottom: 1px solid var(--line);
}

.catalog-group header > .catalog-icon {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--brand-strong);
  background: var(--brand-soft);
  border: 1px solid #d6e5e4;
  border-radius: 6px;
}

.catalog-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-group h3 { margin: 1px 0 5px; color: var(--ink); font-size: 1.08rem; }
.catalog-group header p { margin: 0; color: var(--muted); font-size: 0.82rem; }

.catalog-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-group li {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 15px 24px 15px 52px;
  border-bottom: 1px solid var(--line);
}

.catalog-group li:last-child { border-bottom: 0; }

.catalog-group li::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 27px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.catalog-group li strong { color: var(--ink); font-size: 0.86rem; line-height: 1.4; }
.catalog-group li small { color: var(--muted); font-size: 0.76rem; line-height: 1.55; }

.catalog-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: var(--content);
  margin: 22px auto 0;
  padding: 28px 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), #285b66);
  border-radius: 8px;
}

.catalog-summary > div { display: grid; gap: 4px; }
.catalog-summary span { color: #9fcbd1; font-size: 0.68rem; font-weight: 820; letter-spacing: 0.1em; text-transform: uppercase; }
.catalog-summary strong { color: #fff; font-size: 1.05rem; }
.catalog-summary .button.primary { color: var(--brand-strong); background: #fff; box-shadow: none; }
.catalog-summary .button.primary:hover { color: #fff; background: var(--brand); }

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(46px, 8vw, 104px);
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
}

.feature-screen-section { overflow: hidden; }

.feature-screen-layout {
  display: grid;
  grid-template-columns: minmax(285px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(40px, 4vw, 58px);
  align-items: center;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.feature-screen-copy h2 {
  max-width: 430px;
  font-size: clamp(1.85rem, 2.35vw, 2.35rem);
  line-height: 1.08;
}

.feature-screen-copy .lead {
  max-width: 390px;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.feature-insights-preview {
  position: relative;
  width: calc(100% + clamp(0px, calc((100vw - var(--content)) / 2 - 38px), 120px));
  min-width: 0;
  z-index: 1;
}

.feature-insights-preview::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: -1;
  background: var(--brand-soft);
  border: 1px solid #d8e7e7;
  border-radius: 8px;
}

.feature-insights-window {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.feature-insights-window img {
  display: block;
  width: 100%;
  height: auto;
}

.image-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.image-panel img { width: 100%; height: auto; }

.safe-preview {
  display: grid;
  align-content: center;
  min-height: 370px;
  padding: 42px;
  color: var(--ink);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--brand-pale);
  background-size: 28px 28px;
}

.safe-preview::before {
  content: "";
  width: 48px;
  height: 5px;
  margin-bottom: 22px;
  background: var(--brand);
}

.safe-preview .preview-kicker {
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.safe-preview strong { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.safe-preview p { max-width: 340px; margin: 8px 0 0; color: var(--muted); }

.safe-preview.compact {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 330px;
  padding: 34px 18px;
  background: #fff;
}

.safe-preview.compact::before { width: 36px; margin-bottom: 8px; }
.safe-preview.compact span { height: 54px; background: var(--brand-soft); border: 1px solid #dce8e7; border-radius: 4px; }

.callout {
  display: grid;
  gap: 16px;
  padding: 0 0 0 30px;
  background: transparent;
  border-left: 4px solid var(--brand);
}

.callout h2 { margin-bottom: 0; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 138px) max(24px, calc((100vw - var(--content)) / 2)) clamp(70px, 9vw, 116px);
  background:
    radial-gradient(circle at 80% 20%, rgba(52, 102, 115, 0.08), transparent 27%),
    linear-gradient(180deg, #fff, #f8fbfb);
  border-bottom: 1px solid var(--line);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  max-width: 860px;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
}

.page-hero .hero-copy { margin-bottom: 0; }

.tabs {
  display: flex;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto 34px;
  border-bottom: 1px solid var(--line-strong);
}

.tab-button {
  position: relative;
  flex: 1;
  min-height: 48px;
  padding: 10px 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 740;
}

.tab-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.tab-button:hover { color: var(--ink); }
.tab-button.is-active { color: var(--brand-strong); }
.tab-button.is-active::after { transform: scaleX(1); }
.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel.is-leaving,
.tab-panel.is-entering {
  display: grid;
}

.role-detail-copy > *,
.feature-list > span {
  opacity: 1;
  transition: opacity 180ms ease;
}

.tab-panel.is-leaving .role-detail-copy > *,
.tab-panel.is-leaving .feature-list > span,
.tab-panel.is-entering .role-detail-copy > *,
.tab-panel.is-entering .feature-list > span {
  opacity: 0;
}

.role-detail {
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  max-width: var(--content);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(21, 36, 40, 0.055);
  overflow: hidden;
}

.role-detail-copy {
  padding: 36px;
  border-right: 1px solid var(--line);
}

.role-detail-copy h3 { font-size: 1.5rem; }
.role-detail-copy p { color: var(--muted); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list > span {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px 20px;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list > span:nth-child(2n) { border-right: 0; }
.feature-list > span:nth-last-child(-n + 2) { border-bottom: 0; }

.feature-list strong {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.4;
}

.role-feature-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #d6e5e5;
  border-radius: 6px;
}

.role-feature-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.pricing-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto 28px;
}

.pricing-main-section { padding-block: clamp(58px, 7vw, 86px); }
.pricing-intro .section-heading { margin-bottom: 0; }
.pricing-intro h2 { font-size: clamp(2.15rem, 4vw, 3.2rem); }

.usage-pricing {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 15px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.pricing-card.featured {
  box-shadow: var(--shadow-sm);
}

.usage-card { min-height: 0; }
.usage-card h3 { margin-bottom: 7px; font-size: 1.16rem; }
.usage-card > div > p { margin-bottom: 0; font-size: 0.91rem; }

.pricing-calculator {
  display: grid;
  gap: 18px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.calculator-heading h3 {
  margin-bottom: 7px;
  font-size: 1.16rem;
}

.calculator-heading .badge { margin-bottom: 15px; }
.calculator-heading p:last-child { max-width: 610px; margin-bottom: 0; color: var(--muted); font-size: 0.91rem; }

.slider-control { display: grid; gap: 11px; padding-top: 2px; }

.slider-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.slider-label label { color: var(--ink); font-weight: 740; }

.slider-label output {
  min-width: 58px;
  padding: 4px 10px;
  color: var(--brand-strong);
  background: var(--brand-soft);
  border-radius: 999px;
  font-weight: 820;
  text-align: center;
}

.slider-control input[type="range"] {
  --range-progress: 10%;
  width: 100%;
  height: 6px;
  margin: 4px 0 0;
  appearance: none;
  background: linear-gradient(90deg, var(--brand) 0 var(--range-progress), #dce5e4 var(--range-progress) 100%);
  border-radius: 999px;
  cursor: pointer;
}

.slider-control input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  background: #fff;
  border: 6px solid var(--brand);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(21, 36, 40, 0.18);
}

.slider-control input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 6px solid var(--brand);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(21, 36, 40, 0.18);
}

.slider-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.74rem;
}

.addon-toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-block: 1px solid var(--line);
  cursor: pointer;
}

.addon-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.toggle-track {
  position: relative;
  width: 48px;
  height: 26px;
  background: #cbd6d5;
  border-radius: 999px;
  transition: background-color 160ms ease;
}

.toggle-track span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(21, 36, 40, 0.18);
  transition: transform 160ms ease;
}

.addon-toggle input:checked + .toggle-track { background: var(--brand); }
.addon-toggle input:checked + .toggle-track span { transform: translateX(22px); }
.addon-toggle input:focus-visible + .toggle-track { outline: 3px solid rgba(52, 102, 115, 0.18); outline-offset: 3px; }
.addon-toggle > span:last-child { display: grid; }
.addon-toggle strong { color: var(--ink); }
.addon-toggle small { color: var(--muted); }

.calculator-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label total"
    "rate total";
  gap: 2px 20px;
  align-items: center;
  padding: 15px 17px;
  color: var(--ink);
  background: var(--brand-pale);
  border: 1px solid #d9e6e5;
  border-radius: 7px;
}

.calculator-result > span { grid-area: label; align-self: end; color: var(--muted); font-size: 0.76rem; font-weight: 700; }
.calculator-result > strong { grid-area: total; color: var(--brand-strong); font-size: clamp(2rem, 3.2vw, 2.55rem); line-height: 1; }
.calculator-result > small { grid-area: rate; align-self: start; color: var(--muted); font-size: 0.76rem; }

.calculator-note { max-width: 610px; margin: -2px 0 0; color: var(--muted); font-size: 0.75rem; }

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 9px;
  color: var(--brand-strong);
  background: var(--brand-soft);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 820;
}

.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  color: var(--ink);
}

.price strong { font-size: clamp(2.65rem, 4.6vw, 3.45rem); line-height: 1; }
.price span { color: var(--muted); font-weight: 700; }
.price-note { margin: -5px 0 0; color: var(--muted); font-size: 0.82rem; }
.price-lockup { display: grid; gap: 11px; padding-block: 3px; }

.pricing-addon {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 0;
  padding: 14px 15px;
  background: var(--brand-pale);
  border: 1px solid #d9e6e5;
  border-radius: 6px;
}

.addon-plus {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: var(--brand-strong);
  background: var(--brand-soft);
  border: 1px solid #d4e3e2;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-addon div { display: grid; gap: 2px; }
.pricing-addon small { color: var(--brand); font-size: 0.69rem; font-weight: 820; letter-spacing: 0.08em; text-transform: uppercase; }
.pricing-addon strong { color: var(--ink); font-size: 0.94rem; }
.pricing-addon p { margin: 2px 0 0; color: var(--muted); font-size: 0.8rem; }
.pricing-addon b { color: var(--brand-strong); }
.usage-card .value-list { gap: 9px; padding-block: 3px; }
.usage-card .value-list li { padding-left: 23px; font-size: 0.84rem; }
.usage-card .value-list li::before {
  content: "\2713";
  top: 0.16em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--brand-strong);
  background: var(--brand-soft);
  border-radius: 50%;
  box-shadow: none;
  font-size: 0.62rem;
  font-weight: 900;
}
.pricing-card .button { width: 100%; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.faq-list { display: grid; border-top: 1px solid var(--line-strong); }

.faq-item {
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 760;
  text-align: left;
}

.faq-question:hover { color: var(--brand); }
.faq-question svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--brand);
  transition: transform 240ms ease;
}

.faq-answer {
  max-width: 760px;
  max-height: 0;
  overflow: hidden;
  padding: 0 38px 0 4px;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 280ms ease, padding-bottom 280ms ease, opacity 180ms ease, transform 280ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }

.cta-band {
  padding: clamp(64px, 8vw, 94px) max(24px, calc((100vw - var(--content)) / 2));
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(82, 139, 150, 0.12), transparent 34%),
    linear-gradient(180deg, #eaf3f2, #f8fbfa 82%);
  border-top: 1px solid #dce8e6;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 { max-width: 860px; margin: 0 auto 18px; color: var(--ink); }
.cta-inner p { max-width: 740px; margin: 0 auto; color: var(--muted); }
.cta-inner .cta-actions { justify-content: center; margin-top: 30px; }
.cta-band .button.light {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(52, 102, 115, 0.2);
}
.cta-band .button.light:hover { background: var(--brand-strong); transform: translateY(-1px); }
.cta-band .button.ghost { color: var(--brand-strong); border-color: var(--line-strong); }
.cta-band .button.ghost:hover { background: rgba(52, 102, 115, 0.08); }

.release-hero .page-hero-content { max-width: 920px; }
.release-hero h1 { max-width: none; }

.release-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: start;
  max-width: var(--content);
  margin: 0 auto;
}

.release-archive {
  position: sticky;
  top: 118px;
  min-width: 0;
}

.release-archive > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-archive nav { display: grid; gap: 8px; }

.release-archive a {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.release-archive a:hover { color: var(--brand-strong); border-color: var(--line-strong); }
.release-archive a.is-current { background: #fff; border-color: #bfd4d4; box-shadow: var(--shadow-sm); }
.release-archive strong { color: var(--brand-strong); font-size: 0.95rem; }
.release-archive time { color: var(--muted); font-size: 0.76rem; }

.release-feed { min-width: 0; }
.release-entry { scroll-margin-top: 120px; }

.release-entry-header {
  max-width: 850px;
  padding-bottom: clamp(38px, 5vw, 54px);
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 22px;
}

.release-meta span {
  padding: 6px 11px;
  color: #126a40;
  background: var(--green-soft);
  border: 1px solid #d8eadf;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-meta time { color: var(--muted); font-size: 0.82rem; font-weight: 680; }

.release-entry-header h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  line-height: 1.04;
}

.release-entry-header h2 span { color: var(--brand); }

.release-entry-header > p {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

.release-impact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(54px, 7vw, 78px);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), #285b66);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 36, 40, 0.16);
}

.release-impact div {
  display: grid;
  gap: 7px;
  min-height: 116px;
  align-content: center;
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.release-impact div:last-child { border-right: 0; }
.release-impact span { color: #9fcbd1; font-size: 0.68rem; font-weight: 820; letter-spacing: 0.08em; text-transform: uppercase; }
.release-impact strong { color: #fff; font-size: 0.94rem; line-height: 1.45; }

.release-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 72px) clamp(42px, 6vw, 68px);
}

.release-group {
  min-width: 0;
  padding-top: 28px;
  border-top: 2px solid var(--line-strong);
}

.release-group header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.release-group-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #d6e5e5;
  border-radius: 6px;
}

.release-group-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.release-group h3 { margin: 1px 0 5px; font-size: 1.08rem; line-height: 1.35; }
.release-group header p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.55; }

.release-group ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.release-group li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 15px 0 15px 24px;
  border-bottom: 1px solid var(--line);
}

.release-group li:first-child { padding-top: 0; }
.release-group li:last-child { padding-bottom: 0; border-bottom: 0; }

.release-group li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 1px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--green-soft);
}

.release-group li:first-child::before { top: 8px; }
.release-group li strong { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.45; }
.release-group li span { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

.release-entry-footer {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
  margin-top: clamp(66px, 9vw, 104px);
  padding: 34px 0 0;
  border-top: 1px solid var(--line-strong);
}

.release-entry-footer > div { display: grid; gap: 6px; }
.release-entry-footer span { color: var(--brand); font-size: 0.68rem; font-weight: 820; letter-spacing: 0.08em; text-transform: uppercase; }
.release-entry-footer strong { color: var(--ink); font-size: 1.2rem; line-height: 1.35; }
.release-entry-footer p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

@media (max-width: 1080px) {
  .release-layout { grid-template-columns: 1fr; gap: 50px; }
  .release-archive { position: static; }
  .release-archive nav { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
  .release-archive a { flex: 0 0 190px; }
}

@media (max-width: 720px) {
  .release-impact { grid-template-columns: 1fr; }
  .release-impact div { min-height: 0; padding: 20px 22px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .release-impact div:last-child { border-bottom: 0; }
  .release-groups { grid-template-columns: 1fr; gap: 48px; }
  .release-entry-footer { grid-template-columns: 1fr; gap: 18px; }
}

.site-footer {
  position: relative;
  padding: clamp(58px, 7vw, 82px) max(24px, calc((100vw - var(--content)) / 2)) 28px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.65);
  background:
    radial-gradient(circle at 8% 0%, rgba(111, 169, 179, 0.15), transparent 25%),
    linear-gradient(135deg, #132f36, var(--brand-deep) 65%, #1d4650);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.footer-shell {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(460px, 1fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
  padding-bottom: clamp(48px, 6vw, 68px);
}

.footer-brand .brand-lockup { color: #fff; }
.footer-brand .brand-lockup img { border: 1px solid rgba(255, 255, 255, 0.14); }
.footer-brand > p { max-width: 430px; margin: 24px 0 18px; color: rgba(255, 255, 255, 0.67); font-size: 1rem; line-height: 1.7; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.footer-links > div { display: grid; align-content: start; gap: 11px; }

.footer-links strong {
  margin-bottom: 7px;
  color: #9fcbd1;
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a, .footer-links button {
  width: fit-content;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.55;
  text-decoration: none;
  text-align: left;
}

.footer-links a:hover, .footer-links button:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.footer-bottom span {
  width: 7px;
  height: 7px;
  background: #70b996;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(112, 185, 150, 0.1);
}

.contact-drawer {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: min(470px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(52, 102, 115, 0.08),
    0 0 48px rgba(52, 102, 115, 0.24),
    0 28px 80px rgba(21, 36, 40, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 24px));
  transition: transform 220ms ease, opacity 180ms ease;
}

body.drawer-open .contact-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.legal-drawer {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 105;
  width: min(680px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(52, 102, 115, 0.08),
    0 0 48px rgba(52, 102, 115, 0.24),
    0 28px 80px rgba(21, 36, 40, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 24px));
  transition: transform 220ms ease, opacity 180ms ease;
}

body.legal-open { overflow: hidden; }

body.legal-open .legal-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.legal-content {
  padding: 26px 30px 34px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.legal-content section[hidden] { display: none; }
.legal-effective { margin: 0 0 24px; color: var(--brand); font-size: 0.75rem; font-weight: 780; letter-spacing: 0.04em; text-transform: uppercase; }
.legal-intro { margin-bottom: 26px; color: var(--ink-soft); font-size: 0.95rem; }
.legal-content h3 { margin: 25px 0 8px; color: var(--ink); font-size: 1rem; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.86rem; line-height: 1.65; }
.legal-content p { margin-bottom: 12px; }
.legal-content ul { margin: 8px 0 16px; padding-left: 20px; }
.legal-content a { color: var(--brand-strong); font-weight: 720; }
.legal-callout { padding: 16px 18px; color: var(--brand-strong) !important; background: var(--brand-soft); border-left: 3px solid var(--brand); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 20px;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 { margin: 0 0 3px; color: var(--ink); font-size: 1.5rem; }
.drawer-head p { margin: 0; color: var(--muted); }

.icon-button {
  width: 32px;
  height: 32px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.icon-button svg { width: 20px; height: 20px; }
.icon-button:hover { color: var(--brand-strong); background: transparent; }

.contact-form {
  display: grid;
  gap: 17px;
  align-content: start;
  padding: 24px 26px 26px;
  overflow-y: auto;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 740;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

.contact-form input:focus, .contact-form textarea:focus { border-color: var(--brand); }
.contact-form textarea { min-height: 128px; resize: vertical; }
.form-status {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 680;
  line-height: 1.5;
}

.form-status[hidden] { display: none; }
.form-status.is-error { color: #8a2d2d; background: #fff3f2; border-color: #efd1ce; }
.contact-form .button:disabled { cursor: wait; opacity: 0.7; }

.site-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  max-width: min(410px, calc(100vw - 44px));
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow:
    0 0 34px rgba(52, 102, 115, 0.18),
    0 16px 42px rgba(21, 36, 40, 0.16);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(16px);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, visibility 0s linear 240ms;
}

.site-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-toast-icon {
  flex: 0 0 auto;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
}

.site-toast-icon svg { width: 17px; height: 17px; }

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #f7fafa 0, #fff 360px);
}

.legal-page-header {
  padding: 18px max(24px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.legal-page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.legal-page-header .brand-lockup { font-size: 1.08rem; }
.legal-page-header .brand-lockup img { width: 42px; height: 42px; }

.legal-page-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

.legal-page-home-link:hover { color: var(--brand-strong); }
.legal-page-home-link svg { width: 17px; height: 17px; }

.legal-page-main {
  padding: clamp(66px, 8vw, 108px) 24px clamp(78px, 9vw, 122px);
}

.legal-document {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-document-header {
  padding-bottom: clamp(38px, 5vw, 54px);
  border-bottom: 1px solid var(--line-strong);
}

.legal-document-header .eyebrow { margin-bottom: 18px; }

.legal-document-header h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 6vw, 4.5rem);
  line-height: 1.02;
}

.legal-document-effective {
  margin: 0 0 26px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-document-intro {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.legal-document-body { padding-top: clamp(38px, 5vw, 56px); }

.legal-document-body section {
  padding: 29px 0 32px;
  border-bottom: 1px solid var(--line);
}

.legal-document-body section:first-of-type { padding-top: 12px; }
.legal-document-body section:last-child { padding-bottom: 0; border-bottom: 0; }

.legal-document-body h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.35;
}

.legal-document-body p,
.legal-document-body li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.legal-document-body p { margin: 0; }
.legal-document-body ul { display: grid; gap: 10px; margin: 14px 0 0; padding-left: 22px; }
.legal-document-body strong { color: var(--ink-soft); }

.legal-document-body a {
  color: var(--brand);
  font-weight: 720;
}

.legal-document-body a:hover { color: var(--brand-strong); }

.legal-document-callout {
  margin: 0 0 28px !important;
  padding: 18px 20px;
  color: var(--brand-strong) !important;
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
}

.legal-page-footer {
  padding: 25px 24px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--brand-deep);
  text-align: center;
}

.legal-page-footer p { margin: 0; font-size: 0.76rem; }

@media (min-width: 1081px) {
  .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-actions { grid-column: 3; }

  .site-header:not(.is-scrolled) .sign-in-link,
  .site-header:not(.is-scrolled) .nav-cta { display: none; }

  .site-header:not(.is-scrolled) .sign-in-cta { display: inline-flex; }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }

  .site-header.is-scrolled {
    top: 10px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    margin-inline: 0;
    min-height: 58px;
    padding: 7px 12px;
    grid-template-columns: 1fr auto;
    border-radius: 8px;
    overflow: visible;
  }

  .site-header.is-scrolled::before { border-radius: 8px; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 80;
    width: min(340px, 88vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 90px 22px 22px;
    color: var(--ink);
    background: #fff;
    box-shadow: -20px 0 44px rgba(21, 36, 40, 0.16);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .main-nav a, .main-nav button {
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after { display: none; }
  body.menu-open .main-nav { transform: translateX(0); }
  .header-actions { align-items: center; }
  .header-actions .nav-cta { display: none; }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--brand-strong);
    background: var(--brand-soft);
    border: 1px solid #d8e5e5;
    border-radius: 5px;
    cursor: pointer;
  }

  .menu-toggle span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

  .hero-inner { grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1.28fr); gap: 30px; }
  .role-grid, .proof-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .role-card:nth-child(2) { border-right: 0; }
  .role-card:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .proof-card:nth-child(3n), .feature-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .proof-card:nth-child(2n), .feature-card:nth-child(2n) { border-right: 0; }
  .workflow, .split-section, .role-detail, .faq-layout { grid-template-columns: 1fr; }
  .split-section.product-showcase { gap: 48px; }
  .product-showcase-copy { display: block; width: 100%; max-width: 680px; justify-self: start; }
  .product-showcase-copy h2 { max-width: 620px; }
  .product-showcase-copy .lead { max-width: 650px; margin-top: 20px; }
  .screen-stack { max-width: none; }
  .role-detail-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: minmax(240px, 0.8fr) minmax(430px, 1.2fr); gap: 48px; }
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 680px; transform: none; }
  .feature-screen-layout { grid-template-columns: 1fr; gap: 40px; }
  .feature-screen-copy h2, .feature-screen-copy .lead { max-width: 650px; }
  .feature-insights-preview { width: 100%; }
  .signal-strip { grid-template-columns: 1fr; }
  .signal-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; align-items: end; }
  .signal-heading .eyebrow { grid-column: 1 / -1; }
  .signal-heading h2 { margin-bottom: 0; }
  .usage-pricing { grid-template-columns: 1fr; }
  .catalog-intro { grid-template-columns: 1fr; gap: 22px; }
  .feature-catalog-grid { grid-template-columns: 1fr; }
  .switch-heading { grid-template-columns: 1fr; gap: 26px; }
  .switch-intro { max-width: 650px; }
  .switch-grid { grid-template-columns: 1fr; }
  .switch-item, .switch-item:first-child, .switch-item:last-child { padding: 28px 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .switch-item:last-child { border-bottom: 0; }
  .switch-item > p { max-width: 650px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 660px) {
  .site-header { min-height: 66px; padding: 10px 18px; }
  .site-header.is-scrolled { min-height: 56px; padding: 6px 10px; }
  .brand-lockup img { width: 34px; height: 34px; }
  .brand-lockup span { font-size: 0.98rem; }
  .site-header .brand-lockup { gap: 11px; font-size: 1.03rem; }
  .site-header .brand-lockup img,
  .site-header.is-scrolled .brand-lockup img { width: 38px; height: 38px; }

  .hero, .section, .page-hero, .cta-band { padding-inline: 20px; }
  .hero { padding-top: 122px; }
  .hero::before { width: 4px; }

  h1 { font-size: clamp(2.55rem, 13vw, 3.5rem); overflow-wrap: break-word; }
  h2 { font-size: clamp(1.85rem, 9vw, 2.5rem); overflow-wrap: break-word; }
  .page-hero h1 { font-size: clamp(2.4rem, 12vw, 3.35rem); }

  .hero-actions { align-items: stretch; gap: 12px; }
  .hero-actions .button { flex: 1 1 100%; }
  .button.text-button { border: 1px solid var(--line-strong); }
  .hero-visual::after { inset: 10px -10px -10px 10px; }
  .feature-insights-preview::after { inset: 10px -10px -10px 10px; }
  .safe-preview { min-height: 300px; padding: 28px 24px; }

  .signal-band { padding-inline: 20px; padding-bottom: 58px; }
  .signal-band::before { width: 4px; }
  .signal-strip { gap: 30px; margin-top: -30px; padding: 30px 24px 26px; }
  .signal-heading { display: block; }
  .signal-heading h2 { margin-bottom: 12px; }
  .signal-items { grid-template-columns: 1fr; }
  .signal-item { grid-template-columns: 46px 1fr; gap: 17px; padding: 21px 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.13); }
  .signal-item:first-child { padding-top: 22px; }
  .signal-item > div:last-child { align-self: start; }

  .role-grid, .proof-grid, .feature-grid, .feature-list { grid-template-columns: 1fr; }
  .role-card { min-height: auto; padding: 28px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .role-card:nth-child(2) { border-right: 0; }
  .role-card:last-child { grid-column: auto; border-top: 0; border-bottom: 0; }
  .proof-card, .feature-card { padding: 25px 4px; border-right: 0 !important; }
  .catalog-intro { margin-bottom: 32px; }
  .catalog-group header { padding: 22px 20px 20px; }
  .catalog-group li { padding: 15px 18px 15px 46px; }
  .catalog-group li::before { left: 21px; }
  .catalog-summary { grid-template-columns: 1fr; padding: 24px 22px; }
  .catalog-summary .button { width: 100%; }
  .workflow-copy { padding-left: 20px; }

  .screen-stack { max-width: 620px; min-height: auto; padding-bottom: 30px; }
  .screen-frame.main { width: calc(100% - 12px); }
  .screen-frame.mobile { right: 0; bottom: 0; width: 29%; min-width: 96px; border-width: 4px; border-radius: 8px; }
  .section-heading { margin-bottom: 36px; }
  .tabs { width: 100%; overflow-x: auto; justify-content: flex-start; }
  .tab-button { min-width: 112px; }
  .role-detail-copy { padding: 28px 24px; }
  .feature-list > span { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .feature-list > span:last-child { border-bottom: 0 !important; }
  .pricing-card { padding: 28px 24px; }
  .pricing-calculator { padding: 28px 24px; }
  .pricing-addon { margin-right: -6px; margin-left: 12px; padding-right: 14px; padding-left: 18px; }
  .callout { padding-left: 22px; }
  .faq-question { padding-block: 21px; }
  .cta-actions { width: 100%; }
  .cta-actions .button { flex: 1 1 100%; }
  .site-footer { padding: 52px 20px 24px; }
  .footer-main { padding-bottom: 42px; }
  .footer-brand > p { margin-top: 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 30px 42px; }
  .footer-bottom { flex-direction: column; gap: 11px; }
  .contact-drawer, .legal-drawer {
    top: 78px;
    right: 12px;
    bottom: auto;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 90px);
  }

  .drawer-head { padding: 20px 20px 17px; }
  .contact-form { padding: 20px; }
  .legal-content { padding: 22px 20px 28px; }
  .site-toast { right: 12px; bottom: 12px; max-width: calc(100vw - 24px); }
  .legal-page-header { padding: 13px 18px; }
  .legal-page-header .brand-lockup img { width: 36px; height: 36px; }
  .legal-page-home-link { display: none; }
  .legal-page-main { padding: 54px 20px 72px; }
  .legal-document-header h1 { font-size: clamp(2.45rem, 13vw, 3.35rem); }
  .legal-document-body section { padding: 25px 0 28px; }
  .legal-document-callout { padding: 16px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
