:root {
  --ink: #1e2852;
  --graphite: #313b66;
  --steel: #64708f;
  --mist: #f3f5fb;
  --cloud: #fbfbfe;
  --white: #ffffff;
  --teal: #4157a5;
  --coral: #ff4345;
  --primary: #ff4345;
  --primary-rgb: 255, 67, 69;
  --success: #2ca56a;
  --hero-mid: #303f7b;
  --hero-end: #ff4345;
  --gold: #f4b63f;
  --line: #dfe3f1;
  --shadow: 0 24px 70px rgba(30, 40, 82, .18);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cloud);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(30, 40, 82, .1);
  display: flex;
  gap: 28px;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 36px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
  gap: 11px;
}

.brand img {
  height: 34px;
  width: 34px;
}

.brand span {
  font-size: 1.15rem;
  font-weight: 800;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
  color: var(--steel);
  font-size: .94rem;
  font-weight: 700;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
}

.header-cta {
  background: var(--ink);
  color: var(--white);
}

.button.primary {
  background: var(--primary);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .85);
  color: var(--ink);
}

.hero {
  color: var(--white);
  min-height: 92vh;
  overflow: hidden;
  padding: 132px 6vw 76px;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(30, 40, 82, .95) 0%, rgba(30, 40, 82, .78) 46%, rgba(30, 40, 82, .28) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-backdrop {
  background:
    linear-gradient(135deg, #1e2852 0%, #303f7b 44%, #ff4345 100%);
  inset: 0;
  position: absolute;
}

.dashboard-shell {
  background: rgba(247, 248, 246, .96);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: var(--shadow);
  color: var(--ink);
  height: 620px;
  max-width: 820px;
  padding: 22px;
  position: absolute;
  right: 5vw;
  top: 112px;
  transform: rotate(-2deg);
  width: 54vw;
}

.dashboard-topline {
  align-items: center;
  display: flex;
  gap: 9px;
  margin-bottom: 20px;
}

.dashboard-topline span {
  background: #c9d0cc;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.dashboard-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric,
.panel-list,
.chart-panel,
.workflow-rail div,
.feature-grid article,
.pricing-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric {
  min-height: 104px;
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0;
}

.metric span,
.workflow-rail span,
.panel-list p,
.section-heading p,
.feature-grid p,
.pricing-grid p,
.faq-list p,
.demo-copy p,
.site-footer p {
  color: var(--steel);
  line-height: 1.65;
}

.metric.active {
  border-color: rgba(var(--primary-rgb), .38);
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), .16);
}

.workflow-rail {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.workflow-rail div {
  min-height: 92px;
  padding: 14px;
}

.workflow-rail b,
.workflow-rail span {
  display: block;
}

.dashboard-columns {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.1fr .9fr;
  margin-top: 16px;
}

.panel-list,
.chart-panel {
  min-height: 250px;
  padding: 18px;
}

.panel-title {
  color: var(--steel);
  display: block;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.panel-list p {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 13px 0;
}

.bar {
  border-radius: 5px;
  height: 24px;
  margin: 15px 0;
}

 .bar.one { background: var(--primary); width: 88%; }
.bar.two { background: var(--teal); width: 72%; }
.bar.three { background: var(--success); width: 56%; }
.bar.four { background: var(--primary); width: 39%; }

.hero-content {
  max-width: 690px;
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  font-size: 6.4rem;
  letter-spacing: 0;
  line-height: .94;
  margin: 0;
  max-width: 840px;
}

.hero-copy {
  color: rgba(255, 255, 255, .84);
  font-size: 1.16rem;
  line-height: 1.7;
  margin: 28px 0;
  max-width: 670px;
}

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

.next-hint {
  bottom: 22px;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  font-weight: 800;
  left: 6vw;
  position: absolute;
  z-index: 2;
}

.section {
  padding: 96px 6vw;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 820px;
}

.section h2 {
  font-size: 3.8rem;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.workflow-steps,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-steps article {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}

.workflow-steps span {
  color: var(--primary);
  font-weight: 800;
}

.workflow-steps h3,
.feature-grid h3,
.pricing-grid h3 {
  font-size: 1.28rem;
  margin: 12px 0 8px;
}

.feature-band {
  background: var(--mist);
}

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

.feature-grid article,
.pricing-grid article {
  padding: 22px;
}

.roles {
  background: var(--ink);
  color: var(--white);
}

.roles .section-heading p,
.role-panel p {
  color: #cfd7d3;
}

.role-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: 280px minmax(0, 1fr);
}

.role-tabs {
  display: grid;
  gap: 8px;
}

.role-tabs button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  color: #dce4e0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 48px;
  padding: 0 14px;
  text-align: left;
}

.role-tabs button.active {
  background: var(--white);
  color: var(--ink);
}

.role-panel {
  border-left: 3px solid var(--primary);
  min-height: 220px;
  padding: 22px 0 0 28px;
}

.role-panel h3 {
  font-size: 3rem;
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 820px;
}

.price {
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 12px 0;
}

.price span {
  color: var(--steel);
  font-size: .95rem;
  margin-left: 4px;
}

.pricing-grid .featured {
  border-color: rgba(var(--primary-rgb), .55);
  box-shadow: 0 18px 50px rgba(var(--primary-rgb), .14);
}

.resource-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.resource-list a {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 18px;
  min-height: 72px;
  padding: 0 20px;
}

.resource-list span {
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  min-width: 90px;
  text-transform: uppercase;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.demo {
  align-items: start;
  background: var(--mist);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .62fr);
}

.demo-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  color: var(--steel);
  display: grid;
  font-size: .86rem;
  font-weight: 800;
  gap: 8px;
}

input,
textarea {
  border: 1px solid #cbd4cf;
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(var(--primary-rgb), .16);
}

button.button {
  border: 0;
  cursor: pointer;
  width: 100%;
}

button.button:disabled {
  cursor: wait;
  opacity: .72;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 6vw;
}

.footer-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-brand img {
  height: 44px;
  width: 165px;
}

.footer-brand p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #dce4e0;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .dashboard-shell {
    opacity: .38;
    right: -160px;
    width: 720px;
  }

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

  .hero h1 {
    font-size: 4.8rem;
  }

  .section h2 {
    font-size: 3rem;
  }

  .role-panel h3 {
    font-size: 2.35rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 22px 72px;
  }

  .dashboard-shell {
    opacity: .2;
    right: -320px;
    top: 90px;
    transform: rotate(-2deg) scale(.82);
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .section h2 {
    font-size: 2.35rem;
  }

  .role-panel h3 {
    font-size: 2rem;
  }

  .section {
    padding: 72px 22px;
  }

  .workflow-steps,
  .feature-grid,
  .pricing-grid,
  .role-layout,
  .demo {
    grid-template-columns: 1fr;
  }

  .role-panel {
    border-left: 0;
    border-top: 3px solid var(--primary);
    padding: 24px 0 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.form-status {
  color: var(--primary);
  font-weight: 800;
  margin: 0;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--primary);
}

.resource-page {
  padding-top: 72px;
}

.resource-hero {
  background: var(--ink);
  color: var(--white);
  padding: 96px 6vw 72px;
}

.resource-hero h1 {
  font-size: 4.4rem;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  max-width: 860px;
}

.resource-hero p:last-child {
  color: #dfe3f1;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 760px;
}

.resource-body {
  background: var(--white);
  padding: 72px 6vw;
}

.resource-body h2 {
  border-top: 2px solid var(--primary);
  font-size: 1.8rem;
  letter-spacing: 0;
  margin: 0 0 18px;
  max-width: 860px;
  padding-top: 24px;
}

.resource-body h2:not(:first-child) {
  margin-top: 42px;
}

.resource-body p,
.resource-body li {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 860px;
}

.resource-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  max-width: 860px;
  padding-left: 22px;
}

.resource-cta {
  align-items: center;
  background: var(--mist);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 56px 6vw;
}

.resource-cta h2 {
  font-size: 2.35rem;
  letter-spacing: 0;
  margin: 0;
}

.resource-cta p:last-child {
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 680px;
}

@media (max-width: 760px) {
  .resource-hero h1 {
    font-size: 3rem;
  }

  .resource-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
.page-pricing-grid {
  margin: 18px 0 34px;
  max-width: 1120px;
}

.resource-body .page-pricing-grid p {
  max-width: none;
}
