:root {
  --ink: #1b1d1f;
  --muted: #777b80;
  --line: #e7e8ea;
  --panel: #f7f7f8;
  --panel-2: #ffffff;
  --dark: #1c1c1c;
  --dark-2: #242424;
  --orange: #ff4a0b;
  --orange-dark: #dd3900;
  --cobalt: #2563eb;
  --cyan: #11b7d8;
  --green: #19b37b;
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: var(--max);
  margin: 0 auto;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-top: 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 24px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 7px;
  background:
    linear-gradient(30deg, transparent 42%, #fff 43% 56%, transparent 57%),
    linear-gradient(150deg, transparent 42%, #fff 43% 56%, transparent 57%),
    var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
  transform: rotate(-8deg);
}

.brand-mark.small {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.brand.inverse .brand-mark {
  background:
    linear-gradient(30deg, transparent 42%, var(--dark) 43% 56%, transparent 57%),
    linear-gradient(150deg, transparent 42%, var(--dark) 43% 56%, transparent 57%),
    #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.site-nav {
  grid-column: 2 / 4;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: "Courier New", ui-monospace, monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  color: #050505;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 24px;
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.page-grid,
.split-section,
.feature-strip,
.dark-process,
.metrics-section,
.cta-dark,
.page-hero,
.product-showcase,
.feature-matrix,
.integration-panel,
.solution-carousel,
.case-stack,
.pricing-grid,
.faq-section,
.testimonial-hero,
.reviews-section,
.logo-band {
  max-width: var(--max);
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 110px 64px 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 72px;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow span {
  width: 13px;
  height: 13px;
  background: var(--orange);
  display: inline-block;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(62px, 7vw, 118px);
  max-width: 900px;
}

h2 {
  font-size: clamp(40px, 5vw, 76px);
}

h3 {
  font-size: 28px;
  line-height: 1.1;
}

.hero-lede {
  margin: 32px 0 26px;
  max-width: 620px;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.36;
}

.waitlist-form {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 620px;
}

.waitlist-form input {
  flex: 1 1 220px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 22px;
  outline: none;
  background: #fff;
}

.waitlist-form input:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Courier New", ui-monospace, monospace;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 74, 11, 0.22);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.form-message {
  width: 100%;
  min-height: 22px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.form-message.success {
  color: var(--green);
}

.counter-line {
  margin-top: 14px;
  color: var(--muted);
}

.counter-line strong {
  color: var(--ink);
  font-size: 24px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
}

.soft-bg {
  position: absolute;
  inset: 24px 0 0 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 210, 125, 0.72), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(37, 99, 235, 0.22), transparent 28%),
    linear-gradient(135deg, #fff2d6, #eaf5ff 46%, #ffe0d5);
  overflow: hidden;
}

.soft-bg::before,
.soft-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.54;
}

.soft-bg::before {
  width: 620px;
  height: 180px;
  left: -100px;
  bottom: 40px;
  background: rgba(255, 74, 11, 0.14);
  transform: rotate(-8deg);
}

.soft-bg::after {
  width: 500px;
  height: 220px;
  right: -120px;
  bottom: 80px;
  background: rgba(17, 183, 216, 0.2);
  transform: rotate(14deg);
}

.browser-frame {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(18, 24, 32, 0.18);
  overflow: hidden;
}

.dashboard-frame {
  margin-left: -28px;
}

.browser-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ef6a5f;
}

.dot.yellow {
  background: #f7c852;
}

.dot.green {
  background: #62c36d;
}

.url {
  margin-left: auto;
  margin-right: auto;
  width: min(58%, 420px);
  padding: 8px 12px;
  text-align: center;
  border-radius: 5px;
  background: #f3f4f6;
  color: #73777d;
  font-size: 13px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 500px;
}

.dash-sidebar,
.planning-side {
  background: #f4f5f8;
  border-right: 1px solid var(--line);
  padding: 24px 16px;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}

.sidebar-pill {
  display: block;
  padding: 13px 12px;
  border-radius: 7px;
  color: #525862;
  font-weight: 700;
  margin-bottom: 9px;
}

.sidebar-pill.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.dash-main {
  padding: 24px;
}

.dash-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.tiny-label,
.starts,
.price-card h3,
.faq-tabs button,
.tier-pill {
  font-family: "Courier New", ui-monospace, monospace;
  text-transform: uppercase;
  font-weight: 800;
}

.tiny-label {
  color: var(--muted);
  font-size: 12px;
}

.dash-toolbar h2 {
  font-size: 24px;
  margin-top: 5px;
  line-height: 1.1;
}

.status-pill {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(25, 179, 123, 0.12);
  color: #087a50;
  font-size: 13px;
  font-weight: 800;
}

.status-pill.blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--cobalt);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.metric-grid article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.metric-grid span,
.metric-grid small {
  color: var(--muted);
  display: block;
}

.metric-grid strong {
  display: block;
  margin: 7px 0 4px;
  font-size: 25px;
}

.metric-grid small {
  font-size: 12px;
}

.forecast-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.forecast-panel.compact {
  margin-top: 18px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin-bottom: 12px;
}

.chart-head b {
  color: var(--ink);
}

.forecast-chart {
  position: relative;
  height: 242px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 14px;
  padding: 22px 12px 10px;
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(31, 41, 55, 0.08) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 74, 11, 0.05));
  overflow: hidden;
}

