/* OviDrive Essentials — first-fold design gate */
:root {
  --purple: #6633cc;
  --purple-deep: #4c22aa;
  --purple-soft: #f2edff;
  --purple-pale: #faf8ff;
  --ink: #242331;
  --muted: #696875;
  --line: #e9e6f0;
  --white: #ffffff;
  --success: #2c8a62;
  --shadow: 0 24px 70px rgba(36, 35, 49, 0.14);
  --shell: min(90rem, calc(100% - 3rem));
  --radius: 1.25rem;
  --ease: 220ms cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Nunito", ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, .96rem + .18vw, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: .5rem;
  transform: translateY(-160%);
  transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  padding-top: 1.25rem;
}
.site-header__inner {
  min-height: 4.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.25rem;
  padding: .55rem .6rem .55rem 1.15rem;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(36,35,49,.09);
  border-radius: 3rem;
  box-shadow: 0 10px 36px rgba(36,35,49,.08);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; min-width: 0; }
.brand img { width: 9.4rem; }
.brand__divider { width: 1px; height: 1.6rem; background: var(--line); }
.brand__product { font-size: .9rem; font-weight: 800; letter-spacing: .02em; color: var(--purple); }
.site-nav { justify-self: center; display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); }
.site-nav a { position: relative; text-decoration: none; font-size: .92rem; font-weight: 700; color: #4d4b59; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.3rem; height: 2px; background: var(--purple); transition: right var(--ease); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.button {
  min-height: 3.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .85rem 1.35rem;
  color: var(--white);
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(102,51,204,.22);
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}
.button:hover { transform: translateY(-2px); background: var(--purple-deep); box-shadow: 0 14px 28px rgba(102,51,204,.26); }
.button:focus-visible, .site-nav a:focus-visible, .brand:focus-visible, .menu-toggle:focus-visible { outline: 3px solid rgba(102,51,204,.32); outline-offset: 4px; }
.button--small { min-height: 3.55rem; padding-inline: 1.5rem; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 9rem 0 0;
  background: linear-gradient(180deg, var(--purple-pale) 0, #fff 72%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 40%;
  height: 78%;
  background: var(--purple);
  border-bottom-left-radius: 12rem;
  opacity: .035;
  pointer-events: none;
}
.hero__accent {
  position: absolute;
  top: 8rem;
  right: -7rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(102,51,204,.11);
  border-radius: 50%;
  pointer-events: none;
}
.hero__accent::before, .hero__accent::after { content: ""; position: absolute; border: inherit; border-radius: inherit; }
.hero__accent::before { inset: 3rem; }
.hero__accent::after { inset: 6rem; }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(30rem, .88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
  min-height: calc(100svh - 15rem);
  padding: 3rem 0 3.5rem;
}
.hero__copy { max-width: 47rem; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.25rem;
  color: var(--purple);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 1.6rem; height: 2px; background: currentColor; }
h1 {
  margin: 0;
  max-width: 13.5ch;
  font-size: clamp(3.15rem, 4.65vw, 5rem);
  font-weight: 800;
  line-height: .99;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero__lead {
  max-width: 61ch;
  margin: 1.75rem 0 0;
  color: #565461;
  font-size: clamp(1.08rem, 1rem + .3vw, 1.28rem);
  font-weight: 600;
  line-height: 1.58;
}
.hero__support { max-width: 68ch; margin: 1rem 0 0; color: var(--muted); font-size: .99rem; line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 1.25rem; margin-top: 2rem; }
.hero__actions .button { flex: 0 0 auto; }
.hero__actions p { margin: 0; max-width: 29ch; color: var(--muted); font-size: .82rem; font-weight: 700; line-height: 1.5; }

.hero__visual { position: relative; min-width: 0; }
.product-frame {
  position: relative;
  padding: .8rem;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(36,35,49,.1);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  transform: perspective(80rem) rotateY(-4deg) rotateX(1deg);
}
.product-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% -8% -9% 14%;
  background: var(--purple);
  border-radius: 2.5rem;
  opacity: .1;
  transform: rotate(3deg);
}
.product-frame__topbar { display: flex; align-items: center; justify-content: space-between; padding: .6rem .75rem .8rem; }
.product-frame__mark img { width: 5.5rem; }
.product-frame__status { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.product-frame__status i { width: .42rem; height: .42rem; background: #52b788; border-radius: 50%; box-shadow: 0 0 0 4px rgba(82,183,136,.13); }
.product-frame__image { width: 100%; border: 1px solid rgba(36,35,49,.06); border-radius: 1.35rem; background: #fff; }
.product-frame__note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .78rem .9rem;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(36,35,49,.09);
  border-radius: .9rem;
  box-shadow: 0 16px 35px rgba(36,35,49,.13);
  backdrop-filter: blur(10px);
}
.product-frame__note strong { color: var(--purple); font-size: 1.3rem; line-height: 1; }
.product-frame__note span { font-size: .68rem; font-weight: 800; line-height: 1.25; }
.product-frame__note i { display: grid; place-items: center; width: 1.7rem; height: 1.7rem; color: #fff; background: var(--success); border-radius: 50%; font-style: normal; font-size: .8rem; }
.product-frame__note--vehicles { left: -2.4rem; bottom: 2.25rem; }
.product-frame__note--organised { top: 5.25rem; right: .6rem; }

@media (min-width: 861px) and (max-height: 720px) {
  .hero { padding-top: 7rem; }
  .hero__inner { min-height: auto; align-items: start; padding: 1.5rem 0 2rem; }
  h1 { font-size: 3rem; line-height: .98; }
  .eyebrow { margin-bottom: .7rem; }
  .hero__lead { margin-top: 1rem; font-size: .94rem; line-height: 1.42; }
  .hero__support { margin-top: .55rem; font-size: .78rem; line-height: 1.42; }
  .hero__actions { margin-top: 1rem; }
  .hero__actions p { font-size: .73rem; }
  .product-frame { transform: none; }
  .proof-bar { min-height: 5.25rem; }
}

.proof-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 6.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.proof-bar > p { margin: 0; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.proof-bar dl { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(2rem, 5vw, 5rem); margin: 0; }
.proof-bar dl div { display: flex; align-items: baseline; gap: .55rem; }
.proof-bar dt { color: var(--ink); font-size: 1.28rem; font-weight: 800; letter-spacing: -.03em; }
.proof-bar dd { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 700; }

@media (max-width: 1120px) {
  :root { --shell: min(90rem, calc(100% - 2rem)); }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .site-nav { display: none; }
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: .38rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
  }
  .menu-toggle span { width: 1.1rem; height: 2px; background: #fff; transition: transform var(--ease); }
  .site-header__inner > .button { justify-self: end; }
  .mobile-nav {
    position: fixed;
    z-index: 18;
    top: 6.5rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: .2rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-.75rem);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  }
  .mobile-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .mobile-nav > a:not(.button) { padding: .85rem; border-radius: .7rem; text-decoration: none; font-weight: 800; }
  .hero__inner { grid-template-columns: minmax(0, .94fr) minmax(25rem, .8fr); gap: 3rem; }
  h1 { font-size: clamp(3rem, 5vw, 4.25rem); }
}

@media (max-width: 860px) {
  .hero { padding-top: 7.5rem; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); padding-top: 3rem; gap: 3.75rem; }
  .hero__copy { max-width: 44rem; }
  .hero__visual { max-width: 42rem; margin-inline: auto; width: 100%; }
  .product-frame { transform: none; }
  .proof-bar { grid-template-columns: 1fr; padding-block: 1.5rem; }
  .proof-bar dl { width: 100%; justify-content: space-between; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 1.5rem); }
  .site-header { padding-top: .7rem; }
  .site-header__inner { min-height: 4rem; gap: .65rem; padding: .45rem .5rem .45rem .8rem; }
  .brand img { width: 7.5rem; }
  .brand__divider, .brand__product, .site-header__inner > .button { display: none; }
  .menu-toggle { justify-self: end; width: 2.85rem; height: 2.85rem; }
  .mobile-nav { top: 5.4rem; left: .75rem; right: .75rem; }
  .hero { min-height: auto; padding-top: 6rem; }
  .hero::before { width: 58%; height: 50%; border-bottom-left-radius: 7rem; }
  .hero__accent { top: 5rem; right: -12rem; }
  .hero__inner { min-height: auto; padding: 2.25rem 0 2.75rem; gap: 3rem; }
  .eyebrow { margin-bottom: 1rem; font-size: .72rem; }
  h1 { max-width: 15ch; font-size: clamp(2.5rem, 11vw, 3.2rem); line-height: 1.01; letter-spacing: -.04em; }
  .hero__lead { margin-top: 1.3rem; font-size: 1.05rem; line-height: 1.52; }
  .hero__support { font-size: .92rem; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: .9rem; margin-top: 1.6rem; }
  .hero__actions .button { width: 100%; }
  .hero__actions p { max-width: none; text-align: center; }
  .hero__visual { padding-inline: .3rem; }
  .product-frame { padding: .5rem; border-radius: 1.25rem; }
  .product-frame::before { inset: 12% -3% -6% 12%; border-radius: 1.5rem; }
  .product-frame__topbar { padding: .45rem .5rem .6rem; }
  .product-frame__image { border-radius: .9rem; }
  .product-frame__note { padding: .55rem .65rem; border-radius: .7rem; }
  .product-frame__note strong { font-size: 1rem; }
  .product-frame__note span { font-size: .58rem; }
  .product-frame__note--vehicles { left: -.45rem; bottom: -.85rem; }
  .product-frame__note--organised { top: 3rem; right: -.45rem; }
  .proof-bar { gap: .9rem; padding-top: 2rem; }
  .proof-bar > p { text-align: center; }
  .proof-bar dl { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .proof-bar dl div { display: grid; gap: .05rem; text-align: center; }
  .proof-bar dt { font-size: 1.05rem; }
  .proof-bar dd { font-size: .6rem; line-height: 1.25; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto; animation-duration: .01ms; animation-iteration-count: 1; transition-duration: .01ms; }
}

/* Full page */
.section { position: relative; padding: clamp(5.5rem, 9vw, 9rem) 0; }
.section-label {
  margin: 0 0 .9rem;
  color: var(--purple);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-heading { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .72fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}
.section-heading h2,
.final-cta h2,
.faq h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.35rem, 3.6vw, 4.35rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.section-heading__body p { margin: 0 0 .75rem; color: var(--muted); line-height: 1.65; }
.section-heading__body p:last-child { margin-bottom: 0; }
.section-heading--center { max-width: 53rem; margin-inline: auto; text-align: center; }
.section-heading--center h2 { max-width: none; }
.reveal { opacity: 1; transform: translateY(0); }
.js .reveal:not(.revealed) { transform: translateY(14px); }
.js .reveal { transition: transform .65s cubic-bezier(.2,.8,.2,1); }

.problem { overflow: hidden; background: #f7f4ff; }
.problem .section-heading--split { align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.problem .section-heading h2 { max-width: 16ch; font-size: clamp(2.7rem, 3.2vw, 3.45rem); line-height: 1.02; }
.problem .section-heading__body { max-width: 34rem; padding-left: 1.5rem; border-left: .2rem solid var(--purple); }
.problem .section-heading__body p { font-size: .96rem; line-height: 1.58; }
.problem .section-heading__body p:last-child { color: var(--ink); font-weight: 800; }
.problem-grid { display: grid; grid-template-columns: minmax(20rem, .72fr) minmax(0, 1.28fr); align-items: stretch; gap: 0; overflow: hidden; padding: 1rem; color: #fff; background: var(--ink); border: 1px solid rgba(36,35,49,.1); border-radius: 2rem; box-shadow: 0 28px 70px rgba(36,35,49,.16); }
.diagnostic-list { order: 2; display: flex; flex-direction: column; padding: 0 clamp(1.25rem, 3vw, 2.5rem); border-top: 0; }
.diagnostic-row { display: grid; grid-template-columns: 2.6rem 1fr; flex: 1; gap: 1rem; align-content: center; padding: clamp(1.4rem, 2.5vw, 2.25rem) 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.diagnostic-row:last-child { border-bottom: 0; }
.diagnostic-row__number { color: #aa89ff; font-size: .7rem; font-weight: 800; letter-spacing: .09em; }
.diagnostic-row h3,
.solution-block h3,
.experience-band h3,
.process-step h3,
.benefit-card h3 { margin: 0; font-size: clamp(1.28rem, 1.6vw, 1.75rem); line-height: 1.18; letter-spacing: -.025em; }
.problem .diagnostic-row h3 { max-width: 25ch; color: #fff; font-size: clamp(1.35rem, 1.7vw, 1.8rem); }
.problem .diagnostic-row p { max-width: 64ch; margin: .65rem 0 0; color: #b9b8c5; font-size: .83rem; line-height: 1.58; }
.fragment-map { position: relative; top: auto; order: 1; display: flex; flex-direction: column; height: 100%; min-height: 36rem; margin: 0; overflow: hidden; padding: 1rem; background: #2d2c3b; border: 1px solid rgba(255,255,255,.08); border-radius: 1.35rem; box-shadow: none; }
.fragment-map__head { display: flex; justify-content: space-between; align-items: center; padding: .25rem .3rem 1rem; color: #fff; font-size: .78rem; font-weight: 800; }
.fragment-map__status { padding: .34rem .6rem; color: #ffd9d0; background: rgba(255,120,91,.14); border: 1px solid rgba(255,120,91,.28); border-radius: 999px; font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; }
.fragment-map__canvas { position: relative; flex: 1; min-height: 27rem; overflow: hidden; background: #343345; border: 1px solid rgba(255,255,255,.07); border-radius: 1rem; }
.fragment-map__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.fragment-map__lines path { fill: none; stroke: rgba(167,138,255,.38); stroke-width: 1.5; stroke-dasharray: 5 7; }
.fragment { position: absolute; z-index: 2; width: 8.6rem; padding: .8rem; background: #fff; border-radius: .75rem; box-shadow: 0 14px 30px rgba(0,0,0,.22); }
.fragment span, .fragment i { display: block; color: #8a8893; font-size: .53rem; font-style: normal; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.fragment strong { display: block; margin: .22rem 0 .45rem; font-size: .86rem; }
.fragment--sheet { top: 2rem; left: 1.2rem; transform: rotate(-3deg); }
.fragment--mail { top: 3.5rem; right: 1.1rem; transform: rotate(2deg); }
.fragment--folder { bottom: 3.1rem; left: 1.5rem; transform: rotate(2deg); }
.fragment--driver { right: 1.2rem; bottom: 2rem; transform: rotate(-2deg); }
.fragment-map > p { margin: .85rem .3rem .15rem; color: #b9b8c2; font-size: .7rem; line-height: 1.45; }

.solution { overflow: hidden; color: var(--ink); background: #fff; }
.solution__glow { position: absolute; top: -12rem; right: -10rem; width: 34rem; height: 34rem; border: 1px solid rgba(102,51,204,.08); border-radius: 50%; }
.solution__glow::before, .solution__glow::after { content: ""; position: absolute; border: inherit; border-radius: inherit; }
.solution__glow::before { inset: 5rem; }
.solution__glow::after { inset: 10rem; }
.solution .section-heading--split { align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); border-bottom: 1px solid var(--line); }
.solution .section-label { color: var(--purple); }
.solution .section-heading--light h2 { max-width: 13ch; color: var(--ink); font-size: clamp(2.75rem, 3.8vw, 3.8rem); line-height: 1.02; }
.solution .section-heading--light .section-heading__body { max-width: 34rem; padding: 1.5rem 1.7rem; background: var(--purple-pale); border-left: .25rem solid var(--purple); border-radius: 0 1.2rem 1.2rem 0; }
.solution .section-heading--light .section-heading__body p { margin-bottom: .65rem; color: var(--muted); font-size: .94rem; line-height: 1.55; }
.solution .section-heading--light .section-heading__body p:last-child { margin-bottom: 0; color: var(--ink); font-weight: 700; }
.solution-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(20rem, .72fr); align-items: stretch; gap: 1.25rem; padding: 1.25rem; background: #f5f2fc; border: 1px solid #ebe5f7; border-radius: 2rem; }
.solution-visual { position: relative; top: auto; }
.unified-panel { display: flex; flex-direction: column; height: 100%; padding: 1rem; color: var(--ink); background: #fff; border: 1px solid #e8e3f2; border-radius: 1.35rem; box-shadow: 0 18px 45px rgba(36,35,49,.09); }
.unified-panel__top { display: flex; align-items: center; justify-content: space-between; padding: .25rem .3rem .85rem; font-size: .72rem; font-weight: 800; }
.unified-panel__top span:last-child { display: inline-flex; align-items: center; gap: .4rem; color: var(--success); }
.unified-panel__top i { width: .45rem; height: .45rem; background: currentColor; border-radius: 50%; }
.unified-panel__summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-bottom: .65rem; }
.unified-panel__summary div { display: flex; align-items: center; justify-content: space-between; gap: .5rem; min-width: 0; padding: .72rem; background: #faf9fd; border: 1px solid #ece8f5; border-radius: .75rem; }
.unified-panel__summary span { overflow: hidden; color: var(--muted); font-size: .6rem; font-weight: 800; text-overflow: ellipsis; }
.unified-panel__summary strong { display: grid; place-items: center; flex: 0 0 auto; width: 1.35rem; height: 1.35rem; color: #fff; background: var(--purple); border-radius: 50%; font-size: .7rem; }
.unified-panel__records { display: flex; flex: 1; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid #ece8f5; border-radius: .85rem; }
.record-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: .75rem; min-height: 3rem; padding: .55rem .8rem; border-bottom: 1px solid #efedf4; font-size: .7rem; font-weight: 800; }
.record-row:not(.record-row--head) { flex: 1; }
.record-row:last-child { border-bottom: 0; }
.record-row > span:first-child { display: flex; align-items: center; gap: .6rem; }
.record-row--head { min-height: auto; color: #8a8893; background: #faf9fc; font-size: .56rem; letter-spacing: .06em; text-transform: uppercase; }
.record-icon { display: grid; place-items: center; width: 1.55rem; height: 1.55rem; color: var(--purple); background: var(--purple-soft); border-radius: .45rem; font-style: normal; }
.status { padding: .32rem .5rem; color: #9a6521; background: #fff4d9; border-radius: 999px; font-size: .56rem; }
.status--good { color: var(--success); background: #e8f6ef; }
.solution-copy { display: grid; grid-template-rows: 1fr 1fr; gap: 1rem; }
.solution-block { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.35rem, 2vw, 2rem); background: #fff; border: 1px solid #e8e3f2; border-radius: 1.35rem; }
.solution-block:first-child { color: #fff; background: var(--ink); border-color: var(--ink); }
.solution-block__index { margin: 0 0 .75rem; color: var(--purple); font-size: .68rem; font-weight: 800; }
.solution-block:first-child .solution-block__index { color: #a889ff; }
.solution-block h3 { max-width: 14ch; color: var(--ink); font-size: clamp(1.55rem, 2vw, 2.15rem); }
.solution-block:first-child h3 { color: #fff; }
.solution-block > p:not(.solution-block__index) { margin: .7rem 0 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.solution-block:first-child > p:not(.solution-block__index) { color: #bbb9c7; }
.manage-list { display: flex; flex-wrap: wrap; gap: .4rem; margin: .65rem 0 0; padding: 0; list-style: none; }
.manage-list li { padding: .42rem .58rem; color: var(--purple-deep); background: var(--purple-soft); border: 1px solid #d9ccfa; border-radius: 999px; font-size: .62rem; font-weight: 800; }
.solution-block:first-child .manage-list li { color: #e8e0ff; background: rgba(102,51,204,.25); border-color: rgba(154,119,255,.25); }
.experience-band { display: grid; grid-template-columns: 1.05fr .9fr .9fr auto; align-items: center; gap: clamp(1.25rem, 3vw, 2.5rem); margin-top: 1.5rem; padding: 1.65rem 1.8rem; color: #fff; background: var(--purple); border-radius: 1.5rem; box-shadow: 0 18px 45px rgba(102,51,204,.18); }
.experience-band .section-label { color: #ded2ff; }
.experience-band h3 { color: #fff; font-size: 1.4rem; }
.experience-band p { margin: 0; color: #eee8ff; font-size: .74rem; line-height: 1.5; }
.button--light { color: var(--purple); background: #fff; border-color: #fff; box-shadow: none; white-space: nowrap; }
.button--light:hover { color: #fff; background: var(--ink); border-color: var(--ink); }

.process { overflow: hidden; background: #f7f4ff; }
.process__orbit { position: absolute; right: -10rem; top: -14rem; width: 34rem; height: 34rem; border: 1px solid rgba(102,51,204,.08); border-radius: 50%; }
.process__orbit::before, .process__orbit::after { content: ""; position: absolute; border: inherit; border-radius: inherit; }
.process__orbit::before { inset: 4.5rem; }
.process__orbit::after { inset: 9rem; }
.process-intro { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 3rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.process-intro h2 { margin: 0; max-width: 14ch; font-size: clamp(2.8rem, 4.5vw, 5rem); font-weight: 800; line-height: 1.01; letter-spacing: -.045em; text-wrap: balance; }
.process-intro__route { display: flex; align-items: center; gap: .7rem; padding-bottom: .75rem; color: var(--purple); font-size: .68rem; font-weight: 800; letter-spacing: .06em; }
.process-intro__route i { width: clamp(2.5rem, 6vw, 5.5rem); height: 1px; background: rgba(102,51,204,.25); }
.process-board { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; overflow: hidden; color: #fff; background: var(--ink); border: 1px solid rgba(36,35,49,.08); border-radius: 1.75rem; box-shadow: 0 28px 70px rgba(36,35,49,.15); list-style: none; }
.process-card { position: relative; display: flex; flex-direction: column; min-height: 26rem; padding: clamp(1.5rem, 3vw, 2.35rem); border-right: 1px solid rgba(255,255,255,.1); }
.process-card:last-child { border-right: 0; }
.process-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: .3rem; background: rgba(255,255,255,.14); }
.process-card--one::before { background: #9c78ff; }
.process-card--two::before { background: #7646e7; }
.process-card--three::before { background: #fff; }
.process-card__top { display: flex; align-items: center; justify-content: space-between; }
.process-card__number { color: #bfa8ff; font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.process-card__icon { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; color: #c7b4ff; background: rgba(102,51,204,.2); border: 1px solid rgba(169,137,255,.22); border-radius: .95rem; }
.process-card__icon svg { width: 1.55rem; height: 1.55rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.process-card__content { margin-top: auto; padding-top: 4rem; }
.process-card h3 { margin: 0; max-width: 13ch; color: #fff; font-size: clamp(1.55rem, 2.2vw, 2.35rem); line-height: 1.08; letter-spacing: -.035em; }
.process-card p { margin: 1rem 0 0; color: #bbb9c7; font-size: .9rem; line-height: 1.65; }
.process-card--two { background: rgba(255,255,255,.025); }
.process-card--three { background: var(--purple); }
.process-card--three .process-card__number { color: #e5dcff; }
.process-card--three .process-card__icon { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.process-card--three p { color: #e7dfff; }

.benefits { background: var(--purple-pale); }
.benefits-intro { max-width: 30ch; margin: 0 0 .4rem; color: var(--muted); font-size: 1.15rem; line-height: 1.6; }
.benefit-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.benefit-card { grid-column: span 4; min-height: 17rem; padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: 1.1rem; }
.benefit-card > span { display: block; margin-bottom: 3.25rem; color: var(--purple); font-size: .7rem; font-weight: 800; }
.benefit-card h3 { max-width: 16ch; }
.benefit-card p { margin: .85rem 0 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.benefit-card--feature { grid-column: span 6; color: #fff; background: var(--purple); border-color: var(--purple); }
.benefit-card:nth-child(2) { grid-column: span 6; }
.benefit-card--feature > span, .benefit-card--feature p { color: #e7ddff; }
.benefit-card--feature h3 { max-width: 18ch; font-size: clamp(1.7rem, 2.7vw, 2.7rem); }
.benefit-card__meter { display: flex; align-items: end; gap: .35rem; height: 3rem; margin-top: 1.5rem; }
.benefit-card__meter i { width: .55rem; background: rgba(255,255,255,.32); border-radius: .2rem; }
.benefit-card__meter i:nth-child(1) { height: 90%; }.benefit-card__meter i:nth-child(2) { height: 72%; }.benefit-card__meter i:nth-child(3) { height: 56%; }.benefit-card__meter i:nth-child(4) { height: 38%; }.benefit-card__meter i:nth-child(5) { height: 22%; background: #fff; }
.benefit-card--wide { grid-column: span 4; display: grid; grid-template-columns: 1fr; align-items: start; gap: 1rem; min-height: 17rem; }
.benefit-card--wide > span { align-self: auto; margin: 0 0 2rem; }
.benefit-card--wide h3 { max-width: 16ch; }
.growth-mark { display: flex; align-items: end; gap: .45rem; height: 6rem; }
.growth-mark i { width: 1rem; background: var(--purple-soft); border: 1px solid #dfd3ff; border-radius: .25rem .25rem 0 0; }
.growth-mark i:nth-child(1) { height: 25%; }.growth-mark i:nth-child(2) { height: 45%; }.growth-mark i:nth-child(3) { height: 68%; }.growth-mark i:nth-child(4) { height: 100%; background: var(--purple); border-color: var(--purple); }

.final-cta { overflow: hidden; color: #fff; background: var(--purple); }
.final-cta__shape { position: absolute; top: -20rem; right: -10rem; width: 48rem; height: 48rem; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.final-cta__shape::before, .final-cta__shape::after { content: ""; position: absolute; border: inherit; border-radius: inherit; }
.final-cta__shape::before { inset: 6rem; }.final-cta__shape::after { inset: 12rem; }
.final-cta__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .78fr); gap: clamp(3rem, 10vw, 10rem); }
.final-cta .section-label { color: #d9caff; }
.final-cta h2 { max-width: 12ch; color: #fff; }
.final-cta__copy p { margin: 0 0 1rem; color: #ece5ff; line-height: 1.7; }
.final-cta__copy .button { margin-top: 1.25rem; }
.button--dark { color: #fff; background: var(--ink); border-color: var(--ink); box-shadow: 0 12px 30px rgba(36,35,49,.2); }
.button--dark:hover { color: var(--ink); background: #fff; border-color: #fff; }

.faq { background: #fff; }
.faq__layout { display: grid; grid-template-columns: minmax(18rem, .6fr) minmax(0, 1fr); align-items: start; gap: clamp(3rem, 10vw, 10rem); }
.faq__intro { position: sticky; top: 7rem; }
.faq__intro h2 { max-width: 9ch; }
.faq__intro > p:last-child { max-width: 31ch; color: var(--muted); }
.faq__list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; display: flex; justify-content: space-between; gap: 2rem; padding: 1.6rem 0; cursor: pointer; list-style: none; font-size: 1.08rem; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary span { position: relative; flex: 0 0 auto; width: 1.6rem; height: 1.6rem; border: 1px solid var(--line); border-radius: 50%; }
summary span::before, summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: .6rem; height: 1px; background: var(--purple); transform: translate(-50%,-50%); transition: transform var(--ease); }
summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
details > p { max-width: 68ch; margin: -.35rem 3.5rem 1.6rem 0; color: var(--muted); line-height: 1.65; }

.site-footer { padding: 3rem 0; color: #b9b8c2; background: var(--ink); }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; }
.brand--footer img { filter: brightness(0) invert(1); opacity: .88; }
.site-footer nav { display: flex; gap: 1.5rem; }
.site-footer a { color: inherit; text-decoration: none; font-size: .8rem; font-weight: 700; }
.site-footer a:hover { color: #fff; }
.site-footer__inner > p { grid-column: 1 / -1; margin: 1.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

@media (max-width: 1024px) {
  .section-heading--split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .problem-grid, .solution-layout { grid-template-columns: 1fr; }
  .problem-grid { padding: .8rem; }
  .diagnostic-list { order: 1; }
  .fragment-map { order: 2; max-width: none; min-height: 30rem; margin-top: .8rem; }
  .fragment-map, .solution-visual, .faq__intro { position: relative; top: auto; }
  .fragment-map { max-width: 38rem; margin-inline: auto; width: 100%; }
  .solution-visual { max-width: 42rem; margin-inline: auto; width: 100%; }
  .solution-copy { grid-template-columns: 1fr 1fr; margin-top: 1rem; gap: 2rem; }
  .experience-band { grid-template-columns: 1fr 1fr; }
  .experience-band .button { justify-self: start; }
  .benefit-card { grid-column: span 6; }
  .benefit-card--feature { grid-column: span 12; }
  .benefit-card--wide { grid-column: span 6; }
  .site-footer__inner { grid-template-columns: 1fr auto; }
  .site-footer nav { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 768px) {
  .section { padding: 5.5rem 0; }
  .section-heading--split, .final-cta__inner, .faq__layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading { margin-bottom: 3rem; }
  .section-heading h2, .final-cta h2, .faq h2 { font-size: clamp(2.25rem, 10vw, 3.35rem); }
  .problem .section-heading__body { padding: 1rem 0 0; border-top: .2rem solid var(--purple); border-left: 0; }
  .problem-grid { gap: 0; }
  .diagnostic-list { padding-inline: .8rem; }
  .diagnostic-row { grid-template-columns: 2.3rem 1fr; gap: .8rem; }
  .fragment-map { min-height: auto; }
  .fragment-map__canvas { height: 23rem; min-height: 23rem; }
  .fragment { width: 8rem; }
  .solution-copy { grid-template-columns: 1fr; gap: 2rem; }
  .experience-band { grid-template-columns: 1fr; padding: 1.5rem; }
  .unified-panel__summary { grid-template-columns: 1fr 1fr; }
  .process-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-intro h2 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .process-intro__route { display: none; }
  .process-board { grid-template-columns: 1fr; }
  .process-card { min-height: auto; padding: 1.5rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-card:last-child { border-bottom: 0; }
  .process-card__content { margin-top: 2.5rem; padding-top: 0; }
  .process-card h3 { max-width: 17ch; font-size: 1.75rem; }
  .benefit-card, .benefit-card:nth-child(2), .benefit-card--feature, .benefit-card--wide { grid-column: 1 / -1; }
  .benefit-card--wide { grid-template-columns: 1fr; align-items: start; }
  .growth-mark { height: 4.5rem; }
  .faq__intro { margin-bottom: 1.5rem; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer nav { grid-column: auto; grid-row: auto; flex-wrap: wrap; }
  .site-footer__inner > p { grid-column: auto; }
}

@media (max-width: 480px) {
  .fragment-map__canvas { height: 21rem; }
  .fragment { width: 7rem; padding: .7rem; }
  .fragment strong { font-size: .78rem; }
  .fragment--sheet { left: .7rem; }
  .fragment--mail { right: .7rem; }
  .fragment--folder { left: .8rem; }
  .fragment--driver { right: .7rem; }
  .unified-panel { padding: .55rem; }
  .unified-panel__summary { gap: .35rem; }
  .unified-panel__summary div { padding: .65rem; }
  .record-row { padding-inline: .55rem; font-size: .65rem; }
  .record-icon { width: 1.4rem; height: 1.4rem; }
  .process-step { min-height: 14rem; }
  .benefit-card { min-height: auto; }
  .benefit-card > span { margin-bottom: 2rem; }
  summary { font-size: 1rem; }
  details > p { margin-right: 0; }
}

/* Real problem-section photography */
.problem-photo {
  order: 1;
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 42rem;
  margin: 0;
  padding: .72rem;
  overflow: hidden;
  color: #d6d3df;
  background: #302f40;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 1.45rem;
}
.problem-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 55% center;
  border-radius: 1rem;
  filter: saturate(.78) contrast(1.04);
}
.problem-photo figcaption {
  padding: .95rem .4rem .28rem;
  color: #c7c4d1;
  font-size: .78rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .problem-photo {
    order: 2;
    width: 100%;
    max-width: 38rem;
    min-height: 0;
    margin-inline: auto;
  }
  .problem-photo img { height: 26rem; }
}

@media (max-width: 768px) {
  .problem-photo { padding: .55rem; border-radius: 1.2rem; }
  .problem-photo img { height: 20rem; border-radius: .85rem; }
  .problem-photo figcaption { padding: .8rem .3rem .2rem; font-size: .72rem; }
}
