:root {
  --bg: #ebe8df;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #494a4f;
  --surface-dark-2: #3f4044;
  --line: rgba(73, 74, 79, 0.14);
  --line-strong: rgba(73, 74, 79, 0.2);
  --text: #f27340;
  --text-soft: rgba(242, 115, 64, 0.82);
  --text-inverse: #ebe8df;
  --accent: #f27340;
  --accent-2: #d95f31;
  --accent-3: rgba(242, 115, 64, 0.22);
  --danger-soft: rgba(242, 115, 64, 0.12);
  --shadow-lg: 0 28px 80px rgba(73, 74, 79, 0.14);
  --shadow-md: 0 18px 48px rgba(73, 74, 79, 0.1);
  --radius-xl: 12px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --container: min(1200px, calc(100vw - 48px));
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Light", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(242, 115, 64, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(73, 74, 79, 0.08), transparent 22%),
    linear-gradient(180deg, #f2efe8 0%, var(--bg) 100%);
}

body.is-lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-inverse);
  background: var(--accent);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(73, 74, 79, 0.9);
  border-bottom-color: rgba(235, 232, 223, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(73, 74, 79, 0.22);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  position: relative;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(242, 115, 64, 0.22), rgba(217, 95, 49, 0.3));
  border: 1px solid rgba(235, 232, 223, 0.16);
}

.brand-mark span {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--text-inverse);
}

.brand-mark span:first-child {
  transform: translate(-0.2rem, -0.15rem);
}

.brand-mark span:last-child {
  transform: translate(0.25rem, 0.2rem);
  border-color: rgba(242, 115, 64, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong,
.brand-text span,
.site-nav a,
.site-footer,
.site-footer a {
  color: var(--text-inverse);
}

.brand-text strong {
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a:not(.button) {
  font-size: 0.96rem;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 1;
}

.hero,
.section {
  position: relative;
}

.hero {
  overflow: hidden;
  color: var(--text-inverse);
  background:
    linear-gradient(135deg, rgba(73, 74, 79, 0.98), rgba(63, 64, 68, 0.94)),
    linear-gradient(180deg, #494a4f 0%, #3f4044 100%);
}

.hero-media,
.hero-video,
.hero-video-fallback,
.hero-video-overlay,
.hero-grid,
.hero-orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-fallback {
  background:
    radial-gradient(circle at 24% 24%, rgba(242, 115, 64, 0.1), transparent 18%),
    radial-gradient(circle at 78% 62%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(73, 74, 79, 0.12), rgba(73, 74, 79, 0.16)),
    linear-gradient(135deg, rgba(73, 74, 79, 0.86), rgba(63, 64, 68, 0.76));
  mix-blend-mode: screen;
}

.hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(34, 35, 39, 0.9) 0%, rgba(52, 52, 56, 0.68) 46%, rgba(63, 64, 68, 0.42) 100%),
    linear-gradient(180deg, rgba(34, 35, 39, 0.18) 0%, rgba(34, 35, 39, 0.5) 100%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
  opacity: 0.38;
}

.hero-orb {
  filter: blur(18px);
}

.hero-orb-a {
  inset: 8% auto auto -8%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(242, 115, 64, 0.28), transparent 68%);
}

.hero-orb-b {
  inset: auto -8% 12% auto;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(242, 115, 64, 0.14), transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 2.5rem;
  padding: 8.2rem 5rem 3rem 0;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 7.2vw, 6.2rem);
  max-width: 15ch;
  line-height: 0.92;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead,
.section-heading p,
.cta-panel p,
.hero-panel p,
.feature-card p,
.value-card p,
.ecosystem-card p,
.process-card p,
.solution-panel p,
.product-shot p,
.site-footer p {
  color: rgba(231, 241, 255, 0.78);
}

.hero-lead {
  max-width: 45rem;
  margin: 1.7rem 0 0;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  color: rgba(235, 232, 223, 0.92);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2.2rem;
}

.hero-socials {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.55rem;
  transform: translateY(-50%);
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: rgba(235, 232, 223, 0.76);
  transition: color 180ms ease, transform 180ms ease;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  color: var(--text-inverse);
  transform: translateY(-1px);
}

.hero-socials svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 40px rgba(242, 115, 64, 0.26);
}

.hero-cta {
  min-height: 4.5rem;
  padding: 0.95rem 2.35rem;
  border-radius: 0;
  border: 0;
  background: #d95f31;
  box-shadow: none;
}

.button-secondary,
.button-ghost,
.button-ghost-dark {
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost-dark {
  color: var(--text);
  background: rgba(73, 74, 79, 0.05);
  border-color: rgba(73, 74, 79, 0.12);
}

.button-sm {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
}

.contact-form {
  width: min(100%, 40rem);
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--surface-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(73, 74, 79, 0.16);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--surface-dark);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(73, 74, 79, 0.56);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(242, 115, 64, 0.48);
  box-shadow: 0 0 0 4px rgba(242, 115, 64, 0.12);
  background: #ffffff;
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  justify-content: flex-end;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.hero-points li,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
}

.hero-points li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 14px rgba(242, 115, 64, 0.45);
}

