:root {
  --page: #f4f6f8;
  --page-strong: #edf2f5;
  --surface: #ffffff;
  --surface-soft: #fafbfc;
  --rail: #f7f8fa;
  --teal: #64c7c6;
  --teal-deep: #0d8584;
  --teal-soft: #d6f0ef;
  --purple: #c97ae2;
  --purple-soft: #f5e2fb;
  --blue: #4a88c7;
  --blue-soft: #dceefe;
  --orange: #d95d1a;
  --line: #dfe3e8;
  --line-soft: #eaedf1;
  --text: #201f1e;
  --muted: #605e5c;
  --shadow: 0 18px 42px rgba(18, 24, 40, 0.08);
  --shadow-soft: 0 8px 24px rgba(18, 24, 40, 0.06);
  --radius-xl: 12px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --max-width: 1520px;
  --chrome-height: 56px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --duration-fast: 160ms;
  --duration-med: 420ms;
  --duration-slow: 720ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, #f8fbfc 0, var(--page-strong) 420px, var(--page) 100%),
    var(--page);
  font-family: "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  animation: pageReveal 420ms ease-out both;
}

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

figure,
figcaption,
p,
h1,
h2,
h3 {
  margin: 0;
}

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

.fabric-chrome {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--chrome-height);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--teal);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: box-shadow var(--duration-med) var(--ease-standard), min-height var(--duration-med) var(--ease-standard);
}

.fabric-chrome.is-scrolled {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.chrome-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.waffle {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 3px;
  padding: 0.3rem;
}

.waffle span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(32, 31, 30, 0.82);
  transition: transform 160ms ease, background-color 160ms ease;
}

.fabric-chrome:hover .waffle span:nth-child(2),
.fabric-chrome:hover .waffle span:nth-child(4),
.fabric-chrome:hover .waffle span:nth-child(6),
.fabric-chrome:hover .waffle span:nth-child(8) {
  transform: scale(1.4);
  background: #0d8584;
}

.chrome-brand,
.chrome-product {
  font-size: 0.98rem;
  font-weight: 600;
}

.chrome-divider {
  width: 1px;
  height: 22px;
  background: rgba(32, 31, 30, 0.22);
}

.chrome-tab {
  display: inline-flex;
  align-items: center;
  max-width: 34rem;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  overflow: hidden;
  border: 1px solid #d68ee9;
  border-radius: 6px;
  background: #f8effc;
  color: #3b2d40;
  font-size: 0.92rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.chrome-tab:hover {
  border-color: #b85fd4;
  box-shadow: 0 6px 18px rgba(89, 44, 104, 0.12);
}

.chrome-search {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: min(28rem, 42vw);
  max-width: 36rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: #6b7280;
  font-size: 0.92rem;
  transition:
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.chrome-search:hover {
  border-color: rgba(13, 133, 132, 0.32);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.chrome-search span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chrome-search-icon {
  position: relative;
  flex: none;
  width: 14px;
  height: 14px;
  border: 2px solid #6b7280;
  border-radius: 50%;
}

.chrome-search-icon::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: #6b7280;
  transform: rotate(45deg);
}

.app-shell {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.fabric-rail {
  position: sticky;
  top: var(--chrome-height);
  z-index: 20;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: calc(100vh - var(--chrome-height));
  min-height: 420px;
  padding: 0.8rem 0.45rem;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.rail-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.3rem;
  border-radius: 8px;
  color: #5f646b;
  font-size: 0.72rem;
  text-align: center;
  overflow: hidden;
  transition:
    background-color var(--duration-fast) ease,
    color var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.rail-item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 3px;
  height: 26px;
  border-radius: 999px;
  background: var(--teal-deep);
  opacity: 0;
  transform: scaleY(0.25);
  transform-origin: center;
  transition: opacity var(--duration-fast) ease, transform var(--duration-med) var(--ease-out);
}

.rail-item:hover,
.rail-item:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.rail-item-active {
  color: var(--teal-deep);
  background: rgba(109, 201, 200, 0.12);
}

.rail-item-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.rail-icon {
  position: relative;
  width: 22px;
  height: 22px;
}

.rail-icon-home::before,
.rail-icon-pipeline::before,
.rail-icon-monitor::before,
.rail-icon-flow::before,
.rail-icon-mail::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.6px solid currentColor;
  border-radius: 5px;
}

.rail-icon-home::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 4px;
  bottom: 5px;
  left: 4px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 40%, 100% 100%, 0 100%, 0 40%);
  opacity: 0.9;
}

.rail-icon-pipeline::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 3px;
  left: 3px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.rail-icon-monitor::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 4px;
  bottom: 5px;
  left: 4px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: skewX(-10deg);
}

