:root {
  color-scheme: light;
  --ink: #07163f;
  --ink-2: #183263;
  --muted: #667594;
  --line: #dce6f6;
  --soft: #f5f8ff;
  --blue: #075cff;
  --cyan: #14c8f4;
  --violet: #7448ff;
  --green: #3e5638;
  --shadow: 0 28px 72px rgba(7, 22, 63, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 118px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fbfdff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; }

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(220, 230, 246, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 14px 40px rgba(7, 22, 63, 0.08);
}

.brand { display: inline-flex; align-items: center; min-width: 230px; }
.brand img { display: block; width: 226px; height: auto; }

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #152552;
  font-size: 0.92rem;
  font-weight: 850;
}

.nav-links a { position: relative; }
.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.primary,
.header-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 18px 38px rgba(7, 92, 255, 0.24);
}

.secondary {
  border: 1px solid #b8ccf5;
  color: var(--ink);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 122px clamp(20px, 5vw, 64px) 46px;
  background:
    radial-gradient(circle at 70% 20%, rgba(20, 200, 244, 0.18), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(116, 72, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 78%, #fff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 22, 63, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 22, 63, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(#000 0%, transparent 76%);
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(680px, 1.18fr);
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
  max-width: 1480px;
  min-height: calc(100svh - 168px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(3.15rem, 5.6vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-system {
  position: relative;
  min-height: 540px;
}

.flow-lines {
  position: absolute;
  inset: 18px 0 0;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.flow-lines path {
  fill: none;
  stroke: rgba(7, 92, 255, 0.38);
  stroke-width: 2.1;
  stroke-dasharray: 9 10;
  animation: dash 4.8s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -120; }
}

.chaos-list,
.outcome-list {
  position: absolute;
  z-index: 2;
  top: 44px;
  display: grid;
  gap: 0;
  width: 198px;
  overflow: hidden;
  border: 1px solid rgba(206, 220, 247, 0.98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(7, 22, 63, 0.13);
  backdrop-filter: blur(16px);
}

.chaos-list { left: 0; }
.outcome-list { right: 0; }
.chaos-list strong,
.outcome-list strong {
  padding: 15px 17px;
  color: var(--ink);
  background: linear-gradient(180deg, #f4f7ff, #fff);
  font-size: 0.92rem;
  line-height: 1.2;
}

.chaos-list span,
.outcome-list span {
  min-height: 62px;
  padding: 19px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 850;
}

.system-core {
  position: absolute;
  z-index: 3;
  top: 168px;
  left: 50%;
  display: grid;
  width: 190px;
  min-height: 190px;
  place-items: center;
  padding: 24px;
  border: 2px solid rgba(116, 72, 255, 0.28);
  border-radius: 50%;
  text-align: center;
  background: #fff;
  box-shadow: 0 25px 70px rgba(7, 92, 255, 0.18);
  transform: translateX(-50%);
}

.core-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: radial-gradient(circle at 70% 0%, rgba(116, 72, 255, 0.18), transparent 50%), #f2f7ff;
}
.core-icon svg { width: 48px; height: 48px; }
.system-core p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}
.system-core small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
}

.hero-proof {
  display: none;
}

.hero-proof img {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: top left;
}

.hero-proof figcaption {
  padding: 12px 16px;
  color: var(--blue);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.signal-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1420px;
  margin: -10px auto 0;
  padding: 0 clamp(20px, 5vw, 64px);
}

.signal-strip div {
  min-height: 116px;
  padding: 24px;
  border: 1px solid var(--line);
  border-right: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(7, 22, 63, 0.08);
}
.signal-strip div:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.signal-strip div:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }
.signal-strip strong { display: block; margin-bottom: 7px; }
.signal-strip span { color: var(--muted); font-size: 0.9rem; }

.prompt-apps {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(640px, 1.25fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  max-width: 1510px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 88% 16%, rgba(20, 200, 244, 0.11), transparent 25%),
    radial-gradient(circle at 56% 92%, rgba(7, 92, 255, 0.08), transparent 28%);
}

.prompt-app-copy {
  position: relative;
  z-index: 2;
}

.prompt-app-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 5.1vw, 5.25rem);
  line-height: 0.98;
}

.prompt-app-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #29477f;
  font-size: clamp(1.03rem, 1.25vw, 1.22rem);
  line-height: 1.62;
}

.prompt-app-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 430px;
  padding: 28px;
  border: 1px solid #d8e5f7;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,251,255,0.9)),
    radial-gradient(circle at 50% 50%, rgba(7,92,255,0.1), transparent 44%);
  box-shadow: 0 38px 95px rgba(7, 22, 63, 0.12);
}

.prompt-app-visual::before {
  position: absolute;
  inset: 26px 48px;
  z-index: 0;
  border-top: 2px dashed rgba(17, 98, 255, 0.25);
  content: "";
  top: 50%;
}

.prompt-box,
.context-layer,
.app-panel {
  position: relative;
  z-index: 1;
}

.prompt-box {
  min-height: 292px;
  padding: 22px;
  border: 1px solid #dce7f8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(7, 22, 63, 0.1);
}

.prompt-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #60759c;
  font-size: 0.78rem;
  font-weight: 900;
}

.prompt-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dbe6f7;
}

.prompt-top strong {
  margin-left: 6px;
  color: var(--ink);
}

.prompt-box p {
  margin: 0;
  color: #13285a;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.62;
}

.prompt-box small {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e8eef8;
  color: #7890b7;
  font-weight: 800;
}

.context-layer {
  display: grid;
  min-height: 172px;
  place-items: center;
  padding: 20px 14px;
  border: 1px solid rgba(17, 98, 255, 0.24);
  border-radius: 22px;
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 20%, rgba(20, 200, 244, 0.2), transparent 42%),
    #f4f8ff;
  box-shadow: 0 20px 58px rgba(17, 98, 255, 0.13);
  text-align: center;
}

.context-layer span {
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.context-layer b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 26px rgba(17, 98, 255, 0.24);
}

.app-panel {
  min-height: 320px;
  padding: 22px;
  border: 1px solid #cadcf5;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 28px 76px rgba(7, 22, 63, 0.14);
}

.app-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.app-panel-head strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.app-panel-head small {
  padding: 5px 9px;
  border-radius: 999px;
  color: #0b8c52;
  background: #e9f9ef;
  font-size: 0.68rem;
  font-weight: 950;
  white-space: nowrap;
}

.app-panel button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid #dbe7f8;
  border-radius: 12px;
  color: #0b2a66;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 22, 63, 0.05);
  cursor: default;
  font-size: 0.86rem;
  font-weight: 900;
}

.app-panel button:first-of-type {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 36px rgba(17, 98, 255, 0.22);
}

.livecall-proof {
  background:
    radial-gradient(circle at 74% 20%, rgba(116, 72, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.livecall-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: end;
  max-width: 1420px;
  margin: 0 auto 42px;
}

.livecall-head h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.livecall-head > p {
  margin: 0;
  color: #29477f;
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  line-height: 1.58;
}

.livecall-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.58fr);
  gap: 28px;
  max-width: 1420px;
  margin: 0 auto;
}

.call-console {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #d5e2f6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(7, 22, 63, 0.13);
}

.console-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 60% 18%, rgba(20, 200, 244, 0.26), transparent 30%),
    linear-gradient(180deg, #061642, #092a77);
}

