:root {
  color-scheme: light;
  --ink: #132033;
  --muted: #66758a;
  --line: rgba(20, 32, 51, 0.12);
  --paper: #ffffff;
  --mist: #f3f7fb;
  --navy: #071a33;
  --blue: #1668b8;
  --blue-dark: #0f5aa7;
  --teal: #17875a;
  --amber: #b97912;
  --coral: #c75b4c;
  --shadow: 0 24px 70px rgba(18, 35, 59, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f7f9fc;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: rgba(22, 104, 184, 0.18);
}

img,
svg {
  display: block;
}

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

.no-break {
  white-space: nowrap;
}

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

p,
dd,
li {
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 26, 51, 0.74);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 760;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  white-space: nowrap;
  border-radius: var(--radius);
  font-weight: 850;
}

.nav-cta,
.primary-button {
  background: linear-gradient(180deg, #2583d9, var(--blue-dark));
  color: #fff;
  box-shadow: 0 18px 38px rgba(6, 33, 74, 0.24);
}

.nav-cta::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.1em;
  line-height: 1;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 840px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 166px max(22px, calc((100vw - 1180px) / 2)) 112px;
  background: var(--navy);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.96) 0%, rgba(7, 26, 51, 0.78) 42%, rgba(7, 26, 51, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 26, 51, 0.44) 0%, rgba(255, 255, 255, 0.18) 47%, rgba(7, 26, 51, 0.86) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 22%;
  filter: saturate(0.86) contrast(0.98);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  font-weight: 620;
  letter-spacing: 0;
  text-transform: none;
}

.hero .eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  font-weight: 820;
}

.hero-pill {
  width: fit-content;
  max-width: none;
  margin: 0 0 42px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(65, 79, 99, 0.42);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  line-height: 1.35;
  font-weight: 780;
  white-space: nowrap;
  backdrop-filter: blur(15px);
}

.hero-pill::before {
  content: "✦";
  margin-right: 10px;
  color: #9ed6be;
}

p.eyebrow {
  font-size: 1.18rem;
}

.section .eyebrow,
.product-copy .eyebrow,
.analysis-copy .eyebrow,
.comparison-copy .eyebrow,
.security-copy .eyebrow,
.pricing-copy .eyebrow {
  font-size: 1.18rem;
  font-weight: 620;
  text-transform: none;
}

.eyebrow.dark {
  color: var(--blue-dark);
}

.hero h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(4.25rem, 7.3vw, 6.45rem);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.22rem, 2.2vw, 1.58rem);
  line-height: 1.55;
  font-weight: 620;
}

.hero-actions {
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 42px;
}

.hero .primary-button,
.hero .secondary-button {
  width: 100%;
  min-width: 0;
  min-height: 64px;
  padding: 0 34px;
  font-size: 1.08rem;
  box-shadow: none;
}

.hero .primary-button {
  background: #fff;
  color: #111927;
}

.hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(84, 98, 118, 0.46);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero .primary-button::after,
.hero .secondary-button::after {
  content: "→";
  margin-left: 12px;
  font-size: 1.2em;
  line-height: 1;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 820px;
  margin: 0;
}

.hero-metrics div {
  min-height: 150px;
  display: grid;
  grid-template-rows: 28px 34px auto;
  align-content: start;
  justify-items: center;
  row-gap: 5px;
  padding: 18px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(77, 91, 111, 0.74);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
}

.hero-metrics div::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(223, 245, 233, 0.92);
  color: #13734c;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
}

.hero-metrics dt {
  display: grid;
  align-items: end;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 900;
}

.hero-metrics dd {
  max-width: 220px;
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.35;
}

.section,
.product-band {
  scroll-margin-top: 96px;
  padding: 88px max(22px, calc((100vw - 1180px) / 2));
}

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

.section-heading.narrow {
  max-width: 700px;
}

.section h2,
.product-copy h2,
.analysis-copy h2,
.comparison-copy h2,
.security-copy h2,
.pricing-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(3rem, 4.7vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(22, 104, 184, 0.055), rgba(255, 255, 255, 0) 44%),
    #ffffff;
}

