:root {
  --navy-950: #061120;
  --navy-900: #08182f;
  --navy-800: #10233f;
  --navy-700: #173255;
  --ink: #122033;
  --muted: #5d6b7e;
  --soft: #eef4f8;
  --paper: #f8fbfd;
  --white: #ffffff;
  --line: #dbe5ef;
  --teal: #24c6b3;
  --teal-dark: #128777;
  --teal-ink: #0d6d65;
  --blue: #5a7cff;
  --gold: #d9a521;
  --rose: #d9708a;
  --shadow: 0 24px 70px rgba(8, 24, 47, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  min-width: 320px;
}

body::selection {
  color: var(--navy-950);
  background: rgba(36, 198, 179, 0.35);
}

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

button,
input,
select {
  font: inherit;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 4.5rem;
  color: var(--white);
  background: rgba(6, 17, 32, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 251, 253, 0.88);
  border-bottom-color: rgba(18, 32, 51, 0.08);
  box-shadow: 0 14px 34px rgba(8, 24, 47, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
  line-height: 1;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .brand-mark {
  background: transparent;
  box-shadow: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: inherit;
  font-size: 0.9rem;
}

.site-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: inherit;
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav .nav-cta {
  padding: 0 1.05rem;
  border-radius: var(--radius);
  color: var(--navy-950);
  background: var(--white);
  opacity: 1;
  font-weight: 700;
}

.site-header.is-scrolled .site-nav .nav-cta {
  color: var(--white);
  background: var(--navy-900);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  background: currentColor;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.nowrap {
  white-space: nowrap;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.75rem 4.5rem 5.5rem;
}

.hero-bg,
.cta-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 1;
}

.hero-bg::after,
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.75;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(32rem, 43rem);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 44rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow.dark {
  color: var(--teal-dark);
}

.hero h1 {
  margin: 0;
  max-width: 48rem;
  font-size: 4.5rem;
  line-height: 1.12;
  font-weight: 800;
}

.hero-lead {
  margin: 1.55rem 0 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.95;
}

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

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  background: #f4f8fb;
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.button.primary {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.28);
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.3;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-notes span,
.cta-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.22rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
}

.product-visual {
  min-width: 0;
}

.screen-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(245, 250, 255, 0.94);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
  color: var(--ink);
}

.screen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.1rem;
  padding: 0 1rem;
  color: var(--white);
  background: var(--navy-950);
}

.window-dots {
  display: flex;
  gap: 0.38rem;
}

.window-dots span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.window-dots span:nth-child(1) {
  background: var(--rose);
}

.window-dots span:nth-child(2) {
  background: var(--gold);
}

.window-dots span:nth-child(3) {
  background: var(--teal);
}

.screen-title {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.screen-status {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
}

.screen-grid {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  min-height: 32rem;
}

.mock-sidebar {
  padding: 1rem;
  background: #edf4f8;
  border-right: 1px solid #dbe6ee;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius);
  color: #617082;
  font-size: 0.82rem;
  font-weight: 700;
}

.side-item.active {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(16, 35, 63, 0.08);
}

.mock-main {
  min-width: 0;
  padding: 1.15rem;
  background: #fff;
}

.mock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mock-head p,
.mock-head strong {
  display: block;
}

.mock-head p,
.metric-panel span,
.panel-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.mock-head strong {
  margin-top: 0.1rem;
  font-size: 1rem;
}

.mock-head > span {
  flex: 0 0 auto;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(36, 198, 179, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.metric-panel {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid #e3ebf2;
  border-radius: var(--radius);
  background: var(--white);
}

.metric-panel strong {
  display: block;
  margin: 0.15rem 0 0.5rem;
  font-size: 1.55rem;
  line-height: 1;
}

.mini-bar {
  height: 0.42rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eff5;
}

.mini-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.mini-bar.amber i {
  background: var(--gold);
}

.mini-bar.green i {
  background: var(--teal);
}

.signal-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 0.85rem;
}

.signal-list {
  display: grid;
  gap: 0.65rem;
}

.signal-item,
.agenda-panel {
  border: 1px solid #e3ebf2;
  border-radius: var(--radius);
  background: var(--white);
}

.signal-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.78rem;
}

.signal-item > span {
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(36, 198, 179, 0.13);
}

.signal-item.hot > span {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 165, 33, 0.17);
}