.hero-metrics span,
.problem-card span,
.feature-card span,
.ecosystem-card span,
.ai-stack-card span {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-metrics strong,
.problem-card h3,
.solution-panel strong,
.product-shot h3,
.process-card strong,
.feature-card h3,
.value-card strong,
.ecosystem-card span,
.ai-stack-card strong {
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-metrics strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.section {
  padding: var(--section-space) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.74));
  border-top: 1px solid rgba(73, 74, 79, 0.05);
  border-bottom: 1px solid rgba(73, 74, 79, 0.05);
}

.section-dark {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top right, rgba(242, 115, 64, 0.14), transparent 18%),
    linear-gradient(180deg, #494a4f 0%, #3f4044 100%);
}

.section-heading {
  margin-bottom: 2.6rem;
  text-align: center;
}

.section-heading h2,
.cta-panel h2 {
  max-width: none;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
}

.section-heading p,
.cta-panel p,
.solution-panel p,
.product-shot p,
.process-card p,
.feature-card p,
.value-card p,
.ecosystem-card p {
  margin: 1rem 0 0;
  max-width: 62ch;
  color: var(--surface-dark);
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.section-soft .section-heading p,
.section-soft .process-card p,
.section-soft .value-card p,
.section-cta .cta-panel p,
.solution-panel p,
.feature-card p,
.ecosystem-card p,
.problem-card p {
  color: var(--surface-dark);
}

.section-dark .section-heading p,
.section-dark .product-shot p,
.section-dark .ai-stack-card p,
.section-dark .ai-closing {
  color: rgba(231, 241, 255, 0.76);
}

.problem-grid,
.product-grid,
.feature-grid,
.value-grid,
.ecosystem-grid {
  display: grid;
  gap: 1.25rem;
}

.problem-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
}

.problem-heading-main h2,
.problem-heading-copy {
  margin: 0;
}

.problem-heading-main h2 {
  max-width: none;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  color: var(--surface-dark);
}

.problem-heading-copy {
  max-width: 52rem;
  padding-top: 0;
  font-size: 1.08rem;
  line-height: 1.5;
  color: rgba(73, 74, 79, 0.64);
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: start;
  gap: 1.5rem;
}