.console-sidebar strong {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #aeefff;
  background: rgba(255,255,255,0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.console-sidebar button {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  color: #dce9ff;
  background: rgba(255,255,255,0.06);
  text-align: left;
  padding: 0 14px;
  font-weight: 900;
}

.console-sidebar button.active {
  color: #061642;
  background: #fff;
}

.console-main {
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(7,92,255,0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fff, #f7faff);
  background-size: 42px 42px, auto;
}

.customer-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid #dce7f8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 22, 63, 0.06);
}

.customer-strip span {
  color: #60759c;
  font-weight: 900;
}

.customer-strip b {
  color: #ff7a1a;
}

.coach-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 22, 63, 0.09);
}

.primary-coach {
  border: 1px solid rgba(17, 98, 255, 0.24);
}

.coach-card small {
  color: var(--blue);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-card p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  line-height: 1.44;
  font-weight: 850;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.coach-grid div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid #dce7f8;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
}

.coach-grid strong,
.coach-grid span {
  display: block;
}

.coach-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.coach-grid span {
  color: #587096;
}

.livecall-cards {
  display: grid;
  gap: 16px;
}

.livecall-cards article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid #d5e2f6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(7, 22, 63, 0.08);
}

.livecall-cards span {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 950;
}

.livecall-cards h3 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 1.22rem;
}

.livecall-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.portfolio-proof {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(7, 92, 255, 0.07), transparent 25%),
    radial-gradient(circle at 88% 76%, rgba(20, 200, 244, 0.09), transparent 27%),
    #fff;
}

.portfolio-proof::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 98, 255, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at 8% 44%, #000 0 9%, transparent 20%);
  content: "";
  pointer-events: none;
}

.portfolio-proof > .section-heading,
.portfolio-grid {
  position: relative;
  z-index: 2;
}

.proof,
#old-process,
.cta {
  display: none;
}

.compact-builds {
  padding-top: clamp(70px, 7vw, 108px);
}

.compact-builds .section-heading {
  max-width: 980px;
  margin-bottom: 30px;
}

.compact-builds .compact-proof-grid {
  margin-top: 0;
}

.service-grid,
.help-grid,
.example-flow-grid,
.engagement-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  max-width: 1460px;
  margin: 0 auto;
}

.service-grid,
.help-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.example-flow-grid,
.engagement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.help-grid article,
.example-flow-grid article,
.engagement-grid article {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid #d7e4f7;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(7, 22, 63, 0.09);
}

.service-card {
  display: grid;
  align-content: start;
  padding: 16px 16px 22px;
}

.service-shot,
.proof-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid #dce8f8;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(17, 98, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #f3f8ff);
  background-size: 28px 28px, auto;
}

.service-shot {
  height: 188px;
}

.service-shot::after,
.proof-shot::after {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  content: "";
  pointer-events: none;
}

.service-shot img,
.proof-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.service-card:nth-child(1) .service-shot img {
  object-position: top center;
  transform: scale(1.22);
  transform-origin: top center;
}

.service-card:nth-child(2) .service-shot img,
.service-card:nth-child(3) .service-shot img {
  object-position: top left;
}

.service-card:nth-child(4) .service-shot img {
  object-position: center;
}

.service-card h3,
.help-grid h3,
.example-flow-grid h3,
.engagement-grid h3 {
  margin: 18px 0 9px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.18;
}

.service-card p,
.help-grid p,
.example-flow-grid p,
.engagement-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.service-card ul,
.engagement-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.engagement-grid li {
  position: relative;
  padding-left: 22px;
  color: #314a7d;
  font-size: 0.92rem;
  font-weight: 760;
}

.service-card li::before,
.engagement-grid li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  content: "";
}

.service-card a {
  justify-self: start;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 920;
}

.service-mock {
  display: grid;
  min-height: 168px;
  gap: 10px;
  padding: 16px;
  border: 1px solid #dce8f8;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(17, 98, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #f3f8ff);
  background-size: 28px 28px, auto;
}

.service-mock span {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid #d5e4f9;
  border-radius: 999px;
  color: #17336a;
  background: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.website-mock,
.app-mock {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
}

.sheets-mock,
.content-mock {
  grid-template-columns: 1fr;
}

.where-help {
  background:
    radial-gradient(circle at 90% 22%, rgba(20, 200, 244, 0.08), transparent 28%),
    #fff;
}

.help-grid article,
.engagement-grid article {
  padding: 28px;
}

.help-grid article > span,
.engagement-grid article > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: #eef5ff;
  font-weight: 950;
}

.example-flow-grid {
  max-width: 1320px;
  margin-bottom: 34px;
}

.example-flow-grid article {
  padding: 18px;
}

.proof-shot {
  height: 258px;
  box-shadow: 0 18px 44px rgba(7, 22, 63, 0.08);
}

.example-flow-grid article:nth-child(1) .proof-shot img {
  object-position: top left;
}

.example-flow-grid article:nth-child(2) .proof-shot img {
  object-position: top left;
}

.example-flow-grid article:nth-child(3) .proof-shot img {
  object-position: top center;
  transform: scale(1.12);
  transform-origin: top center;
}

.flow-mini {
  min-height: 178px;
  border: 1px solid #dce8f8;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f4f8ff);
}

.website-flow {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
  grid-auto-rows: 1fr;
  align-items: center;
  gap: 8px;
  padding: 18px;
}

.website-flow span,
.order-flow span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid #d5e5fb;
  border-radius: 12px;
  color: #12336d;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 920;
}

.website-flow i {
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.sheet-flow {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.sheet-flow div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid #dbe8f8;
  border-radius: 12px;
  background: #fff;
}

.sheet-flow b,
.sheet-flow small {
  display: block;
}

.sheet-flow b {
  color: var(--ink);
  font-size: 0.84rem;
}

.sheet-flow small {
  color: var(--muted);
  font-size: 0.72rem;
}

.order-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
  padding: 18px;
}

.engagement-options {
  background:
    radial-gradient(circle at 12% 10%, rgba(116, 72, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff, #fff);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1460px;
  margin: 0 auto;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid #d5e2f6;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 90px rgba(7, 22, 63, 0.11);
}

.portfolio-media {
  height: 300px;
  overflow: hidden;
  border-bottom: 1px solid #e1eaf8;
  background: #eef5ff;
}

.portfolio-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 10px;
  padding: 12px;
}

.split-media img {
  height: 276px;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(7, 22, 63, 0.12);
  object-position: center;
}

.stacked-media {
  position: relative;
  padding: 18px;
}

.stacked-media img {
  position: absolute;
  width: 74%;
  height: 210px;
  border: 1px solid #d7e3f5;
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(7, 22, 63, 0.16);
  object-position: top left;
}

.stacked-media img:first-child {
  top: 18px;
  left: 18px;
}

.stacked-media img:last-child {
  right: 18px;
  bottom: 18px;
}

.automation-console {
  height: 300px;
  padding: 20px;
  border-bottom: 1px solid #e1eaf8;
  background:
    linear-gradient(90deg, rgba(7,92,255,0.06) 1px, transparent 1px),
    linear-gradient(180deg, #061642, #0a3aa0);
  background-size: 34px 34px, auto;
  color: #fff;
}

.automation-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.automation-top strong {
  font-size: 1.05rem;
}

.automation-top span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #aeefff;
  background: rgba(255,255,255,0.1);
  font-size: 0.72rem;
  font-weight: 900;
}

.automation-flow {
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1fr;
  gap: 8px;
  align-items: center;
}

.automation-flow div,
.automation-queue {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.automation-flow div {
  min-height: 86px;
  padding: 12px;
}

.automation-flow b,
.automation-flow span {
  display: block;
}

.automation-flow b {
  margin-bottom: 6px;
  color: #fff;
}

.automation-flow span {
  color: #d8e8ff;
  font-size: 0.72rem;
  line-height: 1.35;
}

.automation-flow i {
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), #27d8ff);
}

.automation-queue {
  margin-top: 16px;
  padding: 12px 14px;
}

.automation-queue p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: #d8e8ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.automation-queue span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #27d8ff;
  box-shadow: 0 0 0 5px rgba(39,216,255,0.14);
}

