:root {
  --lo-blue: #00adef;
  --lo-blue-dark: #007fb3;
  --lo-violet: #7202bb;
  --lo-violet-dark: #4c007e;
  --ink: #152033;
  --muted: #5d687b;
  --line: #dce3ed;
  --soft: #f4f8fc;
  --white: #fff;
  --success: #0b8b68;
  --warning: #b45d08;
  --shadow: 0 20px 55px rgba(20, 32, 51, .12);
  --radius: 22px;
  --content: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--lo-violet); }
a:hover { color: var(--lo-blue-dark); }
button, input, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(0, 173, 239, .45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 237, .78);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.23rem;
  font-weight: 820;
  letter-spacing: -.03em;
}

.brand-logo { flex: 0 0 auto; line-height: 0; }
.brand-logo img { display: block; width: clamp(168px, 17vw, 205px); height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 12px;
  color: #354158;
  border-radius: 9px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 680;
}

.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--lo-violet); background: #f5effa; }
.site-nav .nav-cta { margin-left: 6px; color: var(--white); background: var(--lo-violet); }
.site-nav .nav-cta:hover { color: var(--white); background: var(--lo-violet-dark); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span { display: block; width: 23px; height: 2px; margin: 5px 0; background: var(--ink); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: #68758a;
  font-size: .87rem;
}

.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 7px; color: #a6afbc; }
.breadcrumb a { color: inherit; text-decoration: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 112px) 0 clamp(72px, 9vw, 124px);
  background:
    radial-gradient(circle at 11% 8%, rgba(0, 173, 239, .17), transparent 31%),
    radial-gradient(circle at 87% 66%, rgba(114, 2, 187, .14), transparent 35%),
    linear-gradient(145deg, #f8fbff 0%, #fff 58%, #f8f4fc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  top: -260px;
  border: 1px solid rgba(114, 2, 187, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(0, 173, 239, .035), 0 0 0 160px rgba(114, 2, 187, .025);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
}

.hero-copy { max-width: 690px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--lo-violet);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 27px; height: 3px; border-radius: 3px; background: var(--lo-blue); }
h1, h2, h3 { margin-top: 0; color: var(--ink); line-height: 1.12; letter-spacing: -.035em; }
h1 { margin-bottom: 23px; font-size: clamp(2.55rem, 5.2vw, 5rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.7vw, 3.3rem); }
h3 { margin-bottom: 10px; font-size: 1.3rem; }
.lead { margin: 0; color: #4d596c; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.65; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(115deg, var(--lo-blue), var(--lo-violet));
  box-shadow: 0 12px 26px rgba(114, 2, 187, .18);
  text-decoration: none;
  font-weight: 760;
  line-height: 1.2;
}

.button:hover { color: var(--white); transform: translateY(-1px); box-shadow: 0 16px 30px rgba(114, 2, 187, .24); }
.button.secondary { color: var(--ink); border-color: var(--line); background: var(--white); box-shadow: none; }
.button.secondary:hover { color: var(--lo-violet); border-color: #c6aed8; }
.button-arrow::after { content: "→"; font-size: 1.15em; }

.hero-visual {
  position: relative;
  min-height: 480px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-image {
  width: 100%;
  height: 480px;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 24, 39, .68));
}

.status-card {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 30px;
  width: min(310px, calc(100% - 32px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 17px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 38px rgba(16, 24, 39, .19);
  backdrop-filter: blur(12px);
}

.status-label { margin: 0 0 4px; color: var(--muted); font-size: .76rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.status-value { display: flex; align-items: center; gap: 9px; margin: 0; font-weight: 800; }
.status-value::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(11, 139, 104, .12); }
.status-meta { margin: 10px 0 0; color: var(--muted); font-size: .86rem; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #445168;
  font-size: .9rem;
  font-weight: 670;
}

.hero-proof li::before { content: "✓"; margin-right: 7px; color: var(--success); font-weight: 900; }

.section { padding: clamp(72px, 9vw, 118px) 0; }
.section.soft { background: var(--soft); }
.section.dark { color: #e9edf7; background: #121a2b; }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark .eyebrow { color: #aa86c5; }
.section.dark .lead, .section.dark .section-intro { color: #b8c2d3; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-intro { margin: 0; color: var(--muted); font-size: 1.08rem; }

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

.benefit-card, .feature-card, .solution-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-card::before, .solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lo-blue), var(--lo-violet));
}

.benefit-card p, .feature-card p, .solution-card p { margin: 0; color: var(--muted); }
.card-kicker { margin-bottom: 13px; color: var(--lo-violet); font-size: .76rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-weight: 770; text-decoration: none; }
.card-link::after { content: "→"; }

.solution-card { display: flex; min-height: 305px; flex-direction: column; }
.solution-card .card-link { margin-top: auto; padding-top: 22px; }
.solution-card.featured { color: var(--white); border: 0; background: linear-gradient(145deg, var(--lo-blue-dark), var(--lo-violet)); }
.solution-card.featured h3, .solution-card.featured p, .solution-card.featured .card-link, .solution-card.featured .card-kicker { color: var(--white); }
.solution-card.featured::before { display: none; }

.icon-tile {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--lo-violet);
  background: linear-gradient(135deg, rgba(0, 173, 239, .13), rgba(114, 2, 187, .11));
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 88px);
}

