:root {
  color-scheme: dark;
  --bg: #02070d;
  --bg-2: #050b13;
  --text: #f8fbff;
  --muted: #aeb6c5;
  --soft: #d4d9e2;
  --line: rgba(130, 172, 208, 0.18);
  --line-strong: rgba(98, 226, 255, 0.5);
  --cyan: #2dddf5;
  --cyan-soft: #4cefff;
  --pink: #f548ca;
  --purple: #8e70ff;
  --max: 1416px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 4% 26%, rgba(40, 221, 245, 0.13), transparent 18rem),
    radial-gradient(circle at 96% 92%, rgba(245, 72, 202, 0.16), transparent 28rem),
    linear-gradient(180deg, #02060b 0%, #02070d 48%, #02070d 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 70%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(2, 7, 13, 0), rgba(2, 7, 13, 0.72) 80%);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  align-items: start;
  width: 100%;
  height: 70px;
  min-height: 70px;
  overflow: visible;
  padding: 7px 54px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(2, 6, 11, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 58px;
  min-width: 0;
}

.brand img {
  width: 162px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

.nav-links {
  display: flex;
  justify-content: flex-start;
  gap: 31px;
  padding-top: 18px;
  color: #f4f7fb;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.95;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover {
  color: var(--cyan);
  opacity: 1;
}

.header-actions {
  position: relative;
  display: grid;
  grid-template-columns: auto 200px;
  justify-content: end;
  align-items: start;
  gap: 18px 28px;
}

.login-link {
  padding-top: 12px;
  color: #f6f8fc;
  font-size: 14px;
  font-weight: 600;
}

.header-actions small {
  position: absolute;
  top: 47px;
  right: 1px;
  width: 200px;
  grid-column: auto;
  margin-top: 0;
  color: #7f8999;
  font-size: 10px;
  text-align: center;
}

strong {
  color: var(--cyan-soft);
}

.gradient-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 31px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(100deg, #28d9ef 0%, #57d7f4 37%, #f34cc6 100%);
  color: #050811;
  box-shadow: 0 18px 42px rgba(40, 217, 239, 0.17);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 160ms ease, filter 160ms ease;
}

.gradient-button:hover {
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.04);
}

.header-button {
  min-height: 39px;
  width: 200px;
  padding: 0 19px;
  font-size: 14px;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 525px 1fr;
  gap: 12px;
  width: 100%;
  min-height: 444px;
  padding: 63px 60px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 42%, rgba(14, 124, 157, 0.16), transparent 22rem),
    radial-gradient(circle at 73% 30%, rgba(54, 83, 141, 0.17), transparent 28rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 540px;
  margin: 0;
  color: #ffffff;
  font-size: 3.65rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25), 0 20px 70px rgba(255,255,255,0.08);
}

.hero-copy p {
  max-width: 460px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-button {
  width: 306px;
  margin-top: 26px;
}

.software-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px !important;
  color: #aab3c0 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.software-note span {
  color: #c8d1dd;
  font-size: 19px;
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  align-self: start;
  min-width: 0;
  margin-top: -37px;
  padding-top: 0;
}

.hero-dashboard img {
  width: min(916px, 64vw);
  max-width: none;
  margin-left: -12px;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.46));
}

.features-band {
  height: 201px;
  min-height: 201px;
  overflow: hidden;
  padding: 19px 60px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 10, 17, 0.72);
}

.features-band h2,
.workflow-band h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(90px, 1fr));
  gap: 28px;
  width: min(var(--max), 100%);
  margin: 23px auto 0;
}

.feature-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 104px;
  text-align: center;
}

.feature-grid img {
  width: 60px;
  height: 53px;
  object-fit: contain;
  margin-bottom: 5px;
}

.feature-grid h3,
.workflow-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.feature-grid p {
  max-width: 160px;
  margin: 6px 0 0;
  color: #aab2bf;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.48;
}

.workflow-band {
  height: 183px;
  min-height: 183px;
  overflow: hidden;
  padding: 15px 60px 21px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(122px, 1fr) 34px minmax(136px, 1fr) 34px minmax(136px, 1fr) 34px minmax(152px, 1fr) 34px minmax(136px, 1fr) 34px minmax(142px, 1fr);
  gap: 12px;
  align-items: start;
  width: min(var(--max), 100%);
  margin: 14px auto 0;
}

.workflow-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: linear-gradient(135deg, #45e6f8, #2ebed2);
  color: #06111a;
  font-size: 11px;
  font-weight: 900;
}