.automation-queue b {
  margin-left: auto;
  color: #fff;
}

.portfolio-copy {
  padding: 26px;
}

.portfolio-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 1.86rem);
  line-height: 1.08;
}

.portfolio-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.portfolio-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.portfolio-copy li {
  display: flex;
  gap: 9px;
  color: #24406f;
  font-size: 0.9rem;
  font-weight: 850;
}

.portfolio-copy li::before {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.shroom-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.72fr);
  gap: 26px;
  align-items: stretch;
  max-width: 1420px;
  margin: 0 auto;
}

.shroom-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #d5e2f6;
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 18%, rgba(27, 94, 32, 0.08), transparent 28%),
    radial-gradient(circle at 84% 74%, rgba(0, 97, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7faf7);
  box-shadow: 0 30px 76px rgba(7, 22, 63, 0.09);
}

.browser-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid #d9e4f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(7, 22, 63, 0.18);
}

.browser-shot::before {
  display: block;
  height: 28px;
  border-bottom: 1px solid #e3ebf8;
  background:
    radial-gradient(circle at 18px 14px, #ff6b61 0 4px, transparent 4.5px),
    radial-gradient(circle at 34px 14px, #ffb13b 0 4px, transparent 4.5px),
    radial-gradient(circle at 50px 14px, #10a968 0 4px, transparent 4.5px),
    #ffffff;
  content: "";
}

.browser-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.main-shot {
  inset: 34px 170px 36px 34px;
}

.main-shot img {
  height: calc(100% - 28px);
}

.floating-shot {
  position: absolute;
  right: 34px;
  top: 56px;
  width: 230px;
  height: 230px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(7, 22, 63, 0.2);
}

.floating-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-overlay {
  position: absolute;
  right: 34px;
  bottom: 36px;
  display: grid;
  width: 272px;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(20, 200, 244, 0.28), transparent 34%),
    linear-gradient(180deg, #061642, #0b3290);
  box-shadow: 0 26px 70px rgba(7, 22, 63, 0.24);
}

.system-overlay strong {
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.system-overlay span {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #dce9ff;
  font-size: 0.8rem;
  font-weight: 850;
}

.shroom-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid #d9e4f7;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 68px rgba(7, 22, 63, 0.13);
}

.shroom-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.shroom-card div {
  padding: 18px;
}

.shroom-card span,
.system-overlay strong {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shroom-card strong,
.shroom-card small {
  display: block;
}

.shroom-card strong {
  margin-top: 7px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.15;
}

.shroom-card small {
  margin-top: 7px;
  color: #63789f;
  font-size: 0.86rem;
  line-height: 1.4;
}

.shroom-card-large {
  top: 34px;
  left: 34px;
  width: min(420px, calc(100% - 320px));
}

.shroom-card-large img {
  height: 225px;
}

.shroom-card-product {
  top: 70px;
  right: 34px;
  width: 245px;
}

.shroom-card-product img {
  height: 155px;
}

.shroom-card-research {
  left: 108px;
  bottom: 34px;
  width: 292px;
}

.shroom-card-research img {
  height: 135px;
}

.system-overlay {
  right: 34px;
  bottom: 42px;
  width: 292px;
  border-color: #dfe8dc;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(249,252,248,0.97));
  box-shadow: 0 22px 58px rgba(7, 22, 63, 0.1);
}

.system-overlay strong {
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.system-overlay span {
  border-color: #e4ecdf;
  color: #223b2a;
  background: #fbfdf9;
}

.shroom-copy {
  padding: 34px;
  border: 1px solid #d5e2f6;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(7, 22, 63, 0.1);
}

.shroom-copy > span,
.compact-proof-grid .portfolio-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shroom-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.shroom-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.proof-metrics div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid #e0e9f7;
  border-radius: 14px;
  background: #f8fbff;
}

.proof-metrics b,
.proof-metrics small {
  display: block;
}

.proof-metrics b {
  color: var(--ink);
  font-size: 0.98rem;
}

.proof-metrics small {
  margin-top: 6px;
  color: #64789f;
  font-size: 0.82rem;
  line-height: 1.4;
}

.compact-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1420px;
  margin: 22px auto 0;
}

.compact-proof-grid article {
  overflow: hidden;
  border: 1px solid #d5e2f6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(7, 22, 63, 0.08);
}

.compact-proof-grid img,
.mini-console {
  width: 100%;
  height: 190px;
  border-bottom: 1px solid #e1eaf8;
}

.compact-proof-grid img {
  display: block;
  object-fit: cover;
  object-position: top left;
}

.mini-console {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(39,216,255,0.07) 1px, transparent 1px),
    linear-gradient(180deg, #061642, #0a3aa0);
  background-size: 32px 32px, auto;
}

.mini-console p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #dce9ff;
  font-size: 0.82rem;
  font-weight: 850;
}

.mini-console span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27d8ff;
}

.mini-console b {
  margin-left: auto;
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.automation-pipeline {
  display: grid;
  align-content: start;
  gap: 12px;
  width: 100%;
  height: 190px;
  padding: 16px;
  border-bottom: 1px solid #e1eaf8;
  background:
    radial-gradient(circle at 86% 14%, rgba(20, 200, 244, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6f9ff);
}

.pipeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pipeline-head strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.pipeline-head span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #0b8c52;
  background: #e9f9ef;
  font-size: 0.65rem;
  font-weight: 950;
  white-space: nowrap;
}

.pipeline-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.pipeline-steps div {
  min-height: 62px;
  padding: 9px;
  border: 1px solid #dce7f8;
  border-radius: 10px;
  background: #fff;
}

.pipeline-steps b,
.pipeline-steps small {
  display: block;
}

.pipeline-steps b {
  color: var(--blue);
  font-size: 0.72rem;
}

.pipeline-steps small {
  margin-top: 4px;
  color: #63789f;
  font-size: 0.58rem;
  line-height: 1.25;
}

.pipeline-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.pipeline-status p {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 7px 8px;
  border-radius: 999px;
  color: #264472;
  background: #edf5ff;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.2;
}

.pipeline-status span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.lcc-proof-frame {
  height: 190px;
  overflow: hidden;
  padding: 14px;
  border-bottom: 1px solid #e1eaf8;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 214, 170, 0.2), transparent 30%),
    linear-gradient(135deg, #06111f, #0b1930 52%, #07111f);
}

.lcc-window {
  display: grid;
  grid-template-columns: 112px 1fr;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(45, 226, 196, 0.26);
  border-radius: 14px;
  background: #0a1324;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.lcc-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 10px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.lcc-sidebar span {
  color: #26e5b8;
  font-size: 0.78rem;
  font-weight: 950;
}

.lcc-sidebar b {
  padding: 7px 8px;
  border-radius: 8px;
  color: #8ca5c9;
  font-size: 0.58rem;
  line-height: 1.15;
}

.lcc-sidebar b.active {
  color: #fff;
  background: #143061;
}

.lcc-main {
  min-width: 0;
  padding: 12px;
}

.lcc-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #fff;
}

.lcc-topline strong {
  font-size: 0.78rem;
}

.lcc-topline span {
  color: #26e5b8;
  font-size: 0.56rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lcc-coach-card {
  margin-top: 10px;
  padding: 11px;
  border: 1px solid rgba(38, 229, 184, 0.28);
  border-radius: 12px;
  background: rgba(12, 54, 66, 0.52);
}

.lcc-coach-card small {
  display: block;
  color: #26e5b8;
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lcc-coach-card p {
  margin: 6px 0 0;
  color: #e7f2ff;
  font-size: 0.68rem;
  line-height: 1.35;
}

.lcc-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.lcc-actions span {
  min-width: 0;
  padding: 7px 6px;
  border-radius: 8px;
  color: #06111f;
  background: #24e1ae;
  font-size: 0.54rem;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
}

.compact-proof-grid .portfolio-copy {
  padding: 22px;
}

.compact-proof-grid .portfolio-copy h3 {
  font-size: 1.35rem;
}

.compact-proof-grid .portfolio-copy p {
  font-size: 0.94rem;
}

.section-pad { padding: clamp(78px, 9vw, 128px) clamp(20px, 5vw, 64px); }
.section-heading {
  max-width: 940px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading h2,
.proof h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.4vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}
.section-heading p:not(.eyebrow),
.proof p,
.cta p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.order-wall,
.documents {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(7, 92, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.order-wall::before,
.documents::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7, 92, 255, 0.28) 1px, transparent 1px);
  background-size: 17px 17px;
  mask-image: radial-gradient(circle at 8% 58%, #000 0 9%, transparent 19%);
  content: "";
  pointer-events: none;
}

.showcase-heading {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto 38px;
  text-align: center;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-heading .pill-label:has(+ .pill-label) {
  display: none;
}

.showcase-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 5.4vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.showcase-heading p:not(.pill-label) {
  max-width: 820px;
  margin: 22px auto 0;
  color: #23468b;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.45;
}

.command-showcase {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  min-height: 720px;
  margin: 0 auto;
}

.board-insight,
.next-actions {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(7, 22, 63, 0.13);
  backdrop-filter: blur(14px);
}

.board-insight {
  top: 300px;
  left: 0;
  display: grid;
  width: 175px;
  padding: 24px 20px;
}

.insight-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 12px;
  color: var(--blue);
  background: #eef5ff;
  font-weight: 950;
}

.board-insight strong { font-size: 0.9rem; }
.board-insight small {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 800;
}
.board-insight b {
  color: #ff7a1a;
  font-size: 2rem;
  line-height: 1;
}
.board-insight b.ink { color: var(--ink); }
.board-insight b.green { color: #10a968; }
.board-insight a {
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 900;
}

.command-center {
  margin: 0 78px;
  padding: 28px 28px 26px;
  border: 1px solid #cbdaf4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 32px 90px rgba(7, 22, 63, 0.14);
}

.mobile-board-snapshot {
  display: none;
}

.mobile-board-snapshot img {
  display: block;
  width: 100%;
}

.mobile-command-feed {
  display: none;
}

.command-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}
.command-head img {
  width: 230px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}
.command-head strong {
  display: block;
  font-size: 1.45rem;
}
.command-head span {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 850;
}
.command-head i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: -12px;
  border-radius: 50%;
  background: var(--blue);
}
.command-head .orange { background: #ff9b22; }
.command-head .green-dot { background: #10a968; }

.order-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(175px, 1fr));
  gap: 10px;
}

.order-lane {
  min-height: 418px;
  padding: 12px;
  border: 1px solid #e0e8f6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.order-lane h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.95rem;
}

.order-lane h3 b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin-left: auto;
  border-radius: 50%;
  color: var(--ink);
  background: #eef2fb;
  font-size: 0.76rem;
}

.lane-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  font-weight: 950;
}
.lane-icon.blue { color: var(--blue); }
.lane-icon.purple { color: #7448ff; }
.lane-icon.orange { color: #ff7a1a; background: #fff1e7; }
.lane-icon.green { color: #10a968; background: #eafaf3; }

.order-lane article {
  position: relative;
  min-height: 94px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid #e2e8f4;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 22, 63, 0.07);
}
.order-lane.attention article {
  border-left: 3px solid #ff7a1a;
}
.order-lane article strong,
.order-lane article small,
.order-lane article a {
  display: block;
}
.order-lane article strong { font-size: 0.9rem; line-height: 1.15; }
.order-lane article small { margin-top: 7px; color: #254174; font-size: 0.76rem; }
.order-lane article a { margin-top: 7px; color: var(--blue); font-size: 0.78rem; font-weight: 900; }
.order-lane article em {
  position: absolute;
  right: 10px;
  bottom: 12px;
  padding: 5px 8px;
  border: 1px solid #ffd19d;
  border-radius: 7px;
  color: #e96b00;
  background: #fff6ec;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
}
.order-lane article em.cool {
  border-color: #d8e3f5;
  color: var(--ink);
  background: #f4f8ff;
}
.order-lane button {
  margin: 18px 0 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 900;
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 16px;
  border: 1px solid #e0e8f6;
  border-radius: 12px;
  background: #fff;
}
.command-metrics div {
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 17px 22px;
  border-right: 1px solid var(--line);
}
.command-metrics div:last-child { border-right: 0; }
.command-metrics span {
  grid-row: span 2;
  color: var(--blue);
  font-size: 1.35rem;
}
.command-metrics strong { font-size: 0.94rem; }
.command-metrics small { color: #34538e; font-size: 0.78rem; }

.next-actions {
  top: 0;
  right: 0;
  width: 328px;
  overflow: hidden;
}
.next-actions > button {
  display: grid;
  width: calc(100% - 20px);
  min-height: 76px;
  margin: 10px;
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #075cff, #1e73ff);
  text-align: left;
  font-weight: 950;
}
.next-actions > button small {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  font-weight: 800;
}
.next-actions p {
  margin: 0;
  padding: 0 16px 12px;
  color: #244384;
  font-size: 0.78rem;
}
.suggestions {
  border-top: 1px solid var(--line);
  background: #fff;
}
.suggestions > strong {
  display: flex;
  gap: 8px;
  padding: 13px 16px;
  font-size: 0.84rem;
}
.suggestions em {
  padding: 2px 6px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 0.68rem;
  font-style: normal;
}
.suggestions ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.suggestions li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}
.suggestions li span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #eef2fb;
  font-size: 0.7rem;
  font-weight: 950;
}
.suggestions li b { font-size: 0.78rem; line-height: 1.25; }
.suggestions li i {
  padding: 6px 9px;
  border: 1px solid #c7d9ff;
  border-radius: 7px;
  color: var(--blue);
  background: #f1f6ff;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
}
.suggestions li i.update {
  border-color: #bfead2;
  color: #0b9d5b;
  background: #ecfbf3;
}
.suggestions > a {
  display: block;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
}

.workspaces {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 44%, rgba(17, 98, 255, 0.08), transparent 25%),
    radial-gradient(circle at 94% 86%, rgba(17, 98, 255, 0.08), transparent 26%),
    #fff;
}
.workspaces::before,
.workspaces::after {
  position: absolute;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(rgba(17, 98, 255, 0.24) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.46;
  content: "";
}
.workspaces::before {
  left: 58px;
  top: 244px;
}
.workspaces::after {
  right: 52px;
  bottom: 72px;
}
.workspaces > .section-heading,
.workspaces > .workspace-showcase-v2 {
  position: relative;
  z-index: 2;
}
.workspaces > .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.55;
}
.carousel-controls {
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  right: max(clamp(20px, 5vw, 64px), calc((100% - 1530px) / 2 + 24px));
  left: max(clamp(20px, 5vw, 64px), calc((100% - 1530px) / 2 + 24px));
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
  transform: none;
}
.workspaces .carousel-controls {
  top: 60%;
}
.document-carousel-controls {
  top: 67%;
  right: max(clamp(20px, 5vw, 64px), calc((100% - 1510px) / 2 + 24px));
  left: max(clamp(20px, 5vw, 64px), calc((100% - 1510px) / 2 + 24px));
  margin: 0;
}
.carousel-arrow {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid #cfe0f7;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 22, 63, 0.1);
  cursor: pointer;
  pointer-events: auto;
  font-size: 1.45rem;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.carousel-arrow:hover {
  background: #fff;
  box-shadow: 0 22px 54px rgba(7, 22, 63, 0.16);
  transform: translateY(-2px);
}
.carousel-arrow:focus-visible {
  outline: 3px solid rgba(17, 98, 255, 0.25);
  outline-offset: 3px;
}
.workspace-showcase-v2 {
  display: flex;
  gap: 28px;
  max-width: 1530px;
  margin: 70px auto 0;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  padding: 36px 4px 28px;
  scroll-behavior: smooth;
  scroll-padding-left: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.workspace-showcase-v2::-webkit-scrollbar,
.document-stage::-webkit-scrollbar {
  display: none;
}
.workspaces > .workspace-grid { display: none; }
.workspace-product-card {
  position: relative;
  flex: 0 0 calc((100% - 28px) / 2);
  min-width: 0;
  overflow: visible;
  scroll-snap-align: start;
  border: 1px solid #d5e2f6;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 85px rgba(7, 22, 63, 0.12);
}
.workspace-floating-badge {
  position: absolute;
  z-index: 3;
  top: -34px;
  left: 32px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid #d9e6f8;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 98, 255, 0.16);
  font-size: 1.5rem;
  font-weight: 950;
}
.workspace-ui {
  min-width: 0;
  height: 330px;
  min-height: 0;
  overflow: hidden;
  padding: 26px;
  border-bottom: 1px solid #e3ebf8;
}
.workspace-window-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 36px;
  margin: 2px 0 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}
.workspace-window-bar strong {
  flex: 1;
  padding-left: 4px;
}
.workspace-window-bar span {
  color: #60749a;
  font-size: 0.74rem;
}
.followup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  min-width: 0;
}
.conversation-list,
.proposal-card,
.followup-message,
.task-list,
.priority-box,
.opportunity-box,
.manager-note,
.performance-card {
  min-width: 0;
  border: 1px solid #e1e9f6;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 22, 63, 0.06);
}
.conversation-list {
  grid-row: span 2;
  padding: 12px;
}
.person-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 9px 8px;
  border-radius: 10px;
}
.person-row.active { background: #f3f7ff; }
.person-row i {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a245c, #27d8ff);
}
.person-row b,
.person-row small,
.person-row em {
  display: block;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.person-row b { color: var(--ink); font-size: 0.68rem; }
.person-row small,
.person-row em { color: #6680aa; font-size: 0.58rem; }
.conversation-list a,
.followup-message a,
.glance-row a {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  text-decoration: none;
}
.proposal-card,
.followup-message,
.task-list {
  padding: 14px;
}
.proposal-card h4,
.followup-message h4,
.task-list h4,
.priority-box h4,
.opportunity-box h4,
.manager-note h4,
.performance-card h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.72rem;
}
.donut-chart {
  display: grid;
  width: 84px;
  height: 84px;
  margin: 2px auto 10px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#1162ff 0 34%, #26c7ff 34% 58%, #ffb13b 58% 82%, #ff6b61 82% 100%);
}
.donut-chart span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  line-height: 1;
  text-align: center;
}
.donut-chart small { color: #6b7fa7; font-size: 0.54rem; }
.proposal-card p,
.followup-message p,
.task-list p {
  margin: 7px 0;
  color: #35507d;
  font-size: 0.62rem;
  line-height: 1.45;
}
.proposal-card p b {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.followup-message button {
  width: 100%;
  min-height: 32px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 0.64rem;
  font-weight: 900;
}
.task-list {
  grid-column: 1 / -1;
}
.task-list p,
.priority-box p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.task-list span,
.priority-box span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 2px solid var(--blue);
  border-radius: 3px;
}
.task-list b,
.priority-box b {
  color: #6680aa;
  font-size: 0.56rem;
  white-space: nowrap;
}
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}
.metric-strip div,
.glance-row div {
  padding: 13px 10px;
  border: 1px solid #e1e9f6;
  border-radius: 11px;
  background: #fff;
}
.metric-strip b,
.glance-row b {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}
.metric-strip small,
.glance-row small {
  display: block;
  color: #6680aa;
  font-size: 0.54rem;
}
.orders-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #e1e9f6;
  border-radius: 13px;
  background: #fff;
  color: #1b3361;
  font-size: 0.56rem;
}
.orders-table th,
.orders-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #edf2fa;
  text-align: left;
}
.orders-table th {
  color: #667ea8;
  font-weight: 900;
}
.orders-table td:first-child { color: var(--blue); font-weight: 900; }
.orders-table span {
  display: inline-block;
  padding: 4px 7px;
  border-radius: 999px;
  background: #f2f5fa;
  color: #3f557c;
  font-weight: 900;
}
.orders-table .ok { background: #e9f9ef; color: #168352; }
.orders-table .wait { background: #edf3ff; color: #1162ff; }
.orders-table .hold { background: #fff5df; color: #9b6200; }
.orders-table .risk { background: #ffecec; color: #d63232; }
.glance-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
}
.sales-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 12px;
}
.priority-box,
.opportunity-box,
.manager-note,
.performance-card {
  padding: 14px;
}
.priority-box p,
.opportunity-box p,
.manager-note p,
.performance-card p {
  margin: 9px 0;
  color: #35507d;
  font-size: 0.62rem;
  line-height: 1.45;
}
.opportunity-box p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.opportunity-box b,
.opportunity-box span {
  display: block;
}
.opportunity-box span {
  color: #60749a;
  font-size: 0.56rem;
  text-align: right;
}
.performance-card svg {
  display: block;
  width: 100%;
  height: 72px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7faff, #fff);
}
.performance-card p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.performance-card b { color: var(--ink); font-size: 1rem; }
.workspace-copy-v2 {
  min-height: 148px;
  padding: 20px 30px 24px;
}
.workspace-copy-v2 span {
  display: block;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 950;
}
.workspace-copy-v2 h3 {
  margin: 7px 0 10px;
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.1;
}
.workspace-copy-v2 p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1420px;
  margin: 0 auto;
}
.workspace-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.workspace-card img {
  display: block;
  width: 100%;
  height: 255px;
  object-fit: cover;
  object-position: top left;
  background: #f4f7fb;
}
.workspace-card div { padding: 24px; }
.workspace-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}
.workspace-card h3 {
  margin: 7px 0 10px;
  font-size: 1.52rem;
  line-height: 1.1;
}
.workspace-card p { margin: 0; color: var(--muted); }

.document-stage {
  display: flex;
  gap: 18px;
  max-width: 1510px;
  margin: 0 auto;
  align-items: start;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 4px 28px;
  scroll-behavior: smooth;
  scroll-padding-left: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.workflow-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1160px;
  margin: 0 auto 34px;
  border: 1px solid #d5e2f6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(7, 22, 63, 0.08);
}

.workflow-rail span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}
.workflow-rail span:last-child { border-right: 0; color: var(--blue); }
.workflow-rail i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #eef5ff;
  font-style: normal;
}

