:root {
      --page: #f6fbff;
      --page-strong: #e8f5ff;
      --white: #ffffff;
      --ink: #071f45;
      --ink-soft: #28466d;
      --muted: #637b9e;
      --line: #d6e6f5;
      --line-strong: #bdd5eb;
      --blue: #0d63c7;
      --blue-dark: #082d63;
      --blue-soft: #dbeeff;
      --orange: #ff6b1a;
      --orange-dark: #d94f00;
      --green: #1f9d62;
      --green-soft: #e7f8ef;
      --red: #d94134;
      --red-soft: #ffebe8;
      --shadow: 0 24px 70px rgba(7, 31, 69, 0.14);
      --radius: 8px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

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

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--page);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    a {
      color: inherit;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -80px;
      z-index: 1000;
      padding: 10px 14px;
      color: var(--white);
      background: var(--ink);
      border-radius: var(--radius);
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 16px;
    }

    .scroll-progress {
      position: fixed;
      inset: 0 0 auto;
      z-index: 90;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--blue));
      transform: scaleX(0);
      transform-origin: left center;
      will-change: transform;
    }

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

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      border-bottom: 1px solid transparent;
      transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
    }

    .site-header.is-scrolled {
      background: rgba(246, 251, 255, 0.88);
      border-color: rgba(189, 213, 235, 0.8);
      box-shadow: 0 10px 35px rgba(7, 31, 69, 0.08);
      backdrop-filter: blur(16px);
    }

    .nav {
      width: min(1240px, calc(100% - 32px));
      min-height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: 0;
      color: var(--ink);
    }

    /* Het Qlaritee-beeldmerk. Vervangt het oude oranje blokje met de letter Q. */
    .brand-mark {
      display: block;
      width: 36px;
      height: 36px;
      object-fit: contain;
      flex: none;
    }

    /*
     * Merknaam-typografie.
     * EB Garamond Italic is de huisletter van Qlaritee en wordt gebruikt voor
     * het woordmerk en voor merkvermeldingen in lopende tekst. De rest van de
     * site blijft in Inter/systeemletter staan.
     */
    .brand-name,
    .qlaritee-brand {
      font-family: "EB Garamond", "Libre Baskerville", Baskerville, "Adobe Caslon Pro", Georgia, serif;
      font-style: italic;
      font-weight: 600;
      letter-spacing: 0.005em;
    }

    /* Garamond heeft een kleinere x-hoogte dan Inter; iets opschalen zodat het
       optisch even groot oogt als de tekst eromheen. */
    .brand-name {
      font-size: 1.16em;
      line-height: 1;
    }

    .qlaritee-brand {
      font-size: 1.06em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--ink-soft);
      font-size: 0.92rem;
      font-weight: 650;
    }

    .nav-links a {
      text-decoration: none;
      border-bottom: 2px solid transparent;
      padding: 4px 0;
      transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--ink);
      border-color: var(--orange);
      outline: none;
      transform: translateY(-1px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      color: var(--white);
      background: var(--orange);
      font-size: 0.95rem;
      font-weight: 750;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 14px 28px rgba(255, 107, 26, 0.28);
      transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s ease, background 0.24s ease;
      will-change: transform;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-3px);
      background: var(--orange-dark);
      box-shadow: 0 20px 36px rgba(255, 107, 26, 0.36);
      outline: none;
    }

    .btn svg {
      width: 18px;
      height: 18px;
    }

    .btn-secondary {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.82);
      border-color: var(--line-strong);
      box-shadow: none;
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      color: var(--ink);
      background: var(--white);
      box-shadow: 0 12px 28px rgba(7, 31, 69, 0.1);
    }

    .hero {
      position: relative;
      min-height: 86svh;
      overflow: hidden;
      display: grid;
      align-items: center;
      background: #dff3ff;
      border-bottom: 1px solid var(--line);
    }

    .hero-image {
      position: absolute;
      inset: 0;
      z-index: 0;
      transform: translate3d(0, calc(var(--hero-parallax, 0) * 1px), 0) scale(1.02);
      transform-origin: center;
      will-change: transform;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.03) contrast(1.01);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(246, 251, 255, 0.98) 0%, rgba(246, 251, 255, 0.92) 34%, rgba(246, 251, 255, 0.22) 62%, rgba(246, 251, 255, 0.02) 100%),
        linear-gradient(180deg, rgba(246, 251, 255, 0.08), rgba(246, 251, 255, 0.62));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 132px 0 64px;
    }

    .hero-copy {
      width: min(650px, 100%);
    }

    .hero h1 {
      margin: 0;
      max-width: 12ch;
      font-size: 4.8rem;
      line-height: 0.98;
      letter-spacing: 0;
      color: var(--ink);
    }

    .hero h1 span {
      color: var(--orange);
    }

    .hero-subtitle {
      margin: 26px 0 0;
      max-width: 620px;
      font-size: 1.16rem;
      color: var(--ink-soft);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      width: min(650px, 100%);
      margin-top: 42px;
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 66px;
      padding: 14px;
      border: 1px solid rgba(189, 213, 235, 0.9);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.78);
      color: var(--ink-soft);
      font-size: 0.9rem;
      font-weight: 650;
      backdrop-filter: blur(8px);
      transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .proof-item:hover {
      transform: translateY(-4px);
      border-color: var(--line-strong);
      box-shadow: 0 18px 36px rgba(7, 31, 69, 0.12);
    }

    .icon-box {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      border-radius: var(--radius);
      color: var(--blue-dark);
      background: var(--blue-soft);
      border: 1px solid #c5def5;
    }

    .icon-box svg {
      width: 19px;
      height: 19px;
      stroke-width: 2.2;
    }

    section {
      padding: 92px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
      gap: 44px;
      align-items: end;
      margin-bottom: 38px;
    }

    .section-label {
      margin: 0 0 14px;
      color: var(--blue);
      font-size: 0.78rem;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      font-size: 3rem;
      line-height: 1.05;
      letter-spacing: 0;
    }

    h3 {
      margin: 0;
      font-size: 1.26rem;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .section-intro {
      margin: 0;
      color: var(--ink-soft);
      font-size: 1.04rem;
    }

    .comparison {
      background: var(--white);
    }

    .compare-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 16px;
    }

    .compare-panel {
      min-height: 530px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
      will-change: transform;
    }

    .compare-panel:hover {
      transform: translateY(-6px);
      border-color: var(--line-strong);
      box-shadow: 0 30px 80px rgba(7, 31, 69, 0.18);
    }

    .compare-panel.dark {
      color: var(--white);
      background:
        radial-gradient(circle at 28% 24%, rgba(217, 65, 52, 0.28), transparent 34%),
        radial-gradient(circle at 76% 18%, rgba(13, 99, 199, 0.22), transparent 28%),
        linear-gradient(145deg, #06111f 0%, #081934 54%, #111827 100%);
    }

    .compare-panel.light {
      color: var(--ink);
      background:
        radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.92), transparent 24%),
        linear-gradient(145deg, #ecf8ff 0%, #bfe3ff 58%, #78b7ec 100%);
    }

    .compare-content {
      position: relative;
      z-index: 2;
      min-height: inherit;
      display: flex;
      flex-direction: column;
      padding: 32px;
    }

    .status-chip {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 0 10px;
      border-radius: var(--radius);
      font-size: 0.76rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .chip-danger {
      color: #ffd7d2;
      background: rgba(217, 65, 52, 0.2);
      border: 1px solid rgba(255, 154, 143, 0.4);
    }

    .chip-good {
      color: #084428;
      background: rgba(231, 248, 239, 0.96);
      border: 1px solid rgba(31, 157, 98, 0.32);
    }

    .compare-panel h3 {
      margin-top: 22px;
      font-size: 2rem;
    }

    .compare-panel p {
      margin: 10px 0 0;
      max-width: 48ch;
    }

    .compare-panel.dark p {
      color: #c8d6e8;
    }

    .compare-panel.light p {
      color: var(--ink-soft);
    }

    .scene {
      position: relative;
      min-height: 210px;
      margin: 28px 0;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.22);
      overflow: hidden;
      isolation: isolate;
    }

    .scene::after {
      content: "";
      position: absolute;
      inset: auto -20% -40% -20%;
      height: 68%;
      background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.45), transparent 62%);
      opacity: 0.68;
      pointer-events: none;
      transform: translate3d(0, calc(var(--float-y, 0) * 1px), 0);
      will-change: transform;
    }

    .scene-chaos {
      background:
        linear-gradient(145deg, rgba(6, 17, 31, 0.1), rgba(6, 17, 31, 0.88)),
        repeating-linear-gradient(12deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 30px);
    }

    .scene-clear {
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.12)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 42px);
    }

    .spreadsheet,
    .ice-step-visual {
      position: absolute;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 18px 36px rgba(7, 31, 69, 0.18);
    }

    .spreadsheet {
      width: 150px;
      height: 96px;
      left: 30px;
      bottom: 32px;
      transform: rotate(-7deg);
      background-image:
        linear-gradient(90deg, rgba(217, 65, 52, 0.16) 0 16%, transparent 16%),
        linear-gradient(#d6e6f5 1px, transparent 1px),
        linear-gradient(90deg, #d6e6f5 1px, transparent 1px);
      background-size: 100% 100%, 100% 24px, 30px 100%;
    }

    .spreadsheet.two {
      left: auto;
      right: 42px;
      bottom: 68px;
      transform: rotate(8deg);
      opacity: 0.7;
    }

    .warning-note {
      position: absolute;
      padding: 9px 10px;
      border-radius: var(--radius);
      color: #ffe3df;
      background: rgba(217, 65, 52, 0.18);
      border: 1px solid rgba(255, 154, 143, 0.38);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .warning-note.one {
      left: 34px;
      top: 28px;
    }

    .warning-note.two {
      right: 34px;
      top: 46px;
    }

    .warning-note.three {
      left: 42%;
      bottom: 28px;
    }

    .ice-step-visual {
      display: grid;
      place-items: center;
      width: 132px;
      height: 72px;
      color: var(--ink);
      font-weight: 850;
      font-size: 0.85rem;
    }

    .ice-step-visual.one {
      left: 28px;
      bottom: 32px;
    }

    .ice-step-visual.two {
      left: 50%;
      bottom: 70px;
      transform: translateX(-50%);
    }

    .ice-step-visual.three {
      right: 28px;
      bottom: 32px;
    }

    .dashboard-mini {
      position: absolute;
      width: 280px;
      max-width: 70%;
      top: 28px;
      left: 50%;
      transform: translateX(-50%);
      padding: 16px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.7);
      box-shadow: 0 20px 42px rgba(7, 31, 69, 0.16);
    }

    .progress-row {
      display: grid;
      grid-template-columns: 56px 1fr;
      align-items: center;
      gap: 12px;
      color: var(--ink);
      font-weight: 800;
    }

    .ring {
      display: grid;
      place-items: center;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: conic-gradient(var(--green) 0 76%, #cfe0f1 76% 100%);
      color: var(--ink);
      font-size: 0.9rem;
      font-weight: 900;
    }

    .ring::before {
      content: "";
      position: absolute;
    }

    .bar {
      height: 9px;
      margin: 8px 0;
      border-radius: 99px;
      background: #d9e6f3;
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: var(--green);
    }

    .compare-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: auto;
      padding: 0;
      list-style: none;
    }

    .compare-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      padding: 10px;
      border-radius: var(--radius);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .dark .compare-list li {
      background: rgba(255, 255, 255, 0.08);
    }

    .light .compare-list li {
      background: rgba(255, 255, 255, 0.66);
    }

    .list-icon {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      font-weight: 900;
    }

    .icon-bad {
      color: #ffb2aa;
      background: rgba(217, 65, 52, 0.18);
    }

    .icon-good {
      color: var(--green);
      background: var(--green-soft);
    }

    .workflow-section {
      background:
        radial-gradient(circle at 16% 6%, rgba(255, 255, 255, 0.98), transparent 26%),
        linear-gradient(180deg, var(--page) 0%, var(--page-strong) 100%);
    }

    .workflow {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
      counter-reset: close-step;
    }

    .workflow li {
      position: relative;
      min-height: 210px;
      padding: 22px 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 18px 42px rgba(7, 31, 69, 0.08);
      counter-increment: close-step;
    }

    .workflow li::before {
      content: counter(close-step);
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: 18px;
      color: var(--white);
      background: var(--blue-dark);
      border-radius: var(--radius);
      font-weight: 850;
    }

    .workflow h3 {
      font-size: 1.02rem;
    }

    .workflow p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 0.91rem;
    }

    .premium-visual {
      position: relative;
      margin-top: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
      overflow: hidden;
      isolation: isolate;
      transform: translate3d(0, calc(var(--visual-parallax, 0) * 1px), 0);
      will-change: transform;
    }

    .premium-visual img {
      width: 100%;
      aspect-ratio: 16 / 8;
      object-fit: cover;
      transform: scale(1.012);
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    }

    .premium-visual:hover img {
      transform: scale(1.045);
      filter: saturate(1.05);
    }

    .premium-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 56%, rgba(7, 31, 69, 0.18)),
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.48), transparent 28%);
      pointer-events: none;
    }

    .visual-caption {
      position: absolute;
      left: 24px;
      bottom: 24px;
      z-index: 2;
      max-width: 360px;
      padding: 16px 18px;
      border: 1px solid rgba(255, 255, 255, 0.48);
      border-radius: var(--radius);
      color: var(--ink);
      background: rgba(255, 255, 255, 0.74);
      box-shadow: 0 18px 42px rgba(7, 31, 69, 0.16);
      backdrop-filter: blur(14px);
    }

    .visual-caption strong {
      display: block;
      margin-bottom: 5px;
      font-size: 0.96rem;
    }

    .visual-caption span {
      color: var(--ink-soft);
      font-size: 0.88rem;
      font-weight: 650;
    }

    .dashboard-section {
      background: var(--white);
    }

    .dashboard-shell {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 92% 8%, rgba(255, 107, 26, 0.09), transparent 26%),
        linear-gradient(145deg, #ffffff 0%, #edf7ff 100%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .dashboard-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 70px;
      padding: 0 22px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.78);
      border-bottom: 1px solid var(--line);
    }

    .dashboard-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 850;
    }

    .dashboard-title span:first-child {
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border-radius: var(--radius);
      color: var(--white);
      background: var(--blue-dark);
    }

    .dashboard-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .dashboard-tabs span {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--muted);
      background: var(--white);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .dashboard-tabs .active {
      color: var(--white);
      background: var(--blue-dark);
      border-color: var(--blue-dark);
    }

    .dashboard-body {
      display: grid;
      grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
      gap: 16px;
      padding: 18px;
    }

    .dashboard-main,
    .dashboard-side {
      display: grid;
      gap: 16px;
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .kpi-card,
    .chart-card,
    .deadline-card,
    .activity-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 16px 38px rgba(7, 31, 69, 0.07);
    }

    .kpi-card {
      min-height: 124px;
      padding: 16px;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .kpi-card:hover {
      transform: translateY(-5px);
      border-color: var(--line-strong);
      box-shadow: 0 20px 46px rgba(7, 31, 69, 0.12);
    }

    .kpi-label {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .kpi-value {
      margin-top: 8px;
      color: var(--ink);
      font-size: 1.9rem;
      line-height: 1;
      font-weight: 900;
    }

    .kpi-note {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 700;
    }

    .chart-card {
      padding: 20px;
      min-height: 270px;
    }

    .chart-card,
    .deadline-card,
    .activity-card {
      transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease;
    }

    .chart-card:hover,
    .deadline-card:hover,
    .activity-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 48px rgba(7, 31, 69, 0.1);
    }

    .chart-head,
    .card-head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      margin-bottom: 16px;
    }

    .chart-head h3,
    .card-head h3 {
      font-size: 1rem;
    }

    .chart-head span {
      color: var(--green);
      font-weight: 900;
    }

    .chart {
      width: 100%;
      min-height: 160px;
    }

    .category-bars {
      display: grid;
      gap: 12px;
      margin-top: 12px;
    }

    .category-row {
      display: grid;
      grid-template-columns: 150px 1fr 42px;
      align-items: center;
      gap: 12px;
      color: var(--ink-soft);
      font-size: 0.88rem;
      font-weight: 750;
    }

    .deadline-card,
    .activity-card {
      padding: 18px;
    }

    .deadline-list,
    .activity-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .deadline-list li,
    .activity-list li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px 0;
      border-top: 1px solid var(--line);
      color: var(--ink-soft);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .deadline-list li:first-child,
    .activity-list li:first-child {
      border-top: 0;
      padding-top: 0;
    }

    .status {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 8px;
      border-radius: var(--radius);
      font-size: 0.76rem;
      font-weight: 850;
      white-space: nowrap;
    }

    .status.ok {
      color: #07542e;
      background: var(--green-soft);
    }

    .status.warn {
      color: #8a3a00;
      background: #fff1e7;
    }

    .status.info {
      color: var(--blue-dark);
      background: var(--blue-soft);
    }

    .audience {
      background: var(--white);
    }

    .confidence-visual {
      margin-top: 34px;
    }

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

    .persona-card {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
      gap: 24px;
      min-height: 360px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, #ffffff, #edf7ff);
      box-shadow: 0 18px 46px rgba(7, 31, 69, 0.08);
    }

    .persona-card h3 {
      font-size: 1.6rem;
      margin-bottom: 10px;
    }

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

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--ink-soft);
      font-weight: 650;
    }

    .check-list svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      margin-top: 1px;
      color: var(--green);
      stroke-width: 2.6;
    }

    .product-card {
      align-self: end;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 18px 46px rgba(7, 31, 69, 0.12);
      overflow: hidden;
    }

    .product-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 48px;
      padding: 0 16px;
      border-bottom: 1px solid var(--line);
      font-weight: 800;
      color: var(--ink);
    }

    .product-body {
      padding: 16px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 16px;
    }

    .metric {
      padding: 10px;
      border-radius: var(--radius);
      background: var(--page);
      border: 1px solid var(--line);
      text-align: center;
    }

    .metric strong {
      display: block;
      color: var(--blue-dark);
      font-size: 1.1rem;
    }

    .metric span {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .task-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 10px 0;
      border-top: 1px solid var(--line);
      color: var(--ink-soft);
      font-size: 0.9rem;
      font-weight: 650;
    }

    .task-row span:last-child {
      color: var(--green);
      font-weight: 850;
    }

    .task-row.warn span:last-child {
      color: var(--orange-dark);
    }

    .features {
      background: var(--page);
    }

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

    .feature-card {
      min-height: 230px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 16px 36px rgba(7, 31, 69, 0.06);
      transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .feature-card:hover {
      transform: translateY(-7px);
      border-color: var(--line-strong);
      box-shadow: 0 24px 52px rgba(7, 31, 69, 0.12);
    }

    .feature-card .icon-box {
      margin-bottom: 20px;
    }

    .feature-card p {
      margin: 10px 0 0;
      color: var(--muted);
    }

    .why {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 90% 10%, rgba(13, 99, 199, 0.55), transparent 28%),
        linear-gradient(145deg, #061832 0%, #09295a 64%, #071f45 100%);
    }

    .why .section-label {
      color: #9fd0ff;
    }

    .why .section-intro {
      color: #c7daf0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 42px;
    }

    .why-item {
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.07);
      transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background 0.32s ease, border-color 0.32s ease;
    }

    .why-item:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.26);
    }

    .why-item h3 {
      font-size: 1.05rem;
    }

    .why-item p {
      margin: 10px 0 0;
      color: #c7daf0;
      font-size: 0.93rem;
    }

    .demo {
      background:
        linear-gradient(180deg, var(--page) 0%, #ffffff 100%);
    }

    .demo-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.65fr);
      gap: 36px;
      align-items: start;
    }

    .demo-copy {
      padding-top: 20px;
    }

    .demo-copy h2 {
      max-width: 12ch;
    }

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

    .demo-points li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--ink-soft);
      font-weight: 700;
    }

    .demo-form {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .form-row {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
    }

    label {
      color: var(--ink);
      font-size: 0.9rem;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 46px;
      padding: 10px 12px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      color: var(--ink);
      background: var(--page);
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    textarea {
      min-height: 112px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--blue);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(13, 99, 199, 0.12);
    }

    .form-note {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 0.84rem;
    }

    .form-success {
      margin-top: 14px;
      padding: 12px;
      border: 1px solid rgba(31, 157, 98, 0.28);
      border-radius: var(--radius);
      color: #07542e;
      background: var(--green-soft);
      font-weight: 750;
    }

    .site-footer {
      color: #c7daf0;
      background: #061832;
      padding: 44px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
      gap: 28px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-grid h3 {
      color: var(--white);
      font-size: 0.95rem;
      margin-bottom: 12px;
    }

    .footer-grid p,
    .footer-grid a {
      margin: 0;
      color: #c7daf0;
      text-decoration: none;
      font-size: 0.92rem;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: #94abc8;
      font-size: 0.86rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px) scale(0.985);
      filter: blur(4px);
      transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1), transform 0.72s cubic-bezier(0.16, 1, 0.3, 1), filter 0.72s ease;
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform, filter;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

    .workflow li:nth-child(2),
    .feature-card:nth-child(2),
    .why-item:nth-child(2) {
      --reveal-delay: 70ms;
    }

    .workflow li:nth-child(3),
    .feature-card:nth-child(3),
    .why-item:nth-child(3) {
      --reveal-delay: 140ms;
    }

    .workflow li:nth-child(4),
    .feature-card:nth-child(4),
    .why-item:nth-child(4) {
      --reveal-delay: 210ms;
    }

    .workflow li:nth-child(5),
    .feature-card:nth-child(5) {
      --reveal-delay: 280ms;
    }

    .workflow li:nth-child(6),
    .feature-card:nth-child(6) {
      --reveal-delay: 350ms;
    }

    @media (max-width: 1080px) {
      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 3.8rem;
      }

      .section-head,
      .demo-layout,
      .dashboard-body {
        grid-template-columns: 1fr;
      }

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

      .persona-card {
        grid-template-columns: 1fr;
      }

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

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

      .nav {
        min-height: 68px;
      }

      .nav .btn {
        display: none;
      }

      .brand {
        font-size: 1.16rem;
      }

      .hero {
        min-height: auto;
      }

      .hero::after {
        background:
          linear-gradient(180deg, rgba(246, 251, 255, 0.96) 0%, rgba(246, 251, 255, 0.9) 58%, rgba(246, 251, 255, 0.3) 100%);
      }

      .hero-image img {
        object-position: 62% center;
      }

      .hero-inner {
        padding: 112px 0 48px;
      }

      .hero h1 {
        max-width: 10ch;
        font-size: 2.75rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .hero-proof,
      .compare-grid,
      .persona-grid,
      .feature-grid,
      .why-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 64px 0;
      }

      h2 {
        font-size: 2.1rem;
      }

      .section-head {
        gap: 18px;
        margin-bottom: 28px;
      }

      .compare-content,
      .persona-card,
      .demo-form {
        padding: 20px;
      }

      .compare-panel {
        min-height: 600px;
      }

      .compare-list {
        grid-template-columns: 1fr;
      }

      .workflow {
        grid-template-columns: 1fr;
      }

      .dashboard-toolbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
      }

      .dashboard-body,
      .kpi-grid {
        grid-template-columns: 1fr;
      }

      .premium-visual img {
        aspect-ratio: 4 / 3;
      }

      .visual-caption {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -84px 14px 14px;
      }

      .category-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }

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

      .footer-bottom {
        display: grid;
      }
    }

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

      .hero-image,
      .premium-visual {
        transform: none !important;
      }
    }
