/* ─── Reset ─────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    /* ─── Tokens ─────────────────────────────────────────── */
    :root {
      --purple: #6c47ff;
      --purple2: #9b45d5;
      --pink: #e8538a;
      --orange: #ff9d43;
      --blue: #3b82f6;
      --blue2: #8b5cf6;
      --green: #10b981;
      --dark: #1a0f33;
      --body: #4a3f6b;
      --muted: #6b5f8a;
      --white: #ffffff;
      --page-bg: #f9f8ff;

      --font-head: 'Outfit', sans-serif;
      --font-body: 'DM Sans', sans-serif;

      --shadow-card: 0 2px 12px rgba(44, 28, 100, .06), 0 8px 32px rgba(44, 28, 100, .08);
      --shadow-hover: 0 4px 20px rgba(44, 28, 100, .10), 0 16px 48px rgba(44, 28, 100, .12);
      --shadow-media: 0 4px 24px rgba(44, 28, 100, .14);
      --shadow-big: 0 8px 48px rgba(44, 28, 100, .16);
      --radius-card: 22px;
      --radius-media: 14px;
    }

    /* ─── Base ───────────────────────────────────────────── */
    body {
      background: var(--page-bg);
      color: var(--dark);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── Scroll-reveal base states ─────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }

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

    .reveal-delay-1 {
      transition-delay: .1s;
    }

    .reveal-delay-2 {
      transition-delay: .2s;
    }

    .reveal-delay-3 {
      transition-delay: .3s;
    }

    /* ─── Hero ───────────────────────────────────────────── */
    .hero {
      position: relative;
      text-align: center;
      padding: 72px 24px 64px;
      overflow: hidden;
      background: #080514;
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 70% at 20% -10%, rgba(108, 71, 255, .55) 0%, transparent 55%),
        radial-gradient(ellipse 60% 55% at 85% 90%, rgba(232, 83, 138, .40) 0%, transparent 52%),
        radial-gradient(ellipse 55% 45% at 65% 40%, rgba(255, 157, 67, .22) 0%, transparent 48%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(59, 130, 246, .28) 0%, transparent 48%);
      animation: meshShift 14s ease-in-out infinite alternate;
    }

    @keyframes meshShift {
      0% {
        filter: blur(0px);
        opacity: 1;
      }

      50% {
        filter: blur(2px);
        opacity: .85;
      }

      100% {
        filter: blur(0px);
        opacity: 1;
      }
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .hero-content {
      position: relative;
    }

    .hero-logo {
      max-width: 360px;
      width: 100%;
      height: auto;
      margin-bottom: 24px;
      filter: drop-shadow(0 0 40px rgba(108, 71, 255, .55));
      animation: logoPulse 6s ease-in-out infinite;
    }

    @keyframes logoPulse {

      0%,
      100% {
        filter: drop-shadow(0 0 40px rgba(108, 71, 255, .55));
      }

      50% {
        filter: drop-shadow(0 0 60px rgba(232, 83, 138, .50));
      }
    }

    .hero-tagline {
      color: rgba(255, 255, 255, .82);
      font-size: 18px;
      line-height: 1.65;
      max-width: 600px;
      margin: 0 auto 24px;
      font-family: var(--font-body);
    }

    .hero-tagline strong {
      color: #fff;
    }

    .hero-accent {
      color: #b8a0ff;
      font-weight: 600;
    }

    .hero-badge {
      display: inline-block;
      padding: 6px 20px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .18);
      color: rgba(255, 255, 255, .65);
      font-size: 13px;
      letter-spacing: .05em;
      font-family: var(--font-head);
      font-weight: 600;
      backdrop-filter: blur(8px);
    }

    /* ─── Section stripe wrappers ────────────────────────── */
    .stripe {
      padding: 64px 28px 52px;
    }

    .stripe-warm {
      background: linear-gradient(180deg, #fff8f3 0%, #ffeef8 100%);
    }

    .stripe-blue {
      background: linear-gradient(180deg, #f0f5ff 0%, #eaecff 100%);
    }

    .stripe-purple {
      background: linear-gradient(180deg, #f3eeff 0%, #ebe4ff 100%);
    }

    .stripe-green {
      background: linear-gradient(180deg, #f0fdf9 0%, #e6fbf3 100%);
    }

    .stripe-light {
      background: var(--page-bg);
    }

    /* ─── Section heading block ──────────────────────────── */
    .section-label {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      font-family: var(--font-head);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .label-warm {
      background: #fde8f2;
      color: #b03470;
    }

    .label-blue {
      background: #ddeeff;
      color: #1a55b0;
    }

    .label-purple {
      background: #ece5ff;
      color: #5530d0;
    }

    .label-orange {
      background: #fff0de;
      color: #b05a10;
    }

    .label-green {
      background: #d8fef0;
      color: #0e7a55;
    }

    .section-heading {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .grad-pink {
      background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .grad-blue {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .grad-purple {
      background: linear-gradient(135deg, var(--purple) 0%, var(--purple2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .grad-green {
      background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-sub {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
      max-width: 580px;
      margin: 0 auto 32px;
    }

    .section-head-block {
      text-align: center;
      margin-bottom: 36px;
    }

    /* ─── Feature cards ──────────────────────────────────── */
    .cards {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .feat-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      background: var(--white);
      border-radius: var(--radius-card);
      padding: 32px 36px;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(108, 71, 255, .07);
      transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
    }

    .feat-card.horizontal {
      flex-direction: row;
      text-align: left;
      max-width: 1040px;
      margin: 0 auto 28px;
      gap: 44px;
    }

    .feat-card.horizontal .feat-media {
      flex: 0 0 10%;
      display: flex;
      justify-content: center;
    }

    .feat-card.horizontal .media {
      max-height: 800px;
      width: auto;
    }

    .feat-card.horizontal .feat-text {
      flex: 1;
    }

    .feat-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-3px);
      border-color: rgba(108, 71, 255, .18);
    }

    .feat-card.border-warm:hover {
      border-color: rgba(232, 83, 138, .22);
    }

    .feat-card.border-blue:hover {
      border-color: rgba(59, 130, 246, .22);
    }

    .feat-card.border-orange:hover {
      border-color: rgba(255, 157, 67, .22);
    }

    .feat-card.border-green:hover {
      border-color: rgba(16, 185, 129, .22);
    }

    .feat-media {
      width: 100%;
      flex-shrink: 0;
    }

    .feat-text {
      width: 100%;
    }

    .feat-label {
      display: inline-block;
      padding: 3px 12px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      font-family: var(--font-head);
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .feat-heading {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1.18em;
      line-height: 1.3;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .feat-desc {
      color: var(--body);
      font-size: .92em;
      line-height: 1.7;
    }

    .feat-desc strong {
      color: var(--purple);
      font-weight: 600;
    }

    .feat-desc em {
      color: var(--pink);
      font-style: normal;
      font-weight: 600;
    }

    /* ─── Media ──────────────────────────────────────────── */
    .media {
      width: 100%;
      height: auto;
      border-radius: var(--radius-media);
      display: block;
      box-shadow: var(--shadow-media);
    }

    .media-wide {
      display: block;
      width: 88%;
      height: auto;
      border-radius: 18px;
      box-shadow: var(--shadow-big);
      margin: 12px auto 36px;
    }

    /* ─── Highlight box ──────────────────────────────────── */
    .highlight-box {
      background: var(--white);
      border: 1.5px solid rgba(108, 71, 255, .12);
      border-radius: var(--radius-card);
      padding: 32px 36px;
      box-shadow: var(--shadow-card);
    }

    .highlight-row {
      display: flex;
      align-items: center;
      gap: 32px;
      justify-content: center;
      flex-wrap: nowrap;
    }

    .highlight-row .media {
      flex: 0 0 min(520px, 35%);
      max-width: 520px;
    }

    .highlight-row .highlight-desc {
      flex: 1 1 48%;
      max-width: 520px;
      text-align: left;
    }

    .highlight-desc {
      color: var(--body);
      font-size: .93em;
      line-height: 1.8;
    }

    .highlight-desc strong {
      color: var(--dark);
      font-weight: 700;
    }

    /* ─── Callout ────────────────────────────────────────── */
    .callout {
      background: linear-gradient(135deg, #f0eaff 0%, #fce9f3 50%, #fff4e8 100%);
      border: 1.5px solid rgba(108, 71, 255, .18);
      border-radius: 18px;
      padding: 28px 36px;
      margin-top: 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .callout::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(108, 71, 255, .12) 0%, transparent 70%);
    }

    .callout::after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: -50px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232, 83, 138, .10) 0%, transparent 70%);
    }

    .callout-text {
      color: #3a2d6b;
      font-size: 1em;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .callout-text strong {
      color: var(--purple);
      font-family: var(--font-head);
      font-weight: 700;
    }

    .callout-text em {
      color: var(--pink);
      font-style: normal;
      font-weight: 600;
    }

    /* ─── Feature table ──────────────────────────────────── */
    .table-wrap {
      border-radius: 18px;
      overflow: hidden;
      width: 90%;
      margin: 0 auto 40px;
      box-shadow: var(--shadow-card);
      border: 1.5px solid rgba(108, 71, 255, .12);
    }

    .feat-table {
      border-collapse: collapse;
      width: 100%;
      background: var(--white);
      font-family: var(--font-body);
    }

    .feat-table th {
      background: linear-gradient(135deg, var(--purple) 0%, var(--blue2) 100%);
      color: var(--white);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .92em;
      padding: 16px 24px;
      text-align: center;
      border: none;
    }

    .feat-table th:first-child {
      text-align: left;
      background: linear-gradient(135deg, #3a22cc 0%, var(--purple) 100%);
    }

    .feat-table td {
      padding: 13px 16px;
      border-top: 1px solid rgba(108, 71, 255, .08);
      border-left: 1px solid rgba(108, 71, 255, .08);
      text-align: center;
      color: var(--dark);
      font-size: .9em;
    }

    .feat-table td:first-child {
      border-left: none;
      text-align: left;
      color: var(--body);
      font-weight: 500;
    }

    .feat-table tr:nth-child(even) td {
      background: rgba(108, 71, 255, .025);
    }

    .feat-table tr:hover td {
      background: rgba(108, 71, 255, .055);
      transition: background .2s;
    }

    .check {
      color: #10b981;
      font-size: 1.15em;
      font-weight: 700;
    }

    .cross {
      color: #f43f5e;
      font-size: 1.15em;
      font-weight: 700;
    }

    .note-mark {
      font-size: .82em;
      font-weight: 700;
      vertical-align: super;
      line-height: 1;
      margin-left: 4px;
      opacity: .85;
    }

    .table-notes {
      margin-top: 18px;
      color: var(--body);
      font-size: .88em;
      line-height: 1.7;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 12px;
    }

    .table-notes p {
      margin: 6px 0;
    }

    .table-notes span {
      font-weight: 700;
      color: var(--dark);
    }

    /* ─── Divider ────────────────────────────────────────── */
    .divider {
      border: none;
      border-top: 1.5px solid rgba(108, 71, 255, .1);
      margin: 4px 40px;
    }

    /* ─── Footer ─────────────────────────────────────────── */
    .footer {
      background: linear-gradient(160deg, #120a2e 0%, #0a1535 100%);
      color: rgba(255, 255, 255, .7);
      text-align: center;
      padding: 44px 24px;
      font-size: 14px;
      line-height: 1.7;
      font-family: var(--font-body);
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(108, 71, 255, .2) 0%, transparent 70%);
    }

    .footer a {
      color: #b8a0ff;
      text-decoration: none;
      font-weight: 600;
      transition: color .2s;
    }

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

    .footer p {
      position: relative;
    }

    /* ─── FAQ Accordion ──────────────────────────────────── */
    .faq-section {
      max-width: 820px;
      margin: 0 auto;
      width: 90%;
    }

    .faq-item {
      background: var(--white);
      border: 1.5px solid rgba(108, 71, 255, .10);
      border-radius: 16px;
      box-shadow: var(--shadow-card);
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color .25s ease, box-shadow .25s ease;
    }

    .faq-item:hover {
      border-color: rgba(108, 71, 255, .22);
      box-shadow: var(--shadow-hover);
    }

    .faq-item[open] {
      border-color: rgba(108, 71, 255, .28);
    }

    .faq-item>summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 22px;
      cursor: pointer;
      list-style: none;
      -webkit-user-select: none;
      user-select: none;
      outline: none;
    }

    .faq-item>summary::-webkit-details-marker {
      display: none;
    }

    .faq-q {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .97em;
      color: var(--dark);
      line-height: 1.4;
      flex: 1;
    }

    .faq-chev {
      flex-shrink: 0;
      color: var(--purple);
      opacity: .7;
      transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s;
    }

    .faq-item[open]>summary .faq-chev {
      transform: rotate(180deg);
      opacity: 1;
    }

    .faq-item>summary:hover .faq-chev {
      opacity: 1;
    }

    .faq-body {
      padding: 0 22px 18px;
      color: var(--body);
      font-size: .92em;
      line-height: 1.75;
      animation: faqReveal .28s ease;
    }

    .faq-body p+p {
      margin-top: 10px;
    }

    .faq-body strong {
      color: var(--dark);
      font-weight: 700;
    }

    @keyframes faqReveal {
      from {
        opacity: 0;
        transform: translateY(-6px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── Media click cursor ─────────────────────────────── */
    .media,
    .media-wide {
      cursor: zoom-in;
    }

    /* ─── Video overlay wrapper & Read Manual button ──────── */
    .video-btn-wrap {
      position: relative;
      display: block;
    }

    .video-btn-wrap>.media {
      display: block;
      width: 100%;
    }

    .read-manual-btn {
      position: absolute;
      left: 31%;
      bottom: 25%;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 20px;
      border-radius: 999px;
      background: rgba(15, 8, 40, 0.3);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1.5px solid rgba(148, 110, 255, 0.45);
      color: #e8ddff;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      white-space: nowrap;
      z-index: 10;
      box-shadow: 0 4px 20px rgba(108, 71, 255, 0.25), 0 1px 4px rgba(0, 0, 0, 0.4);
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
      pointer-events: auto;
    }

    .read-manual-btn:hover {
      background: rgba(108, 71, 255, 0.72);
      border-color: rgba(180, 150, 255, 0.7);
      box-shadow: 0 6px 28px rgba(108, 71, 255, 0.5), 0 1px 6px rgba(0, 0, 0, 0.4);
      transform: translateX(-50%) translateY(-2px);
      color: #fff;
    }

    .read-manual-btn svg {
      flex-shrink: 0;
      opacity: 0.85;
    }

    /* ─── Responsive ─────────────────────────────────────── */
    @media (max-width: 680px) {
      .feat-card {
        padding: 24px 20px;
      }

      .stripe {
        padding: 48px 16px 40px;
      }

      .hero {
        padding: 52px 16px 48px;
      }

      .hero-logo {
        max-width: 240px;
      }

      .media-wide {
        width: 96%;
      }

      .table-wrap {
        width: 98%;
      }

      .highlight-box {
        padding: 24px 20px;
      }

      .feat-card.horizontal {
        flex-direction: column;
        gap: 24px;
        padding: 24px 20px;
      }

      .feat-card.horizontal .feat-media,
      .feat-card.horizontal .feat-text {
        width: 100%;
        flex: none;
      }

      .feat-card.horizontal .media {
        max-height: none;
        width: 100%;
      }
    }