.document-stage figure {
  flex: 0 0 calc((100% - 18px) / 2);
  margin: 0;
  padding: 16px 14px 14px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7, 22, 63, 0.1);
}

.doc-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
}
.doc-title span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #eef5ff;
  font-weight: 950;
}
.green-doc .doc-title span { color: #16a65f; background: #ebfbf2; }
.purple-doc .doc-title span { color: #7448ff; background: #f4efff; }
.orange-doc .doc-title span { color: #ff7a1a; background: #fff1e7; }
.doc-title strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}
.doc-title small {
  color: #27447d;
  font-size: 0.78rem;
  font-weight: 800;
}

.doc-window {
  position: relative;
  margin-top: 14px;
  height: 360px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.doc-window::before {
  display: none;
  height: 0;
  background: transparent;
  content: "";
}
.mini-doc {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 24px 24px 18px;
  border: 1px solid #dde7f5;
  border-radius: 4px;
  color: #07163f;
  background: #fff;
  box-shadow: 0 20px 46px rgba(7, 22, 63, 0.1);
}
.mini-doc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.mini-doc-head b {
  color: var(--ink);
  font-size: 1.18rem;
  letter-spacing: 0;
}
.mini-logo {
  display: block;
  width: 165px;
  max-width: 58%;
  height: auto;
}
.mini-doc-head strong {
  color: var(--ink);
  font-size: 0.78rem;
  text-align: right;
}
.mini-doc-head small {
  font-size: 0.66rem;
  font-weight: 800;
}
.mini-address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
  color: #26385e;
  font-size: 0.64rem;
  line-height: 1.6;
}
.mini-address span {
  display: block;
}
.mini-doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.55rem;
}
.mini-doc th {
  padding: 0 0 7px;
  color: var(--ink);
  text-align: left;
  border-bottom: 1px solid #d7deea;
}
.mini-doc th:nth-child(3),
.mini-doc th:nth-child(4),
.mini-doc th:nth-child(5),
.mini-doc td:nth-child(3),
.mini-doc td:nth-child(4),
.mini-doc td:nth-child(5) {
  text-align: right;
}
.mini-doc td {
  padding: 6px 0;
  border-bottom: 1px solid #edf1f7;
}
.mini-doc td small {
  display: block;
  max-width: 190px;
  margin-top: 2px;
  color: #5d6f94;
  font-size: 0.49rem;
  line-height: 1.25;
}
.mini-total {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
  color: #26385e;
  font-size: 0.63rem;
  line-height: 1.7;
}
.mini-total b {
  justify-self: end;
  color: var(--ink);
  text-align: right;
}

.document-stage figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 2px 0;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: left;
}
.document-stage figcaption b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: #f7faff;
}
.document-stage figcaption span {
  color: var(--blue);
  font-size: 0.8rem;
}