.intro-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article,
.feature-grid article,
.workflow-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(24, 39, 60, 0.08);
}

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

.icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #eaf4ff;
  color: var(--blue-dark);
}

.icon-wrap.amber {
  background: #fff5df;
  color: var(--amber);
}

.icon-wrap.green {
  background: #e8fbf3;
  color: var(--teal);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.intro-grid h3,
.feature-grid h3,
.workflow-list h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.intro-grid p,
.feature-grid p,
.workflow-list p,
.product-copy p,
.analysis-copy p,
.comparison-copy p,
.security-copy p,
.pricing-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.workflow-section {
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.035), rgba(255, 255, 255, 0) 42%),
    #eef4fb;
}

.workflow-heading {
  max-width: 980px;
  margin-bottom: 36px;
}

.workflow-heading h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(3rem, 4.7vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 8px 0 26px;
}

.workflow-rail::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 29px;
  height: 2px;
  background: linear-gradient(90deg, rgba(22, 104, 184, 0.42), rgba(23, 135, 90, 0.56));
}

.workflow-rail div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.workflow-rail span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 104, 184, 0.22);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 18px 42px rgba(22, 104, 184, 0.12);
  font-weight: 920;
}

.workflow-rail strong {
  color: var(--ink);
  font-size: 1rem;
}

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

.workflow-list article {
  min-height: 156px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 20px 24px;
  box-shadow: none;
  text-align: center;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(720px, 1fr) minmax(300px, 430px);
  gap: clamp(30px, 4vw, 52px);
  align-items: center;
  background: var(--navy);
}

.product-copy {
  max-width: 860px;
}

.product-copy h2 {
  max-width: 860px;
  font-size: clamp(3rem, 4.05vw, 4rem);
  line-height: 1.08;
  text-wrap: normal;
}

.product-copy h2,
.product-copy p {
  color: #fff;
}

.product-copy p {
  max-width: 500px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.6;
}

.text-link {
  color: #91d4ff;
  font-weight: 850;
}

.product-shot {
  max-width: 430px;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.product-shot img {
  width: 100%;
  height: auto;
}

.parameter-section {
  background:
    linear-gradient(180deg, rgba(22, 104, 184, 0.07), rgba(244, 247, 251, 0) 48%),
    #edf3fa;
}

.parameter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 22px;
  align-items: stretch;
}

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

.parameter-grid article,
.language-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(24, 39, 60, 0.07);
}

.parameter-grid article {
  min-height: 150px;
  padding: 20px;
}

.parameter-grid strong,
.parameter-grid span,
.language-panel span {
  display: block;
}

.parameter-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.parameter-grid span,
.language-panel p {
  color: var(--muted);
  line-height: 1.52;
}

.language-panel {
  display: grid;
  align-content: start;
  padding: 24px;
}

.language-panel h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.language-panel p {
  margin: 0 0 18px;
}

.language-panel div {
  display: grid;
  gap: 9px;
}

.language-panel span {
  padding: 10px 12px;
  border: 1px solid rgba(22, 104, 184, 0.14);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--blue-dark);
  text-align: center;
  font-weight: 760;
}

.starter-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #d9ebf8 0%, #e8f3fb 100%);
  border-block: 1px solid rgba(22, 104, 184, 0.08);
}

.starter-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.48fr);
  gap: clamp(30px, 3.8vw, 46px);
  align-items: center;
}

.starter-copy {
  max-width: 620px;
}

.starter-copy h2 {
  max-width: 680px;
  margin-bottom: 22px;
}

.starter-copy p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 16px;
  color: #384960;
  font-size: 1.08rem;
  line-height: 1.68;
}

.starter-detail li,
.starter-demo span {
  color: var(--muted);
  line-height: 1.58;
}

.starter-detail {
  display: grid;
  gap: 14px;
  width: min(100%, 390px);
  justify-self: end;
}

.starter-detail div {
  padding: 22px 24px;
  border: 1px solid rgba(22, 104, 184, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(24, 39, 60, 0.1);
  backdrop-filter: blur(10px);
}

.starter-detail div + div {
  border-left: 1px solid rgba(22, 104, 184, 0.13);
}

.starter-detail h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 1rem;
}