.rail-icon-flow::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.rail-icon-mail::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 3px;
  bottom: 6px;
  left: 3px;
  border-top: 2px solid currentColor;
  transform: skewY(-16deg);
}

.workspace {
  padding: 0.85rem 1rem 2.4rem;
  perspective: 1800px;
}

.surface-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
}

.surface-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle at var(--spot-x, 50%) var(--spot-y, 0%),
    rgba(100, 199, 198, 0.18),
    rgba(201, 122, 226, 0.08) 28%,
    transparent 48%
  );
  transition: opacity var(--duration-med) ease;
}

.surface-card.is-pointer-active::after,
.surface-card:hover::after {
  opacity: 1;
}

.section {
  margin-top: 0.9rem;
  scroll-margin-top: calc(var(--chrome-height) + 22px);
}

.hero-actions,
.hero-tags,
.contact-grid,
.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mini-pill,
.status-pill,
.hero-tags span,
.metric-kicker,
.card-index,
.showcase-label,
.contact-label,
.stack-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.status-pill {
  gap: 0.4rem;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal-deep);
  box-shadow: 0 0 0 0 rgba(13, 133, 132, 0.34);
  animation: statusPulse 2.6s ease-out infinite;
}

.mini-pill {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--muted);
}

.mini-pill-teal,
.status-pill,
.metric-kicker {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.mini-pill-purple {
  background: var(--purple-soft);
  color: #82449c;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0.9rem;
  align-items: start;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 4px solid var(--teal-deep);
}

.hero-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #ffffff;
}

.hero-preview::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 4;
  height: 130px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(109, 201, 200, 0.1) 44%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(201, 122, 226, 0.1) 56%,
    transparent 100%
  );
  mix-blend-mode: screen;
  opacity: 0.55;
  transform: translateY(-140px);
  animation: previewScan 7.5s var(--ease-standard) infinite;
}

.section-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.eyebrow {
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  margin-top: 0.8rem;
  font-size: clamp(2.35rem, 4.2vw, 3.65rem);
  line-height: 1.02;
  font-weight: 700;
}

h2 {
  max-width: 22ch;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.1;
  font-weight: 700;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 700;
}

.lead,
.section-copy,
.outcome-card p,
.platform-card p,
.delivery-card p,
.dashboard-card figcaption h3,
.footer-note-bar,
.contact-card,
.stack-heading p {
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  margin-top: 0.85rem;
  font-size: 1rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    background-color var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.button::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -55%;
  z-index: -1;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0;
  transform: skewX(-18deg);
  transition: transform var(--duration-slow) var(--ease-out), opacity var(--duration-fast) ease;
}

.button:hover,
.button:focus-visible,
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(420%) skewX(-18deg);
}