.forecast-chart span {
  height: var(--h);
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.95), rgba(17, 183, 216, 0.58));
  opacity: 0.72;
  transform-origin: bottom;
  animation: barGrow 1.1s ease both;
}

.forecast-chart span:nth-child(even) {
  background: linear-gradient(180deg, rgba(255, 74, 11, 0.92), rgba(255, 180, 80, 0.55));
}

.forecast-chart svg {
  position: absolute;
  inset: 14px 12px 20px;
  width: calc(100% - 24px);
  height: calc(100% - 34px);
  pointer-events: none;
}

.chart-path {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.chart-path.base {
  stroke: rgba(255, 255, 255, 0.85);
}

.chart-path.accent {
  stroke: var(--orange);
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawLine 2.4s ease forwards;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.logo-band {
  padding: 90px 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  color: #a2a4a7;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.split-section {
  padding: 100px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 80px;
  border-bottom: 1px solid var(--line);
}

.split-section p,
.metrics-head p,
.page-hero p,
.process-head p,
.integration-panel p {
  color: var(--muted);
  font-size: 24px;
  line-height: 1.36;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 72px 64px 110px;
}

.feature-card {
  min-height: 430px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card.dark-card {
  background: var(--dark);
  color: #fff;
  transform: translateY(24px);
}

.feature-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
}

.feature-card.dark-card p {
  color: #cacaca;
}

.feature-icon,
.matrix-icon,
.process-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--orange);
  font-family: "Courier New", ui-monospace, monospace;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(18, 24, 32, 0.08);
}

.dark-card .feature-icon {
  background: #303030;
}

.dark-process {
  background: var(--dark);
  color: #fff;
  padding: 98px 64px 84px;
}