.starter-detail ul {
  margin: 0;
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.starter-detail li {
  position: relative;
  padding-left: 28px;
}

@media (min-width: 981px) {
  .starter-detail div {
    padding-inline: 24px;
  }

  .starter-detail li {
    white-space: nowrap;
    font-size: 0.95rem;
  }
}

.starter-detail li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff5e9;
  color: #13734c;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 920;
}

.starter-demo {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 24px;
  border: 1px solid rgba(19, 115, 76, 0.18);
  border-radius: var(--radius);
  background: rgba(248, 253, 250, 0.74);
  box-shadow: none;
}

.starter-demo strong {
  color: #13734c;
  font-size: 1rem;
}

.starter-demo span {
  font-weight: 760;
}

.analysis-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 1)),
    #ffffff;
}

.analysis-layout,
.comparison-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.analysis-copy,
.comparison-copy {
  max-width: 700px;
}

.analysis-copy p,
.comparison-copy p {
  margin-top: 18px;
  font-size: 1.05rem;
}

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

.analysis-grid article,
.comparison-list div,
.safeguard-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(24, 39, 60, 0.08);
}

.analysis-grid strong,
.analysis-grid span,
.comparison-list strong,
.comparison-list span {
  display: block;
}

.analysis-grid strong,
.comparison-list strong {
  margin-bottom: 7px;
  color: var(--ink);
}

.analysis-grid span,
.comparison-list span,
.safeguard-grid p {
  color: var(--muted);
  line-height: 1.52;
}

.result-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.68fr);
  gap: clamp(56px, 6vw, 86px);
  align-items: end;
  background:
    linear-gradient(180deg, rgba(22, 104, 184, 0.07), rgba(238, 244, 251, 0) 44%),
    #eef4fb;
}

.result-copy {
  min-width: 0;
  max-width: 720px;
}

.result-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: #52647c;
  font-size: 1.08rem;
  line-height: 1.62;
}

.result-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  max-width: 560px;
  margin-top: 28px;
}

.result-highlights span {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px 10px 44px;
  border: 1px solid rgba(22, 104, 184, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.15;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(24, 39, 60, 0.06);
}

.result-highlights span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #dff5e9;
  color: #13734c;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 920;
}

.result-gallery {
  align-self: end;
  justify-self: end;
  display: grid;
  width: min(100%, 540px);
  gap: 12px;
}

.result-gallery-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-shot {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 51, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(24, 39, 60, 0.14);
}

.result-shot > span:first-child {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(22, 104, 184, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(24, 39, 60, 0.08);
}

.result-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1.74;
  object-fit: cover;
  object-position: center top;
}

.result-shot-featured img {
  aspect-ratio: 1.84;
}

.result-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(7, 26, 51, 0.08) 100%);
  pointer-events: none;
}

.zoom-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(7, 26, 51, 0.82);
  color: #fff;
  box-shadow: 0 14px 32px rgba(7, 26, 51, 0.24);
}

.zoom-badge svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 82px 24px 28px;
  background: rgba(7, 26, 51, 0.86);
}

.shot-lightbox:target {
  display: grid;
}

.shot-lightbox img {
  width: min(100%, 1180px);
  max-height: calc(100vh - 128px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 61;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.safeguards-section {
  background:
    linear-gradient(180deg, rgba(22, 104, 184, 0.035), rgba(255, 255, 255, 0) 44%),
    #ffffff;
}

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

.safeguard-grid article {
  min-height: 138px;
  padding: 18px 20px;
}

.safeguard-grid h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.safeguard-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.48;
}

.comparison-section {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.055), rgba(248, 251, 255, 0) 44%),
    #fbfdff;
}

.comparison-copy h2 {
  max-width: 700px;
  font-size: clamp(3rem, 4.7vw, 4.35rem);
  line-height: 1.06;
  text-wrap: normal;
}

.comparison-copy p:not(.eyebrow) {
  max-width: 590px;
  color: #384960;
  line-height: 1.65;
}

.comparison-list {
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(100%, 430px);
  justify-self: center;
  counter-reset: comparison;
}

