:root {
  --ds-ink: #111827;
  --ds-muted: #4b5563;
  --ds-line: #d9deea;
  --ds-panel: #f6f7fb;
  --ds-violet: #42489e;
  --ds-violet-dark: #252b70;
  --ds-amber: #f9a71e;
  --ds-cyan: #0e9fbd;
  --ds-green: #16a34a;
}

.ds-page {
  background: #ffffff;
  color: var(--ds-ink);
  font-family: "Inter", "Merriweather Sans", system-ui, sans-serif;
}

.ds-section {
  padding: 88px 5%;
}

.ds-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ds-eyebrow {
  color: var(--ds-violet);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ds-title {
  margin-top: 12px;
  font-family: "Merriweather Sans", "Inter", sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.ds-copy {
  color: var(--ds-muted);
  font-size: 17px;
  line-height: 1.7;
}

.ds-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.96)),
    url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1600' height='900' fill='%23eef2ff'/%3E%3Cg stroke='%23c9d2f1' stroke-width='1'%3E%3Cpath d='M0 120h1600M0 240h1600M0 360h1600M0 480h1600M0 600h1600M0 720h1600M0 840h1600M160 0v900M320 0v900M480 0v900M640 0v900M800 0v900M960 0v900M1120 0v900M1280 0v900M1440 0v900'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.ds-hero-compact {
  min-height: 620px;
}

.ds-hero .ds-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 56px;
  align-items: center;
  min-height: 760px;
}

.ds-hero-compact .ds-wrap {
  min-height: 620px;
}

.ds-hero-copy {
  max-width: 680px;
}

.ds-hero h1 {
  margin-top: 18px;
  font-family: "Merriweather Sans", "Inter", sans-serif;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: 0;
}

.ds-hero h1 span {
  color: var(--ds-violet);
}

.ds-hero-text {
  max-width: 620px;
  margin-top: 24px;
  color: #263238;
  font-size: 19px;
  line-height: 1.7;
}

.ds-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.ds-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.ds-button-primary {
  background: var(--ds-amber);
  color: #151515;
}

.ds-button-primary:hover {
  background: #e89610;
}

.ds-button-secondary {
  color: var(--ds-violet-dark);
  border-color: var(--ds-violet);
  background: #ffffff;
}

.ds-button-secondary:hover {
  background: #eef0ff;
}

.ds-button-dark {
  background: var(--ds-violet);
  color: #ffffff;
}

.ds-button-dark:hover {
  background: var(--ds-violet-dark);
}

.ds-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-weight: 700;
}

.ds-hero-links a {
  color: var(--ds-violet-dark);
  text-decoration: none;
}

.ds-hero-links a:hover {
  color: var(--ds-amber);
}

.ds-runtime-visual {
  position: relative;
  min-height: 540px;
}

.ds-console {
  position: absolute;
  inset: 28px 0 auto auto;
  width: min(100%, 520px);
  border: 1px solid rgba(66, 72, 158, .18);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 80px rgba(17,24,39,.16);
}

.ds-console-top {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: #111827;
}

.ds-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--ds-amber);
}

.ds-dot:nth-child(2) {
  background: var(--ds-cyan);
}

.ds-dot:nth-child(3) {
  background: var(--ds-green);
}

.ds-console-body {
  padding: 22px;
}

