:root {
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-dark: rgba(255,255,255,.12);
  --paper: #ffffff;
  --surface: #f5f7fb;
  --surface-blue: #eef5ff;
  --navy: #0b1424;
  --navy-2: #121f34;
  --blue: #1769e0;
  --blue-dark: #0f57be;
  --cyan: #08a8c6;
  --green: #148866;
  --shadow: 0 24px 70px rgba(15, 23, 42, .12);
  --radius: 22px;
  --shell: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: #cfe1ff; color: #0b1424; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; transform: translateY(-160%); background: var(--navy); color: white; padding: 10px 14px; border-radius: 10px; text-decoration: none; }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-mark { width: 42px; height: 48px; display: grid; place-items: center; }
.brand-mark img { width: 31px; height: auto; }
.brand-copy { display: grid; line-height: 1.06; }
.brand-copy strong { font-size: .96rem; letter-spacing: .055em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .69rem; letter-spacing: .09em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { text-decoration: none; font-size: .9rem; color: var(--ink-soft); font-weight: 600; padding: 10px 12px; border-radius: 10px; transition: color .2s ease, background .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue); background: var(--surface-blue); outline: none; }
.site-nav .nav-app { color: white; background: var(--navy); padding-inline: 16px; margin-left: 8px; }
.site-nav .nav-app:hover, .site-nav .nav-app:focus-visible { color: white; background: var(--blue); }


/* PRODUCTS DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.6;
  transition: color .2s ease, background .2s ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--blue);
  background: var(--surface-blue);
  outline: none;
}
.nav-chevron { display: inline-block; font-size: .88rem; line-height: 1; transition: transform .2s ease; }
.nav-dropdown.is-open .nav-chevron,
.nav-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 140;
  width: 340px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 9px;
  color: #46566b;
  font-size: .82rem;
  line-height: 1.35;
}
.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a:focus-visible { color: var(--blue); background: var(--surface-blue); }
.site-nav .nav-dropdown-menu .nav-dropdown-all {
  margin-bottom: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  border-radius: 9px 9px 4px 4px;
  color: var(--ink);
  font-weight: 800;
}
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 11px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span:not(.sr-only) { width: 19px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero { min-height: 720px; display: grid; align-items: center; position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(23,105,224,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(23,105,224,.045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%); pointer-events: none; }
.hero-orb { position: absolute; border-radius: 999px; filter: blur(5px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; right: -120px; top: 30px; background: radial-gradient(circle, rgba(23,105,224,.13), rgba(23,105,224,0) 68%); }
.hero-orb-two { width: 320px; height: 320px; left: 32%; bottom: -150px; background: radial-gradient(circle, rgba(8,168,198,.10), rgba(8,168,198,0) 70%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 800; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 99px; }
.hero h1, h2 { margin: 0; letter-spacing: -.045em; line-height: 1.02; }
.hero h1 { margin-top: 18px; font-size: clamp(3.25rem, 5.6vw, 5.7rem); max-width: 790px; }
.hero h1 span { display: block; color: var(--blue); }
.hero-lead { max-width: 660px; margin: 26px 0 0; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 12px; border: 1px solid transparent; text-decoration: none; font-weight: 800; font-size: .92rem; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(23,105,224,.22); }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue-dark); box-shadow: 0 15px 34px rgba(23,105,224,.3); }
.button-secondary { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.82); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: #b8c6d9; background: white; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.hero-points span::before { content: "✓"; margin-right: 7px; color: var(--green); }
.hero-visual { position: relative; min-width: 0; }
.visual-frame { overflow: hidden; border-radius: 28px; border: 1px solid #dce5f0; background: white; box-shadow: var(--shadow); transform: rotate(1deg); }
.visual-frame img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; }
.float-card { position: absolute; background: rgba(255,255,255,.94); border: 1px solid rgba(226,232,240,.9); box-shadow: 0 18px 50px rgba(15,23,42,.16); backdrop-filter: blur(14px); border-radius: 16px; }
.float-card-top { left: -34px; top: 42px; display: flex; align-items: center; gap: 12px; padding: 14px 17px; }
.float-card-top div, .mini-metric { display: grid; gap: 2px; }
.float-card small { color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.float-card strong { font-size: .82rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #20b37a; box-shadow: 0 0 0 5px rgba(32,179,122,.12); }
.float-card-bottom { right: -20px; bottom: -30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 16px 18px; }
.mini-metric + .mini-metric { border-left: 1px solid var(--line); padding-left: 20px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.trust-row { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; overflow: auto; scrollbar-width: none; }
.trust-row::-webkit-scrollbar { display: none; }
.trust-row span { white-space: nowrap; color: var(--muted); font-size: .77rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.trust-row span::before { content: "◆"; color: var(--blue); font-size: .55rem; margin-right: 10px; }

.solutions { background: var(--surface); }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; margin-bottom: 46px; }
.section-head h2 { margin-top: 15px; font-size: clamp(2.5rem, 4.4vw, 4.1rem); max-width: 780px; }
.section-head > p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.8; }
.solution-feature { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--navy); color: white; border-radius: 28px; overflow: hidden; box-shadow: 0 28px 70px rgba(15,23,42,.14); }
.feature-copy { padding: 52px 50px; }
.product-code { display: inline-block; color: #6d9fe9; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 900; }
.feature-copy h3 { margin: 16px 0 15px; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.05; letter-spacing: -.03em; }
.feature-copy > p { color: #b8c5d8; margin: 0; line-height: 1.8; }
.check-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 10px; color: #dce6f3; font-size: .9rem; }
.check-list li::before { content: "✓"; color: #62d8bd; margin-right: 10px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 850; text-decoration: none; font-size: .9rem; }
.feature-copy .text-link { color: #84b7ff; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.feature-media { min-height: 430px; position: relative; overflow: hidden; }
.feature-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,20,36,.65), transparent 38%); pointer-events: none; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.product-card { min-height: 360px; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-card:hover { transform: translateY(-4px); border-color: #c7d6eb; box-shadow: 0 20px 45px rgba(15,23,42,.08); }
.product-topline { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.pill { display: inline-flex; align-items: center; min-height: 27px; padding: 0 9px; border-radius: 999px; background: #edf3fb; color: #46617f; font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.pill-live { background: #e8f7f1; color: #137355; }
.pill-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #22a77b; margin-right: 6px; }
.product-icon { width: 48px; height: 48px; margin-top: 30px; border-radius: 14px; display: grid; place-items: center; color: var(--blue); background: var(--surface-blue); }
.product-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.product-card h3 { margin: 20px 0 10px; font-size: 1.35rem; line-height: 1.22; letter-spacing: -.02em; }
.product-card p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.75; }
.tag-row { display: flex; gap: 7px; flex-wrap: wrap; margin: 20px 0 24px; }
.tag-row span { padding: 6px 9px; background: #f7f9fc; border: 1px solid #edf1f6; border-radius: 8px; color: #64748b; font-size: .7rem; font-weight: 800; }
.product-card .text-link { margin-top: auto; }

.architecture { background: var(--navy); color: white; }
.section-head.light .eyebrow { color: #82b6ff; }
.section-head.light h2 { color: white; }
.section-head.light > p { color: #aebdd1; }
.flow-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; gap: 12px; }
.flow-step { min-height: 190px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.035); border-radius: 18px; padding: 22px; }
.flow-step > span { color: #72aafa; font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.flow-step strong { display: block; margin-top: 20px; font-size: 1rem; }
.flow-step p { color: #9fadc1; font-size: .8rem; line-height: 1.65; margin: 8px 0 0; }
.flow-arrow { display: grid; place-items: center; color: #5b7599; font-size: 1.25rem; }

.services { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--line); gap: 1px; }
.service-card { min-height: 245px; background: white; padding: 30px; }
.service-card > span { color: var(--blue); font-weight: 900; font-size: .72rem; letter-spacing: .12em; }
.service-card h3 { margin: 46px 0 10px; font-size: 1.12rem; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }

.image-band { padding: 0 0 104px; background: white; }
.image-band-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr; gap: 14px; }
.image-card { height: 310px; border-radius: 18px; overflow: hidden; position: relative; background: var(--surface); }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,16,31,.68), transparent 55%); }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.image-card:hover img { transform: scale(1.025); }
.image-card span { position: absolute; z-index: 1; left: 20px; bottom: 16px; color: white; font-size: .82rem; font-weight: 850; }

.industries { background: var(--surface-blue); }
.industries-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.industries-copy h2 { margin-top: 16px; font-size: clamp(2.5rem, 4vw, 4rem); }
.industries-copy p { color: var(--ink-soft); line-height: 1.8; max-width: 520px; margin: 24px 0 30px; }
.industry-list { border-top: 1px solid #cfddef; }
.industry-list div { display: grid; grid-template-columns: 55px 1fr; align-items: center; min-height: 73px; border-bottom: 1px solid #cfddef; }
.industry-list span { color: var(--blue); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.industry-list strong { font-size: .98rem; }

.about { background: white; }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 1 / .88; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.about-badge { position: absolute; right: -18px; bottom: 24px; background: var(--navy); color: white; padding: 18px 20px; border-radius: 16px; box-shadow: 0 20px 50px rgba(15,23,42,.22); display: grid; }
.about-badge strong { font-size: 1.05rem; }
.about-badge span { color: #9eafc6; font-size: .75rem; margin-top: 2px; }
.about-copy h2 { margin-top: 16px; font-size: clamp(2.45rem, 4vw, 3.8rem); }
.about-copy > p { color: var(--muted); line-height: 1.84; margin: 22px 0 0; }
.about-meta { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.about-meta div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.about-meta small { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .67rem; font-weight: 800; }
.about-meta strong { font-size: .82rem; }

.contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.contact-copy h2 { margin-top: 16px; font-size: clamp(2.5rem, 4vw, 4rem); }
.contact-copy > p { color: var(--muted); line-height: 1.8; margin: 23px 0 30px; }
.contact-details { display: grid; border-top: 1px solid var(--line); }
.contact-details a, .contact-details div { display: grid; gap: 5px; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-details span { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.contact-details strong { font-size: .87rem; word-break: break-word; }
.contact-details a:hover strong { color: var(--blue); }
.contact-form { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 32px; box-shadow: 0 20px 60px rgba(15,23,42,.07); display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { color: #475569; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .075em; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #d9e1ec; background: #fbfcfe; border-radius: 11px; color: var(--ink); padding: 12px 13px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form textarea { resize: vertical; min-height: 145px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #8bb7f5; box-shadow: 0 0 0 4px rgba(23,105,224,.09); background: white; }
.contact-form .submit-button { width: 100%; border: 0; margin-top: 2px; }
.form-status { min-height: 22px; margin: 0; text-align: center; color: var(--muted); font-size: .82rem; }
.form-status.success { color: var(--green); }
.form-status.error { color: #b42318; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { background: #08111f; color: white; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 40px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { filter: invert(1) brightness(2); width: 24px; height: auto; }
.footer-brand div { display: grid; }
.footer-brand strong { font-size: .86rem; letter-spacing: .02em; }
.footer-brand span { color: #8292a8; font-size: .72rem; margin-top: 3px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-links a { color: #aeb9c8; font-size: .76rem; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-copy { color: #728299; font-size: .69rem; text-align: right; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(3rem, 5vw, 4.7rem); }
  .float-card-top { left: -12px; }
  .float-card-bottom { right: -8px; }
  .flow-grid { grid-template-columns: repeat(5,1fr); gap: 10px; }
  .flow-arrow { display: none; }
  .flow-step { min-height: 210px; }
  .about-grid, .contact-grid { gap: 50px; }
}

@media (max-width: 900px) {
  .section-pad { padding: 82px 0; }
  .site-header { position: sticky; }
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: 69px; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 16px; padding: 10px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .site-nav .nav-app { margin: 4px 0 0; text-align: center; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 12px; }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    margin: 2px 0 7px;
    padding: 6px;
    border: 0;
    border-radius: 11px;
    background: var(--surface);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: grid; }
  .site-nav .nav-dropdown-menu a { padding: 10px; font-size: .8rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid, .solution-feature, .about-grid, .contact-grid, .industries-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 62px; }
  .hero h1 { max-width: 720px; }
  .hero-visual { max-width: 720px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head > p { max-width: 680px; }
  .feature-media { min-height: 320px; order: -1; }
  .feature-media::after { background: linear-gradient(to bottom, transparent 50%, rgba(11,20,36,.65)); }
  .flow-grid { grid-template-columns: repeat(2,1fr); }
  .flow-step { min-height: 170px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .image-band-grid { grid-template-columns: 1fr 1fr; }
  .image-card:first-child { grid-column: span 2; }
  .industries-grid { gap: 50px; }
  .about-media { max-width: 720px; }
  .about-badge { right: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-copy { text-align: left; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section-pad { padding: 68px 0; }
  .nav-wrap { min-height: 70px; }
  .brand-copy small { display: none; }
  .site-nav { left: 14px; right: 14px; top: 62px; }
  .hero { padding-top: 72px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 9px 14px; }
  .visual-frame { border-radius: 20px; }
  .float-card { position: static; margin-top: 10px; box-shadow: 0 12px 30px rgba(15,23,42,.10); }
  .float-card-top { width: fit-content; }
  .float-card-bottom { width: 100%; }
  .trust-row { gap: 18px; }
  .section-head h2, .about-copy h2, .contact-copy h2, .industries-copy h2 { font-size: clamp(2.2rem, 10vw, 3.3rem); }
  .feature-copy { padding: 34px 26px 38px; }
  .feature-media { min-height: 235px; }
  .product-grid, .flow-grid, .service-grid, .image-band-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; padding: 25px; }
  .image-card, .image-card:first-child { grid-column: auto; height: 260px; }
  .flow-step { min-height: auto; }
  .service-grid { border-radius: 18px; }
  .service-card { min-height: auto; padding: 25px; }
  .service-card h3 { margin-top: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 23px; border-radius: 18px; }
  .about-meta div { grid-template-columns: 1fr; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* PRODUCT DETAIL PAGES */
.product-page .site-header { background: rgba(255,255,255,.94); }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; color: #8fa0b8; font-size: .72rem; font-weight: 750; letter-spacing: .03em; }
.breadcrumb a { color: #a9bad0; text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb > span:last-child { color: #d8e3f1; }
.product-hero { position: relative; overflow: hidden; padding: 34px 0 96px; color: white; background: radial-gradient(circle at 82% 16%, rgba(23,105,224,.20), transparent 29%), linear-gradient(135deg, #08111f, #101d31 70%, #0b1424); }
.product-hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to bottom,rgba(0,0,0,.8),transparent 88%); pointer-events:none; }
.product-hero .shell { position: relative; z-index: 1; }
.product-hero-orb { position:absolute; width:480px; height:480px; border-radius:50%; right:-220px; bottom:-260px; background:radial-gradient(circle,rgba(8,168,198,.13),transparent 70%); }
.product-hero-grid { display:grid; grid-template-columns: .94fr 1.06fr; gap:72px; align-items:center; margin-top:64px; }
.product-meta { display:flex; align-items:center; flex-wrap:wrap; gap:12px; }
.product-meta .product-code { color:#7fb2fb; }
.product-meta .pill { background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.12); color:#c1cee0; }
.product-meta .pill-live { background:rgba(32,179,122,.12); border-color:rgba(98,216,189,.23); color:#7ee0c2; }
.product-meta .pill-live::before { background:#62d8bd; }
.product-hero h1 { margin:22px 0 0; max-width:760px; font-size:clamp(3rem,5.2vw,5.25rem); letter-spacing:-.055em; line-height:.98; }
.product-kicker { margin:23px 0 0; color:#91bcf8; font-size:1.13rem; font-weight:800; line-height:1.5; }
.product-lead { max-width:700px; margin:16px 0 0; color:#b5c3d6; font-size:1rem; line-height:1.82; }
.button-on-dark { color:white; border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.06); }
.button-on-dark:hover { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.30); }
.product-tag-cloud { display:flex; gap:8px; flex-wrap:wrap; margin-top:27px; }
.product-tag-cloud span { padding:7px 10px; border:1px solid rgba(255,255,255,.1); border-radius:9px; background:rgba(255,255,255,.04); color:#93a8c3; font-size:.7rem; font-weight:800; }
.product-hero-media { position:relative; min-width:0; }
.product-screen { border:1px solid rgba(255,255,255,.11); padding:8px; border-radius:24px; background:rgba(255,255,255,.055); box-shadow:0 35px 90px rgba(0,0,0,.35); transform:perspective(1000px) rotateY(-2.5deg) rotateX(1deg); }
.product-screen img { width:100%; aspect-ratio:1672/941; object-fit:cover; border-radius:17px; }
.product-screen-note { position:absolute; left:-28px; bottom:-30px; min-width:260px; display:grid; gap:3px; padding:15px 17px; border-radius:15px; border:1px solid rgba(255,255,255,.11); background:rgba(11,20,36,.91); box-shadow:0 18px 50px rgba(0,0,0,.28); backdrop-filter:blur(14px); }
.product-screen-note small { color:#7185a1; font-size:.64rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.product-screen-note strong { color:#dbe6f4; font-size:.79rem; }
.product-proof { background:white; }
.problem-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.problem-card { padding:30px; border:1px solid var(--line); border-radius:20px; background:#fff; }
.problem-card > span { color:var(--blue); font-size:.68rem; font-weight:900; letter-spacing:.12em; }
.problem-card h3 { margin:35px 0 10px; font-size:1.16rem; letter-spacing:-.025em; }
.problem-card p { margin:0; color:var(--muted); font-size:.86rem; line-height:1.75; }
.product-capabilities { background:var(--surface); }
.detail-card-grid { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:23px; overflow:hidden; background:var(--line); gap:1px; }
.detail-card { min-height:286px; padding:27px; background:#fff; }
.detail-card > span { color:var(--blue); font-size:.68rem; font-weight:900; letter-spacing:.12em; }
.detail-card h3 { margin:52px 0 9px; font-size:1.02rem; letter-spacing:-.02em; }
.detail-card p { margin:0; color:var(--muted); font-size:.79rem; line-height:1.72; }
.product-process {
  color: var(--ink);
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  border-top: 1px solid #dde7f2;
  border-bottom: 1px solid #dde7f2;
}
.product-process .section-head.light .eyebrow { color: var(--blue); }
.product-process .section-head.light h2 { color: var(--ink); }
.product-process .section-head.light > p { color: var(--muted); }
.product-flow { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.product-flow-step {
  position: relative;
  min-height: 220px;
  padding: 25px;
  border: 1px solid #d9e4f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.055);
}
.product-flow-step > span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: #eaf3ff;
  color: var(--blue);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.product-flow-step strong { display:block; margin-top:28px; color:var(--ink); font-size:1.02rem; }
.product-flow-step p { margin:9px 0 0; color:var(--muted); font-size:.8rem; line-height:1.7; }
@media (min-width: 901px) {
  .product-flow-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -13px;
    top: 50%;
    z-index: 3;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 1px solid #d4e1ef;
    border-radius: 50%;
    background: #f7faff;
    color: var(--blue);
    font-size: .83rem;
    font-weight: 900;
    transform: translateY(-50%);
  }
}
.product-detail { background:#fff; }
.product-detail-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:76px; align-items:start; }
.product-detail-main h2 { margin:15px 0 0; max-width:760px; font-size:clamp(2.5rem,4vw,3.8rem); }
.product-detail-main > p { max-width:730px; margin:23px 0 0; color:var(--muted); line-height:1.85; }
.stack-list { margin-top:32px; border-top:1px solid var(--line); }
.stack-list > div { display:grid; grid-template-columns:54px 190px 1fr; gap:16px; align-items:start; padding:18px 0; border-bottom:1px solid var(--line); }
.stack-list span { color:var(--blue); font-size:.68rem; font-weight:900; letter-spacing:.1em; padding-top:3px; }
.stack-list strong { font-size:.89rem; }
.stack-list p { margin:0; color:var(--muted); font-size:.82rem; line-height:1.65; }
.product-side { display:grid; gap:14px; }
.side-card { padding:25px; border:1px solid var(--line); border-radius:19px; background:var(--surface); }
.side-label { display:block; margin-bottom:17px; color:#475569; font-size:.67rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }
.side-chips { display:flex; flex-wrap:wrap; gap:7px; }
.side-chips span { padding:7px 9px; border:1px solid #dce5ef; border-radius:8px; background:#fff; color:#52657b; font-size:.69rem; font-weight:800; }
.side-list { display:grid; grid-template-columns:1fr 1fr; gap:0 18px; }
.side-list span { padding:9px 0; border-bottom:1px solid #e1e7ef; color:#536478; font-size:.77rem; font-weight:700; }
.product-outcomes { padding:72px 0; background:var(--surface-blue); }
.product-outcome-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.product-outcome-grid h2 { margin:15px 0 0; max-width:700px; font-size:clamp(2.3rem,3.7vw,3.5rem); }
.outcome-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.outcome-list div { min-height:82px; display:flex; align-items:center; gap:12px; padding:17px; background:white; border:1px solid #d8e4f3; border-radius:15px; }
.outcome-list span { width:28px; height:28px; display:grid; place-items:center; flex:0 0 28px; border-radius:50%; background:#e7f7f1; color:var(--green); font-size:.78rem; font-weight:900; }
.outcome-list strong { font-size:.82rem; }
.product-cta { background:white; }
.cta-panel { display:grid; grid-template-columns:1fr auto; gap:55px; align-items:center; padding:52px; border-radius:26px; color:white; background:radial-gradient(circle at 92% 10%,rgba(23,105,224,.32),transparent 35%),linear-gradient(135deg,#091424,#13233b); box-shadow:0 28px 70px rgba(15,23,42,.13); }
.cta-panel .eyebrow { color:#82b6ff; margin-bottom:4px; }
.cta-panel h2 { margin:26px 0 0; max-width:760px; font-size:clamp(2.25rem,3.6vw,3.6rem); }
.cta-panel p { max-width:760px; margin:18px 0 0; color:#aebdd1; line-height:1.78; }
.cta-actions { min-width:205px; display:grid; gap:12px; justify-items:start; }
.cta-actions .text-link { color:#86b9ff; }
.product-icon-text { font-size:.69rem; font-weight:950; letter-spacing:.05em; }
.hub-hero { padding:34px 0 88px; color:white; background:linear-gradient(135deg,#08111f,#101d31); }
.hub-hero-grid { display:grid; grid-template-columns:1fr .95fr; gap:75px; align-items:center; margin-top:58px; }
.hub-hero h1 { margin:18px 0 0; max-width:780px; font-size:clamp(3.2rem,5.6vw,5.5rem); line-height:.98; letter-spacing:-.055em; }
.hub-hero p { max-width:690px; margin:24px 0 0; color:#b5c3d6; font-size:1.03rem; line-height:1.82; }
.hub-visual { overflow:hidden; padding:7px; border:1px solid rgba(255,255,255,.1); border-radius:24px; background:rgba(255,255,255,.05); box-shadow:0 35px 85px rgba(0,0,0,.32); }
.hub-visual img { width:100%; aspect-ratio:1.55/1; object-fit:cover; border-radius:17px; }
.products-hub .product-card { min-height:385px; }

@media (max-width: 1080px) {
  .product-hero-grid { gap:42px; }
  .detail-card-grid { grid-template-columns:repeat(2,1fr); }
  .product-detail-grid { gap:48px; }
  .hub-hero-grid { gap:44px; }
}
@media (max-width: 900px) {
  .product-hero-grid, .product-detail-grid, .product-outcome-grid, .hub-hero-grid { grid-template-columns:1fr; }
  .product-hero-grid { margin-top:46px; gap:60px; }
  .product-hero-media { max-width:760px; }
  .product-screen-note { left:18px; }
  .problem-grid { grid-template-columns:1fr; }
  .product-flow { grid-template-columns:repeat(2,1fr); }
  .stack-list > div { grid-template-columns:48px 165px 1fr; }
  .cta-panel { grid-template-columns:1fr; gap:28px; }
  .cta-actions { min-width:0; }
  .hub-visual { max-width:760px; }
}
@media (max-width: 640px) {
  .product-hero { padding-bottom:72px; }
  .product-hero-grid { margin-top:38px; gap:44px; }
  .product-hero h1, .hub-hero h1 { font-size:clamp(2.65rem,12vw,4rem); }
  .product-screen { border-radius:19px; padding:6px; transform:none; }
  .product-screen img { border-radius:13px; }
  .product-screen-note { position:static; min-width:0; margin-top:10px; }
  .detail-card-grid, .product-flow, .outcome-list { grid-template-columns:1fr; }
  .detail-card { min-height:auto; }
  .detail-card h3 { margin-top:32px; }
  .product-flow-step { min-height:auto; }
  .stack-list > div { grid-template-columns:40px 1fr; gap:8px 10px; }
  .stack-list p { grid-column:2; }
  .side-list { grid-template-columns:1fr; }
  .cta-panel { padding:34px 25px; border-radius:21px; }
  .cta-actions .button { width:100%; }
  .hub-hero { padding-bottom:68px; }
}
