﻿:root {
      --ink: #102a43;
      --ink-2: #2f4f74;
      --muted: #5d7188;
      --brand: #1a86e8;
      --brand-2: #0e63bd;
      --paper: #ffffff;
      --paper-2: #f2f7ff;
      --line: #d5e3f1;
      --shadow: 0 20px 60px rgba(15, 43, 85, 0.14);
      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --headline: "Syne", "Trebuchet MS", sans-serif;
      --body: "Manrope", "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--body);
      color: var(--ink);
      background: radial-gradient(circle at top left, #f9fcff 0%, #f2f7ff 45%, #eaf2fb 100%);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        radial-gradient(rgba(26, 134, 232, 0.06) 1px, transparent 1px),
        radial-gradient(rgba(14, 99, 189, 0.08) 1px, transparent 1px);
      background-size: 36px 36px, 120px 120px;
      background-position: 0 0, 30px 20px;
      pointer-events: none;
      z-index: 0;
    }

    .page {
      position: relative;
      z-index: 1;
    }

    header {
      padding: 28px 6vw 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo {
      font-family: var(--headline);
      font-size: 1.2rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      text-decoration: none;
    }

    .logo:hover {
      color: var(--ink);
    }

    .logo span {
      display: inline-flex;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: linear-gradient(140deg, var(--brand), var(--brand-2));
      box-shadow: 0 0 0 6px rgba(18, 198, 245, 0.15);
    }

    .nav-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .primary-button {
      font-family: var(--body);
      border-radius: 999px;
      border: 1px solid var(--line);
      padding: 10px 20px;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .primary-button {
      color: #ffffff;
      background: var(--brand);
      border-color: var(--brand);
      box-shadow: 0 12px 30px rgba(18, 198, 245, 0.35);
      position: relative;
      isolation: isolate;
      overflow: visible;
    }

    .primary-button:hover {
      transform: translateY(-2px);
    }

    .primary-button::before {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 999px;
      border: 1px solid rgba(18, 198, 245, 0.8);
      box-shadow: 0 0 0 0 rgba(18, 198, 245, 0.45);
      opacity: 0.9;
      z-index: 0;
      animation: pulse-ring 2.2s ease-out infinite;
      pointer-events: none;
    }

    header .primary-button::before {
      content: none;
      animation: none;
      box-shadow: none;
    }

    @keyframes pulse-ring {
      0% {
        transform: scale(1);
        opacity: 0.9;
        box-shadow: 0 0 0 0 rgba(18, 198, 245, 0.45);
      }
      65% {
        transform: scale(1.18);
        opacity: 0;
        box-shadow: 0 0 0 18px rgba(18, 198, 245, 0);
      }
      100% {
        transform: scale(1.18);
        opacity: 0;
        box-shadow: 0 0 0 18px rgba(18, 198, 245, 0);
      }
    }

    .hero {
      padding: 80px 6vw 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 48px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-2);
      border: 1px solid var(--line);
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
    }

    .hero h1 {
      font-family: var(--headline);
      font-size: clamp(2.6rem, 4vw, 4.2rem);
      line-height: 1.05;
      margin: 20px 0 16px;
      letter-spacing: -0.02em;
    }

    .hero h1 span {
      color: var(--brand);
      position: relative;
    }

    .hero h1 span::after {
      content: "";
      display: none;
    }

    .hero p {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 20px;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      list-style: none;
      color: var(--ink-2);
      font-size: 0.95rem;
    }

    .pill-row li {
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px dashed rgba(26, 134, 232, 0.28);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .pill-row li:hover {
      transform: translateY(-3px);
      border-color: rgba(18, 198, 245, 0.8);
      box-shadow: 0 0 0 1px rgba(18, 198, 245, 0.35);
    }

    .hero-art {
      position: relative;
      background: linear-gradient(140deg, #ffffff, #f1f7ff);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 32px;
      border: 1px solid rgba(26, 134, 232, 0.2);
      overflow: hidden;
      min-height: 360px;
    }

    .hero-art::before {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(18, 198, 245, 0.4), transparent 70%);
      top: -80px;
      right: -80px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: var(--radius-md);
      padding: 16px;
      border: 1px solid rgba(26, 134, 232, 0.18);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .metric-card:hover {
      transform: translateY(-4px);
      border-color: rgba(18, 198, 245, 0.7);
      box-shadow: 0 0 0 1px rgba(26, 134, 232, 0.25), 0 14px 34px rgba(15, 43, 85, 0.16);
    }

    .metric-card h3 {
      font-family: var(--headline);
      font-size: 1.4rem;
      color: var(--ink);
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .metric-card p {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .floating-tag {
      position: absolute;
      left: 28px;
      bottom: 28px;
      background: #ffffff;
      color: var(--ink);
      border: 1px solid rgba(26, 134, 232, 0.25);
      box-shadow: 0 8px 20px rgba(15, 43, 85, 0.12);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .floating-tag span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 4px rgba(18, 198, 245, 0.3);
    }

    .section {
      padding: 60px 6vw;
    }

    .section h2 {
      font-family: var(--headline);
      font-size: clamp(2rem, 3vw, 3rem);
      margin-bottom: 16px;
    }

    .section-subtitle {
      margin: 40px 0 20px;
      font-size: 1.4rem;
    }

    .section p.lead {
      max-width: 640px;
      color: var(--muted);
      margin-bottom: 28px;
      font-size: 1.05rem;
    }

    .feature-grid,
    .monitor-grid,
    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 22px;
    }

    .workflow-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 26px;
      margin: 32px 0 0;
    }

    .workflow-step {
      position: relative;
      background: rgba(255, 255, 255, 0.97);
      border: 1px solid rgba(26, 134, 232, 0.2);
      border-radius: var(--radius-md);
      box-shadow: 0 12px 30px rgba(15, 43, 85, 0.1);
      padding: 30px 24px 24px;
      min-height: 100%;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .workflow-step:hover {
      transform: translateY(-4px);
      border-color: rgba(26, 134, 232, 0.55);
      box-shadow: 0 0 0 1px rgba(26, 134, 232, 0.22), 0 14px 34px rgba(15, 43, 85, 0.14);
    }

    .step-number {
      position: absolute;
      top: -18px;
      left: 24px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(140deg, var(--brand), var(--brand-2));
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--headline);
      font-size: 1.1rem;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(26, 134, 232, 0.35);
    }

    .workflow-step h3 {
      margin: 6px 0 10px;
      font-family: var(--headline);
      font-size: 1.2rem;
      color: var(--ink);
    }

    .workflow-step p {
      color: var(--muted);
      margin-bottom: 14px;
      line-height: 1.45;
    }

    .workflow-step ul {
      list-style: none;
      display: grid;
      gap: 8px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .workflow-step ul li {
      position: relative;
      padding-left: 20px;
      line-height: 1.35;
    }

    .workflow-step ul li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--brand);
      font-weight: 700;
    }

    .cta-centered {
      margin-top: 34px;
      text-align: center;
      background: rgba(255, 255, 255, 0.95);
      border: 2px solid rgba(26, 134, 232, 0.35);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: 0 12px 30px rgba(15, 43, 85, 0.08);
    }

    .cta-centered .primary-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .cta-subtext {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.96);
      padding: 22px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(26, 134, 232, 0.16);
      box-shadow: 0 12px 30px rgba(15, 43, 85, 0.1);
      min-height: 220px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(18, 198, 245, 0.7);
      box-shadow: 0 0 0 1px rgba(26, 134, 232, 0.25), 0 14px 34px rgba(15, 43, 85, 0.16);
    }

    .dated-card {
      background: rgba(239, 243, 247, 0.96);
      border-color: rgba(147, 161, 176, 0.34);
      box-shadow: 0 10px 24px rgba(15, 43, 85, 0.08);
    }

    .dated-card h3,
    .dated-card p,
    .dated-card ul {
      color: #516476;
    }

    .dated-card:hover {
      border-color: rgba(126, 142, 158, 0.46);
      box-shadow: 0 0 0 1px rgba(147, 161, 176, 0.22), 0 12px 28px rgba(15, 43, 85, 0.1);
    }

    .highlight-card {
      border-color: rgba(18, 198, 245, 0.7);
      box-shadow: 0 0 0 1px rgba(26, 134, 232, 0.35), 0 12px 30px rgba(15, 43, 85, 0.14);
      position: relative;
      isolation: isolate;
    }

    .highlight-card:hover {
      border-color: rgba(18, 198, 245, 0.9);
      box-shadow: 0 0 0 2px rgba(26, 134, 232, 0.45), 0 16px 38px rgba(15, 43, 85, 0.18);
    }

    .highlight-card::after {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: calc(var(--radius-md) + 10px);
      border: 1px solid rgba(18, 198, 245, 0.5);
      opacity: 0.8;
      z-index: -1;
      animation: pulse-ring 2.6s ease-out infinite;
      pointer-events: none;
    }

    .feature-card h3 {
      font-family: var(--headline);
      font-size: 1.1rem;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.4;
    }

    .feature-card ul {
      list-style: none;
      display: grid;
      gap: 6px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .feature-card ul li::before {
      content: "•";
      color: var(--brand);
      margin-right: 6px;
    }

    .split-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }

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

    .details-advanced {
      margin-top: 40px;
    }

    .details-advanced summary {
      cursor: pointer;
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .details-advanced .monitor-grid {
      margin-top: 20px;
    }

    .diagram-container {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      max-width: 1360px;
      margin-left: auto;
      margin-right: auto;
      align-items: stretch;
    }

    .diagram-container img {
      width: 100%;
      height: clamp(340px, 40vw, 560px);
      object-fit: contain;
      border-radius: var(--radius-md);
      border: 1px solid rgba(26, 134, 232, 0.18);
      box-shadow: 0 12px 30px rgba(15, 43, 85, 0.1);
      background: rgba(255, 255, 255, 0.92);
      padding: 8px;
      display: block;
    }

    .booking-shell {
      max-width: 1100px;
      margin: 0 auto;
    }

    .booking-shell h1 {
      font-family: var(--headline);
      font-size: clamp(2rem, 3vw, 2.8rem);
      margin-bottom: 16px;
    }

    .booking-embed {
      background: rgba(255, 255, 255, 0.97);
      border: 1px solid rgba(26, 134, 232, 0.2);
      border-radius: var(--radius-lg);
      padding: 12px;
      box-shadow: 0 12px 30px rgba(15, 43, 85, 0.1);
    }

    .booking-embed iframe {
      width: 100%;
      min-height: 860px;
      border: 0;
      border-radius: var(--radius-md);
      background: #ffffff;
      display: block;
    }

    .booking-setup-card {
      max-width: 760px;
      margin: 0 auto;
      min-height: auto;
    }

    .quote {
      background: #f2f7ff;
      color: var(--ink);
      padding: 42px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(26, 134, 232, 0.16);
    }

    .quote::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(26, 134, 232, 0.16);
      right: -60px;
      top: -40px;
    }

    .quote p {
      font-size: 1.15rem;
      max-width: 620px;
      line-height: 1.5;
    }

    .quote span {
      display: block;
      margin-top: 20px;
      font-size: 0.95rem;
      opacity: 0.8;
    }

    .cta {
      background: linear-gradient(140deg, rgba(26, 134, 232, 0.16), rgba(14, 99, 189, 0.08));
      border-radius: var(--radius-lg);
      padding: 48px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      align-items: center;
      border: 1px solid rgba(26, 134, 232, 0.2);
    }

    .cta h2 {
      font-family: var(--headline);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    footer {
      padding: 40px 6vw 60px;
      color: var(--muted);
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: space-between;
      border-top: 1px solid rgba(26, 134, 232, 0.18);
      margin-top: 40px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 22px;
    }

    .footer-links a {
      color: var(--ink-2);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--brand);
    }

    .cookie-banner {
      position: fixed;
      left: 50%;
      bottom: 20px;
      transform: translate(-50%, 14px);
      width: min(680px, calc(100% - 28px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(26, 134, 232, 0.24);
      border-radius: 14px;
      padding: 12px 14px;
      box-shadow: 0 16px 30px rgba(15, 43, 85, 0.16);
      backdrop-filter: blur(5px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
      z-index: 40;
    }

    .cookie-banner.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .cookie-banner.is-hidden {
      display: none;
    }

    .cookie-banner p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.45;
      color: var(--ink-2);
    }

    .cookie-banner a {
      color: var(--brand-2);
    }

    .cookie-banner-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .cookie-button {
      font-family: var(--body);
      border-radius: 999px;
      border: 1px solid var(--line);
      padding: 8px 14px;
      font-size: 0.88rem;
      line-height: 1;
      cursor: pointer;
      transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
    }

    .cookie-button:hover {
      transform: translateY(-1px);
    }

    .cookie-button:focus-visible {
      outline: 2px solid rgba(26, 134, 232, 0.6);
      outline-offset: 2px;
    }

    .cookie-button-muted {
      background: #ffffff;
      color: var(--ink-2);
    }

    .cookie-button-muted:hover {
      border-color: rgba(26, 134, 232, 0.35);
    }

    .cookie-button-primary {
      background: var(--brand);
      border-color: var(--brand);
      color: #ffffff;
    }

    .cookie-button-primary:hover {
      background: var(--brand-2);
      border-color: var(--brand-2);
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: all 0.7s ease;
    }

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

    .stagger > * {
      transition-delay: calc(var(--i, 1) * 120ms);
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero {
        padding-top: 60px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-art {
        min-height: auto;
      }

      .cta {
        padding: 32px;
      }

      .booking-embed iframe {
        min-height: 760px;
      }

      .diagram-container {
        grid-template-columns: 1fr;
      }

      .diagram-container img {
        height: auto;
      }

      .cookie-banner {
        width: calc(100% - 22px);
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
      }

      .cookie-banner-actions {
        justify-content: flex-end;
      }
    }