.ds-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ds-status {
  border: 1px solid var(--ds-line);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

.ds-status strong {
  display: block;
  color: var(--ds-ink);
  font-size: 14px;
}

.ds-status span {
  display: block;
  margin-top: 6px;
  color: var(--ds-muted);
  font-size: 13px;
}

.ds-stream {
  margin-top: 18px;
  border-radius: 10px;
  background: #121826;
  padding: 16px;
  color: #dbeafe;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
}

.ds-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.ds-chip {
  border: 1px solid var(--ds-line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #ffffff;
  color: var(--ds-violet-dark);
  font-size: 13px;
  font-weight: 800;
}

.ds-band {
  background: var(--ds-panel);
}

.ds-grid-3,
.ds-grid-4 {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

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

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

.ds-card,
.ds-plan {
  border: 1px solid var(--ds-line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.ds-card-accent {
  background: var(--ds-violet);
  color: #ffffff;
}

.ds-card-accent .ds-copy,
.ds-card-accent p {
  color: rgba(255,255,255,.86);
}

.ds-card h3,
.ds-plan h3 {
  font-family: "Merriweather Sans", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.ds-card p,
.ds-plan p {
  margin-top: 12px;
  color: var(--ds-muted);
  line-height: 1.65;
}

.ds-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: #eef0ff;
  color: var(--ds-violet);
  font-size: 12px;
  font-weight: 900;
}

.ds-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--ds-line);
  border-radius: 8px;
  background: var(--ds-line);
}

.ds-step {
  background: #fff;
  padding: 26px;
}

.ds-step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--ds-amber);
  color: #151515;
  font-weight: 900;
}

.ds-step h3 {
  margin-top: 18px;
  font-weight: 800;
}

.ds-step p {
  margin-top: 10px;
  color: var(--ds-muted);
  line-height: 1.6;
}

.ds-plan-featured {
  border-color: var(--ds-violet);
  box-shadow: 0 20px 50px rgba(66,72,158,.14);
}

.ds-price {
  margin-top: 16px;
  color: var(--ds-violet);
  font-size: 38px;
  font-weight: 900;
}

.ds-price small {
  color: var(--ds-muted);
  font-size: 16px;
  font-weight: 700;
}

.ds-plan-note {
  margin-top: 4px;
  color: var(--ds-muted);
  font-size: 14px;
  font-weight: 800;
}

.ds-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ds-list li {
  position: relative;
  padding-left: 24px;
  color: #374151;
  line-height: 1.45;
}

.ds-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--ds-cyan);
}

.ds-cta {
  background: var(--ds-violet-dark);
  color: #ffffff;
}

.ds-cta .ds-title,
.ds-cta .ds-copy,
.ds-cta .ds-eyebrow {
  color: #ffffff;
}

.ds-cta .ds-copy {
  opacity: .86;
}

.ds-pricing-note {
  margin-top: 24px;
  color: var(--ds-muted);
  font-size: 14px;
  line-height: 1.6;
}

.ds-intake {
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.98)),
    url("data:image/svg+xml,%3Csvg width='1400' height='820' viewBox='0 0 1400 820' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1400' height='820' fill='%23eef2ff'/%3E%3Cg fill='none' stroke='%23c9d2f1' stroke-width='1'%3E%3Cpath d='M90 100h1220v620H90zM190 180h1020v460H190zM290 260h820v300H290z'/%3E%3Cpath d='M90 260h1200M90 420h1200M90 580h1200M290 100v620M700 100v620M1110 100v620'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.ds-intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 54px;
  align-items: center;
}

.ds-benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.ds-benefit {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
}

.ds-benefit span {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 99px;
  background: var(--ds-cyan);
}

.ds-benefit p {
  color: #374151;
  line-height: 1.55;
}

.ds-form {
  border: 1px solid rgba(66,72,158,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 70px rgba(17,24,39,.12);
  padding: 28px;
}

.ds-form h2 {
  margin-bottom: 22px;
  font-family: "Merriweather Sans", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.ds-form label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--ds-ink);
  font-size: 14px;
  font-weight: 900;
}

.ds-form input,
.ds-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--ds-line);
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--ds-ink);
  font: inherit;
}

.ds-form .ds-button {
  width: 100%;
  margin-top: 24px;
}

.ds-form-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 800;
}

.ds-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid var(--ds-line);
  border-radius: 8px;
  background: #ffffff;
}

.ds-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.ds-table th,
.ds-table td {
  border-bottom: 1px solid var(--ds-line);
  padding: 18px;
  text-align: left;
  vertical-align: top;
  color: #374151;
  line-height: 1.5;
}

.ds-table thead th {
  background: #eef0ff;
  color: var(--ds-violet-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ds-table tbody th {
  color: var(--ds-ink);
  font-weight: 900;
}

.ds-table tr:last-child th,
.ds-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .ds-hero .ds-wrap {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ds-runtime-visual {
    min-height: 460px;
  }

  .ds-console {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .ds-grid-3,
  .ds-grid-4,
  .ds-workflow,
  .ds-intake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ds-section {
    padding: 64px 5%;
  }

  .ds-hero,
  .ds-hero .ds-wrap {
    min-height: auto;
  }

  .ds-grid-3,
  .ds-grid-4,
  .ds-workflow,
  .ds-status-grid,
  .ds-intake-grid {
    grid-template-columns: 1fr;
  }

  .ds-actions {
    align-items: stretch;
  }

  .ds-button {
    width: 100%;
  }
}
