:root {
      --ap-bg: #0b0b0f;
      --ap-surface-raised: #141418;
      --ap-panel: #17171c;
      --ap-panel-strong: #1c1c22;
      --ap-line-soft: rgba(255, 255, 255, 0.06);
      --ap-line: rgba(255, 255, 255, 0.1);
      --ap-copy: #ffffff;
      --ap-copy-muted: #a1a1aa;
      --ap-copy-faint: #6b6b75;
      --ap-accent: #6c4dff;
      --ap-accent-hover: #5a3dff;
      --ap-accent-soft: #8b75ff;
      --ap-radius-sm: 8px;
      --ap-radius: 14px;
      --ap-radius-lg: 22px;
      --ap-radius-xl: 32px;
      --ap-measure: 1100px;
    }

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

    html, body {
      background: var(--ap-bg);
      color: var(--ap-copy);
      font-family: 'Geist', system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
      overflow-x: hidden;
    }

    
    .ap-scene-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
      background-position: center center;
      -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 90%);
              mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 90%);
    }
    
    .ap-scene-grid::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 1px 1px, rgba(139,117,255,0.35) 1px, transparent 1.5px);
      background-size: 64px 64px;
      background-position: center center;
      -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 0%, transparent 80%);
              mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 0%, transparent 80%);
      opacity: .55;
    }

    
    .ap-atmosphere {
      position: fixed;
      pointer-events: none;
      z-index: 0;
      filter: blur(60px);
      border-radius: 50%;
    }
    .ap-atmosphere--top {
      top: -260px; left: 50%;
      transform: translateX(-50%);
      width: 900px; height: 520px;
      background: radial-gradient(ellipse, rgba(108,77,255,0.22) 0%, rgba(108,77,255,0) 70%);
    }
    .ap-atmosphere--lower-left {
      bottom: -200px; left: -180px;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(108,77,255,0.14) 0%, rgba(108,77,255,0) 65%);
    }

    
    .ap-pointer-glow {
      position: fixed;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(108,77,255,0.22) 0%, rgba(108,77,255,0) 60%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 1;
      transition: opacity .4s ease;
      mix-blend-mode: screen;
      opacity: 0;
    }

    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    .ap-frame { max-width: var(--ap-measure); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

    
    .ap-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
      will-change: opacity, transform;
    }
    .ap-reveal.is-in-view { opacity: 1; transform: none; }
    .ap-reveal-delay-1 { transition-delay: .08s; }
    .ap-reveal-delay-2 { transition-delay: .16s; }
    .ap-reveal-delay-3 { transition-delay: .24s; }
    .ap-reveal-delay-4 { transition-delay: .32s; }
    .ap-reveal-delay-5 { transition-delay: .4s; }

    
    .ap-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      transition: transform .25s cubic-bezier(.16,1,.3,1), background .2s ease, box-shadow .25s ease;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .ap-button--primary {
      background: var(--ap-accent);
      color: #fff;
      box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 8px 24px -8px rgba(108,77,255,0.6);
    }
    .ap-button--primary::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(120px circle at var(--ap-cursor-x, 50%) var(--ap-cursor-y, 50%), rgba(255,255,255,0.35), transparent 70%);
      opacity: 0;
      transition: opacity .25s ease;
      z-index: -1;
    }
    .ap-button--primary:hover::before { opacity: 1; }
    .ap-button--primary:hover {
      box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 14px 36px -10px rgba(108,77,255,0.8);
    }
    .ap-button--dark {
      background: #0b0b0f;
      color: #fff;
      border: 1px solid var(--ap-line);
    }
    .ap-button--dark:hover { background: #15151a; }
    .ap-button--large { padding: 14px 26px; font-size: 15px; }

    .ap-eyebrow {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--ap-line-soft);
      border-radius: 999px;
      font-size: 12px;
      color: var(--ap-copy-muted);
      letter-spacing: 0.01em;
    }

    
    .ap-site-bar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(11, 11, 15, 0.72);
      border-bottom: 1px solid var(--ap-line-soft);
    }
    .ap-nav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
    }
    .ap-wordmark {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 17px;
      letter-spacing: -0.01em;
    }
    .ap-wordmark__mark {
      width: 26px; height: 26px;
      border-radius: 7px;
      background: linear-gradient(135deg, var(--ap-accent) 0%, #4f37cf 100%);
      display: grid;
      place-items: center;
      box-shadow: 0 4px 14px -4px rgba(108,77,255,0.55);
      transition: transform .25s ease;
    }
    .ap-wordmark:hover .ap-wordmark__mark { transform: rotate(-8deg) scale(1.06); }
    .ap-wordmark__mark svg { width: 14px; height: 14px; }
    .ap-nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .ap-nav-links a {
      color: var(--ap-copy-muted);
      font-size: 14px;
      font-weight: 400;
      position: relative;
      transition: color .15s ease;
    }
    .ap-nav-links a::after {
      content: "";
      position: absolute;
      left: 0; bottom: -4px;
      height: 1px; width: 0;
      background: var(--ap-accent-soft);
      transition: width .25s ease;
    }
    .ap-nav-links a:hover { color: var(--ap-copy); }
    .ap-nav-links a:hover::after { width: 100%; }

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

    
    .ap-hero {
      padding: 88px 0 60px;
      text-align: center;
      position: relative;
    }
    .ap-hero .ap-eyebrow { margin-bottom: 22px; }
    .ap-hero h1 {
      font-size: clamp(36px, 6vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.035em;
      font-weight: 700;
      max-width: 820px;
      margin: 0 auto 22px;
    }
    .ap-hero p {
      color: var(--ap-copy-muted);
      font-size: 15px;
      max-width: 480px;
      margin: 0 auto 28px;
    }

    
    .ap-hero-media {
      margin: 56px auto 0;
      max-width: 820px;
      background: #0d0d11;
      border: 1px solid var(--ap-line-soft);
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 40px 100px -40px rgba(108,77,255,0.5),
                  inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .ap-hero-media::after {
      content: "";
      position: absolute; inset: 0;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
      pointer-events: none;
    }
    .ap-hero-media video {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      background: #0a0a0e;
    }

    
    section { padding: 80px 0; position: relative; }
    .ap-section-title {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }
    .ap-section-title .ap-eyebrow { margin-bottom: 18px; }
    .ap-section-title h2 {
      font-size: clamp(30px, 4.4vw, 46px);
      line-height: 1.1;
      letter-spacing: -0.03em;
      font-weight: 700;
    }

    
    .ap-metric-panel {
      background: var(--ap-surface-raised);
      border: 1px solid var(--ap-line-soft);
      border-radius: var(--ap-radius-xl);
      padding: 64px 40px;
      position: relative;
      overflow: hidden;
    }
    .ap-metric-panel::after, .ap-metric-panel::before {
      content:"";
      position:absolute;
      right: -120px; bottom: -120px;
      width: 380px; height: 380px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.04);
      pointer-events: none;
    }
    .ap-metric-panel::before {
      right: -180px; bottom: -180px;
      width: 520px; height: 520px;
      border-color: rgba(255,255,255,0.03);
    }
    .ap-metric-grid {
      margin-top: 36px;
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--ap-line-soft);
      border-radius: var(--ap-radius-lg);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      padding: 38px 20px;
    }
    .ap-metric {
      text-align: center;
      border-right: 1px solid var(--ap-line-soft);
    }
    .ap-metric:last-child { border-right: none; }
    .ap-metric__value {
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1;
    }
    .ap-metric__label {
      color: var(--ap-copy-faint);
      font-size: 13px;
      margin-top: 8px;
    }
    @media (max-width: 640px) {
      .ap-metric-grid { grid-template-columns: 1fr; }
      .ap-metric { border-right: none; border-bottom: 1px solid var(--ap-line-soft); padding: 22px 0; }
      .ap-metric:last-child { border-bottom: none; }
    }

    
    .ap-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .ap-split-media {
      position: relative;
      aspect-ratio: 1 / 1;
      border-radius: var(--ap-radius-lg);
      overflow: hidden;
      perspective: 1200px;
    }
    .ap-split-media .ap-img-front,
    .ap-split-media .ap-img-back {
      position: absolute;
      border-radius: 18px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
      transition: transform .6s cubic-bezier(.16,1,.3,1);
    }
    .ap-split-media .ap-img-back {
      top: 8%; right: 0;
      width: 50%; height: 60%;
      transform: rotate(6deg);
      opacity: .55;
      filter: grayscale(20%);
    }
    .ap-split-media .ap-img-front {
      top: 12%; left: 4%;
      width: 70%; height: 75%;
      transform: rotate(-4deg);
    }
    .ap-split-media:hover .ap-img-front { transform: rotate(-2deg) translateY(-6px); }
    .ap-split-media:hover .ap-img-back { transform: rotate(8deg) translateY(-4px); opacity: .75; }

    .ap-split h3 {
      font-size: clamp(28px, 3.5vw, 38px);
      line-height: 1.1;
      letter-spacing: -0.025em;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .ap-split-copy { color: var(--ap-copy-muted); margin-bottom: 26px; }
    .ap-feature-list {
      list-style: none;
      display: grid;
      gap: 16px;
      margin-bottom: 28px;
    }
    .ap-feature-list li {
      display: flex; align-items: center; gap: 14px;
      font-size: 15px;
      transition: transform .25s ease;
    }
    .ap-feature-list li:hover { transform: translateX(4px); }
    .ap-feature-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--ap-line-soft);
      display: grid; place-items: center;
      flex-shrink: 0;
      transition: background .25s ease, border-color .25s ease;
    }
    .ap-feature-list li:hover .ap-feature-icon {
      background: rgba(108,77,255,0.12);
      border-color: rgba(108,77,255,0.3);
    }
    .ap-feature-icon svg { width: 16px; height: 16px; color: var(--ap-accent-soft); }
    @media (max-width: 820px) {
      .ap-split { grid-template-columns: 1fr; gap: 40px; }
    }

    
    .ap-usecase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      perspective: 1500px;
    }
    .ap-usecase-card {
      background: var(--ap-panel);
      border: 1px solid var(--ap-line-soft);
      border-radius: var(--ap-radius-lg);
      padding: 32px 28px;
      transition: border-color .3s ease, background .3s ease, transform .15s ease-out;
      transform-style: preserve-3d;
      position: relative;
      overflow: hidden;
    }
    .ap-usecase-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(220px circle at var(--ap-cursor-x, 50%) var(--ap-cursor-y, 50%), rgba(108,77,255,0.14), transparent 60%);
      opacity: 0;
      transition: opacity .3s ease;
      pointer-events: none;
    }
    .ap-usecase-card:hover::before { opacity: 1; }
    .ap-usecase-card:hover {
      border-color: rgba(108,77,255,0.25);
      background: var(--ap-panel-strong);
    }
    .ap-usecase-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--ap-line-soft);
      display: grid; place-items: center;
      margin-bottom: 28px;
      transition: background .3s ease, border-color .3s ease, transform .3s ease;
    }
    .ap-usecase-card:hover .ap-usecase-icon {
      background: rgba(108,77,255,0.15);
      border-color: rgba(108,77,255,0.4);
      transform: translateZ(20px) scale(1.05);
    }
    .ap-usecase-icon svg { width: 18px; height: 18px; color: var(--ap-accent-soft); }
    .ap-usecase-card h4 {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
      position: relative;
    }
    .ap-usecase-card p {
      color: var(--ap-copy-muted);
      font-size: 14px;
      line-height: 1.55;
      position: relative;
    }
    @media (max-width: 860px) {
      .ap-usecase-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .ap-usecase-grid { grid-template-columns: 1fr; }
    }

    
    .ap-imagination-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .ap-imagination-copy .ap-eyebrow { margin-bottom: 22px; }
    .ap-imagination-copy h2 {
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.03em;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .ap-imagination-copy p { color: var(--ap-copy-muted); margin-bottom: 28px; max-width: 380px; }
    .ap-imagination-media {
      position: relative;
      aspect-ratio: 1 / 0.9;
    }
    .ap-imagination-media .ap-image-layer-a, .ap-imagination-media .ap-image-layer-b {
      position: absolute;
      border-radius: 18px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
      transition: transform .6s cubic-bezier(.16,1,.3,1);
    }
    .ap-imagination-media .ap-image-layer-a {
      width: 65%; height: 75%; top: 5%; left: 0;
      transform: rotate(-3deg);
    }
    .ap-imagination-media .ap-image-layer-b {
      width: 60%; height: 70%; bottom: 0; right: 0;
      transform: rotate(5deg);
    }
    .ap-imagination-media:hover .ap-image-layer-a { transform: rotate(-6deg) translate(-8px, -6px); }
    .ap-imagination-media:hover .ap-image-layer-b { transform: rotate(8deg) translate(8px, 6px); }
    @media (max-width: 820px) {
      .ap-imagination-split { grid-template-columns: 1fr; gap: 40px; }
    }

    
    .ap-praise-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      max-width: 880px;
      margin: 0 auto;
    }
    .ap-praise-card {
      background: var(--ap-panel);
      border: 1px solid var(--ap-line-soft);
      border-radius: var(--ap-radius-lg);
      padding: 30px;
      display: flex;
      flex-direction: column;
      transition: border-color .5s ease, background .5s ease, transform .4s ease, box-shadow .5s ease;
      position: relative;
    }
    .ap-praise-card.is-spotlighted {
      border-color: rgba(108,77,255,0.45);
      background: linear-gradient(180deg, rgba(108,77,255,0.06), var(--ap-panel-strong));
      box-shadow: 0 30px 80px -30px rgba(108,77,255,0.4);
      transform: translateY(-4px);
    }
    .ap-stars {
      display: flex; gap: 4px;
      color: var(--ap-accent-soft);
      margin-bottom: 18px;
    }
    .ap-stars svg { width: 14px; height: 14px; }
    .ap-praise-card p {
      font-size: 14.5px;
      line-height: 1.6;
      color: #d4d4dc;
      margin-bottom: 22px;
      flex-grow: 1;
    }
    .ap-praise-card .ap-person { font-size: 14px; font-weight: 600; }
    .ap-praise-card .ap-person-role { font-size: 13px; color: var(--ap-copy-faint); margin-top: 2px; }
    @media (max-width: 760px) {
      .ap-praise-grid { grid-template-columns: 1fr; }
    }

    .ap-centered-action { display: flex; justify-content: center; margin-top: 48px; }

    
    .ap-workflow {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: center;
    }
    .ap-workflow-image {
      aspect-ratio: 3/4;
      background: linear-gradient(180deg, #6c4dff 0%, #4a31cc 100%);
      border-radius: 24px;
      padding: 40px 24px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      position: relative;
    }
    .ap-workflow-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 50%);
      pointer-events: none;
    }
    .ap-workflow-image .ap-car-visual {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 14px;
      background-image: url('https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=800&q=80');
      background-size: cover;
      background-position: center;
      box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
      transition: transform .6s cubic-bezier(.16,1,.3,1);
    }
    .ap-workflow-image:hover .ap-car-visual { transform: translateY(-8px) scale(1.02); }
    .ap-workflow-copy h2 {
      font-size: clamp(28px, 3.6vw, 40px);
      line-height: 1.1;
      letter-spacing: -0.025em;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .ap-workflow-copy > p {
      color: var(--ap-copy-muted);
      max-width: 420px;
      margin-bottom: 36px;
    }
    .ap-workflow-stats { display: grid; gap: 22px; }
    .ap-workflow-stat {
      display: grid;
      grid-template-columns: 160px 1fr;
      align-items: baseline;
      gap: 20px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--ap-line-soft);
    }
    .ap-workflow-stat:last-child { border-bottom: none; }
    .ap-workflow-num {
      font-size: clamp(26px, 3vw, 34px);
      font-weight: 600;
      letter-spacing: -0.02em;
    }
    .ap-workflow-label { color: var(--ap-copy-muted); font-size: 14px; }
    @media (max-width: 820px) {
      .ap-workflow { grid-template-columns: 1fr; gap: 40px; }
    }

    
    .ap-creators {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items: start;
      padding-top: 0;
    }
    .ap-creators-left h2 {
      font-size: clamp(28px, 3.4vw, 38px);
      line-height: 1.1;
      letter-spacing: -0.025em;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .ap-creators-left p { color: var(--ap-copy-muted); margin-bottom: 28px; max-width: 360px; font-size: 14.5px; }
    .ap-creators-right { display: grid; gap: 20px; }
    .ap-creator-card {
      background: var(--ap-panel);
      border: 1px solid var(--ap-line-soft);
      border-radius: var(--ap-radius-lg);
      padding: 28px;
      transition: border-color .3s ease, transform .3s ease;
    }
    .ap-creator-card:hover {
      border-color: rgba(108,77,255,0.3);
      transform: translateX(6px);
    }
    .ap-creator-card .ap-feature-icon { margin-bottom: 20px; }
    .ap-creator-card h4 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .ap-creator-card p { color: var(--ap-copy-muted); font-size: 14px; margin: 0; }
    @media (max-width: 820px) {
      .ap-creators { grid-template-columns: 1fr; gap: 30px; }
    }

    
    .ap-nextstep-head { text-align: center; padding-bottom: 30px; }
    .ap-nextstep-head h2 {
      font-size: clamp(30px, 4.2vw, 46px);
      line-height: 1.1;
      letter-spacing: -0.03em;
      font-weight: 700;
      max-width: 720px;
      margin: 0 auto;
    }
    .ap-nextstep-divider {
      width: 60px; height: 1px; background: var(--ap-line);
      margin: 0 auto 36px;
    }
    .ap-nextstep {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .ap-nextstep h3 {
      font-size: clamp(24px, 3vw, 32px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .ap-nextstep p { color: var(--ap-copy-muted); margin-bottom: 28px; max-width: 380px; }
    .ap-quote-card {
      border-left: 3px solid var(--ap-accent);
      padding: 6px 0 6px 18px;
      margin-bottom: 28px;
      font-weight: 600;
      font-size: 14.5px;
      transition: border-color .3s ease, padding-left .3s ease;
    }
    .ap-quote-card:hover { border-left-color: var(--ap-accent-soft); padding-left: 22px; }
    .ap-bowl-image {
      aspect-ratio: 1/1;
      border-radius: 22px;
      background-image: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=900&q=80');
      background-size: cover;
      background-position: center;
      box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
      transition: transform .6s cubic-bezier(.16,1,.3,1);
    }
    .ap-bowl-image:hover { transform: scale(1.02) rotate(-1deg); }
    @media (max-width: 820px) {
      .ap-nextstep { grid-template-columns: 1fr; gap: 40px; }
    }

    
    .ap-pricing-head { text-align: center; margin-bottom: 36px; }
    .ap-pricing-head h2 {
      font-size: clamp(28px, 3.6vw, 40px);
      letter-spacing: -0.025em;
      font-weight: 700;
      margin-bottom: 28px;
    }

    .ap-billing-switch {
      display: inline-flex;
      background: var(--ap-panel);
      border: 1px solid var(--ap-line-soft);
      border-radius: 999px;
      padding: 4px;
      position: relative;
      margin-bottom: 36px;
    }
    .ap-billing-switch .ap-billing-slider {
      position: absolute;
      top: 4px; left: 4px;
      height: calc(100% - 8px);
      background: var(--ap-accent);
      border-radius: 999px;
      box-shadow: 0 4px 14px -4px rgba(108,77,255,0.6);
      transition: transform .35s cubic-bezier(.16,1,.3,1), width .35s cubic-bezier(.16,1,.3,1);
      z-index: 1;
    }
    .ap-billing-option {
      padding: 10px 22px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ap-copy-muted);
      border-radius: 999px;
      position: relative;
      z-index: 2;
      transition: color .25s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .ap-billing-option.is-active { color: #fff; }
    .ap-billing-option .ap-save-pill {
      background: rgba(255,255,255,0.18);
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 999px;
      opacity: 0;
      transition: opacity .25s ease;
    }
    .ap-billing-option.is-active .ap-save-pill { opacity: 1; }

    .ap-plan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ap-plan-card {
      background: var(--ap-panel);
      border: 1px solid var(--ap-line-soft);
      border-radius: var(--ap-radius-lg);
      padding: 30px;
      position: relative;
      transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }
    .ap-plan-card:hover {
      transform: translateY(-4px);
      border-color: var(--ap-line);
    }
    .ap-plan-card.ap-plan-card--recommended {
      border-color: rgba(108, 77, 255, 0.4);
      box-shadow: 0 30px 60px -30px rgba(108,77,255,0.3);
    }
    .ap-plan-card.ap-plan-card--recommended:hover {
      border-color: rgba(108, 77, 255, 0.6);
      box-shadow: 0 40px 80px -30px rgba(108,77,255,0.5);
    }
    .ap-plan-badge {
      position: absolute;
      top: -12px; left: 24px;
      background: var(--ap-accent);
      border: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 500;
      box-shadow: 0 6px 18px -4px rgba(108,77,255,0.6);
    }
    .ap-plan-name { color: var(--ap-copy-muted); font-size: 13px; margin-bottom: 18px; }
    .ap-plan-price {
      display: flex; align-items: baseline; gap: 8px;
      margin-bottom: 14px;
    }
    .ap-plan-price .ap-price-number {
      font-size: 44px;
      font-weight: 700;
      letter-spacing: -0.03em;
      transition: opacity .25s ease;
    }
    .ap-plan-price .ap-price-number.is-flipping { opacity: 0; }
    .ap-plan-price .ap-price-unit { color: var(--ap-copy-faint); font-size: 13px; }
    .ap-plan-copy {
      color: var(--ap-copy-faint);
      font-size: 13px;
      line-height: 1.55;
      margin-bottom: 22px;
      min-height: 60px;
    }
    .ap-plan-card .ap-button { width: 100%; margin-bottom: 22px; }
    .ap-plan-features { list-style: none; display: grid; gap: 12px; }
    .ap-plan-features li {
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px;
      color: var(--ap-copy-muted);
      transition: color .2s ease;
    }
    .ap-plan-card:hover .ap-plan-features li { color: #d4d4dc; }
    .ap-checkmark {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(108,77,255,0.15);
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .ap-checkmark svg { width: 10px; height: 10px; color: var(--ap-accent-soft); }
    @media (max-width: 920px) {
      .ap-plan-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    }

    
    .ap-final-cta {
      background: linear-gradient(180deg, #6c4dff 0%, #5a3dff 100%);
      border-radius: var(--ap-radius-xl);
      padding: 64px 40px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ap-final-cta::before, .ap-final-cta::after {
      content: ""; position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      pointer-events: none;
      transition: transform 1s ease;
    }
    .ap-final-cta::before {
      width: 420px; height: 420px;
      left: -120px; top: 40%;
    }
    .ap-final-cta::after {
      width: 320px; height: 320px;
      right: -80px; top: -100px;
    }
    .ap-final-cta:hover::before { transform: translateX(20px) translateY(-10px); }
    .ap-final-cta:hover::after { transform: translateX(-20px) translateY(10px); }
    .ap-final-cta .ap-eyebrow {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.15);
      color: #fff;
      margin-bottom: 22px;
      position: relative; z-index: 1;
    }
    .ap-final-cta h2 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.15;
      letter-spacing: -0.025em;
      font-weight: 700;
      color: rgba(255,255,255,0.92);
      max-width: 640px;
      margin: 0 auto 36px;
      position: relative; z-index: 1;
    }
    .ap-final-cta .ap-button { position: relative; z-index: 1; }
    .ap-final-cta .ap-bar {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 22px;
      background: rgba(255,255,255,0.18);
      border-radius: 0 0 var(--ap-radius-xl) var(--ap-radius-xl);
    }

    
    footer { padding: 80px 0 36px; }
    .ap-footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--ap-line-soft);
    }
    .ap-footer-brand p {
      color: var(--ap-copy-faint);
      font-size: 13.5px;
      max-width: 280px;
      margin-top: 18px;
    }
    .ap-footer-col h5 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .ap-footer-col ul { list-style: none; display: grid; gap: 12px; }
    .ap-footer-col a {
      color: var(--ap-copy-muted);
      font-size: 13.5px;
      transition: color .15s ease, padding-left .25s ease;
    }
    .ap-footer-col a:hover { color: var(--ap-copy); padding-left: 4px; }
    .ap-footer-bottom {
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      color: var(--ap-copy-faint);
      font-size: 13px;
    }
    .ap-footer-bottom a { color: var(--ap-copy-faint); text-decoration: underline; }
    .ap-footer-bottom a:hover { color: var(--ap-copy-muted); }
    .ap-footer-links { display: flex; gap: 36px; flex-wrap: wrap; }
    @media (max-width: 760px) {
      .ap-footer-top { grid-template-columns: 1fr; gap: 40px; }
    }

    
    .ap-toast {
      position: fixed;
      bottom: 24px; left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--ap-panel-strong);
      border: 1px solid rgba(108,77,255,0.4);
      color: #fff;
      padding: 12px 22px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(108,77,255,0.2);
      z-index: 100;
      opacity: 0;
      transition: opacity .3s ease, transform .4s cubic-bezier(.16,1,.3,1);
      pointer-events: none;
      display: flex; align-items: center; gap: 10px;
    }
    .ap-toast.is-visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    .ap-toast .ap-toast-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--ap-accent-soft);
      box-shadow: 0 0 10px var(--ap-accent-soft);
    }

    
    .ap-hero-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 14px;
      margin-top: 20px;
      color: var(--ap-copy-faint);
      font-size: 13px;
    }
    .ap-rating-stars { display: inline-flex; gap: 2px; color: #f5b63f; }
    .ap-rating-stars svg { width: 13px; height: 13px; }
    .ap-hero-proof .ap-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ap-copy-faint); opacity: .6; }

    
    .ap-step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ap-step-card {
      position: relative;
      background: var(--ap-panel);
      border: 1px solid var(--ap-line-soft);
      border-radius: var(--ap-radius-lg);
      padding: 34px 30px;
      overflow: hidden;
      transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .25s ease;
    }
    .ap-step-card:hover { transform: translateY(-4px); border-color: var(--ap-line); }
    .ap-step-watermark {
      position: absolute;
      top: -26px; right: 6px;
      font-size: 128px;
      font-weight: 800;
      line-height: 1;
      color: rgba(139,117,255,0.07);
      pointer-events: none;
      user-select: none;
    }
    .ap-step-label-pill {
      display: inline-flex;
      padding: 5px 12px;
      border-radius: 999px;
      background: rgba(108,77,255,0.12);
      border: 1px solid rgba(108,77,255,0.3);
      color: var(--ap-accent-soft);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .ap-step-card h4 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 10px; }
    .ap-step-card p { color: var(--ap-copy-muted); font-size: 14px; line-height: 1.6; }
    @media (max-width: 860px) { .ap-step-grid { grid-template-columns: 1fr; } }

    
    .ap-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .ap-gallery-item {
      position: relative;
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--ap-line-soft);
    }
    .ap-gallery-image {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      background-color: var(--ap-panel-strong);
      transition: transform .6s cubic-bezier(.16,1,.3,1);
    }
    .ap-gallery-item:hover .ap-gallery-image { transform: scale(1.06); }
    .ap-gallery-caption {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      padding: 36px 14px 12px;
      font-size: 12px;
      line-height: 1.45;
      color: rgba(255,255,255,0.92);
      background: linear-gradient(to top, rgba(8,8,12,0.85), transparent);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .35s ease, transform .35s ease;
    }
    .ap-gallery-item:hover .ap-gallery-caption { opacity: 1; transform: none; }
    @media (max-width: 860px) { .ap-gallery { grid-template-columns: repeat(2, 1fr); } }

    
    .ap-compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: stretch;
    }
    .ap-compare-col {
      background: var(--ap-panel);
      border: 1px solid var(--ap-line-soft);
      border-radius: var(--ap-radius-lg);
      padding: 36px 32px;
    }
    .ap-compare-col h4 { font-size: 18px; font-weight: 600; margin-bottom: 22px; letter-spacing: -0.01em; }
    .ap-compare-col.ap-positive {
      border-color: rgba(108,77,255,0.38);
      background: linear-gradient(180deg, rgba(108,77,255,0.10) 0%, rgba(108,77,255,0.02) 100%);
      box-shadow: 0 30px 80px -45px rgba(108,77,255,0.55);
    }
    .ap-compare-list { list-style: none; display: grid; gap: 15px; }
    .ap-compare-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px; color: var(--ap-copy-muted); line-height: 1.55;
    }
    .ap-compare-col.ap-positive .ap-compare-list li { color: var(--ap-copy); }
    .ap-compare-icon {
      width: 22px; height: 22px;
      flex-shrink: 0;
      border-radius: 50%;
      display: grid; place-items: center;
      margin-top: 1px;
    }
    .ap-compare-icon svg { width: 11px; height: 11px; }
    .ap-compare-icon--x { background: rgba(255,255,255,0.05); border: 1px solid var(--ap-line-soft); color: var(--ap-copy-faint); }
    .ap-compare-icon--check { background: rgba(108,77,255,0.18); border: 1px solid rgba(108,77,255,0.45); color: var(--ap-accent-soft); }
    .ap-compare-col .ap-button { margin-top: 26px; }
    @media (max-width: 860px) { .ap-compare { grid-template-columns: 1fr; } }

    
    .ap-plan-trust { margin-top: 10px; font-size: 12px; color: var(--ap-copy-faint); text-align: center; }
    .ap-guarantee {
      margin-top: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      padding: 18px 26px;
      border: 1px dashed rgba(108,77,255,0.4);
      border-radius: 16px;
      background: rgba(108,77,255,0.05);
      color: var(--ap-copy-muted);
      font-size: 14px;
      text-align: center;
    }
    .ap-guarantee strong { color: var(--ap-copy); font-weight: 600; }
    .ap-guarantee-icon {
      width: 34px; height: 34px;
      border-radius: 10px;
      background: rgba(108,77,255,0.15);
      border: 1px solid rgba(108,77,255,0.4);
      display: grid; place-items: center;
      color: var(--ap-accent-soft);
      flex-shrink: 0;
    }
    .ap-guarantee-icon svg { width: 16px; height: 16px; }

    
    .ap-faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
    .ap-faq-item {
      background: var(--ap-panel);
      border: 1px solid var(--ap-line-soft);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color .25s ease, background .25s ease;
    }
    .ap-faq-item.is-open { border-color: rgba(108,77,255,0.35); background: var(--ap-panel-strong); }
    .ap-faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      font-size: 15px;
      font-weight: 500;
      text-align: left;
    }
    .ap-faq-icon {
      width: 26px; height: 26px;
      flex-shrink: 0;
      border-radius: 8px;
      border: 1px solid var(--ap-line);
      display: grid; place-items: center;
      color: var(--ap-copy-muted);
      transition: transform .35s cubic-bezier(.16,1,.3,1), background .25s ease, border-color .25s ease, color .25s ease;
    }
    .ap-faq-icon svg { width: 12px; height: 12px; }
    .ap-faq-item.is-open .ap-faq-icon {
      transform: rotate(45deg);
      background: var(--ap-accent);
      border-color: var(--ap-accent);
      color: #fff;
    }
    .ap-faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
    .ap-faq-answer p { padding: 0 22px 22px; color: var(--ap-copy-muted); font-size: 14px; line-height: 1.65; }

    
    .ap-sticky-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translate(-50%, 140%);
      z-index: 60;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 10px 10px 10px 20px;
      background: rgba(20, 20, 26, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid var(--ap-line);
      border-radius: 16px;
      box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(108,77,255,0.10);
      opacity: 0;
      transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .35s ease;
      max-width: calc(100vw - 32px);
    }
    .ap-sticky-cta.is-visible { transform: translate(-50%, 0); opacity: 1; }
    .ap-sticky-cta .ap-sticky-copy { font-size: 14px; color: var(--ap-copy-muted); white-space: nowrap; }
    .ap-sticky-cta .ap-sticky-copy strong { color: var(--ap-copy); font-weight: 600; }
    .ap-sticky-cta .ap-button { padding: 10px 18px; white-space: nowrap; }
    .ap-sticky-close {
      width: 30px; height: 30px;
      display: grid; place-items: center;
      border-radius: 8px;
      color: var(--ap-copy-faint);
      transition: color .2s ease, background .2s ease;
    }
    .ap-sticky-close:hover { color: var(--ap-copy); background: rgba(255,255,255,0.06); }
    @media (max-width: 600px) {
      .ap-sticky-cta .ap-hide-sm { display: none; }
    }
