* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

em, i {
  font-style: normal;
}

.brand-name {
  text-transform: none;
}

body {
  font-family: 'Geist', sans-serif;
  background: #111c2d;
  color: #e2e2dc;
  min-height: 100vh;
}

/* ── Nav ── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  width: 26px;
  height: 26px;
  background: #4ade80;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0a2420;
  font-weight: 600;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
}

.logo-text span {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.logo-img {
  height: 32px;
  width: auto;
  mix-blend-mode: screen;
}

.nav-mid {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-mid a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-mid a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost-sm {
  font-size: 16px;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition: all 0.15s;
}

.btn-ghost-sm:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-solid-sm {
  font-size: 16px;
  font-weight: 500;
  padding: 7px 16px;
  background: #86efac;
  color: #0a2420;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-solid-sm:hover {
  background: #4ade80;
  color: #0a2420;
}

/* ── Nav Dropdown ── */

.nav-has-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger .ti-chevron-down {
  font-size: 16px;
  transition: transform 0.2s;
}

.nav-has-dropdown:hover .nav-dropdown-trigger .ti-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #182435;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 6px 6px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.1s;
}

.nav-dd-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-dd-icon {
  font-size: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.07);
  border: 0.5px solid rgba(34, 197, 94, 0.15);
  border-radius: 8px;
  color: #22c55e;
  flex-shrink: 0;
}

.nav-dd-title {
  font-size: 16px;
  font-weight: 500;
  color: #e2e2dc;
  margin-bottom: 2px;
}

.nav-dd-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Hero (product page 2-col layout) ── */

.hero {
  padding: 4.5rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Eyebrow labels ── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  padding: 5px 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
}

.how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
  padding: 5px 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Headings ── */

h1 {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #fff;
}

h1.line1 {
  font-size: clamp(40px, 5.6vw, 64px);
}

h1.line2 {
  font-size: clamp(48px, 6.8vw, 78px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
}

h1.line2 i {
  -webkit-text-stroke: 2px rgba(134, 239, 172, 0.75);
}

/* ── Taglines ── */

.taglines {
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
}

.tl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s;
}

.tl-item:first-child {
  border-top: 0.5px solid rgba(255, 255, 255, 0.05);
}

.tl-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.tl-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.tl-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.tl-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgba(34, 197, 94, 1.0);
  text-transform: uppercase;
}

.tl-bar {
  display: none;
}

/* ── Hero actions ── */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.btn-primary-lg {
  font-size: 16px;
  font-weight: 500;
  padding: 11px 24px;
  background: #86efac;
  color: #0a2420;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary-lg:hover {
  background: #4ade80;
  color: #0a2420;
}

.btn-outline-lg {
  font-size: 16px;
  padding: 11px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}

.btn-outline-lg:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── GUI window (product page dashboard mockup) ── */

.gui-window {
  background: #182435;
  border: 0.7px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.win-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  background: #131f2f;
  gap: 8px;
}

.wdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.wr { background: #ff5f56; }
.wy { background: #ffbd2e; }
.wg { background: #27c93f; }

.win-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  font-family: 'Geist Mono', monospace;
}

.gui-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.sidebar {
  border-right: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.sb-section {
  margin-bottom: 4px;
}

.sb-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0 14px;
  margin-bottom: 4px;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.1s;
}

.sb-item i {
  font-size: 16px;
}

.sb-item:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.sb-item.active {
  color: #4ade80;
  background: rgba(200, 240, 224, 0.07);
}

.sb-item.active i {
  color: #22c55e;
}

.sb-badge {
  margin-left: auto;
  font-size: 16px;
  padding: 1px 6px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.main-panel {
  padding: 16px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-title {
  font-size: 16px;
  font-weight: 500;
  color: #e2e2dc;
}

.seal-btn {
  font-size: 16px;
  font-weight: 500;
  padding: 5px 12px;
  background: #4ade80;
  color: #0a2420;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.image-card {
  background: #111c2d;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.ic-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ic-name {
  font-size: 16px;
  font-weight: 500;
  color: #e2e2dc;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ic-name i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.tag {
  font-size: 16px;
  padding: 2px 8px;
  border-radius: 4px;
}

.tag-sealed {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 0.5px solid rgba(34, 197, 94, 0.2);
}

.tag-pending {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 0.5px solid rgba(34, 197, 94, 0.2);
}

.ic-meta {
  display: flex;
  gap: 14px;
}

.ic-stat {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ic-stat i {
  font-size: 16px;
}

.ic-stat strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.ic-progress {
  margin-top: 10px;
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.progress-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.progress-val {
  font-size: 16px;
  color: #22c55e;
}

.progress-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #22c55e;
  border-radius: 2px;
}

.deploy-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 0.7px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dm-target {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dm-target i {
  font-size: 16px;
}

.dm-action {
  font-size: 16px;
  color: #86efac;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.stat-mini {
  background: #111c2d;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px 12px;
}

.stat-mini-val {
  font-family: 'Geist Mono', monospace;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.stat-mini-lbl {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Step components (solution pages) ── */

.step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: #22c55e;
  margin-bottom: 4px;
}

.step-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(34, 197, 94, 0.8);
  margin-bottom: 6px;
  margin-top: 6px;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: #e2e2dc;
  margin-bottom: 10px;
  line-height: 1.25;
}

.step-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Workflow (home + product pages) ── */

.flow-section {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.flow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.flow-inner .how-eyebrow {
  margin-bottom: 1.25rem;
}

.flow-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
}

.flow-workflow {
  margin-bottom: 2.5rem;
}

.flow-workflow--sub {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.5rem;
  margin-bottom: 0;
}

.flow-workflow-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flow-workflow-label i {
  font-size: 16px;
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.flow-steps--two {
  grid-template-columns: 1fr auto 1fr;
}

.flow-arrow {
  color: rgba(34, 197, 94, 0.7);
  font-size: 22px;
  padding: 1.5rem 1.5rem 0;
  align-self: start;
}

.flow-step {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.flow-num {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: #22c55e;
  margin-bottom: 4px;
}

.flow-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(34, 197, 94, 0.7);
  margin-bottom: 10px;
}

.flow-title {
  font-size: 18px;
  font-weight: 600;
  color: #e2e2dc;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.flow-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Feature details (expandable tech specs) ── */

.feature-details {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
  margin-top: auto;
}

.feature-details summary {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(34, 197, 94, 0.7);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

.feature-details summary::-webkit-details-marker {
  display: none;
}

.feature-details summary::after {
  content: '+';
  font-size: 16px;
}

.feature-details[open] summary::after {
  content: '−';
}

.feature-details-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 300;
  padding-top: 0.6rem;
  font-family: 'Geist Mono', monospace;
}

/* ── Problem / Solution (shared) ── */

.problem-section {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 0.5px 1fr;
  gap: 4rem;
  align-items: start;
}

.prob-divider {
  background: rgba(255, 255, 255, 0.06);
  align-self: stretch;
}

.prob-col .how-eyebrow {
  margin-bottom: 1.25rem;
}

.prob-heading {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 1rem;
}

.prob-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.prob-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prob-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  line-height: 1.5;
}

.prob-item i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.prob-item--bad {
  color: rgba(255, 255, 255, 0.7);
}

.prob-item--bad i {
  color: rgba(248, 113, 113, 0.7);
}

.prob-item--good {
  color: rgba(255, 255, 255, 0.7);
}

.prob-item--good i {
  color: #22c55e;
}

/* ── Page CTA ── */

.home-cta-section {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.home-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  text-align: center;
}

.home-cta-heading {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.home-cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.home-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ── Footer ── */

.site-footer {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  mix-blend-mode: screen;
  align-self: flex-start;
}

.footer-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 300;
  max-width: 220px;
}

.footer-col-heading {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-address {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 1.25rem;
  text-align: center;
}

.footer-legal {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ── Platform strip (home + solution pages) ── */

.platform-strip {
  border-top: 0.5px solid rgba(255,255,255,0.06);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.platform-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.platform-strip-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.platform-strip-text {
  font-size: 0.96rem;
  color: rgba(226,226,220,0.65);
  line-height: 1.6;
  max-width: 640px;
}

.platform-strip-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: #22c55e;
  text-decoration: none;
  border: 1px solid rgba(34,197,94,0.3);
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.platform-strip-link:hover {
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.5);
}

/* ── Nav active state ── */

.nav-active {
  color: #fff !important;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .nav-mid {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 2rem;
    gap: 2.5rem;
  }

  .flow-inner {
    padding: 3.5rem 1.25rem;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flow-arrow {
    padding: 0;
    transform: rotate(90deg);
    width: fit-content;
  }

  .flow-workflow--sub {
    padding-top: 2rem;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.25rem;
    gap: 3rem;
  }

  .prob-divider {
    display: none;
  }

  .home-cta-inner {
    padding: 4rem 1.25rem;
  }

  .home-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .platform-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.25rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.25rem 2rem;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 0.4rem;
  }
}