.split-media { position: relative; }
.split-media img { width: 100%; min-height: 430px; border-radius: 25px; object-fit: cover; box-shadow: var(--shadow); }
.check-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--success);
  font-size: .72rem;
  font-weight: 900;
}

.note {
  margin-top: 25px;
  padding: 16px 18px;
  border-left: 4px solid var(--lo-blue);
  border-radius: 0 12px 12px 0;
  color: #4f5b6f;
  background: #eef8fd;
  font-size: .91rem;
}

.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 23px; }
.feature-card .icon-tile { margin: 0; }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.process-step { counter-increment: steps; padding: 25px; border-top: 1px solid #ccd5e1; }
.process-step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 20px;
  color: var(--lo-blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.process-step p { margin: 0; color: var(--muted); }

.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  margin-top: 36px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.flow-item { position: relative; padding: 21px 15px; text-align: center; }
.flow-item:not(:last-child)::after { content: "→"; position: absolute; top: 50%; right: -8px; color: var(--lo-blue); transform: translateY(-50%); font-weight: 850; }
.flow-item strong { display: block; font-size: .91rem; }
.flow-item small { color: var(--muted); }

.data-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.data-table { width: 100%; min-width: 740px; border-collapse: collapse; }
.data-table th, .data-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { color: #536075; background: #f7f9fc; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table td:first-child { color: var(--ink); font-weight: 750; }

.faq-list { max-width: 900px; margin: 36px auto 0; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 21px 48px 21px 0; cursor: pointer; list-style: none; font-weight: 760; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 16px; right: 4px; color: var(--lo-violet); font-size: 1.6rem; font-weight: 350; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; margin: -4px 0 22px; color: var(--muted); }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 7vw, 78px);
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(120deg, #007fac 0%, var(--lo-blue) 30%, var(--lo-violet) 100%);
  box-shadow: var(--shadow);
}

.cta-band::after { content: ""; position: absolute; width: 310px; height: 310px; right: -100px; bottom: -230px; border: 45px solid rgba(255, 255, 255, .11); border-radius: 50%; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 760px; color: var(--white); }
.cta-band p { max-width: 700px; margin: 0; color: rgba(255, 255, 255, .87); font-size: 1.08rem; }
.cta-band .button { color: var(--lo-violet); background: var(--white); box-shadow: none; }
.cta-band .button.secondary { color: var(--white); border-color: rgba(255, 255, 255, .5); background: transparent; }

.site-footer { padding: 52px 0 25px; color: #bdc6d4; background: #101827; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 40px; }
.site-footer .brand { color: var(--white); }
.site-footer p { max-width: 480px; margin: 18px 0 0; }
.footer-title { margin: 0 0 14px; color: var(--white); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #cad2df; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 38px; padding-top: 22px; border-top: 1px solid #283245; color: #8f9caf; font-size: .84rem; }
.footer-bottom p { margin: 0; }

.compact-hero { padding-top: 68px; }
.compact-hero h1 { font-size: clamp(2.5rem, 4.6vw, 4.4rem); }
.hub-intro { max-width: 820px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 6px 11px; border: 1px solid #cdd9e5; border-radius: 999px; color: #526076; background: rgba(255, 255, 255, .72); font-size: .82rem; font-weight: 690; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 420px; }
  .hero-image { height: 420px; }
  .status-card { right: 20px; }
  .benefit-grid, .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow { grid-template-columns: 1fr; }
  .flow-item { text-align: left; }
  .flow-item:not(:last-child)::after { top: auto; right: 17px; bottom: -12px; transform: rotate(90deg); }
}

@media (max-width: 820px) {
  .js .nav-toggle { display: block; }
  .site-nav { flex-wrap: wrap; }
  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    display: none;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 28px rgba(20, 32, 51, .11);
  }
  .js .site-nav.is-open { display: grid; }
  .site-nav a { padding: 11px; }
  .site-nav .nav-cta { margin: 4px 0 0; text-align: center; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .split-media img { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--content)); }
  .header-inner { min-height: 68px; }
  .brand-logo img { width: 168px; }
  .hero { padding-top: 48px; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.5rem); }
  .hero-visual, .hero-image { min-height: 360px; height: 360px; }
  .status-card { right: 14px; bottom: 14px; }
  .benefit-grid, .feature-grid, .solution-grid, .process { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .solution-card { min-height: 0; }
  .split-media img { min-height: 280px; }
  .cta-band { padding: 38px 25px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