.workflow-grid img {
  width: 66px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 4px;
}

.workflow-grid p {
  max-width: 172px;
  margin: 5px 0 0;
  color: #acb4c0;
  font-size: 12.4px;
  font-weight: 500;
  line-height: 1.45;
}

.workflow-arrow {
  align-self: center;
  justify-self: center;
  margin-top: 4px;
  color: #c6cbd3;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
}

.final-cta {
  display: grid;
  grid-template-columns: 194px minmax(0, 1fr) 420px;
  align-items: center;
  gap: 32px;
  width: calc(100% - 120px);
  max-width: var(--max);
  min-height: 121px;
  margin: 0 auto 13px;
  padding: 23px 47px 20px 65px;
  border: 1px solid rgba(54, 219, 244, 0.72);
  border-right-color: rgba(245, 72, 202, 0.8);
  border-bottom-color: rgba(245, 72, 202, 0.68);
  border-radius: 10px;
  background:
    radial-gradient(circle at 3% 50%, rgba(37, 218, 241, 0.12), transparent 18rem),
    radial-gradient(circle at 100% 100%, rgba(245, 72, 202, 0.16), transparent 20rem),
    rgba(5, 12, 20, 0.88);
}

.cta-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
  border-right: 1px solid rgba(143, 153, 169, 0.42);
}

.cta-brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

.cta-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.cta-copy p {
  margin: 8px 0 0;
  color: #adb5c2;
  font-size: 16px;
  line-height: 1.4;
}