.button-primary {
  background: var(--teal-deep);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 143, 141, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 26px rgba(15, 143, 141, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
}

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

.hero-tags {
  margin-top: 1rem;
}

.hero-tags span,
.stack-pill {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: #374151;
  transition:
    border-color var(--duration-fast) ease,
    background-color var(--duration-fast) ease,
    color var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.hero-tags span:hover,
.stack-pill:hover {
  border-color: #b9dedd;
  background: #f2fbfb;
  color: var(--teal-deep);
  transform: translateY(-1px);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.preview-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-tab {
  padding: 0.32rem 0.65rem;
  border: 1px solid #d89cea;
  border-radius: 6px;
  background: #f9effc;
  color: #5b3b68;
  font-size: 0.86rem;
  font-weight: 600;
  animation: tabGlow 4.8s ease-in-out infinite;
}

.hero-preview img,
.dashboard-card img {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.hero-preview img {
  flex: none;
  height: auto;
  padding: 0.75rem;
  object-fit: contain;
  background: #1f1f1f;
  transform-origin: center;
  animation: previewFloat 7s ease-in-out infinite;
}

.outcome-grid,
.platform-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.outcome-card,
.platform-card,
.delivery-card,
.contact-card {
  padding: 1rem;
}

.outcome-card,
.platform-card,
.dashboard-card,
.delivery-card,
.contact-panel,
.footer-note-bar {
  will-change: transform;
}

.outcome-card {
  border-top: 3px solid var(--teal);
}

.outcome-card:nth-child(2) {
  border-top-color: var(--purple);
}

.outcome-card:nth-child(3) {
  border-top-color: var(--blue);
}

.outcome-card:nth-child(4) {
  border-top-color: var(--orange);
}

.outcome-card strong,
.contact-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.outcome-card p,
.platform-card p,
.delivery-card p,
.contact-card strong {
  margin-top: 0.6rem;
}

.outcome-card-accent {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border-color: #d3e9ff;
}

.section-heading,
.stack-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.section-heading-wide h2 {
  max-width: 22ch;
}

.section-copy {
  max-width: 76ch;
  font-size: 1rem;
}

.card-index,
.showcase-label,
.contact-label {
  padding: 0;
  min-height: auto;
  border-radius: 0;
  background: transparent;
}

.card-index {
  color: var(--teal-deep);
}

.platform-card h3,
.delivery-card h3,
.dashboard-card h3 {
  margin-top: 0.3rem;
}

.platform-card {
  transition:
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    transform var(--duration-med) var(--ease-out);
}

.platform-card:hover {
  border-color: #b9dedd;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 24, 40, 0.08);
}

.platform-card.is-pointer-active,
.outcome-card.is-pointer-active,
.dashboard-card.is-pointer-active,
.delivery-card.is-pointer-active,
.contact-card.is-pointer-active {
  transform: translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.stack-panel {
  margin-top: 1rem;
  padding: 1.1rem;
}

.stack-grid {
  gap: 0.6rem;
}

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

.dashboard-card {
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-med) ease,
    transform var(--duration-med) var(--ease-out);
}

.dashboard-card:hover {
  border-color: #b9dedd;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.dashboard-card-wide {
  grid-column: 1 / -1;
}

.dashboard-card img {
  border-bottom: 1px solid var(--line-soft);
  transition: transform 650ms var(--ease-out), filter 650ms var(--ease-out);
}

.dashboard-card:hover img {
  transform: scale(1.012);
  filter: saturate(1.03) contrast(1.01);
}

.dashboard-card-wide img {
  padding: 1rem;
}

.dashboard-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.delivery-card-feature {
  grid-row: span 2;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%);
  border-color: #cfeaea;
}

.delivery-card-feature p {
  margin-top: 0.9rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.55;
}

.contact-panel {
  padding: 1.35rem;
  background: linear-gradient(135deg, #ffffff 0%, #f7fcfc 100%);
}

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

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  transition:
    transform var(--duration-med) var(--ease-out),
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: #b9dedd;
  box-shadow: 0 10px 20px rgba(15, 143, 141, 0.08);
}

.footer-note-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  font-size: 0.92rem;
}

.motion-ready .motion-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px) scale(0.985);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    filter var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-reveal.motion-from-left {
  transform: translateX(-22px) scale(0.985);
}

.motion-ready .motion-reveal.motion-from-right {
  transform: translateX(22px) scale(0.985);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-panel > .section-kicker-row,
  .hero-panel > h1,
  .hero-panel > .lead,
  .hero-panel > .hero-actions,
  .hero-panel > .hero-tags {
    animation: heroTextIn 680ms var(--ease-out) both;
  }

  .hero-panel > .section-kicker-row {
    animation-delay: 120ms;
  }

  .hero-panel > h1 {
    animation-delay: 190ms;
  }

  .hero-panel > .lead {
    animation-delay: 260ms;
  }

  .hero-panel > .hero-actions {
    animation-delay: 330ms;
  }

  .hero-panel > .hero-tags {
    animation-delay: 400ms;
  }
}

@keyframes pageReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes previewFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 133, 132, 0.34);
  }

  70%,
  100% {
    box-shadow: 0 0 0 8px rgba(13, 133, 132, 0);
  }
}

@keyframes tabGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(201, 122, 226, 0);
  }

  50% {
    box-shadow: 0 0 0 3px rgba(201, 122, 226, 0.12);
  }
}

@keyframes previewScan {
  0%,
  18% {
    transform: translateY(-140px);
    opacity: 0;
  }

  28% {
    opacity: 0.55;
  }

  54% {
    transform: translateY(540px);
    opacity: 0.35;
  }

  55%,
  100% {
    transform: translateY(540px);
    opacity: 0;
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1240px) {
  .hero-grid,
  .outcome-grid,
  .platform-grid,
  .dashboard-grid,
  .delivery-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-card-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

}

@media (max-width: 900px) {
  .fabric-chrome {
    flex-direction: column;
    align-items: stretch;
  }

  .chrome-search {
    min-width: 0;
    max-width: none;
  }

  .hero-panel {
    min-height: auto;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .fabric-rail {
    position: static;
    z-index: auto;
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    min-height: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail-item {
    min-width: 90px;
  }
}

@media (max-width: 760px) {
  .workspace {
    padding: 0.75rem 0.75rem 2rem;
  }

  .footer-note-bar,
  .section-kicker-row,
  .preview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .outcome-grid,
  .platform-grid,
  .dashboard-grid,
  .delivery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .chrome-left {
    flex-wrap: wrap;
  }

  .chrome-tab {
    max-width: 100%;
  }

  h1,
  h2 {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