.proof,
#old-process,
.cta {
  display: none;
}

.repeatable-prompts {
  background:
    radial-gradient(circle at 16% 22%, rgba(7, 92, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.prompt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1360px;
  margin: 0 auto;
}

.prompt-card-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid #d7e3f5;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.94));
  box-shadow: 0 24px 68px rgba(7, 22, 63, 0.08);
}

.prompt-card-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  color: var(--blue);
  background: #edf5ff;
  font-weight: 950;
}

.prompt-card-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.prompt-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.bottom-system {
  padding-top: clamp(220px, 14vw, 250px);
  background:
    radial-gradient(circle at 50% 10%, rgba(7, 92, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.bottom-heading {
  max-width: 1050px;
  margin: 0 auto 42px;
  text-align: center;
}

.bottom-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 4.6vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.bottom-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.process-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1340px;
  margin: 0 auto 70px;
  padding: 0;
  list-style: none;
}

.process-cards::before {
  position: absolute;
  top: 90px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(7, 92, 255, 0.2), var(--blue), rgba(7, 92, 255, 0.2));
  content: "";
}

.process-cards li {
  position: relative;
  min-height: 344px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(7, 22, 63, 0.09);
}

.process-cards li:first-child {
  border-left: 6px solid #8fb8ff;
}

.process-cards li::before {
  position: absolute;
  top: 82px;
  left: 30px;
  z-index: 2;
  width: 17px;
  height: 17px;
  border: 4px solid #eaf2ff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #8cb6ff;
  content: "";
}

.process-cards li:not(:last-child)::after {
  position: absolute;
  top: 83px;
  right: -20px;
  z-index: 3;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 950;
  content: ">";
}

.step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.step-top span {
  color: var(--blue);
  font-size: 2.75rem;
  font-weight: 950;
  line-height: 1;
}

.step-top i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #f0f3ff;
  font-size: 1.45rem;
  font-style: normal;
  font-weight: 950;
}