.cta-action {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.cta-action .gradient-button {
  width: 310px;
}

.cta-action small {
  color: #818b9b;
  font-size: 12px;
}

.section-shell {
  width: 100%;
  padding: 76px 60px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(3, 9, 16, 0.78), rgba(3, 8, 15, 0.96)),
    #03080f;
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.about-section h2 {
  max-width: 870px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 820px;
  margin: 14px auto 0;
  color: #aab4c2;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.feature-detail-grid article,
.pricing-grid article,
.resource-grid a,
.faq-grid article {
  border: 1px solid rgba(107, 158, 199, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 25, 39, 0.82), rgba(5, 12, 20, 0.92));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.feature-detail-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  min-height: 248px;
  padding: 20px;
}

.feature-detail-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-detail-grid h3,
.workflow-lanes h3,
.pricing-grid h3,
.resource-grid h3,
.faq-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.feature-detail-grid p,
.workflow-lanes p,
.pricing-grid p,
.resource-grid p,
.about-section p,
.faq-grid p {
  margin: 8px 0 0;
  color: #aeb7c5;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.feature-detail-grid ul,
.pricing-grid ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-grid ul {
  margin-bottom: 24px;
}

.feature-detail-grid li,
.pricing-grid li {
  position: relative;
  padding-left: 17px;
  color: #d6dce5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.feature-detail-grid li::before,
.pricing-grid li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

.workflow-deep {
  background:
    linear-gradient(180deg, rgba(3, 8, 15, 0.96), rgba(5, 9, 18, 0.98)),
    #050912;
}

.workflow-deep-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.workflow-lanes article {
  position: relative;
  min-height: 154px;
  padding: 23px 22px 22px 70px;
  border: 1px solid rgba(105, 165, 214, 0.18);
  border-radius: 8px;
  background: rgba(8, 17, 29, 0.78);
}

.workflow-lanes article span {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #46e8f8, #28bfd8);
  color: #061017;
  font-size: 13px;
  font-weight: 900;
}

.workflow-console {
  align-self: stretch;
  padding: 24px;
  border: 1px solid rgba(245, 72, 202, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(10, 24, 38, 0.94), rgba(30, 10, 31, 0.88)),
    #08111d;
  box-shadow: 0 24px 90px rgba(245, 72, 202, 0.12);
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.console-topline strong {
  color: #ffffff;
  font-size: 17px;
}

.console-topline span {
  color: var(--cyan-soft);
  font-size: 12px;
  font-weight: 900;
}

.workflow-console ol {
  display: grid;
  gap: 15px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-console li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  color: #dce4ef;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.workflow-console li span {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(45, 221, 245, 0.65);
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0.98), rgba(3, 8, 15, 0.94)),
    #03080f;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
}

.pricing-grid .featured-plan {
  border-color: rgba(45, 221, 245, 0.6);
  background:
    linear-gradient(180deg, rgba(18, 43, 60, 0.9), rgba(21, 14, 35, 0.92));
  box-shadow: 0 26px 90px rgba(45, 221, 245, 0.12);
}

.price {
  margin: 16px 0 0 !important;
  color: #dfe7f2 !important;
  font-size: 16px !important;
}

.price span {
  color: #ffffff;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.custom-price span {
  font-size: 36px;
}

.pricing-grid a,
.resource-grid a {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pricing-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  border-radius: 6px;
  background: linear-gradient(100deg, #28d9ef 0%, #f34cc6 100%);
  color: #050811;
  font-size: 14px;
  font-weight: 900;
}

.pricing-grid a:hover,
.resource-grid a:hover {
  transform: translateY(-2px);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.resource-grid a {
  display: grid;
  align-content: start;
  min-height: 248px;
  padding: 24px;
}

.resource-grid span {
  color: var(--cyan-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-grid h3 {
  margin-top: 18px;
}

.about-section {
  padding-bottom: 54px;
  background:
    linear-gradient(180deg, rgba(3, 8, 15, 0.94), rgba(5, 8, 14, 0.96)),
    #05080e;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  align-items: center;
}

.about-section h2 {
  margin: 0;
  max-width: 760px;
}

.about-section p {
  max-width: 760px;
  font-size: 16px;
}

.about-stats {
  display: grid;
  gap: 12px;
}

.about-stats article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  min-height: 94px;
  padding: 18px 22px;
  border: 1px solid rgba(94, 221, 245, 0.22);
  border-radius: 8px;
  background: rgba(8, 18, 30, 0.84);
}

.about-stats strong {
  color: #ffffff;
  font-size: 42px;
  font-weight: 900;
}

.about-stats span {
  color: #c4ccd8;
  font-size: 15px;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 42px auto 0;
}

.faq-grid article {
  padding: 24px;
}

.final-cta {
  margin-top: 34px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding: 52px 28px 38px;
  }

  .hero-dashboard img {
    width: 100%;
    margin: 20px 0 0;
  }

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

  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .workflow-arrow {
    display: none;
  }

  .final-cta {
    grid-template-columns: 184px minmax(0, 1fr);
  }

  .cta-action {
    grid-column: 1 / -1;
  }

  .section-shell {
    padding: 64px 28px;
  }

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

  .workflow-deep-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .workflow-console {
    max-width: 640px;
    width: 100%;
    justify-self: center;
  }

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

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .brand img {
    width: 146px;
  }

  .login-link,
  .header-actions small,
  .header-actions {
    display: none;
  }

  .header-button {
    width: auto;
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .header-button span:last-child {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    padding: 46px 18px 28px;
  }

  .hero-copy h1 {
    max-width: 350px;
    font-size: 3.5rem;
  }

  .hero-copy p {
    max-width: 340px;
    font-size: 18px;
  }

  .hero-button {
    width: min(306px, 100%);
  }

  .software-note {
    font-size: 13px !important;
  }

  .hero-dashboard {
    justify-self: center;
    width: 100%;
    max-width: 460px;
  }

  .hero-dashboard img {
    width: 100%;
    max-width: 100%;
    margin: 16px auto 0;
  }

  .features-band,
  .workflow-band {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-inline: 18px;
    padding-block: 24px;
  }

  .features-band h2,
  .workflow-band h2 {
    max-width: 350px;
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px 18px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-number {
    left: 10px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 24px;
    text-align: center;
  }

  .cta-brand {
    justify-content: center;
    height: auto;
    border-right: 0;
  }

  .cta-action .gradient-button {
    width: min(310px, 100%);
  }

  .section-shell {
    padding: 48px 18px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .about-section h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .section-heading p,
  .about-section p {
    font-size: 15px;
  }

  .feature-detail-grid,
  .workflow-lanes,
  .pricing-grid,
  .resource-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-detail-grid article {
    min-height: auto;
    padding: 18px;
  }

  .workflow-lanes article {
    min-height: auto;
    padding: 20px 18px 20px 64px;
  }

  .workflow-lanes article span {
    left: 18px;
  }

  .workflow-console {
    padding: 20px;
  }

  .pricing-grid article {
    min-height: auto;
    padding: 24px;
  }

  .resource-grid a {
    min-height: auto;
  }

  .about-stats article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .about-stats strong {
    font-size: 34px;
  }

  .faq-grid {
    margin-top: 26px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .header-actions {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3.05rem;
  }

  .feature-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }
}
