﻿:root {
  --surface: #ffffff;
  --text: #142033;
  --muted: #5b6c84;
  --line: #d8e3f1;
  --primary: #0164e4;
  --primary-hover: #0b57c6;
  --primary-deep: #0f172a;
  --primary-soft: #dceaff;
  --focus-ring: 0 0 0 3px rgba(220, 234, 255, 0.95), 0 0 0 6px rgba(1, 100, 228, 0.28);
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(1, 100, 228, 0.08), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #f4f8fc 100%);
  color: var(--text);
  font-family: "Inter-Regular", Arial, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 28px 0;
  scroll-margin-top: 92px;
}

.page-hero {
  padding: 50px 0 28px;
}

.page-shell {
  --hero-shell-radius: 36px;
  --hero-media-radius: 30px;
  position: relative;
  overflow: hidden;
  border-radius: var(--hero-shell-radius);
  border: 1px solid rgba(216, 227, 241, 0.92);
  background:
    radial-gradient(circle at right top, rgba(1, 100, 228, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 255, 0.92) 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: stretch;
  gap: 26px;
  padding: 0 0 0 38px;
}

.hero-grid > * {
  min-width: 0;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(1, 100, 228, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-copy {
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: 38px 0;
}

.hero-copy > div {
  display: grid;
  gap: 14px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--primary-deep);
  font-family: "Inter-Bold", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lead {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(1, 100, 228, 0.08);
  color: var(--primary);
  font-family: "Inter-Semi Bold", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.18s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  padding: 12px 14px;
  border: 1px solid rgba(1, 100, 228, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-family: "Inter-Semi Bold", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.hero-actions {
  display: grid;
  align-items: center;
  justify-content: start;
  width: max-content;
  max-width: 100%;
  gap: 12px;
  margin-top: 0;
}

.hero-actions .btn {
  width: auto;
  min-height: 46px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-family: "Inter-Bold", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(1, 100, 228, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(1, 100, 228, 0.26);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-secondary:hover {
  background: #ffffff;
}

.hero-actions .btn-secondary {
  background: var(--primary);
  color: #ffffff;
  border-color: rgba(1, 100, 228, 0.22);
  box-shadow: 0 14px 30px rgba(1, 100, 228, 0.18);
}

.hero-actions .btn-secondary:hover {
  background: var(--primary-hover);
  box-shadow: 0 20px 36px rgba(1, 100, 228, 0.24);
}

.product-image-shell {
  display: grid;
  align-self: stretch;
  align-items: stretch;
  justify-self: end;
  justify-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 227, 241, 0.92);
  border-radius: var(--hero-media-radius) var(--hero-shell-radius) var(--hero-shell-radius) var(--hero-media-radius);
  background: #dfeaf8;
  box-shadow: none;
  aspect-ratio: auto;
  min-height: 100%;
}

.product-image-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.section-soft .info-card,
.info-card,
.spec-card,
.faq-item,
.cta-panel,
.summary-card,
.compare-card,
.overview-panel,
.overview-side,
.support-panel {
  border: 1px solid rgba(216, 227, 241, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.two-column,
.feature-grid,
.spec-grid,
.faq-list,
.summary-grid,
.overview-layout,
.support-layout,
.compare-grid,
.gallery-grid,
.product-jump-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

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

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

.overview-layout,
.support-layout,
.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.overview-layout {
  grid-template-columns: 1fr;
}

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

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

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

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

.product-jump-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.info-card,
.spec-card,
.faq-item,
.cta-panel,
.summary-card,
.compare-card,
.overview-panel,
.overview-side,
.support-panel {
  padding: 30px;
  border-radius: 28px;
}

.spec-card,
.faq-item,
.overview-panel {
  padding: 24px;
  border-radius: 22px;
  border: 2px solid rgba(1, 100, 228, 0.1);
}

.spec-card {
  display: grid;
  align-content: start;
  gap: 10px;
  background: #f7fbff;
  box-shadow: none;
}

.faq-item,
.overview-panel {
  background: #ffffff;
  box-shadow: var(--shadow);
}

.faq-item {
  display: grid;
  align-content: start;
  gap: 10px;
}

.section-soft {
  background: transparent;
}

.section-heading {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto 20px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-family: "Inter-Bold", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading .eyebrow,
.section-heading .section-kicker {
  justify-self: center;
  margin-bottom: 0;
  background: rgba(1, 100, 228, 0.08);
  color: var(--primary);
}

.section-heading .section-kicker + h2 {
  margin-top: 14px;
}

.section-heading p {
  margin: 0;
}

.info-card .eyebrow,
.info-card .section-kicker,
.spec-card .eyebrow,
.spec-card .section-kicker,
.faq-item .eyebrow,
.faq-item .section-kicker,
.cta-panel .eyebrow,
.cta-panel .section-kicker {
  margin-bottom: 14px;
  background: rgba(1, 100, 228, 0.08);
  color: var(--primary);
}

.info-card h3,
.spec-card h3,
.faq-item h3,
.summary-card h3,
.compare-card h3,
.overview-panel h2,
.overview-side h3,
.support-panel h3,
.cta-panel h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Inter-Bold", Arial, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.info-card h3,
.summary-card h3,
.compare-card h3,
.overview-side h3,
.support-panel h3 {
  font-size: 22px;
}

.faq-item h3 {
  font-size: 20px;
  line-height: 1.12;
}

.overview-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.spec-card-head {
  margin-bottom: 0;
}

.spec-card-head h3 {
  margin: 0;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.cta-panel h2 {
  font-size: clamp(30px, 4vw, 40px);
}

.info-card p,
.spec-card p,
.faq-item p,
.summary-card p,
.compare-card p,
.overview-panel p,
.overview-side p,
.support-panel p,
.cta-panel p,
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.spec-card p {
  font-size: 14px;
  line-height: 1.68;
}

.module-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #edf4ff 0%, #dceaff 100%);
  border: 1px solid rgba(1, 100, 228, 0.14);
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(1, 100, 228, 0.08);
}

.module-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-icon-small {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.module-icon-small svg {
  width: 18px;
  height: 18px;
}

.summary-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.summary-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(1, 100, 228, 0.08);
  color: var(--primary);
  font-family: "Inter-Semi Bold", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-card h3 {
  margin-bottom: 2px;
}

.overview-panel {
  background: var(--primary);
  border-color: rgba(130, 180, 255, 0.26);
  display: grid;
  gap: 16px;
  align-content: start;
}

.overview-panel h2,
.overview-panel p {
  color: #ffffff;
}

.overview-panel .eyebrow,
.overview-side .eyebrow,
.support-panel .eyebrow {
  margin-bottom: 14px;
  background: rgba(1, 100, 228, 0.08);
  color: var(--primary);
}

.overview-panel p + p {
  margin-top: 0;
}

.overview-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.mini-stack {
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f9fbff 0%, #edf4ff 100%);
  border: 1px solid rgba(1, 100, 228, 0.1);
}

.mini-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mini-card strong {
  display: block;
  color: var(--text);
  font-family: "Inter-Bold", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.mini-card p {
  font-size: 14px;
  line-height: 1.65;
}

.mini-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.mini-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(1, 100, 228, 0.5);
}

.support-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.support-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-panel-head .section-kicker {
  margin-bottom: 0;
}

.support-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 0 0;
  border-top: 1px solid rgba(216, 227, 241, 0.95);
}

.support-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.support-list span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(1, 100, 228, 0.08);
  color: var(--primary);
  font-family: "Inter-Bold", Arial, sans-serif;
  font-size: 12px;
}

.support-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: "Inter-Bold", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.support-list p {
  font-size: 14px;
  line-height: 1.65;
}

.compare-card {
  display: grid;
  gap: 12px;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(1, 100, 228, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.96);
}

.compare-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: "Inter-Bold", Arial, sans-serif;
  font-size: 14px;
}

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

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(216, 227, 241, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.product-jump-link {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(216, 227, 241, 0.95);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}

.product-jump-link:hover {
  transform: translateY(-3px);
  border-color: rgba(1, 100, 228, 0.2);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
}

.product-jump-link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.product-jump-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
  object-fit: contain;
  display: block;
  border-radius: 0;
  border: 0;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease;
}

.product-jump-link:hover img {
  transform: scale(1.035);
}

.product-jump-link span {
  display: grid;
  gap: 6px;
  min-height: 0;
  padding: 12px 14px 14px;
  color: var(--text);
  font-family: "Inter-Semi Bold", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
}

.product-jump-link span::before {
  content: "View Product";
  order: -1;
  display: block;
  color: var(--muted);
  font-family: "Inter-Semi Bold", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.18s ease, transform 0.18s ease;
}

.product-jump-link:hover span {
  color: var(--primary);
}

.product-jump-link:hover span::before {
  color: var(--primary);
  transform: translateY(-1px);
}

.cta-panel {
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(1, 100, 228, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.96);
}

.cta-panel .eyebrow {
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel .btn {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .product-image-shell {
    order: -1;
    justify-self: stretch;
    border-radius: var(--hero-shell-radius) var(--hero-shell-radius) var(--hero-media-radius) var(--hero-media-radius);
    aspect-ratio: 1 / 1;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-copy {
    padding: 0 38px 38px;
  }

  .product-image-shell img {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .summary-grid,
  .two-column,
  .overview-layout,
  .feature-grid,
  .support-layout,
  .spec-grid,
  .faq-list,
  .compare-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-heading {
    text-align: center;
  }

  .section-heading .section-kicker {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .section-heading {
    margin-bottom: 16px;
  }

  .spec-card,
  .faq-item,
  .overview-panel {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 28px 0;
  }

  .page-hero {
    padding: 24px 0 18px;
  }

  .page-shell {
    --hero-shell-radius: 26px;
    --hero-media-radius: 24px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    padding: 0 22px 22px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 11vw, 56px);
    line-height: 0.96;
  }

  .lead {
    max-width: none;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    justify-content: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .meta-list li {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .product-image-shell {
    border-radius: 24px;
  }

  .spec-card,
  .faq-item,
  .overview-panel {
    border-radius: 22px;
  }

  .info-card,
  .cta-panel,
  .summary-card,
  .compare-card,
  .overview-side,
  .support-panel {
    border-radius: 24px;
  }

  .product-image-shell img {
    min-height: 0;
  }

}