.process-cards strong {
  display: block;
  margin-top: 62px;
  font-size: 1.45rem;
}

.process-cards p {
  margin: 16px 0 0;
  color: #53658b;
  font-size: 1.02rem;
  line-height: 1.5;
}

.process-cards small {
  position: absolute;
  bottom: 28px;
  left: 30px;
  min-height: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef3ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(32px, 6vw, 78px);
  max-width: 1500px;
  min-height: 620px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(58px, 6vw, 86px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(20, 200, 244, 0.24), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(7, 92, 255, 0.72), transparent 40%),
    linear-gradient(135deg, #020b22 0%, #061a54 58%, #175cff 100%);
  box-shadow: 0 34px 90px rgba(7, 22, 63, 0.24);
}

.review-cta::before {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 780px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.review-cta::after {
  position: absolute;
  right: 125px;
  top: 90px;
  width: 240px;
  height: 180px;
  background-image: radial-gradient(rgba(20, 200, 244, 0.65) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.65;
}

.review-copy,
.review-panel {
  position: relative;
  z-index: 2;
}

.review-brand {
  display: grid;
  grid-template-columns: auto 10px auto;
  align-items: end;
  justify-content: start;
  column-gap: 10px;
  width: max-content;
  margin-bottom: 72px;
  color: #fff;
}

.review-brand .brand-ai {
  display: block;
  color: #f8fbff;
  font-size: 2.35rem;
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
}

.review-brand .brand-divider {
  display: block;
  width: 5px;
  height: 36px;
  border-radius: 999px;
  background: var(--cyan);
}

.review-brand strong {
  display: block;
  color: #fff;
  font-size: 1.95rem;
  font-weight: 950;
  line-height: 0.9;
}

.review-brand small {
  grid-column: 3;
  margin-top: 8px;
  color: #aebfe5;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.85rem, 4.55vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.review-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #dbe8ff;
  font-size: 1.14rem;
}

.review-copy .button {
  margin-top: 42px;
  min-height: 70px;
  padding: 0 34px;
  font-size: 1.05rem;
}

.review-copy .button span {
  margin-left: 20px;
}

.team-proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
}

.team-proof span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-right: -9px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0f7cff, #7448ff);
  font-weight: 950;
}

.team-proof p {
  margin: 0 0 0 22px;
  color: #cbdcff;
  font-size: 0.95rem;
  line-height: 1.35;
}

.review-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 470px;
}