.signal-item strong {
  display: block;
  font-size: 0.82rem;
}

.signal-item p,
.agenda-panel p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.agenda-panel {
  min-height: 100%;
  padding: 1rem;
  background: #ffffff;
}

.agenda-panel strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
}

.agenda-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.agenda-tags span {
  padding: 0.16rem 0.48rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(36, 198, 179, 0.13);
  font-size: 0.7rem;
  font-weight: 800;
}

.proof-band {
  position: relative;
  z-index: 2;
  padding: 1.1rem 4.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(16, 35, 63, 0.06);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  max-width: 1120px;
  margin: 0 auto;
}

.proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-item svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--teal-ink);
  stroke-width: 2.25;
}

.section {
  padding: 6.5rem 4.5rem;
}

section[id] {
  scroll-margin-top: 5.5rem;
}

.section-heading {
  max-width: 46rem;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.section-heading h2,
.cta-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 2.55rem;
  line-height: 1.25;
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.cta-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.problem-card,
.feature-card,
.client-card,
.trust-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.06);
}

.problem-card {
  min-height: 15.8rem;
  padding: 1.35rem;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(36, 198, 179, 0.11);
  font-weight: 900;
}

.problem-card h3,
.feature-card h3,
.client-card h3,
.trust-item h3 {
  margin: 1rem 0 0;
  color: var(--navy-950);
  font-size: 1.05rem;
  line-height: 1.45;
}

.problem-card p,
.feature-card p,
.client-card p,
.trust-item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.solution-section {
  background: #f3f7fa;
  border-top: 1px solid rgba(18, 32, 51, 0.06);
  border-bottom: 1px solid rgba(18, 32, 51, 0.06);
}

.solution-wrap,
.value-layout,
.trust-layout,
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  margin-top: 1.35rem;
  color: var(--navy-950);
  font-weight: 900;
}

.text-link svg {
  color: var(--teal-ink);
  stroke-width: 2.3;
}

.flow-panel {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: #f7fbfd;
}

.flow-step > span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  color: var(--teal-ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.flow-step strong {
  color: var(--navy-950);
  font-size: 1rem;
}

.flow-step p {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.flow-line {
  width: 1px;
  height: 1.5rem;
  margin: 0.2rem 0 0.2rem 2.5rem;
  background: var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.feature-card {
  min-height: 17rem;
  padding: 1.45rem;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  color: var(--teal-ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-icon svg,
.role-head svg,
.trust-item svg,
.value-row svg,
.eyebrow svg {
  stroke-width: 2.25;
}

.partner-section {
  background: var(--white);
}

.value-list {
  display: grid;
  gap: 0.7rem;
}

.ops-mini-board {
  padding: 1rem;
  border: 1px solid rgba(36, 198, 179, 0.24);
  border-radius: var(--radius);
  background: #f4fbf8;
  box-shadow: 0 18px 44px rgba(16, 35, 63, 0.08);
}

.ops-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.ops-head span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.ops-head strong {
  color: var(--navy-950);
}

.ops-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.8rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 900;
}

.ops-row + .ops-row {
  margin-top: 0.45rem;
}

.ops-row em {
  flex: 0 0 auto;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.68rem;
  font-style: normal;
}

.value-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  color: var(--navy-800);
  font-weight: 800;
}

.value-row svg {
  margin-top: 0.2rem;
  color: var(--teal-ink);
}

.client-section {
  background: #f3f7fa;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1040px;
  margin: 0 auto;
}

.client-card {
  min-height: 15rem;
  padding: 1.5rem;
}

.client-card span {
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.client-flow-mock {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 1040px;
  margin: 1.4rem auto 0;
  padding: 1rem;
  box-shadow: 0 20px 58px rgba(16, 35, 63, 0.16);
}

.client-flow-step {
  min-height: 9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
}

.client-flow-step span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.client-flow-step strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--navy-950);
  font-size: 1rem;
}

.client-flow-step p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.client-flow-arrow {
  width: 2.2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}

.client-flow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 2px solid rgba(255, 255, 255, 0.72);
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.role-section {
  background: var(--paper);
}

.role-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.role-column {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.06);
}

.role-column.ai {
  border-top: 4px solid var(--blue);
}

.role-column.human {
  border-top: 4px solid var(--teal);
}

.role-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.role-head svg {
  color: var(--teal-ink);
}

.role-head h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.2rem;
}