.problem-card,
.solution-panel article,
.product-shot,
.process-card,
.feature-card,
.value-card,
.ecosystem-card,
.ai-stack-card,
.cta-panel {
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.problem-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 1.5rem;
  background: linear-gradient(90deg, #dad8d3 0%, #e6e3dd 100%);
}

.problem-card-a,
.problem-card-e {
  background: linear-gradient(90deg, #f5b49a 0%, #f1c8bb 100%);
  border-color: rgba(241, 193, 173, 0.8);
}

.problem-card-c,
.problem-card-d,
.problem-card-f {
  background: linear-gradient(90deg, #a3a4a6 0%, #c2c3c5 100%);
  border-color: rgba(181, 182, 185, 0.8);
}

.problem-card-f {
  background: linear-gradient(90deg, #dad8d3 0%, #e6e3dd 100%);
  border-color: var(--line);
}

.problem-card-a,
.problem-card-b,
.problem-card-c,
.problem-card-d,
.problem-card-e,
.problem-card-f {
  min-height: 17.75rem;
}

.problem-card-a,
.problem-card-d,
.problem-card-b,
.problem-card-e,
.problem-card-c,
.problem-card-f {
  grid-row: span 1;
}

.problem-card-a {
  margin-top: 0;
}

.problem-card-b {
  margin-top: 5rem;
}

.problem-card-c {
  margin-top: 0;
}

.problem-card-d {
  margin-top: 0;
}

.problem-card-e {
  margin-top: 5rem;
}

.problem-card-f {
  margin-top: 0;
}

.problem-card span,
.feature-card span {
  color: var(--accent);
}

.problem-card-a span,
.problem-card-c span,
.problem-card-d span,
.problem-card-e span,
.problem-card-f span {
  color: rgba(61, 62, 66, 0.62);
}

.problem-card-b span {
  color: rgba(73, 74, 79, 0.52);
}

.problem-card h3,
.product-shot h3,
.feature-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.product-shot h3 {
  margin-top: 1rem;
}

.problem-card p {
  margin: 0.85rem 0 0;
  color: var(--surface-dark);
  font-size: 1.04rem;
  line-height: 1.58;
  text-align: justify;
}

.problem-card-a h3,
.problem-card-c h3,
.problem-card-d h3,
.problem-card-e h3,
.problem-card-f h3 {
  color: var(--surface-dark);
}

.problem-card-a p,
.problem-card-c p,
.problem-card-d p,
.problem-card-e p,
.problem-card-f p {
  color: rgba(73, 74, 79, 0.9);
}

.problem-card-a h3,
.problem-card-e h3,
.problem-card-b h3,
.problem-card-f h3 {
  color: #3d3e42;
}

.problem-card-a p,
.problem-card-e p,
.problem-card-b p,
.problem-card-f p {
  color: rgba(61, 62, 66, 0.94);
}

.problem-card-c h3,
.problem-card-d h3 {
  color: #2f3033;
}

.problem-card-c p,
.problem-card-d p {
  color: rgba(47, 48, 51, 0.94);
}

.split-layout,
.ecosystem-layout,
.ai-layout {
  display: grid;
  gap: 2rem;
}

.solution-layout {
  display: grid;
  gap: 2.4rem;
}

.split-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.solution-heading {
  text-align: center;
  margin-bottom: 0;
}

.solution-heading p {
  margin-left: auto;
  margin-right: auto;
}

.solution-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.4rem;
}

.solution-card {
  display: grid;
  gap: 1rem;
  min-height: 15.5rem;
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.72);
}

.solution-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.solution-card:nth-child(4) {
  grid-column: 2 / 4;
}

.solution-card:nth-child(5) {
  grid-column: 4 / 6;
}

.solution-icon {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(242, 115, 64, 0.08);
}

.solution-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.solution-panel strong,
.process-card strong,
.value-card strong,
.ai-stack-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.2;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-shot {
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(73, 74, 79, 0.96), rgba(63, 64, 68, 0.92));
  border-color: rgba(235, 232, 223, 0.08);
}

.shot-window {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  aspect-ratio: 16 / 8;
}

.product-shot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1200px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.lightbox-figure {
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

.lightbox-image {
  width: 100%;
  max-height: min(78vh, 900px);
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
}

.lightbox-caption {
  margin-top: 0.9rem;
  text-align: center;
  color: var(--text-inverse);
  font-size: 1.18rem;
  line-height: 1.3;
}

.lightbox-close,
.lightbox-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--text-inverse);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
  padding: 0;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-close {
  position: absolute;
  top: -3.25rem;
  right: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.9rem;
  line-height: 0.9;
}

.lightbox-arrow {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  font-size: 2.2rem;
  line-height: 0.9;
  padding-bottom: 0.18rem;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 2.55rem;
  left: 2.2rem;
  right: 2.2rem;
  height: 2px;
  background: linear-gradient(90deg, #f27340 0%, #d95f31 42%, #494a4f 100%);
  opacity: 0.34;
}

.process-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0.85rem;
  min-height: 17rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(218, 216, 211, 0.42));
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background 360ms ease,
    box-shadow 360ms ease;
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(245, 180, 154, 0.72), rgba(255, 255, 255, 0.68));
  box-shadow: 0 22px 48px rgba(73, 74, 79, 0.14);
}