.momentum-pill {
  min-height: 44px;
  margin: 0 0 18px;
  padding: 11px 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.review-card {
  width: min(100%, 440px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(5, 22, 68, 0.42);
  backdrop-filter: blur(12px);
}

.review-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.review-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-card li {
  position: relative;
  padding-left: 34px;
  color: #eef5ff;
}

.review-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #1d73ff;
  content: "✓";
  font-size: 0.82rem;
  font-weight: 950;
}

.ai-tile {
  position: absolute;
  right: 28px;
  bottom: 95px;
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  border: 4px solid rgba(135, 169, 255, 0.88);
  border-radius: 22px;
  color: #fff;
  background: radial-gradient(circle at 62% 12%, rgba(20, 200, 244, 0.5), transparent 35%), #10247e;
  box-shadow: 0 0 42px rgba(65, 116, 255, 0.75);
  font-size: 3.55rem;
  font-weight: 950;
}

.review-panel > small {
  justify-self: start;
  margin: 28px 0 0 24px;
  color: #dbe8ff;
}

.proof {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(20, 200, 244, 0.26), transparent 28%),
    linear-gradient(135deg, #06143a, #10276b 58%, #7448ff);
}

.proof-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  max-width: 1360px;
  margin: 0 auto;
  align-items: center;
}
.proof .eyebrow { color: #8ee3ff; }
.proof p { margin-left: 0; color: #dbe9ff; }
.proof ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proof li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}
.proof li strong { display: block; margin-bottom: 6px; color: #fff; }
.proof li span { color: #dbe9ff; }

.process { background: #fff; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.timeline li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 22, 63, 0.08);
}
.timeline span {
  color: var(--blue);
  font-weight: 950;
}
.timeline strong {
  display: block;
  margin-top: 18px;
  font-size: 1.2rem;
}
.timeline p { margin: 8px 0 0; color: var(--muted); }

.cta {
  padding: 0 clamp(20px, 5vw, 64px) clamp(72px, 8vw, 110px);
  background: #fff;
}
.cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(20, 200, 244, 0.24), transparent 28%),
    linear-gradient(135deg, #06143a, #132e7d 58%, #7448ff);
  box-shadow: 0 30px 80px rgba(7, 22, 63, 0.2);
}
.cta p { margin-left: 0; color: #dbe9ff; }
.cta .button { margin-top: 26px; }

.site-footer {
  padding: 30px clamp(20px, 5vw, 64px) 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(140px, 0.48fr));
  gap: clamp(22px, 4vw, 58px);
  max-width: 1510px;
  margin: 0 auto;
}
.footer-brand img {
  display: block;
  width: 184px;
  height: auto;
  margin-bottom: 10px;
}
.footer-brand p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 7px;
}
.footer-col strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col a,
.footer-col span {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1510px;
  margin: 24px auto 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #7b88a4;
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.is-visible,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

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

@media (max-width: 1260px) {
  .hero-inner,
  .proof-inner,
  .prompt-apps,
  .livecall-head,
  .livecall-stage {
    grid-template-columns: 1fr;
  }
  .hero-inner { min-height: 0; }
  .hero-system {
    width: min(100%, 900px);
    margin: 0 auto;
  }
  .signal-strip,
  .service-grid,
  .help-grid,
  .portfolio-grid,
  .prompt-card-grid,
  .workspace-showcase-v2,
  .workspace-grid,
  .document-stage,
  .example-flow-grid,
  .engagement-grid,
  .timeline,
  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-cards::before,
  .process-cards li::after {
    display: none;
  }
  .review-cta {
    grid-template-columns: 1fr;
  }
  .review-brand {
    margin-bottom: 34px;
  }
  .review-panel {
    justify-items: start;
  }
  .ai-tile {
    right: 40px;
  }
  .workspace-ui {
    min-height: 360px;
  }
  .prompt-app-visual {
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  }
  .call-console {
    min-height: 0;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
  }
  .shroom-proof {
    grid-template-columns: 1fr;
  }
  .compact-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .portfolio-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  }
  .portfolio-media,
  .automation-console {
    height: 100%;
    min-height: 330px;
    border-right: 1px solid #e1eaf8;
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
    padding: 12px 18px;
  }
  .brand { min-width: 190px; }
  .brand img { width: 190px; }
  .nav-links,
  .header-cta {
    position: fixed;
    right: 16px;
    left: 16px;
    display: none;
  }
  .nav-links {
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .header-cta { top: 286px; }
  body.menu-open .nav-links,
  body.menu-open .header-cta { display: flex; }
  .menu-toggle { display: block; margin-left: auto; }

  .hero {
    padding: 88px 18px 42px;
  }
  .hero-inner {
    gap: 30px;
  }
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.85rem, 12.2vw, 4.25rem);
    line-height: 0.96;
  }
  .hero-text {
    margin-top: 18px;
    font-size: 1.03rem;
    line-height: 1.58;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }
  .hero-system {
    display: block;
    min-height: 392px;
    padding: 0;
    position: relative;
  }
  .flow-lines {
    display: block;
    inset: 8px 0 auto;
    width: 100%;
    height: 330px;
    opacity: 1;
    pointer-events: none;
  }
  .flow-lines path {
    stroke: rgba(17, 98, 255, 0.5);
    stroke-width: 3;
    stroke-dasharray: 10 10;
  }
  .chaos-list,
  .outcome-list,
  .system-core {
    position: absolute;
    transform: none;
  }
  .chaos-list,
  .outcome-list {
    z-index: 2;
    top: 18px;
    width: calc((100% - 116px) / 2);
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(7, 22, 63, 0.09);
  }
  .chaos-list {
    left: 0;
  }
  .outcome-list {
    right: 0;
  }
  .chaos-list strong,
  .outcome-list strong {
    padding: 0;
    background: transparent;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .chaos-list span,
  .outcome-list span {
    min-height: 0;
    padding: 8px 7px;
    border: 1px solid #e4ebf8;
    border-radius: 10px;
    background: #f8fbff;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1.2;
  }
  .chaos-list span:nth-of-type(n+5),
  .outcome-list span:nth-of-type(n+5) {
    display: none;
  }
  .system-core {
    z-index: 3;
    top: 118px;
    left: 50%;
    display: grid;
    width: 104px;
    min-height: 104px;
    place-items: center;
    padding: 14px;
    border-width: 2px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 20px 52px rgba(7, 92, 255, 0.24);
    transform: translateX(-50%);
    animation: mobile-core-breathe 3.4s ease-in-out infinite;
  }
  @keyframes mobile-core-breathe {
    0%, 100% { box-shadow: 0 18px 44px rgba(7, 92, 255, 0.2); }
    50% { box-shadow: 0 24px 64px rgba(116, 72, 255, 0.34); }
  }
  .core-icon {
    width: 46px;
    height: 46px;
  }
  .core-icon svg {
    width: 30px;
    height: 30px;
  }
  .system-core p {
    margin: 2px 0 0;
    font-size: 0.56rem;
    letter-spacing: 0.05em;
  }
  .system-core small {
    font-size: 0.52rem;
    line-height: 1.2;
  }
  .hero-proof {
    display: none;
  }
  .signal-strip {
    margin-top: 0;
    padding: 18px;
  }
  .signal-strip div {
    min-height: 0;
    padding: 16px;
  }
  .service-shot img,
  .proof-shot img {
    transform: none !important;
  }
  .website-flow {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .website-flow i {
    display: none;
  }
  .showcase-heading h2 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }
  .command-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 14px;
    border-radius: 22px;
    box-sizing: border-box;
  }
  .board-insight,
  .next-actions {
    position: static;
    width: auto;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .board-insight {
    display: none;
  }
  .board-insight .insight-icon {
    grid-row: span 4;
    margin: 0;
  }
  .board-insight a {
    grid-column: 2 / -1;
  }
  .command-center {
    width: auto;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 14px;
    border-radius: 18px;
    box-sizing: border-box;
  }
  .command-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .command-head img {
    width: min(220px, 100%);
    padding-right: 0;
    border-right: 0;
  }
  .command-head span {
    display: grid;
    gap: 8px;
  }
  .order-board {
    display: none;
  }
  .mobile-board-snapshot {
    display: block;
    overflow: hidden;
    margin: 12px 0 14px;
    border: 1px solid #d7e3f6;
    border-radius: 16px;
    background: #f8fbff;
    box-shadow: 0 18px 46px rgba(7, 22, 63, 0.1);
  }
  .mobile-board-snapshot img {
    display: none;
  }
  .mobile-command-feed {
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 12px;
    background:
      linear-gradient(90deg, rgba(17, 98, 255, 0.06) 1px, transparent 1px),
      linear-gradient(180deg, #ffffff, #f6f9ff);
    background-size: 28px 28px, auto;
  }
  .feed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 2px 2px;
  }
  .feed-head strong {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 950;
  }
  .feed-head span {
    padding: 5px 8px;
    border-radius: 999px;
    color: #ff7a1a;
    background: #fff3e8;
    font-size: 0.64rem;
    font-weight: 950;
  }
  .mobile-command-feed article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding: 13px;
    border: 1px solid #dde8f7;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 13px 28px rgba(7, 22, 63, 0.08);
  }
  .mobile-command-feed article strong,
  .mobile-command-feed article small,
  .mobile-command-feed article b {
    display: block;
  }
  .mobile-command-feed article strong {
    color: var(--ink);
    font-size: 0.84rem;
    line-height: 1.15;
  }
  .mobile-command-feed article small {
    margin-top: 5px;
    color: #526a96;
    font-size: 0.7rem;
    font-weight: 850;
  }
  .mobile-command-feed article b {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid #e7eef9;
    color: var(--blue);
    font-size: 0.72rem;
    line-height: 1.25;
  }
  .stage {
    align-self: start;
    padding: 6px 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 950;
    white-space: nowrap;
  }
  .stage.risk {
    color: #b84d00;
    background: #fff0dc;
  }
  .stage.wait {
    color: var(--blue);
    background: #eef5ff;
  }
  .stage.ok {
    color: #0b8c52;
    background: #e9f9ef;
  }
  .feed-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 2px;
  }
  .feed-summary span {
    padding: 9px 10px;
    border: 1px solid #e1e9f6;
    border-radius: 10px;
    color: #264472;
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 900;
  }
  .command-metrics {
    grid-template-columns: 1fr;
  }
  .command-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .command-metrics div:last-child {
    border-bottom: 0;
  }
  .workflow-rail {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .workflow-rail span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .workflow-rail span:last-child {
    border-bottom: 0;
  }
  .signal-strip,
  .service-grid,
  .help-grid,
  .portfolio-grid,
  .prompt-card-grid,
  .workspace-showcase-v2,
  .workspace-grid,
  .document-stage,
  .example-flow-grid,
  .engagement-grid,
  .timeline,
  .process-cards {
    grid-template-columns: 1fr;
  }
  .workspace-product-card,
  .document-stage figure {
    flex-basis: 88%;
  }
  .carousel-controls {
    right: 10px;
    left: 10px;
    width: auto;
    padding: 0;
    transform: none;
  }
  .carousel-arrow {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
  .process-cards li {
    min-height: 300px;
  }
  .review-cta {
    padding: 32px 20px;
  }
  .review-brand {
    transform: scale(0.82);
    transform-origin: left center;
    margin-bottom: 34px;
  }
  .team-proof {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .review-card {
    width: 100%;
  }
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .ai-tile {
    position: relative;
    right: auto;
    bottom: auto;
    width: 118px;
    height: 118px;
    margin-top: -28px;
    justify-self: end;
    font-size: 2.35rem;
  }
  .review-panel > small {
    margin-left: 0;
  }
  .kanban-board {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .kanban-col {
    min-width: 0;
  }
  .signal-strip div,
  .signal-strip div:first-child,
  .signal-strip div:last-child {
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .signal-strip { gap: 10px; }
  .prompt-apps {
    padding-top: 76px;
  }
  .prompt-app-visual {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px;
  }
  .prompt-app-visual::before {
    display: none;
  }
  .context-layer {
    min-height: 104px;
  }
  .livecall-head {
    gap: 18px;
  }
  .call-console {
    grid-template-columns: 1fr;
  }
  .console-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .console-sidebar strong {
    width: 100%;
  }
  .console-sidebar button {
    flex: 1 1 120px;
  }
  .coach-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card {
    display: block;
  }
  .shroom-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }
  .shroom-card,
  .system-overlay {
    position: static;
    width: auto;
  }
  .shroom-card-large {
    grid-column: 1 / -1;
  }
  .proof-metrics,
  .compact-proof-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-media,
  .automation-console {
    height: 300px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e1eaf8;
  }
  .automation-flow {
    grid-template-columns: 1fr;
  }
  .automation-flow i {
    width: 2px;
    height: 16px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), #27d8ff);
  }
  .workspace-showcase-v2 {
    gap: 16px;
    margin-top: 48px;
  }
  .workspace-ui {
    min-height: 0;
    padding: 14px;
  }
  .followup-layout,
  .sales-grid,
  .metric-strip,
  .glance-row {
    grid-template-columns: 1fr;
  }
  .conversation-list,
  .task-list {
    grid-column: auto;
    grid-row: auto;
  }
  .orders-table {
    table-layout: fixed;
    white-space: normal;
  }
  .orders-table th,
  .orders-table td {
    padding: 8px 5px;
    word-break: break-word;
  }
  .orders-table th:nth-child(4),
  .orders-table td:nth-child(4),
  .orders-table th:nth-child(5),
  .orders-table td:nth-child(5) {
    display: none;
  }
  .workspace-copy-v2 {
    min-height: 0;
    padding: 24px 24px 28px;
  }
  .workspace-copy-v2 h3 {
    font-size: 1.42rem;
  }
  .workspace-copy-v2 p {
    font-size: 0.98rem;
  }
}

@media (max-width: 560px) {
  .brand { min-width: 166px; }
  .brand img { width: 166px; }
  .section-pad {
    padding: 58px 16px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .section-heading h2,
  .proof h2,
  .cta h2,
  .bottom-heading h2,
  .showcase-heading h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.02;
  }
  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }
  .hero h1 {
    font-size: clamp(2.72rem, 13vw, 3.65rem);
  }
  .button,
  .header-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-actions { flex-direction: column; }
  .chaos-list,
  .outcome-list,
  .system-core {
    border-radius: 16px;
  }
  .chaos-list,
  .outcome-list {
    grid-template-columns: 1fr;
  }
  .chaos-list span,
  .outcome-list span {
    padding: 10px 12px;
  }
  .board-insight {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 14px;
  }
  .board-insight .insight-icon {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .board-insight strong {
    grid-column: 2;
  }
  .board-insight small,
  .board-insight b {
    grid-column: 1 / -1;
    width: 100%;
  }
  .board-insight small {
    margin-top: 8px;
  }
  .board-insight b {
    font-size: 1.75rem;
  }
  .board-insight a {
    grid-column: 1 / -1;
  }
  .next-actions button {
    min-height: 58px;
  }
  .kanban-top { align-items: stretch; flex-direction: column; }
  .workspace-card img { height: 220px; }
  .workspaces > .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }
  .workspace-floating-badge {
    left: 20px;
    width: 62px;
    height: 62px;
    font-size: 1.08rem;
  }
  .workspace-window-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .workspace-product-card,
  .document-stage figure {
    flex-basis: 92%;
  }
  .workspace-floating-badge {
    top: -32px;
  }
  .conversation-list,
  .proposal-card,
  .followup-message,
  .task-list,
  .priority-box,
  .opportunity-box,
  .manager-note,
  .performance-card {
    padding: 12px;
  }
  .orders-table {
    font-size: 0.64rem;
  }
  .doc-card {
    padding: 14px;
  }
  .doc-window {
    padding: 10px;
  }
  .mini-doc {
    padding: 16px;
  }
  .mini-doc table {
    font-size: 0.58rem;
  }
  .mini-doc-head,
  .mini-address,
  .mini-total {
    gap: 10px;
  }
  .mini-logo {
    width: 120px;
  }
  .shroom-visual {
    grid-template-columns: 1fr;
  }
  .shroom-card img,
  .shroom-card-large img,
  .shroom-card-product img,
  .shroom-card-research img {
    height: 170px;
  }
  .shroom-copy {
    padding: 24px;
  }
  .document-stage img { height: 320px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { width: 188px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
