:root {
  color-scheme: light;
  --ink: #07142f;
  --muted: #5e6f8b;
  --line: #dce5f2;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --blue: #1558e8;
  --cyan: #08a7bd;
  --green: #0e9f6e;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.product-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(208, 220, 237, 0.82);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}
.product-nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.product-brand {
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 12px;
}
.product-brand img { width: 48px; height: 48px; object-fit: contain; }
.product-brand strong, .product-brand small { display: block; }
.product-brand strong { color: #0b3da8; font-size: 1.45rem; line-height: 1; }
.product-brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
.product-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #243553;
  font-size: 0.9rem;
  font-weight: 700;
}
.product-links a:hover, .product-links a:focus-visible { color: var(--blue); }
.nav-button, .button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.nav-button, .button-primary { color: #fff; background: var(--blue); }
.nav-button:hover, .button:hover { transform: translateY(-2px); }
.button-secondary { border-color: #b8c9e5; color: #123d91; background: #fff; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-size: 1.4rem;
}

.product-hero { overflow: hidden; border-bottom: 1px solid var(--line); background: #f8fbff; }
.hero-grid {
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.35fr);
  gap: 52px;
  padding-block: 64px 54px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid #d2e0f4;
  border-radius: 999px;
  padding: 7px 12px;
  color: #174dbb;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}
.hero-copy h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero-copy h1 span { color: var(--blue); }
.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #31435f;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}
.hero-points li::before { margin-right: 7px; color: var(--green); content: "✓"; }
.hero-visual { position: relative; min-width: 0; }
.product-frame {
  overflow: hidden;
  border: 1px solid #cbd9eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(15, 53, 111, 0.18);
}
.product-frame-bar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e2e9f3;
  padding-inline: 13px;
  background: #f4f7fb;
}
.product-frame-bar span { width: 8px; height: 8px; border-radius: 50%; background: #aab7c9; }
.product-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }
.floating-metric {
  position: absolute;
  min-width: 156px;
  border: 1px solid #d8e3f1;
  border-radius: 7px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(19, 55, 109, 0.16);
}
.floating-metric strong, .floating-metric small { display: block; }
.floating-metric small { color: var(--muted); }
.floating-metric-one { top: -24px; right: 24px; }
.floating-metric-two { right: -18px; bottom: -22px; }

.section { padding-block: 82px; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 730px; margin: 0 auto 42px; text-align: center; }
.section-heading span { color: var(--blue); font-size: 0.8rem; font-weight: 900; text-transform: uppercase; }
.section-heading h2 { margin: 8px 0 10px; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08; }
.section-heading p { margin: 0; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.feature-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 25px;
  background: var(--surface);
}
.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}
.feature-card:nth-child(2n) .feature-icon { background: var(--cyan); }
.feature-card:nth-child(3n) .feature-icon { background: var(--green); }
.feature-card h3 { margin: 18px 0 8px; font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.metrics-band { border-block: 1px solid var(--line); padding-block: 34px; background: #fff; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { border-right: 1px solid var(--line); text-align: center; }
.metric:last-child { border-right: 0; }
.metric strong, .metric span { display: block; }
.metric strong { color: var(--blue); font-size: 2rem; }
.metric span { color: var(--muted); font-size: 0.82rem; }

.workflow { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 54px; align-items: center; }
.workflow-copy h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; }
.workflow-copy p { color: var(--muted); }
.workflow-list { display: grid; gap: 12px; }
.workflow-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  background: #fff;
}
.workflow-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}
.workflow-item h3, .workflow-item p { margin: 0; }
.workflow-item p { margin-top: 4px; color: var(--muted); font-size: 0.9rem; }

.download-panel, .cta-panel {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 28px;
  border-radius: 8px;
  padding: 38px 42px;
  color: #fff;
  background: #0b3b94;
}
.download-panel h2, .cta-panel h2 { margin: 0 0 8px; font-size: clamp(1.75rem, 3vw, 2.55rem); }
.download-panel p, .cta-panel p { max-width: 720px; margin: 0; color: #d9e8ff; }
.download-panel .button, .cta-panel .button { color: #0b3b94; background: #fff; }
.download-note { margin-top: 12px !important; color: #9fb7d8 !important; font-size: 0.78rem; }

.product-footer { padding-block: 46px 28px; color: #dce9fb; background: #061a3a; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
.footer-column h3 { margin: 0 0 13px; color: #fff; font-size: 0.95rem; }
.footer-column a, .footer-column p { display: block; margin: 0 0 8px; color: #a9bdd8; font-size: 0.84rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  border-top: 1px solid rgba(180, 204, 237, 0.2);
  padding-top: 22px;
  color: #8fa6c4;
  font-size: 0.78rem;
}

.product-dark {
  --ink: #ffffff;
  --muted: #b8c9df;
  --line: rgba(255, 255, 255, 0.14);
  --surface: rgba(255, 255, 255, 0.06);
  --soft: #071326;
  color: #fff;
  background: #050d1a;
}

.product-dark .product-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 13, 26, 0.92);
}

.product-dark .product-links,
.product-dark .product-brand small,
.product-dark .hero-copy > p:not(.eyebrow),
.product-dark .section-heading p,
.product-dark .feature-card p,
.product-dark .workflow-copy p,
.product-dark .metric span {
  color: #b8c9df;
}

.product-dark .product-brand strong,
.product-dark .product-links a:hover,
.product-dark .section-heading h2,
.product-dark .feature-card h3,
.product-dark .workflow-copy h2 {
  color: #fff;
}

.product-dark .product-hero {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 162, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #030816 0%, #071326 54%, #061f3b 100%);
}

.product-dark .eyebrow,
.product-dark .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: #dff6ff;
  background: rgba(255, 255, 255, 0.07);
}

.product-dark .section-soft,
.product-dark .metrics-band {
  background: #071326;
}

.product-dark .feature-card,
.product-dark .product-frame,
.product-dark .floating-metric,
.product-dark .workflow-item {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.product-dark .product-frame-bar {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.product-showcase-logo {
  display: grid;
  min-height: 420px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 120, 231, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 58px rgba(15, 53, 111, 0.18);
}

.product-showcase-logo img {
  width: min(82%, 620px);
  max-height: 360px;
  object-fit: contain;
}

.coming-soon-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  border: 1px solid rgba(8, 167, 189, 0.35);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--cyan);
  background: rgba(8, 167, 189, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button-disabled {
  pointer-events: none;
  border-color: #cdd8e8;
  color: #5e6f8b;
  background: #edf3fb;
}

.product-dark .button-disabled {
  border-color: rgba(255, 255, 255, 0.18);
  color: #9fb4ce;
  background: rgba(255, 255, 255, 0.08);
}

.product-contact-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 28px;
  background: var(--surface);
}

.product-contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.product-contact-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .product-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    padding: 18px 20px 24px;
    background: #fff;
    flex-direction: column;
  }
  .product-links.is-open { display: flex; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .product-nav { min-height: 68px; }
  .product-brand img { width: 42px; height: 42px; }
  .product-links { inset-block-start: 68px; }
  .hero-grid { gap: 36px; padding-block: 46px; }
  .hero-copy h1 { font-size: 2.55rem; }
  .floating-metric { display: none; }
  .feature-grid, .metrics-grid, .footer-grid { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); padding-block: 18px; }
  .metric:last-child { border-bottom: 0; }
  .section { padding-block: 62px; }
  .download-panel, .cta-panel { grid-template-columns: 1fr; padding: 30px 24px; }
  .download-panel .button, .cta-panel .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