.comparison-list div {
  min-height: 126px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  row-gap: 4px;
  padding: 22px 26px;
  border-color: rgba(20, 32, 51, 0.18);
  box-shadow: 0 22px 68px rgba(24, 39, 60, 0.1);
}

.comparison-list div::before {
  counter-increment: comparison;
  content: counter(comparison, decimal-leading-zero);
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 104, 184, 0.18);
  border-radius: 50%;
  background: #eaf4ff;
  color: #074f98;
  font-size: 0.82rem;
  font-weight: 920;
}

.comparison-list strong {
  grid-column: 2;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.comparison-list span {
  grid-column: 2;
  max-width: 520px;
  color: #40536d;
  font-size: 0.98rem;
  line-height: 1.58;
}

.feature-section {
  background: #ffffff;
}

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

.feature-grid article {
  min-height: 178px;
  padding: 22px;
  box-shadow: none;
}

.feature-grid article:nth-child(2n) {
  background: #f8fbff;
}

.audience-section {
  background:
    linear-gradient(180deg, rgba(22, 104, 184, 0.035), rgba(255, 255, 255, 0) 44%),
    #ffffff;
}

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

.audience-grid article {
  min-height: 238px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  box-shadow: 0 18px 46px rgba(24, 39, 60, 0.07);
}

.audience-kicker {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #eaf4ff;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 920;
}

.audience-grid h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.industry-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 18px 24px;
  border: 1px solid rgba(19, 115, 76, 0.16);
  border-radius: var(--radius);
  background: rgba(248, 253, 250, 0.76);
}

.industry-panel h3 {
  margin: 0;
  color: #13734c;
  font-size: 1.08rem;
  font-weight: 900;
}

.industry-panel ul {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 18px;
  padding: 0;
  list-style: none;
}

.industry-panel li {
  position: relative;
  min-height: 24px;
  padding-left: 28px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 760;
  white-space: nowrap;
}

.industry-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff5e9;
  color: #13734c;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 920;
}

.security-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(36px, 5vw, 58px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(22, 104, 184, 0.075), rgba(238, 244, 251, 0) 44%),
    #eef4fb;
}

.security-copy {
  max-width: 840px;
}

.security-copy h2 {
  max-width: 840px;
  font-size: clamp(3rem, 4.7vw, 4.35rem);
  line-height: 1.05;
}

.security-copy h2 span {
  display: block;
  white-space: nowrap;
}

.security-copy p {
  max-width: 680px;
  color: #52647c;
  font-size: 1.08rem;
  line-height: 1.62;
}

.security-copy p,
.pricing-copy p {
  margin-top: 18px;
}

.security-list {
  display: grid;
  gap: 14px;
  width: min(100%, 390px);
  justify-self: center;
}

.security-list div {
  position: relative;
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 22px 24px 22px 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 60px rgba(24, 39, 60, 0.08);
}

.security-list div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--blue-dark) 0 4px, transparent 5px),
    #eaf4ff;
}

.security-list strong,
.security-list span {
  display: block;
}

.security-list strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.04rem;
}

.security-list span {
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq-group + .faq-group {
  border-top: 1px solid var(--line);
}

.faq-group h3 {
  margin: 0;
  padding: 22px 26px 14px;
  background: rgba(234, 243, 252, 0.62);
  color: var(--blue-dark);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
}

.faq-group h3 + details {
  border-top: 1px solid var(--line);
}

.faq-list details {
  background: #fff;
}

.faq-list details + details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 20px 76px 20px 26px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.14rem;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(20, 32, 51, 0.13);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 760;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 820px;
  margin: -8px 76px 24px 26px;
  color: var(--muted);
  line-height: 1.58;
}

.panel-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.9fr);
  gap: clamp(44px, 7vw, 82px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #071a33;
  color: #fff;
}

.pricing-copy {
  max-width: 600px;
}

.pricing-copy .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.pricing-copy h2,
.pricing-copy p {
  color: #fff;
}

.pricing-copy h2 {
  font-size: clamp(2.65rem, 4.8vw, 4.25rem);
}

.pricing-copy p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.58;
}

.pricing-copy p + p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
}

.price-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 3.5vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(64, 82, 111, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.price-card .panel-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.price-card h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  line-height: 1.08;
  font-weight: 900;
}