.process-index {
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: rgba(73, 74, 79, 0.62);
}

.process-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(242, 115, 64, 0.1);
}

.process-card:hover .process-icon,
.process-card:focus-within .process-icon {
  color: var(--text-inverse);
  background: rgba(73, 74, 79, 0.88);
}

.process-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

.process-card strong {
  color: var(--surface-dark);
}

.process-card p {
  align-self: start;
  margin-top: 0;
  color: rgba(73, 74, 79, 0.86);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "heading heading"
    "features console";
  gap: 2.6rem 3rem;
  align-items: stretch;
}

.feature-heading {
  grid-area: heading;
  margin-bottom: 0;
  text-align: center;
}

.feature-heading h2 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  grid-area: features;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 0;
  align-self: stretch;
  border-top: 1px solid rgba(73, 74, 79, 0.14);
}

.feature-card {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(73, 74, 79, 0.14);
  cursor: default;
  transition: padding-left 320ms ease, border-color 320ms ease, background 320ms ease;
}

.feature-card:hover,
.feature-card.is-active {
  padding-left: 0.7rem;
  border-color: rgba(242, 115, 64, 0.42);
  background: linear-gradient(90deg, rgba(242, 115, 64, 0.08), transparent 78%);
}

.feature-card span {
  color: rgba(73, 74, 79, 0.48);
}

.feature-card.is-active span {
  color: var(--accent);
}

.feature-card h3 {
  color: var(--surface-dark);
}

.feature-card p {
  margin-top: 0.45rem;
  color: rgba(73, 74, 79, 0.82);
}

.feature-console {
  grid-area: console;
  position: relative;
  align-self: stretch;
  min-height: 31rem;
  padding: 1.6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(242, 115, 64, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(218, 216, 211, 0.94), rgba(255, 255, 255, 0.86));
  color: var(--surface-dark);
  box-shadow: var(--shadow-lg);
}

.feature-console::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(73, 74, 79, 0.08);
  pointer-events: none;
}

.feature-visual-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature-visual-topline span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.feature-visual-topline strong {
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: rgba(73, 74, 79, 0.72);
}

.feature-visual-stage {
  position: relative;
  z-index: 2;
  min-height: 24rem;
}

.feature-visual-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(22px) scale(0.98);
  pointer-events: none;
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-visual-panel.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.ticket-board,
.automation-flow,
.sla-visual,
.channel-visual {
  width: min(100%, 30rem);
  min-height: 20rem;
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.ticket-board {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(73, 74, 79, 0.1);
}

.ticket-board-header,
.ticket-row,
.automation-node,
.sla-alerts div,
.channel-card,
.channel-hub {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(73, 74, 79, 0.08);
}

.ticket-board-header {
  padding: 1rem;
  border-left: 4px solid var(--accent);
}

.ticket-board-header span,
.automation-node span,
.sla-alerts span,
.channel-card span,
.channel-hub span {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(73, 74, 79, 0.56);
}

.ticket-board-header strong,
.ticket-row strong,
.automation-node strong,
.sla-ring strong,
.sla-alerts strong,
.channel-card strong,
.channel-hub strong {
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--surface-dark);
}

.ticket-row {
  display: grid;
  grid-template-columns: auto 6.5rem 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
}

.ticket-row span:not(.ticket-status),
.ticket-row em {
  color: rgba(73, 74, 79, 0.68);
  font-size: 0.86rem;
  font-style: normal;
}

.ticket-status {
  width: 0.62rem;
  height: 0.62rem;
}