.role-column ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.role-column li {
  position: relative;
  padding-left: 1.1rem;
}

.role-column li::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--teal);
}

.trust-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-item {
  min-height: 13rem;
  padding: 1.35rem;
}

.trust-item svg {
  color: var(--teal-ink);
}

/* Product mockups */
.hero-inner {
  grid-template-columns: minmax(0, 0.75fr) minmax(38rem, 1.25fr);
  max-width: 1380px;
}

.hero h1 {
  font-size: 4.15rem;
}

.hero-showcase {
  position: relative;
  min-height: 40rem;
}

.mock-browser {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  color: var(--ink);
}

.provider-ui {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #08182f;
}

.partner-ui {
  border: 1px solid rgba(18, 32, 51, 0.12);
  background: #eef8f5;
}

.hero-provider {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-partner {
  position: absolute;
  z-index: 3;
  right: -1.6rem;
  bottom: -1.4rem;
  width: 58%;
}

.mock-nav {
  min-height: 4.3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
}

.mock-nav.mini-nav {
  min-height: 3.7rem;
  padding: 0.65rem 0.85rem;
}

.dark-nav {
  color: var(--white);
  background: rgba(3, 9, 18, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.light-nav {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(18, 32, 51, 0.1);
}

.mock-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: max-content;
  font-size: 0.95rem;
  font-weight: 900;
}

.app-icon {
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.mock-tabs {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 100%;
  overflow: hidden;
}

.light-nav .mock-tabs {
  background: rgba(226, 235, 243, 0.72);
  border-color: rgba(18, 32, 51, 0.1);
}

.mock-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0.3rem 0.9rem;
  border-radius: calc(var(--radius) - 2px);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.mock-tabs svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.25;
}

.light-nav .mock-tabs span {
  color: #68768a;
}

.mock-tabs span.active {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.12);
}

.mock-tabs.compact span {
  min-height: 2rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
}

.login-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.25rem 0.8rem;
  border: 1px solid rgba(90, 124, 255, 0.42);
  border-radius: 999px;
  color: #dceaff;
  background: rgba(47, 93, 160, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.provider-canvas,
.partner-canvas {
  padding: 1rem;
}

.provider-canvas {
  background: #142944;
}

.partner-canvas {
  background-image:
    linear-gradient(rgba(18, 32, 51, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 51, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.mock-title-card,
.partner-title-card {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 229, 239, 0.92);
}

.mock-title-card span,
.partner-title-card span,
.chart-card span,
.knowledge-head span,
.deepening-panel > span,
.sdt-panel > span {
  display: block;
  color: #68768a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-title-card h3,
.partner-title-card h3,
.knowledge-head h3 {
  margin: 0.15rem 0 0;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.25;
}

.partner-title-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.kpi-tile {
  min-height: 7.1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(219, 229, 239, 0.9);
}

.kpi-tile span {
  display: block;
  color: #718095;
  font-size: 0.78rem;
  font-weight: 900;
}

.kpi-tile strong {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--navy-950);
  font-size: 2.35rem;
  line-height: 1;
}

.kpi-tile em {
  margin-left: 0.35rem;
  color: #3868e8;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
}

.chart-card {
  position: relative;
  margin-top: 0.85rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(219, 229, 239, 0.9);
}

.chart-card h4 {
  margin: 0.1rem 0 0.6rem;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.range-tabs {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: inline-flex;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: var(--radius);
  background: #eef3f8;
}

.range-tabs span {
  min-width: 2.2rem;
  display: inline-flex;
  justify-content: center;
  padding: 0.3rem 0.4rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.72rem;
}

.range-tabs span.active {
  color: var(--navy-950);
  background: var(--white);
}

.line-chart {
  display: block;
  width: 100%;
  height: 11rem;
  margin-top: 0.3rem;
}

.chart-grid {
  stroke: rgba(94, 111, 134, 0.16);
  stroke-width: 1;
}

.chart-area {
  fill: rgba(77, 116, 171, 0.16);
}

.line {
  fill: none;
  stroke-width: 5;
  filter: drop-shadow(0 6px 7px rgba(8, 24, 47, 0.16));
}

.blue-line {
  stroke: #416be8;
}

.gold-line {
  stroke: #e19e28;
}

.soft-line {
  stroke: #88c2f5;
}

.partner-panels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.watch-card,
.source-list,
.partner-metric-row > div,
.blank-card,
.deepening-panel,
.daily-input,
.sdt-panel,
.layer-column,
.layer-signal,
.fragment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.watch-card {
  padding: 0.9rem;
}

.risk-chip {
  display: inline-flex;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  color: var(--white);
  background: #c75668;
  font-size: 0.7rem;
  font-weight: 900;
}

.watch-card h4 {
  margin: 0.65rem 0 0.15rem;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.watch-card p,
.source-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.mini-metrics span {
  display: block;
  padding: 0.45rem;
  border-radius: calc(var(--radius) - 2px);
  background: #eef4f8;
  color: var(--navy-800);
  font-size: 0.68rem;
  font-weight: 900;
}

.source-list {
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem;
}

.source-list > span {
  justify-self: start;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(36, 198, 179, 0.12);
  font-size: 0.68rem;
  font-weight: 900;
}

.source-list strong {
  color: var(--navy-950);
  font-size: 0.86rem;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.fragment-board {
  min-height: 28rem;
  position: relative;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.fragment-card {
  position: absolute;
  width: 48%;
  padding: 1rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.fragment-card span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.fragment-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--navy-950);
  font-size: 0.96rem;
  line-height: 1.55;
}

.fragment-card.large {
  top: 2rem;
  left: 1.5rem;
  width: 58%;
}

.fragment-card:nth-child(2) {
  top: 6.5rem;
  right: 1.2rem;
}

.fragment-card:nth-child(3) {
  top: 13.2rem;
  left: 2.8rem;
}

.fragment-card:nth-child(4) {
  bottom: 4rem;
  right: 2rem;
}

.fragment-card.accent {
  bottom: 1.2rem;
  left: 1.5rem;
  width: 62%;
  border-color: rgba(36, 198, 179, 0.55);
}

.fragment-card.warning span {
  color: #b6741c;
}

.compact-problems {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.layer-mock {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(18, 32, 51, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.layer-column {
  padding: 1rem;
}

.layer-column.active {
  border-color: rgba(36, 198, 179, 0.5);
  background: #f2fbf8;
}

.layer-column span,
.layer-signal span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.layer-column strong,
.layer-signal strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.layer-column p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.layer-signal {
  padding: 1.1rem;
  border-left: 4px solid var(--teal-dark);
}

.product-tour {
  background: var(--white);
}

.showcase-list {
  display: grid;
  gap: 5.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1.42fr);
  gap: 3rem;
  align-items: center;
}

.showcase-row.reverse {
  grid-template-columns: minmax(0, 1.42fr) minmax(18rem, 0.58fr);
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.showcase-row.reverse .mock-browser {
  order: 1;
}

.showcase-copy {
  max-width: 26rem;
}

.showcase-kicker {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  color: #cfe1ff;
  background: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 900;
}

.showcase-kicker.partner {
  color: #eafff8;
  background: var(--teal-dark);
}

.showcase-copy h3 {
  margin: 1rem 0 0;
  color: var(--navy-950);
  font-size: 2rem;
  line-height: 1.32;
}

.showcase-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.tour-mock {
  min-width: 0;
  box-shadow: 0 26px 70px rgba(16, 35, 63, 0.18);
}

.tour-mock .provider-canvas,
.tour-mock .partner-canvas {
  min-height: 29rem;
}

.compact-title {
  padding: 1rem;
}

.slim-chart {
  min-height: 13rem;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.member-card {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid rgba(219, 229, 239, 0.96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
}

.member-card > div:first-child {
  display: grid;
  gap: 0.1rem;
}

.member-card strong {
  color: var(--navy-950);
  font-size: 0.92rem;
}

.member-card span {
  color: #68768a;
  font-size: 0.72rem;
  font-weight: 800;
}

.member-card em {
  display: inline-flex;
  margin-top: 0.55rem;
  padding: 0.08rem 0.45rem;
  border-radius: 999px;
  color: var(--white);
  background: #bf7d28;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.member-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.member-bars span {
  position: relative;
  padding-bottom: 0.42rem;
}

.member-bars b {
  float: right;
  color: #3868e8;
  font-size: 1.15rem;
}

.member-bars i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.28rem;
  border-radius: 999px;
  background: #c6842d;
}

.member-card p {
  margin: 0.8rem 0 0;
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 900;
}

.daily-layout,
.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.85fr);
  gap: 0.85rem;
}

.daily-input,
.sdt-panel,
.deepening-panel {
  padding: 1rem;
}

.daily-save {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.daily-save span,
.chat-box span {
  color: #68768a;
  font-size: 0.76rem;
  font-weight: 900;
}

.daily-save strong {
  color: #203a6b;
}

.chat-box {
  min-height: 11rem;
  margin-top: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfd;
}

.chat-box p {
  color: var(--ink);
  font-weight: 800;
}

.typing-area {
  height: 7rem;
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sdt-panel {
  display: grid;
  gap: 0.7rem;
}

.sdt-panel h4,
.deepening-panel h4 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.1rem;
}

.sdt-panel > div {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfd;
}

.sdt-panel strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.65rem;
}

.sdt-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.partner-metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.partner-metric-row > div {
  padding: 0.85rem;
}

.partner-metric-row span {
  color: #68768a;
  font-size: 0.72rem;
  font-weight: 900;
}

.partner-metric-row strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.75rem;
}

.partner-metric-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.partner-panels.wide {
  grid-template-columns: 1.2fr 0.8fr;
}

.knowledge-layout section,
.deepening-panel {
  min-width: 0;
}

.knowledge-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.knowledge-head em {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #68768a;
  background: var(--white);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.knowledge-tabs {
  padding: 0.35rem;
  border-radius: var(--radius);
  background: #edf3f8;
}

.knowledge-tabs span {
  display: inline-flex;
  min-height: 2.3rem;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: calc(var(--radius) - 2px);
  color: var(--navy-950);
  background: var(--white);
  font-weight: 900;
}

.blank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.blank-card {
  padding: 0.9rem;
}

.blank-card span {
  display: inline-flex;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  color: var(--white);
  background: #3868e8;
  font-size: 0.68rem;
  font-weight: 900;
}

.blank-card h4 {
  margin: 0.75rem 0 0.35rem;
  color: var(--navy-950);
  font-size: 1rem;
}

.blank-card p,
.deepening-panel p {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.tiny-progress {
  height: 0.32rem;
  border-radius: 999px;
  background: #e8eff5;
}

.dialogue-box {
  min-height: 8rem;
  margin-top: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #68768a;
  background: #f9fbfd;
  font-weight: 800;
}

.cta-section {
  padding: 6.5rem 4.5rem;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-copy h2,
.cta-copy p {
  color: var(--white);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 42rem;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 3rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 17, 32, 0.46);
  outline: none;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(36, 198, 179, 0.18);
}

.form-button {
  width: 100%;
  margin-top: 0.3rem;
  border: 0;
}

.form-message {
  min-height: 1.6rem;
  margin: 0;
  color: #c9fff7;
  font-size: 0.86rem;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.65;
}

.form-note a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer {
  padding: 2rem 4.5rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
  font-size: 0.86rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.has-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .section,
  .proof-band,
  .cta-section,
  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-inner,
  .solution-wrap,
  .value-layout,
  .trust-layout,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .product-visual {
    max-width: 46rem;
  }

  .problem-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid rgba(18, 32, 51, 0.1);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0 0.75rem;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 0.35rem;
    color: var(--white);
    background: var(--navy-900);
  }

  .hero {
    min-height: auto;
    padding-top: 8.5rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .screen-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-sidebar {
    display: flex;
    gap: 0.45rem;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid #dbe6ee;
  }

  .side-item {
    flex: 0 0 auto;
  }

  .mock-cards,
  .signal-layout,
  .proof-inner,
  .problem-grid,
  .feature-grid,
  .client-grid,
  .role-table,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    justify-content: flex-start;
  }

  .section {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .section-heading {
    margin-bottom: 2.3rem;
    text-align: left;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 2rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section,
  .proof-band,
  .cta-section,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .screen-topbar {
    gap: 0.6rem;
  }

  .screen-status {
    display: none;
  }

  .mock-main {
    padding: 0.8rem;
  }

  .mock-head {
    display: grid;
  }

  .problem-card,
  .feature-card,
  .client-card,
  .trust-item,
  .role-column,
  .flow-panel,
  .contact-form {
    padding: 1.1rem;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .problem-layout,
  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
    max-width: 54rem;
  }

  .hero-partner {
    position: relative;
    right: auto;
    bottom: auto;
    width: 86%;
    margin: -3rem 0 0 auto;
  }

  .showcase-row.reverse .showcase-copy,
  .showcase-row.reverse .mock-browser {
    order: initial;
  }

  .showcase-copy {
    max-width: 42rem;
  }

  .mock-tabs {
    justify-self: end;
  }

  .login-pill {
    display: none;
  }
}

@media (max-width: 860px) {
  .mock-nav {
    grid-template-columns: 1fr;
  }

  .mock-tabs {
    justify-self: stretch;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-showcase {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .hero-partner {
    width: 92%;
  }

  .kpi-strip,
  .kpi-strip.four,
  .member-grid,
  .daily-layout,
  .knowledge-layout,
  .partner-panels,
  .partner-panels.wide,
  .partner-metric-row,
  .blank-grid,
  .client-flow-mock {
    grid-template-columns: 1fr;
  }

  .client-flow-arrow {
    width: 1px;
    height: 1.6rem;
    justify-self: center;
    background: rgba(255, 255, 255, 0.5);
  }

  .client-flow-arrow::after {
    right: auto;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .compact-problems {
    grid-template-columns: 1fr;
  }

  .fragment-board {
    min-height: auto;
    display: grid;
    gap: 0.75rem;
  }

  .fragment-card,
  .fragment-card.large,
  .fragment-card.accent,
  .fragment-card:nth-child(2),
  .fragment-card:nth-child(3),
  .fragment-card:nth-child(4) {
    position: static;
    width: auto;
  }

  .showcase-list {
    gap: 4rem;
  }

  .showcase-copy h3 {
    font-size: 1.65rem;
  }

  .tour-mock .provider-canvas,
  .tour-mock .partner-canvas {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 1.95rem;
  }

  .hero-lead {
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero-notes {
    display: none;
  }

  .hero-inner {
    gap: 1.5rem;
  }

  .hero-partner {
    width: 100%;
    margin-top: 0.8rem;
  }

  .provider-canvas,
  .partner-canvas {
    padding: 0.65rem;
  }

  .mock-title-card,
  .partner-title-card {
    padding: 0.95rem;
  }

  .mock-title-card h3,
  .partner-title-card h3,
  .knowledge-head h3 {
    font-size: 1.15rem;
  }

  .kpi-tile {
    min-height: auto;
  }

  .kpi-tile strong {
    font-size: 1.8rem;
  }

  .range-tabs {
    position: static;
    width: max-content;
    margin: 0.5rem 0;
  }

  .line-chart {
    height: 8.5rem;
  }

  .member-bars {
    grid-template-columns: 1fr;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .has-motion .reveal {
    opacity: 1;
    transform: none;
  }
}