.price-seal {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  color: #9ed6be;
}

.price-seal svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.price-line strong {
  color: #fff;
  font-size: clamp(4.6rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 920;
}

.price-line span,
.tax-note {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
}

.price-line span {
  max-width: 280px;
  font-size: 1rem;
  font-weight: 850;
}

.tax-note {
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.42;
  font-weight: 780;
}

.license-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.license-tags span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.1;
  font-weight: 850;
}

.license-terms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.license-terms div,
.api-note {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(9, 31, 57, 0.34);
  text-align: center;
}

.license-terms strong,
.api-note strong {
  margin-bottom: 8px;
  color: #9ed6be;
  font-size: 0.82rem;
  font-weight: 920;
  text-transform: uppercase;
}

.license-terms span,
.api-note span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.32;
  font-weight: 820;
}

.api-note {
  min-height: 82px;
  background: rgba(62, 92, 113, 0.62);
}

.price-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.price-button::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.2rem;
  line-height: 1;
}

.price-footnote {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 760;
}

code {
  display: block;
  width: 100%;
  overflow-wrap: anywhere;
  padding: 14px;
  border: 1px solid rgba(22, 104, 184, 0.16);
  border-radius: var(--radius);
  background: #f4f9ff;
  color: var(--blue-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.96rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  padding: 44px max(22px, calc((100vw - 1180px) / 2)) 52px;
  border-top: 1px solid rgba(20, 32, 51, 0.12);
  background: #fff;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  object-fit: cover;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.footer-brand span {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.45;
  white-space: nowrap;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  color: var(--muted);
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 720;
}

.footer-links a:hover {
  color: var(--blue-dark);
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-pill {
    max-width: 100%;
    white-space: normal;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 26, 51, 0.9) 0%, rgba(7, 26, 51, 0.75) 54%, rgba(7, 26, 51, 0.9) 100%);
  }

  .intro-grid,
  .feature-grid,
  .analysis-layout,
  .result-section,
  .analysis-grid,
  .parameter-layout,
  .parameter-grid,
  .comparison-section,
  .comparison-list,
  .safeguard-grid,
  .starter-layout,
  .starter-detail,
  .starter-demo,
  .audience-grid,
  .industry-panel,
  .faq-list,
  .workflow-list,
  .product-band,
  .security-section,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .product-band,
  .comparison-section,
  .security-section,
  .pricing-section {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .workflow-list article {
    min-height: 0;
  }

  .result-gallery {
    justify-self: stretch;
    width: 100%;
  }

  .workflow-rail {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 22px;
  }

  .workflow-rail::before {
    left: 29px;
    right: auto;
    top: 29px;
    bottom: 29px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(22, 104, 184, 0.38), rgba(23, 135, 90, 0.52));
  }

  .workflow-rail div {
    grid-template-columns: 58px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .industry-panel ul {
    grid-template-columns: 1fr;
  }

  .industry-panel li {
    white-space: normal;
  }

  .no-break {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-header {
    min-height: 68px;
    padding: 13px 16px;
  }

  .brand span {
    max-width: 144px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding: 104px 16px 44px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
    white-space: normal;
  }

  .section h2,
  .product-copy h2,
  .analysis-copy h2,
  .comparison-copy h2,
  .security-copy h2,
  .pricing-copy h2,
  .workflow-heading h2 {
    overflow-wrap: anywhere;
  }

  .security-copy h2 span {
    white-space: normal !important;
  }

  .license-tags,
  .license-terms {
    grid-template-columns: 1fr;
  }

  .price-line strong {
    font-size: clamp(4rem, 18vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .result-gallery-secondary {
    grid-template-columns: 1fr;
  }

  .shot-lightbox {
    padding: 76px 14px 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-metrics div {
    min-height: 118px;
    padding: 16px 18px;
  }

  .hero-metrics dt {
    font-size: 1.08rem;
  }

  .hero-metrics dd {
    font-size: 0.92rem;
    line-height: 1.32;
  }

  .section,
  .product-band,
  .site-footer {
    padding-inline: 16px;
  }

  .section,
  .product-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-meta {
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