.status-critical {
  background: var(--accent);
}

.status-medium {
  background: #a3a4a6;
}

.status-low {
  background: #dad8d3;
}

.automation-flow {
  grid-template-columns: 1fr;
  align-content: center;
}

.automation-node {
  position: relative;
  padding: 1.2rem;
  border-left: 4px solid rgba(73, 74, 79, 0.22);
}

.automation-node-accent {
  background: linear-gradient(90deg, rgba(245, 180, 154, 0.92), rgba(255, 255, 255, 0.78));
  border-left-color: var(--accent);
}

.automation-connector {
  width: 2px;
  height: 1.6rem;
  margin-left: 1.4rem;
  background: linear-gradient(180deg, rgba(73, 74, 79, 0.16), var(--accent));
}

.sla-visual {
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
}

.sla-ring {
  width: 11rem;
  height: 11rem;
  display: grid;
  place-items: center;
  align-content: center;
  justify-self: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0 56%, transparent 57%),
    conic-gradient(var(--accent) 0 82%, rgba(73, 74, 79, 0.14) 82% 100%);
  box-shadow: 0 18px 48px rgba(73, 74, 79, 0.12);
}

.sla-ring strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.sla-ring span {
  color: rgba(73, 74, 79, 0.62);
  font-size: 0.82rem;
}

.sla-alerts {
  display: grid;
  gap: 0.8rem;
}

.sla-alerts div {
  padding: 1rem;
  border-left: 4px solid rgba(73, 74, 79, 0.22);
}

.sla-alerts div:first-child {
  border-left-color: var(--accent);
}

.channel-visual {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1.2rem;
}

.channel-card,
.channel-hub {
  width: min(100%, 22rem);
  padding: 1.1rem;
}

.channel-card:first-child {
  justify-self: start;
}

.channel-card:last-child {
  justify-self: end;
}