.process-head {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
  align-items: center;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dark-process .eyebrow,
.cta-dark .eyebrow {
  color: #fff;
}

.process-head p {
  color: #d1d1d1;
}

.process-list article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-list p {
  margin-top: 12px;
  max-width: 660px;
  color: #c6c6c6;
  font-size: 19px;
}

.process-list b {
  color: #c6c6c6;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 22px;
}

.process-icon {
  margin: 0;
  background: #303030;
}

.metrics-section {
  padding: 98px 64px;
  border-bottom: 1px solid var(--line);
}

.metrics-head {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
}

.big-metrics {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  text-align: center;
}

.big-metrics article {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.big-metrics strong {
  width: 210px;
  height: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 50px;
  font-weight: 600;
}

.big-metrics span {
  max-width: 360px;
  color: var(--muted);
  font-size: 20px;
}

.cta-dark {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 120px 24px;
  background: var(--dark);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px;
}

.grid-glow::before,
.grid-glow::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

.grid-glow::before {
  left: 31%;
  top: 22%;
}

.grid-glow::after {
  right: 28%;
  bottom: 28%;
}

.cta-dark > *:not(.grid-glow) {
  position: relative;
  z-index: 1;
}

.cta-dark h2 {
  max-width: 840px;
  margin-bottom: 24px;
}

.cta-dark p {
  max-width: 640px;
  color: #dadada;
  font-size: 22px;
  margin-bottom: 30px;
}

.centered-form {
  justify-content: center;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 64px 36px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 50px;
  background: var(--dark);
  color: #fff;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

.site-footer h3 {
  font-family: "Courier New", ui-monospace, monospace;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
}

.site-footer a {
  display: block;
  color: #ededed;
  margin: 0 0 16px;
  font-size: 18px;
}

.footer-brand p {
  margin-top: 18px;
  color: #c6c6c6;
  max-width: 320px;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #333;
  color: #cfcfcf;
}

.page-hero {
  padding: 130px 64px 110px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0 auto;
  font-size: clamp(52px, 6vw, 92px);
}

.page-hero p {
  margin: 28px auto 0;
  max-width: 820px;
}

.product-showcase {
  padding: 70px 64px 110px;
  background: linear-gradient(180deg, #fff, #f6f8fb);
}

.wide-dashboard {
  max-width: 1180px;
  margin: 0 auto;
}

.planning-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 650px;
}

.planning-main {
  padding: 28px;
}

.sku-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.sku-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.sku-row:last-child {
  border-bottom: 0;
}

.sku-row.head {
  background: #f8f9fb;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sku-row b {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 74, 11, 0.12);
  color: var(--orange);
}

.sku-row b.calm {
  background: rgba(25, 179, 123, 0.12);
  color: #087a50;
}

.feature-matrix {
  padding: 100px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-matrix article {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.feature-matrix h2 {
  font-size: 30px;
}

.feature-matrix p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.matrix-icon {
  margin-bottom: 34px;
  color: var(--cobalt);
}

.integration-panel {
  padding: 110px 64px 130px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.integration-panel h2 {
  max-width: 850px;
  margin: 0 auto 70px;
}

.integration-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.integration-grid span {
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(19, 26, 34, 0.06);
  color: var(--cobalt);
  font-family: "Courier New", ui-monospace, monospace;
  font-weight: 900;
}

.solution-carousel,
.reviews-section {
  padding: 90px 0 100px;
  overflow: hidden;
}

.carousel-head {
  padding: 0 64px 58px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.carousel-head h2 {
  max-width: 900px;
}

.carousel-actions {
  display: flex;
  gap: 12px;
}

.carousel-actions button {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.solution-track,
.review-track {
  display: flex;
  gap: 24px;
  padding: 64px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.solution-card,
.review-card {
  flex: 0 0 min(520px, 78vw);
  min-height: 520px;
  scroll-snap-align: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.solution-card.dark-feature {
  color: #fff;
  background: var(--dark);
}

.solution-art,
.case-visual,
.testimonial-bg {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, #9ed7ff, #fff1b4 38%, #ff7d4b 74%, #1a1a1a);
}

.solution-art {
  height: 210px;
  margin-bottom: 28px;
}

.manufacturing-art {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, #111, #2352a9 28%, #64d0d5 58%, #fb7c2c);
}

.distribution-art {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.4)),
    linear-gradient(135deg, #d8f7e7, #7dd3fc 35%, #2563eb 70%, #111827);
}

.solution-card p,
.review-card p {
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 20px;
}

.dark-feature p,
.dark-feature li {
  color: #d5d5d5;
}

.solution-card ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-card li,
.price-card li {
  position: relative;
  padding-left: 34px;
  margin: 16px 0;
}

.solution-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.case-stack {
  padding: 98px 64px;
  border-top: 1px solid var(--line);
}

.case-stack > h2 {
  margin-bottom: 70px;
}

.case-stack article {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 70px;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.case-stack h3 {
  font-size: clamp(34px, 4vw, 56px);
  max-width: 760px;
}

.case-stack p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin: 34px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-metrics span {
  color: var(--muted);
  font-size: 19px;
}

.case-metrics b {
  display: block;
  color: var(--ink);
  font-size: 42px;
}

.case-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  overflow: hidden;
}

.case-one,
.customer-one {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.48)),
    linear-gradient(135deg, #f9d57f, #a7f3d0 32%, #2563eb 68%, #111);
}

.case-two,
.customer-two {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.48)),
    linear-gradient(135deg, #dbeafe, #22d3ee 32%, #ff4a0b 70%, #111);
}

.pricing-hero {
  background: #fafafa;
}

.billing-toggle,
.faq-tabs {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.billing-toggle button,
.faq-tabs button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--muted);
}

.billing-toggle button.active,
.faq-tabs button.active {
  background: var(--dark);
  color: #fff;
}

.pricing-grid {
  padding: 78px 64px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: #f7f7f8;
}

.price-card {
  position: relative;
  padding: 56px 32px 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.tier-pill {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: 10px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.tier-pill.orange {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.starts {
  margin-top: 22px;
  color: var(--muted);
}

.price-card h2 {
  margin: 22px 0;
  font-size: 56px;
}

.price-card h2 small {
  color: var(--muted);
  font-size: 18px;
}

.price-card > p {
  color: var(--muted);
  font-size: 20px;
  min-height: 118px;
}

.price-card .btn {
  width: 100%;
  margin: 28px 0 34px;
}

.price-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 34px;
}

.price-card h3 {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

.faq-section {
  padding: 100px 64px 120px;
  text-align: center;
  background: #fafafa;
}

.faq-section h2 {
  max-width: 820px;
  margin: 0 auto 36px;
}

.faq-list {
  max-width: 920px;
  margin: 32px auto 0;
  text-align: left;
}

.faq-list.hidden {
  display: none;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.faq-item button span {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item.open button span {
  transform: rotate(225deg);
}

.faq-item p {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 20px;
}

.faq-item.open p {
  display: block;
}

.testimonial-hero {
  position: relative;
  min-height: 640px;
  padding: 70px 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  inset: 70px 64px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, #0c141f, #1b563f 38%, #f4d36f 75%, #111);
}

.testimonial-hero article {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
}

.testimonial-hero h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.18;
}

.quote-mark {
  color: var(--orange);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
}

.person {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.person b,
.person span {
  display: block;
}

.person span {
  color: #787d83;
}

.testimonial-hero .person span {
  color: #d7d7d7;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #ffd7b8 0 18%, transparent 19%),
    radial-gradient(circle at 50% 82%, #1f2937 0 34%, transparent 35%),
    linear-gradient(135deg, #f2c7a7, #23364f);
  display: inline-block;
}

.a2 {
  background:
    radial-gradient(circle at 50% 35%, #f8c99f 0 18%, transparent 19%),
    radial-gradient(circle at 50% 82%, #1a1a1a 0 34%, transparent 35%),
    linear-gradient(135deg, #cbd5e1, #475569);
}

.a3 {
  background:
    radial-gradient(circle at 50% 35%, #eabf9f 0 18%, transparent 19%),
    radial-gradient(circle at 50% 82%, #1e3a8a 0 34%, transparent 35%),
    linear-gradient(135deg, #dbeafe, #0f172a);
}

.a4 {
  background:
    radial-gradient(circle at 50% 35%, #f1c2a9 0 18%, transparent 19%),
    radial-gradient(circle at 50% 82%, #064e3b 0 34%, transparent 35%),
    linear-gradient(135deg, #fef3c7, #2dd4bf);
}

.review-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card p {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.36;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .dashboard-frame {
    margin-left: 0;
  }

  .feature-strip,
  .feature-matrix,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card.dark-card {
    transform: none;
  }

  .case-stack article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 70px;
    padding: 0 18px;
  }

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

  .site-nav {
    position: fixed;
    inset: 70px 12px auto 12px;
    display: none;
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .brand {
    font-size: 21px;
  }

  .hero,
  .split-section,
  .dark-process,
  .metrics-section,
  .page-hero,
  .product-showcase,
  .feature-matrix,
  .integration-panel,
  .case-stack,
  .faq-section,
  .testimonial-hero,
  .logo-band {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 62px;
    gap: 38px;
  }

  h1 {
    font-size: 55px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-lede,
  .split-section p,
  .metrics-head p,
  .page-hero p,
  .process-head p {
    font-size: 20px;
  }

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

  .soft-bg {
    inset: 0;
  }

  .dashboard-shell,
  .planning-grid {
    grid-template-columns: 1fr;
  }

  .dash-sidebar,
  .planning-side {
    display: none;
  }

  .url {
    width: 62%;
    font-size: 11px;
  }

  .metric-grid,
  .feature-strip,
  .feature-matrix,
  .pricing-grid,
  .big-metrics,
  .metrics-head,
  .process-head,
  .split-section,
  .site-footer,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .logo-row {
    gap: 24px;
  }

  .process-list article {
    grid-template-columns: 54px 1fr auto;
    gap: 16px;
  }

  .process-icon {
    width: 54px;
    height: 54px;
  }

  .carousel-head {
    padding: 0 22px 38px;
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-track,
  .review-track {
    padding: 36px 22px;
  }

  .case-stack article {
    gap: 34px;
  }

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

  .case-visual {
    min-height: 320px;
    font-size: 34px;
  }

  .integration-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .waitlist-form,
  .waitlist-form input,
  .waitlist-form .btn {
    width: 100%;
  }

  .price-card > p {
    min-height: auto;
  }

  .faq-tabs {
    display: grid;
    width: 100%;
    border-radius: 14px;
  }

  .testimonial-bg {
    inset: 40px 22px;
  }

  .testimonial-hero article {
    padding: 34px 24px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    min-width: 0;
  }

  .browser-top {
    padding: 0 12px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .dash-main,
  .planning-main {
    padding: 16px;
  }

  .forecast-chart {
    height: 210px;
    gap: 8px;
  }

  .metric-grid article {
    padding: 12px;
  }

  .sku-row {
    grid-template-columns: 1fr 1fr;
  }

  .solution-card,
  .review-card {
    flex-basis: 88vw;
  }

  .big-metrics strong {
    width: 180px;
    height: 180px;
    font-size: 44px;
  }
}
.logo {
    height: 50px;
    width: auto;
    display: block;
}
