.marketing-page {
  --ink: #10243e;
  --muted: #607086;
  --line: #dbe5ef;
  --blue: #1769aa;
  --cyan: #16a6b6;
  background: #f7fafc;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: left;
  align-items: stretch;
}

.marketing-page .header_div {
  box-shadow: none;
}

.marketing-page .header_img {
  max-height: 180px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 14px 8px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.site-nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav a.active {
  color: var(--blue);
}

.site-nav a.active::after {
  display: block;
  height: 2px;
  margin-top: 5px;
  border-radius: 2px;
  background: var(--cyan);
  content: "";
}

.marketing-page .page_div {
  width: 100%;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.marketing-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.marketing-hero {
  padding: 76px 0 64px;
  background: linear-gradient(120deg, #eaf6fb, #f7fafc 62%);
}

.eyebrow {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.marketing-hero h1 {
  max-width: 850px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.marketing-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: white;
  color: var(--blue);
  border: 1px solid #b8d2e5;
}

.industry-feature-card {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 620px);
  color: white;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(120deg, #10243e, #1769aa);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.industry-feature-card:hover {
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px #10243e3d;
}

.industry-feature-card .eyebrow {
  color: #9de5ed;
}

.industry-feature-card h3 {
  color: white;
  font-size: 1.45rem;
}

.industry-feature-card p {
  color: #d9f2f6;
}

.industry-feature-card .workspace-action {
  color: white;
}

.marketing-section {
  padding: 66px 0;
}

.marketing-section.alt {
  background: white;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.single-line-heading {
  white-space: nowrap;
}

.section-heading p, .marketing-section p {
  color: var(--muted);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card, .pricing-card, .profile-card {
  height: 100%;
  box-sizing: border-box;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.card h3, .pricing-card h3, .profile-card h3 {
  margin-top: 0;
  color: var(--ink);
}

.card p, .profile-card p {
  margin-bottom: 0;
}

.feature-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.marketing-page .feature-list {
  text-align: left;
}

.feature-list li::marker {
  color: var(--cyan);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.data-panel {
  padding: 28px;
  border-radius: 16px;
  background: #10243e;
  color: #d9f2f6;
  box-shadow: 0 18px 45px #10243e24;
}

.data-panel code {
  display: block;
  color: #9de5ed;
  line-height: 2;
  white-space: pre-wrap;
}

.quote {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--cyan);
  background: #eef9fa;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.7;
}

.quote cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: .9rem;
  font-style: normal;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.pricing-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 12px 28px #1769aa1f;
}

.price {
  margin: 16px 0;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 28px auto 10px;
}

.workspace-button {
  display: block;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.workspace-button:hover {
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px #10243e1f;
}

.workspace-button h2 {
  margin: 10px 0;
}

.workspace-button p {
  color: var(--muted);
  line-height: 1.6;
}

.workspace-action {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.resource-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.resource-link:hover {
  text-decoration: underline;
}

.marketing-page footer {
  margin-top: 0;
}

@media (max-width: 800px) {
  .card-grid, .pricing-grid, .split, .workspace-grid {
    grid-template-columns: 1fr;
  }

  .single-line-heading {
    white-space: normal;
  }

  .marketing-hero {
    padding: 52px 0 44px;
  }

  .marketing-section {
    padding: 46px 0;
  }
}