.channel-hub {
  width: min(100%, 26rem);
  background: linear-gradient(90deg, #494a4f, #3f4044);
}

.channel-hub span,
.channel-hub strong {
  color: var(--text-inverse);
}

.feature-visual-progress {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.feature-visual-progress span {
  width: 0.58rem;
  height: 0.58rem;
  background: rgba(73, 74, 79, 0.24);
  transition: width 360ms ease, background 360ms ease;
}

.feature-visual-progress span.is-active {
  width: 2.2rem;
  color: var(--accent);
  background: var(--accent);
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "copy board"
    "closing closing";
  gap: 3rem;
  align-items: center;
}

.ai-stack-copy {
  grid-area: copy;
}

.ai-stack-board {
  grid-area: board;
}

.ai-stack-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.ai-stack-copy > p:not(.eyebrow):not(.ai-closing) {
  max-width: 37rem;
  margin: 1.6rem 0 0;
  color: rgba(235, 232, 223, 0.78);
  font-size: 1.08rem;
}

.ai-closing {
  grid-area: closing;
  justify-self: center;
  margin: 0;
  max-width: 42rem;
  text-align: center;
  color: var(--accent);
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ai-stack-board {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: 0 28px 90px rgba(20, 20, 20, 0.18);
}

.ai-stack-board::before {
  content: "Operação orquestrada";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  color: rgba(235, 232, 223, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ai-stack-line {
  position: absolute;
  top: 5rem;
  bottom: 5rem;
  left: 3.1rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(235, 232, 223, 0.22), var(--accent));
}

.ai-stack-card {
  position: relative;
  display: grid;
  gap: 0.6rem;
  margin-left: 3rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(20, 20, 20, 0.14);
}

.ai-stack-card::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -3.42rem;
  width: 0.78rem;
  height: 0.78rem;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(242, 115, 64, 0.12);
}

.ai-stack-card-main {
  margin-left: 0;
  padding: 1.7rem;
  background: linear-gradient(135deg, rgba(245, 180, 154, 0.94), rgba(235, 232, 223, 0.14));
}

.ai-stack-card-main::before {
  left: -0.42rem;
  background: var(--surface-dark);
  box-shadow: 0 0 0 8px rgba(73, 74, 79, 0.14);
}

.ai-stack-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ai-stack-card-main span {
  color: var(--surface-dark);
}

.ai-stack-card strong {
  max-width: 28rem;
  color: var(--text-inverse);
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.ai-stack-card-main strong {
  color: var(--surface-dark);
}

.ai-stack-card p {
  margin: 0;
  max-width: 34rem;
  color: rgba(235, 232, 223, 0.76);
}

.ai-stack-card-main p {
  color: rgba(73, 74, 79, 0.82);
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.72fr);
  grid-template-areas:
    "hero impact"
    "grid grid";
  gap: 2rem;
  align-items: end;
}

.value-hero {
  grid-area: hero;
}

.value-hero h2 {
  margin: 0;
  max-width: 13ch;
  color: var(--surface-dark);
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.value-hero p {
  max-width: 46rem;
  margin: 1.4rem 0 0;
  color: rgba(73, 74, 79, 0.74);
  font-size: 1.08rem;
}

.value-impact {
  grid-area: impact;
  padding: 1.45rem;
  background: linear-gradient(135deg, #494a4f, #3f4044);
  box-shadow: var(--shadow-md);
}

.value-impact span,
.value-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.value-impact span {
  color: var(--accent);
}

.value-impact strong {
  display: block;
  color: var(--text-inverse);
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.value-grid {
  grid-area: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  display: grid;
  align-content: space-between;
  min-height: 15.5rem;
  grid-column: span 2;
  padding: 1.4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(218, 216, 211, 0.58));
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.value-card:nth-child(4) {
  grid-column: 2 / 4;
}

.value-card:nth-child(5) {
  grid-column: 4 / 6;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(73, 74, 79, 0.16);
}

.value-card span {
  color: rgba(73, 74, 79, 0.48);
}

.value-card strong {
  color: var(--surface-dark);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.08;
}

.value-card p {
  margin-top: 1rem;
  color: rgba(73, 74, 79, 0.76);
}

.value-card-primary {
  background: linear-gradient(135deg, #f5b49a, #f1c8bb);
}

.value-card-dark {
  background: linear-gradient(135deg, #a3a4a6, #c2c3c5);
}

.value-card-primary span,
.value-card-dark span {
  color: rgba(73, 74, 79, 0.58);
}

.ecosystem-card {
  padding: 1.4rem;
}

.ecosystem-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 3rem;
}

.ecosystem-copy h2 {
  margin: 0;
  max-width: 18ch;
  color: var(--surface-dark);
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(2.6rem, 4.9vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.ecosystem-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.45rem 0 0;
  color: rgba(73, 74, 79, 0.74);
  font-size: 1.08rem;
}

.ecosystem-suite {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.7rem 0;
}

.ecosystem-suite::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.25rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(242, 115, 64, 0), rgba(242, 115, 64, 0.76), rgba(73, 74, 79, 0.18));
}

.ecosystem-card {
  position: relative;
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  align-items: center;
  gap: 1.4rem;
  min-height: 8.5rem;
  padding: 1.35rem 1.45rem 1.35rem 2.7rem;
  background: linear-gradient(90deg, #dad8d3 0%, #f3f0e9 100%);
  box-shadow: 0 18px 48px rgba(73, 74, 79, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(242, 115, 64, 0.1);
  transform: translateY(-50%);
}

.ecosystem-card:nth-child(even) {
  margin-left: 3rem;
}

.ecosystem-card:hover {
  transform: translateX(8px);
  box-shadow: 0 24px 62px rgba(73, 74, 79, 0.15);
}

.ecosystem-card-axis {
  background: linear-gradient(90deg, #f5b49a 0%, #f3d2c5 100%);
}

.ecosystem-card-mind {
  background: linear-gradient(90deg, #dad8d3 0%, #f3f0e9 100%);
}

.ecosystem-card-ads {
  background: linear-gradient(90deg, #f5b49a 0%, #f3d2c5 100%);
}

.ecosystem-card span {
  display: inline-block;
  margin: 0;
  color: var(--surface-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ecosystem-card span::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-top: 0.65rem;
  background: var(--accent);
}

.ecosystem-card strong {
  display: block;
  color: var(--surface-dark);
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ecosystem-card p {
  grid-column: 2;
  margin: 0.55rem 0 0;
  color: rgba(73, 74, 79, 0.8);
}

.section-cta {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(242, 115, 64, 0.16), transparent 24%),
    linear-gradient(135deg, #ffffff, #f1eee7);
}

.cta-panel > div:first-child {
  flex: 0 1 44%;
}

.cta-panel .contact-form {
  flex: 0 1 52%;
}

.section-cta .cta-panel h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.5rem);
}

.cta-panel p,
.cta-panel .eyebrow,
.footer-inner p {
  color: var(--text-soft);
}

.site-footer {
  background: #494a4f;
  padding: 1rem 0 2rem;
}

.site-footer p,
.site-footer a {
  color: rgba(231, 241, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero-layout,
  .split-layout,
  .ecosystem-layout {
    grid-template-columns: 1fr;
  }

  .ecosystem-copy h2 {
    max-width: none;
  }

  .hero-layout {
    align-items: start;
    padding-bottom: 4rem;
  }

  .hero-socials {
    right: 0.5rem;
  }

  .problem-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "impact"
      "grid";
  }

  .value-hero h2 {
    max-width: none;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-card,
  .value-card:nth-child(4),
  .value-card:nth-child(5) {
    grid-column: auto;
  }

  .ai-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "board"
      "closing";
  }

  .ai-stack-copy h2 {
    max-width: none;
  }

  .feature-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "features"
      "console";
  }

  .feature-console {
    min-height: 24rem;
  }

  .solution-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-card:nth-child(-n + 3),
  .solution-card:nth-child(4),
  .solution-card:nth-child(5) {
    grid-column: span 1;
  }

  .problem-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .problem-heading-main h2,
  .problem-heading-copy {
    max-width: none;
  }

  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .problem-card-a,
  .problem-card-b,
  .problem-card-c,
  .problem-card-d,
  .problem-card-e,
  .problem-card-f {
    grid-row: auto;
    margin-top: 0;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 32px, 1200px);
  }

  .site-nav {
    display: none;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-layout {
    min-height: auto;
    padding: 7rem 0 3.5rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-panel h2 {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 13vw, 5.1rem);
  }

  .hero-socials {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 1.75rem;
  }

  .problem-grid,
  .product-grid,
  .solution-panel,
  .value-grid,
  .ecosystem-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-suite {
    grid-template-columns: 1fr;
  }

  .ecosystem-suite::before {
    display: none;
  }

  .ecosystem-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-left: 0;
    padding-left: 2.7rem;
  }

  .ecosystem-card:nth-child(even) {
    margin-left: 0;
  }

  .ecosystem-card p {
    grid-column: auto;
  }

  .feature-card {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .feature-console {
    min-height: 31rem;
  }

  .feature-visual-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-visual-stage {
    min-height: 24rem;
  }

  .ai-layout {
    grid-template-columns: 1fr;
  }

  .ai-stack-copy h2 {
    max-width: none;
  }

  .ai-stack-board {
    padding-top: 3.9rem;
  }

  .ai-stack-board::before {
    left: 1.2rem;
    right: auto;
  }

  .ticket-row {
    grid-template-columns: auto 1fr;
  }

  .ticket-row span:not(.ticket-status),
  .ticket-row em {
    grid-column: 2;
  }

  .sla-visual {
    grid-template-columns: 1fr;
  }

  .channel-card:first-child,
  .channel-card:last-child {
    justify-self: stretch;
  }

  .problem-heading-main h2::after {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-dialog {
    width: min(100vw - 2rem, 1200px);
    grid-template-columns: 1fr;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .lightbox-arrow {
    position: absolute;
    top: calc(50% - 1.75rem);
    z-index: 2;
  }

  .lightbox-arrow-prev {
    left: 0.5rem;
  }

  .lightbox-arrow-next {
    right: 0.5rem;
  }

}
