  :root {
      --bg: #ffffff;
      --bg-soft: #f7f3fb;
      --dark: #241238;
      --muted: #6a6073;
      --line: #e7deee;
      --accent: #e84cff;
      --accent-dark: #b92bd0;
      --card: #ffffff;
      --green: #e84cff;
      --shadow: 0 24px 60px rgba(30, 20, 10, 0.10);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      background: var(--bg);
      color: var(--dark);
      line-height: 1.45;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      overflow: hidden;
    }

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

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 30px;
      letter-spacing: -1.2px;
    }

    .brand-dot {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #332641;
      font-size: 15px;
      font-weight: 600;
		transition: 180ms ease;
    }

    .nav-cta {
      padding: 12px 18px;
      border-radius: 999px;
      background: var(--dark);
      color: #fff;
      font-weight: 800;
    }

    .hero {
      position: relative;
      padding: 70px 0 90px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid rgba(119, 73, 181, .22);
      border-radius: 999px;
      background: rgba(119, 73, 181, .08);
      color: #5a3a84;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .eyebrow span {
      width: 8px;
      height: 8px;
      display: inline-block;
      border-radius: 999px;
      background: var(--accent);
    }

    h1 {
      margin: 0;
      max-width: 720px;
      font-size: clamp(46px, 6vw, 86px);
      line-height: .92;
      letter-spacing: -4.5px;
      font-weight: 950;
    }

    .underline {
      position: relative;
      white-space: nowrap;
    }

    .underline::after {
      content: "";
      position: absolute;
      left: 2px;
      right: 4px;
      bottom: 6px;
      height: 10px;
      background: rgba(232, 76, 255, .16);
      z-index: -1;
      border-radius: 999px;
    }

    .lead {
      max-width: 660px;
      margin: 28px 0 0;
      color: #332641;
      font-size: clamp(19px, 2.2vw, 25px);
      line-height: 1.35;
      font-weight: 650;
    }

    .lead strong {
      color: var(--dark);
    }

    .micro {
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 17px;
      max-width: 620px;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
    }

    .primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 0 28px;
      border-radius: 999px;
      background: #6d3faa;
      color: #fff;
      font-size: 18px;
      font-weight: 900;
      box-shadow: 0 10px 22px rgba(140, 95, 203, .22);
      border: 1px solid rgba(255,255,255,.08);
      transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    }

    .primary:hover {
      transform: translateY(-2px);
      background: #7749b5;
      box-shadow: 0 12px 24px rgba(140, 95, 203, .22);
    }

    .secondary {
      display: inline-flex;
      min-height: 58px;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
      border: 1px solid #e7deee;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      color: #241238;
      font-size: 17px;
      font-weight: 850;
    }

    .trust {
      margin-top: 18px;
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: #6a6073;
      font-size: 14px;
      font-weight: 700;
    }

    .trust span::before {
      content: "✓";
      margin-right: 6px;
      color: var(--green);
      font-weight: 900;
    }

    .visual-wrap {
      position: relative;
    }

    .dashboard {
      position: relative;
      padding: 22px;
      border: 1px solid #e7deee;
      border-radius: 34px;
      background: rgba(255,255,255,.82);
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .dashboard-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2px 2px 18px;
    }

    .window-dots {
      display: flex;
      gap: 7px;
    }

    .window-dots i {
      display: block;
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: #d7cde2;
    }

    .dash-title {
      font-size: 13px;
      font-weight: 900;
      color: #6a6073;
      letter-spacing: .4px;
      text-transform: uppercase;
    }

    .funnel-card {
      border-radius: 26px;
      background: #2b1545;
      color: #fff;
      padding: 24px;
      overflow: hidden;
    }

    .funnel-top {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .funnel-top h2 {
      margin: 0;
      font-size: 28px;
      line-height: 1.02;
      letter-spacing: -1.2px;
    }

    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(23,168,100,.17);
      color: #68e0a5;
      font-weight: 900;
      font-size: 12px;
      white-space: nowrap;
    }

    .live-badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #68e0a5;
    }

    .funnel {
      position: relative;
      display: grid;
      gap: 26px;
      padding: 14px 0 10px;
      overflow: visible;
    }

    .funnel::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 36px;
      bottom: 36px;
      width: 3px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: linear-gradient(to bottom, rgba(232, 76, 255, .28), rgba(232, 76, 255, .08));
      z-index: 0;
    }

    .stage {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      min-height: 88px;
      padding: 18px 20px;
      border-radius: 22px;
      background: #ffffff;
      color: var(--dark);
      box-shadow: 0 18px 34px rgba(35, 15, 50, .10);
    }

    .stage:not(:last-child)::after {
      content: "↓";
      position: absolute;
      left: 50%;
      bottom: -24px;
      transform: translateX(-50%);
      color: #e84cff;
      font-size: 24px;
      font-weight: 900;
      line-height: 1;
      z-index: 2;
    }

    .stage:nth-child(1) {
      width: 100%;
      justify-self: center;
    }

    .stage:nth-child(2) {
      width: 78%;
      justify-self: center;
      background: #f7f3fb;
    }

    .stage:nth-child(3) {
      width: 56%;
      justify-self: center;
      background: #fdeaff;
      border: 2px solid #e84cff;
    }

    .stage-label {
      font-size: 14px;
      color: #6a6073;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .4px;
    }

    .stage-number {
      margin-top: 2px;
      font-size: 32px;
      line-height: 1;
      letter-spacing: -1.3px;
      font-weight: 950;
    }

    .stage-note {
      color: #6a6073;
      font-size: 13px;
      font-weight: 750;
    }

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

    .metric {
      padding: 10px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.08);
    }

    .metric strong {
      display: block;
      font-size: 20px;
      letter-spacing: -.5px;
    }

    .metric span {
      display: block;
      margin-top: 2px;
      color: #bebebe;
      font-size: 12px;
      font-weight: 750;
    }

    .floating {
      position: absolute;
      right: -28px;
      bottom: -30px;
      width: 210px;
      padding: 18px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid #e7deee;
      box-shadow: 0 24px 50px rgba(0,0,0,.12);
    }

    .floating b {
      display: block;
      font-size: 15px;
      margin-bottom: 6px;
    }

    .floating p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 650;
    }

    section {
      padding: 86px 0;
    }

    .section-title {
      max-width: 760px;
      margin: 0 auto 44px;
      text-align: center;
    }

    .section-title h2 {
      margin: 0;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1;
      letter-spacing: -2.6px;
    }

    .section-title p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 19px;
      font-weight: 600;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .step {
      padding: 30px;
      border: 1px solid #e7deee;
      border-radius: var(--radius);
      background: var(--card);
      box-shadow: 0 12px 30px rgba(30, 20, 10, .05);
    }

    .step-num {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(180deg, #f7eeff 0%, #f0ddff 100%);
      color: #7749b5;
      border: 1px solid #e0c6ff;
      box-shadow: 0 8px 18px rgba(119, 73, 181, .10);
      font-weight: 950;
      margin-bottom: 20px;
    }

    .step h3 {
      margin: 0;
      font-size: 25px;
      letter-spacing: -.8px;
    }

    .step p {
      color: var(--muted);
      font-size: 16px;
      font-weight: 600;
      margin: 12px 0 0;
    }

    .compare {
      background: #2b1545;
      color: #fff;
    }

    .compare .section-title p {
      color: #c7c7c7;
    }

    .comparison {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      max-width: 980px;
      margin: 0 auto;
    }

    .compare-card {
      padding: 34px;
      border-radius: 30px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
    }

    .compare-card.highlight {
      background: #fff;
      color: var(--dark);
    }

    .compare-card h3 {
      margin: 0 0 18px;
      font-size: 30px;
      letter-spacing: -1.2px;
    }

    .compare-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 13px;
    }

    .compare-card li {
      font-size: 17px;
      font-weight: 700;
      color: #d8d8d8;
    }

    .compare-card.highlight li {
      color: #332641;
    }

    .compare-card li::before {
      content: "×";
      margin-right: 10px;
      color: #f08cff;
      font-weight: 950;
    }

    .compare-card.highlight li::before {
      content: "✓";
      color: var(--green);
    }

    .example {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: center;
    }

    .example-story {
      padding: 34px;
      border-radius: 32px;
      background: #fff;
      border: 1px solid #e7deee;
      box-shadow: 0 14px 38px rgba(30, 20, 10, .06);
    }

    .example-story h2 {
      margin: 0;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1;
      letter-spacing: -2.4px;
    }

    .example-story p {
      color: var(--muted);
      font-size: 18px;
      font-weight: 600;
    }

    .mini-results {
      display: grid;
      gap: 12px;
    }

    .result {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid #e7deee;
    }

    .result span {
      color: var(--muted);
      font-weight: 800;
    }

    .result strong {
      font-size: 26px;
      letter-spacing: -1px;
    }

    .pricing {
      text-align: center;
    }

    .price-card {
      max-width: 560px;
      margin: 0 auto;
      padding: 38px;
      border-radius: 34px;
      background: #fff;
      border: 1px solid #e7deee;
      box-shadow: var(--shadow);
    }

    .price {
      font-size: 72px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -4px;
      margin: 14px 0 8px;
    }

    .price small {
      font-size: 22px;
      letter-spacing: -.5px;
      color: var(--muted);
    }

    .price-card p {
      margin: 0 0 26px;
      color: var(--muted);
      font-size: 18px;
      font-weight: 650;
    }

    .faq {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    details {
      padding: 22px 24px;
      border: 1px solid #e7deee;
      border-radius: 22px;
      background: #fff;
    }

    summary {
      cursor: pointer;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -.3px;
    }

    details p {
      margin: 14px 0 0;
      color: var(--muted);
      font-weight: 600;
    }

    .final-cta {
      padding: 90px 0 110px;
      text-align: center;
      background: #2b1545;
      color: #fff;
    }

    .final-cta h2 {
      margin: 0;
      font-size: clamp(38px, 5vw, 72px);
      line-height: .98;
      letter-spacing: -3px;
    }

    .final-cta p {
      max-width: 640px;
      margin: 20px auto 30px;
      color: #d0d0d0;
      font-size: 20px;
      font-weight: 600;
    }

    footer {
      background: #1f0f33;
      color: #bcbcbc;
      padding: 26px 0;
      font-size: 14px;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }


    .templates-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .template-card {
      overflow: hidden;
      border: 1px solid #e7deee;
      border-radius: 30px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(30, 20, 10, .06);
    }

    .template-image {
      height: 240px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      background: #f7f1fc;
      border-bottom: 1px solid #e7deee;
    }

    .template-image {
      cursor: zoom-in;
    }

    .template-image img {
      display: block;
      width: 350px;
      max-width: 100%;
      height: 190px;
      object-fit: cover;
      object-position: top center;
      border-radius: 16px;
      box-shadow: 0 8px 22px rgba(36, 18, 56, .08);
      image-rendering: auto;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .template-image:hover img {
      transform: scale(1.04);
      box-shadow: 0 14px 34px rgba(36, 18, 56, .16);
    }

    .image-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 34px;
      background: rgba(20, 10, 34, .78);
      backdrop-filter: blur(8px);
      cursor: zoom-out;
    }

    .image-modal.is-open {
      display: flex;
    }

    .image-modal img {
      max-width: min(1120px, 94vw);
      max-height: 88vh;
      object-fit: contain;
      border-radius: 24px;
      box-shadow: 0 30px 90px rgba(0,0,0,.38);
      background: #fff;
    }

    .image-modal-close {
      position: absolute;
      top: 22px;
      right: 24px;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      color: #241238;
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 10px 26px rgba(0,0,0,.16);
    }

    .template-body {
      padding: 26px;
    }

    .template-kicker {
      display: inline-flex;
      padding: 7px 10px;
      margin-bottom: 14px;
      border-radius: 999px;
      background: #f4eaff;
      color: #7749b5;
      border: 1px solid #e0c6ff;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .template-body h3 {
      margin: 0;
      font-size: 25px;
      letter-spacing: -.9px;
    }

    .template-body p {
      margin: 12px 0 18px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 650;
    }

    .template-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 9px;
      color: #332641;
      font-size: 15px;
      font-weight: 750;
    }

    .template-list li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--green);
      font-weight: 950;
    }

    .after-trial-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .after-trial-item {
      padding: 20px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid #e7deee;
      box-shadow: 0 10px 24px rgba(30, 20, 10, .04);
    }

    .after-trial-item strong {
      display: block;
      margin-bottom: 6px;
      font-size: 18px;
      letter-spacing: -.4px;
    }

    .after-trial-item span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }

    

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

      .hero {
        padding: 40px 0 70px;
      }

      .hero-grid,
      .example,
      .comparison {
        grid-template-columns: 1fr;
      }

      .steps,
      .templates-grid,
      .after-trial-grid {
        grid-template-columns: 1fr;
      }

      h1 {
        letter-spacing: -2.5px;
      }

      .floating {
        position: static;
        width: auto;
        margin-top: 16px;
      }

      .stage:nth-child(2),
      .stage:nth-child(3) {
        width: 100%;
      }

      .metric-strip {
        grid-template-columns: 1fr;
      }
    }

    