    /* ========================================
       CSS RESET & BASE
       ======================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* Colors - Primary */
      --blue-50: #EFF6FF;
      --blue-100: #DBEAFE;
      --blue-200: #BFDBFE;
      --blue-300: #93C5FD;
      --blue-400: #60A5FA;
      --blue-500: #3B82F6;
      --blue-600: #2563EB;
      --blue-700: #1D4ED8;
      --blue-800: #1E40AF;
      --blue-900: #1E3A8A;

      /* Colors - Neutrals */
      --gray-50: #F9FAFB;
      --gray-100: #F3F4F6;
      --gray-200: #E5E7EB;
      --gray-300: #D1D5DB;
      --gray-400: #9CA3AF;
      --gray-500: #6B7280;
      --gray-600: #4B5563;
      --gray-700: #374151;
      --gray-800: #1F2937;
      --gray-900: #111827;
      --gray-950: #030712;

      /* Colors - Slate */
      --slate-50: #F8FAFC;
      --slate-100: #F1F5F9;
      --slate-200: #E2E8F0;
      --slate-700: #334155;
      --slate-800: #1E293B;
      --slate-900: #0F172A;

      /* Colors - Accent */
      --emerald-500: #10B981;
      --emerald-600: #059669;
      --violet-500: #8B5CF6;
      --indigo-500: #6366F1;
      --amber-500: #F59E0B;
      --red-500: #EF4444;

      /* Shadows */
      --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
      --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
      --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 2px 4px rgba(15, 23, 42, 0.03);
      --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.05), 0 4px 6px rgba(15, 23, 42, 0.02);
      --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.06), 0 8px 10px rgba(15, 23, 42, 0.03);
      --shadow-2xl: 0 25px 50px rgba(15, 23, 42, 0.12);
      --shadow-blue: 0 0 40px rgba(37, 99, 235, 0.15);

      /* Transitions */
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --duration-fast: 150ms;
      --duration-normal: 200ms;
    }

    html {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-size: 17px;
      line-height: 1.7;
      color: var(--gray-800);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      scroll-behavior: smooth;
    }

    body {
      background: #FFFFFF;
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--blue-600); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
    a:hover { color: var(--blue-700); }

    /* ========================================
       LAYOUT
       ======================================== */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .container--narrow {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 80px 0;
    }

    .section--lg {
      padding: 96px 0;
    }

    /* ========================================
       TYPOGRAPHY
       ======================================== */
    .overline {
      font-size: 0.7058rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.4;
      color: var(--blue-600);
    }

    .display {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--gray-900);
    }

    .display--sm {
      font-size: 2.75rem;
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.015em;
      color: var(--gray-900);
    }

    .heading-2 {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--gray-900);
    }

    .heading-3 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.3;
      color: var(--gray-900);
    }

    .heading-4 {
      font-size: 1.176rem;
      font-weight: 600;
      line-height: 1.4;
      color: var(--gray-900);
    }

    .body-lg {
      font-size: 1.176rem;
      line-height: 1.7;
      color: var(--gray-600);
    }

    .body {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--gray-600);
    }

    .body-sm {
      font-size: 0.882rem;
      line-height: 1.6;
      color: var(--gray-500);
    }

    .caption {
      font-size: 0.7647rem;
      font-weight: 500;
      line-height: 1.5;
      color: var(--gray-500);
    }

    .text-center { text-align: center; }

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

    .strike {
      text-decoration: line-through;
      color: var(--gray-400);
    }

    /* ========================================
       BUTTONS
       ======================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: inherit;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: all var(--duration-fast) var(--ease-out);
      white-space: nowrap;
    }

    .btn--primary {
      background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
      color: #FFFFFF;
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 1rem;
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1), 0 1px 2px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .btn--primary:hover {
      background: linear-gradient(180deg, #60A5FA 0%, #3B82F6 100%);
      box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1), 0 10px 15px rgba(37, 99, 235, 0.15);
      transform: translateY(-1px);
      color: #FFFFFF;
    }

    .btn--primary:active {
      transform: translateY(0);
      background: linear-gradient(180deg, #2563EB 0%, #1D4ED8 100%);
    }

    .btn--primary-lg {
      padding: 16px 36px;
      font-size: 1.06rem;
      border-radius: 12px;
    }

    .btn--secondary {
      background: #FFFFFF;
      color: var(--gray-800);
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 1rem;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-xs);
    }

    .btn--secondary:hover {
      background: var(--gray-50);
      border-color: var(--gray-300);
      box-shadow: var(--shadow-sm);
      transform: translateY(-1px);
      color: var(--gray-800);
    }

    .btn--ghost {
      background: transparent;
      color: var(--gray-600);
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.882rem;
    }

    .btn--ghost:hover {
      background: var(--gray-50);
      color: var(--gray-800);
    }

    .btn svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    /* ========================================
       BADGE
       ======================================== */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 9999px;
      font-size: 0.8rem;
      font-weight: 500;
      line-height: 1;
    }

    .badge--blue {
      background: var(--blue-50);
      color: var(--blue-700);
      border: 1px solid var(--blue-100);
    }

    .badge--emerald {
      background: #ECFDF5;
      color: #065F46;
      border: 1px solid #A7F3D0;
    }

    .badge--amber {
      background: #FFFBEB;
      color: #92400E;
      border: 1px solid #FDE68A;
    }

    .badge--violet {
      background: #F5F3FF;
      color: #5B21B6;
      border: 1px solid #DDD6FE;
    }

    /* ========================================
       NAVIGATION
       ======================================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav__inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .nav__left {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav__logo img {
      height: 32px;
      width: auto;
    }

    .nav__logo-text {
      font-weight: 700;
      font-size: 1.06rem;
      color: var(--gray-900);
      letter-spacing: -0.01em;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
    }

    .nav__links a {
      font-size: 0.882rem;
      font-weight: 500;
      color: var(--gray-600);
    }

    .nav__links a:hover {
      color: var(--gray-900);
    }

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

    .nav__price-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      background: #ECFDF5;
      color: #065F46;
      border-radius: 9999px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .nav__cta {
      padding: 8px 20px !important;
      font-size: 0.882rem !important;
      border-radius: 8px !important;
    }

    /* ========================================
       HERO
       ======================================== */
    .hero {
      padding-top: 140px;
      padding-bottom: 80px;
      background: linear-gradient(180deg, #FFFFFF 0%, var(--slate-50) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      z-index: 1;
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
    }

    .hero__badge {
      margin-bottom: 24px;
    }

    /* Sized so "Automated Content Marketing." holds one line on desktop,
       with "Inside WordPress." on the second line. */
    .hero .hero__title {
      font-size: 3rem;
      line-height: 1.08;
      margin-bottom: 20px;
    }

    .hero__subtitle {
      font-size: 1.35rem;
      color: var(--gray-600);
      margin-bottom: 16px;
      font-weight: 400;
      line-height: 1.5;
    }

    .hero__description {
      max-width: 640px;
      margin: 0 auto 40px;
      font-size: 1.06rem;
      color: var(--gray-500);
      line-height: 1.7;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .cta-microcopy {
      font-size: 0.8rem;
      color: var(--gray-500);
      text-align: center;
      margin: 0 0 28px;
    }

    .hero__urgency {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: var(--gray-900);
      color: #FFFFFF;
      border-radius: 9999px;
      font-size: 0.882rem;
      font-weight: 500;
    }

    .hero__urgency-dot {
      width: 8px;
      height: 8px;
      background: #10B981;
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* Giveaway progress bar (/free-licenses) — live "X / goal" waitlist counter. */
    .giveaway-progress {
      max-width: 520px;
      margin: 0 auto;
      text-align: center;
    }

    .giveaway-progress__label {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-600);
    }

    .giveaway-progress__count {
      font-weight: 700;
      color: var(--gray-900);
    }

    .giveaway-progress__count strong {
      font-size: 1.15em;
      color: var(--emerald-600);
    }

    .giveaway-progress__track {
      height: 14px;
      background: var(--gray-200);
      border-radius: 9999px;
      overflow: hidden;
      box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
    }

    .giveaway-progress__fill {
      height: 100%;
      min-width: 8px;
      border-radius: 9999px;
      background: linear-gradient(90deg, var(--emerald-500) 0%, var(--blue-500) 100%);
      transition: width 0.6s ease;
    }

    .giveaway-progress__remaining {
      margin-top: 10px;
      font-size: 0.85rem;
      color: var(--gray-500);
    }

    .hero__proof {
      margin-top: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .hero__proof-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.882rem;
      color: var(--gray-500);
      font-weight: 500;
    }

    .hero__proof-item svg {
      width: 18px;
      height: 18px;
      color: var(--emerald-600);
    }

    /* ========================================
       LOGOS BAR
       ======================================== */
    .logos-bar {
      padding: 40px 0;
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
      background: #FFFFFF;
    }

    .logos-bar__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .logos-bar__item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gray-400);
      font-size: 0.882rem;
      font-weight: 500;
    }

    .logos-bar__item svg {
      width: 24px;
      height: 24px;
    }

    .logos-bar__item img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }

    /* ========================================
       COST COMPARISON
       ======================================== */
    .comparison {
      background: var(--gray-950);
      color: #FFFFFF;
      position: relative;
      overflow: hidden;
    }

    .comparison::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

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

    .comparison .overline {
      color: var(--blue-400);
    }

    .comparison .display--sm {
      color: #FFFFFF;
    }

    .comparison__lead {
      color: var(--gray-400);
      max-width: 600px;
      margin: 16px auto 0;
    }

    .comparison__table-wrapper {
      margin-top: 48px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .comparison__table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      overflow: hidden;
      min-width: 640px;
    }

    .comparison__table th,
    .comparison__table td {
      padding: 16px 24px;
      text-align: left;
      font-size: 0.94rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .comparison__table th {
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--gray-400);
      background: rgba(255, 255, 255, 0.02);
    }

    .comparison__table td {
      color: var(--gray-300);
    }

    .comparison__table tr:last-child td {
      border-bottom: none;
      font-weight: 600;
      color: #FFFFFF;
    }

    .comparison__table .cost--saas {
      color: var(--red-500);
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
    }

    .comparison__table .cost--sage {
      color: var(--emerald-500);
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
    }

    .comparison__table .price-old {
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      text-decoration-color: rgba(156, 163, 175, 0.9);
      color: var(--gray-400);
      margin-right: 8px;
    }

    .comparison__table .price-discount {
      display: inline-block;
      color: #34D399;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.25);
    }

    .comparison__bottom {
      margin-top: 40px;
      text-align: center;
    }

    .comparison__savings {
      display: inline-block;
      padding: 16px 32px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-radius: 12px;
      font-size: 1.176rem;
      font-weight: 600;
      color: var(--emerald-500);
    }

    .comparison__footnote {
      margin-top: 20px;
      font-size: 0.882rem;
      color: var(--gray-500);
    }

    /* ========================================
       PRODUCTS
       ======================================== */
    .products {
      background: linear-gradient(180deg, var(--gray-50) 0%, #FFFFFF 100%);
    }

    .products__grid {
      margin-top: 56px;
      display: grid;
      gap: 24px;
    }

    .product-card {
      background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
      border-radius: 16px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      transition: box-shadow var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
    }

    .product-card:hover {
      box-shadow: var(--shadow-xl);
      transform: translateY(-2px);
    }

    .product-card:nth-child(even) {
      direction: rtl;
    }

    .product-card:nth-child(even) > * {
      direction: ltr;
    }

    .product-card__content {
      padding: 40px;
    }

    .product-card__number {
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--blue-600);
      letter-spacing: 0.04em;
      margin-bottom: 12px;
    }

    .product-card__title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--gray-900);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .product-card__type {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--gray-400);
      margin-bottom: 16px;
    }

    .product-card__description {
      font-size: 0.94rem;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .product-card__features {
      list-style: none;
      margin-bottom: 24px;
    }

    .product-card__features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.882rem;
      color: var(--gray-600);
      margin-bottom: 8px;
    }

    .product-card__features li svg {
      width: 18px;
      height: 18px;
      color: var(--emerald-600);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .product-card__price {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .product-card__price-current {
      font-size: 1.06rem;
      font-weight: 600;
      color: var(--gray-400);
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      text-decoration-color: rgba(148, 163, 184, 0.9);
    }

    .product-card__price-discount {
      display: inline-block;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--emerald-600);
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.25);
      padding: 2px 10px;
      border-radius: 999px;
      line-height: 1.2;
    }

    .product-card__price-label {
      width: 100%;
      font-size: 0.8rem;
      color: var(--gray-400);
      font-weight: 500;
    }

    .product-card__visual {
      position: relative;
      height: 100%;
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .product-card__visual img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .product-card__visual--placeholder {
      background: linear-gradient(135deg, var(--slate-100) 0%, var(--blue-50) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 40px;
    }

    .product-card__visual--placeholder svg {
      width: 64px;
      height: 64px;
      color: var(--blue-300);
      opacity: 0.6;
    }

    .product-card__visual--placeholder span {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--gray-400);
      padding: 6px 16px;
      border: 1px dashed var(--gray-300);
      border-radius: 9999px;
    }

    .product-card__screenshot {
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 10px 20px rgba(15, 23, 42, 0.08), 0 20px 40px rgba(15, 23, 42, 0.1);
      border: 1px solid rgba(0, 0, 0, 0.08);
      max-width: 90%;
    }

    /* ========================================
       PRICING
       ======================================== */
    .pricing {
      background: #FFFFFF;
      position: relative;
    }

    .pricing__grid {
      margin-top: 56px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: start;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-card {
      background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
      border-radius: 16px;
      border: 1px solid var(--gray-200);
      padding: 36px;
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
      position: relative;
    }

    .pricing-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .pricing-card--featured {
      border-color: var(--blue-200);
      box-shadow: var(--shadow-lg), var(--shadow-blue);
      transform: scale(1.03);
      z-index: 2;
    }

    .pricing-card--featured:hover {
      box-shadow: var(--shadow-xl), 0 0 60px rgba(37, 99, 235, 0.2);
      transform: scale(1.03) translateY(-2px);
    }

    .pricing-card__popular {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      padding: 4px 16px;
      background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
      color: #FFFFFF;
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      border-radius: 9999px;
      white-space: nowrap;
    }

    .pricing-card__name {
      font-size: 1.176rem;
      font-weight: 600;
      color: var(--gray-900);
      margin-bottom: 4px;
    }

    .pricing-card__subtitle {
      font-size: 0.882rem;
      color: var(--gray-500);
      margin-bottom: 20px;
    }

    .pricing-card__price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 4px;
    }

    .pricing-card__price {
      font-size: 3rem;
      font-weight: 700;
      color: var(--gray-900);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .pricing-card__price-suffix {
      font-size: 0.882rem;
      color: var(--gray-400);
      font-weight: 500;
    }

    .pricing-card__original {
      font-size: 0.94rem;
      color: var(--gray-400);
      margin-bottom: 4px;
    }

    .pricing-card__savings {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--emerald-600);
      margin-bottom: 24px;
    }

    .pricing-card__divider {
      height: 1px;
      background: var(--gray-200);
      margin-bottom: 24px;
    }

    .pricing-card__features {
      list-style: none;
      margin-bottom: 28px;
    }

    .pricing-card__features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.882rem;
      color: var(--gray-600);
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .pricing-card__features li svg {
      width: 18px;
      height: 18px;
      color: var(--blue-500);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-card__cta {
      width: 100%;
    }

    .pricing-card__per-tool {
      text-align: center;
      margin-top: 12px;
      font-size: 0.8rem;
      color: var(--gray-400);
      font-weight: 500;
    }

    /* ========================================
       YOUR AI PROVIDER SECTION
       ======================================== */
    .byok {
      background: var(--slate-50);
    }

    .byok__grid {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .byok-card {
      text-align: center;
      padding: 32px 24px;
    }

    .byok-card__icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--blue-50);
      border-radius: 12px;
      color: var(--blue-600);
    }

    .byok-card__icon svg {
      width: 28px;
      height: 28px;
    }

    .byok-card__title {
      font-size: 1.06rem;
      font-weight: 600;
      color: var(--gray-900);
      margin-bottom: 8px;
    }

    .byok-card__text {
      font-size: 0.882rem;
      color: var(--gray-500);
      line-height: 1.6;
    }

    /* ========================================
       GUARANTEE
       ======================================== */
    .guarantee {
      background: #FFFFFF;
      padding: 64px 0;
    }

    .guarantee__inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      padding: 48px;
      background: linear-gradient(180deg, #FFFFFF 0%, var(--gray-50) 100%);
      border-radius: 20px;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-md);
    }

    .guarantee__icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--emerald-500);
      border-radius: 50%;
      color: #FFFFFF;
    }

    .guarantee__icon svg {
      width: 32px;
      height: 32px;
    }

    /* ========================================
       FAQ
       ======================================== */
    .faq {
      background: var(--gray-50);
    }

    .faq__list {
      margin-top: 48px;
      max-width: 740px;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-item {
      background: #FFFFFF;
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow var(--duration-fast) var(--ease-out);
    }

    .faq-item:hover {
      box-shadow: var(--shadow-sm);
    }

    .faq-item__question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.94rem;
      font-weight: 600;
      color: var(--gray-800);
      text-align: left;
      line-height: 1.4;
    }

    .faq-item__question svg {
      width: 20px;
      height: 20px;
      color: var(--gray-400);
      flex-shrink: 0;
      transition: transform var(--duration-fast) var(--ease-out);
    }

    .faq-item__answer {
      display: none;
      padding: 0 24px 20px;
      font-size: 0.882rem;
      color: var(--gray-600);
      line-height: 1.7;
    }

    .faq-item.active .faq-item__question svg {
      transform: rotate(45deg);
    }

    .faq-item.active .faq-item__answer {
      display: block;
    }

    /* ========================================
       FINAL CTA
       ======================================== */
    .final-cta {
      background: var(--gray-950);
      color: #FFFFFF;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .final-cta__inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }

    .final-cta .display--sm {
      color: #FFFFFF;
    }

    .final-cta__sub {
      color: var(--gray-400);
      margin: 16px 0 40px;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background: var(--gray-950);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 32px 0;
    }

    .footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer__left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer__left img {
      height: 24px;
      width: auto;
    }

    .footer__text {
      font-size: 0.8rem;
      color: var(--gray-500);
    }

    .footer__links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer__links a {
      font-size: 0.8rem;
      color: var(--gray-500);
    }

    .footer__links a:hover {
      color: var(--gray-300);
    }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 1024px) {
      .display {
        font-size: 2.75rem;
      }

      .display--sm {
        font-size: 2.25rem;
      }

      .hero .hero__title {
        font-size: 2.5rem;
      }

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

      .product-card:nth-child(even) {
        direction: ltr;
      }

      .product-card__visual {
        min-height: 240px;
        order: -1;
      }

      .byok__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 768px) {
      .section { padding: 56px 0; }
      .section--lg { padding: 72px 0; }

      .display {
        font-size: 2.25rem;
        letter-spacing: -0.015em;
      }

      .display--sm {
        font-size: 1.75rem;
      }

      .heading-2 {
        font-size: 1.5rem;
      }

      .hero .hero__title {
        font-size: 2.1rem;
      }

      .hero {
        padding-top: 110px;
        padding-bottom: 56px;
      }

      .hero__subtitle {
        font-size: 1.1rem;
      }

      /* Trim above-the-fold load on mobile — subtitle + single CTA carry the message. */
      .hero__description {
        display: none;
      }

      /* One focused CTA on mobile — drop the secondary "See all products" link. */
      .hero__actions .btn--secondary {
        display: none;
      }

      .hero__actions {
        flex-direction: column;
      }

      .hero__proof {
        flex-direction: column;
        gap: 12px;
      }

      .nav__links { display: none; }

      .nav__price-badge { display: none; }

      .product-card__content {
        padding: 28px;
      }

      .comparison__table th,
      .comparison__table td {
        padding: 12px 16px;
        font-size: 0.85rem;
      }

      .guarantee__inner {
        padding: 32px 24px;
      }

      .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

      .pricing-card--featured {
        transform: none;
        order: -1;
      }

      .pricing-card--featured:hover {
        transform: translateY(-2px);
      }

      .footer__inner {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      html { font-size: 16px; }

      .container, .container--narrow {
        padding: 0 20px;
      }

      .display {
        font-size: 2rem;
      }

      .hero .hero__title {
        font-size: 1.9rem;
      }
    }

    /* ========================================
       TOOLTIP
       ======================================== */
    .tooltip-trigger {
      position: relative;
      border-bottom: 1px dashed currentColor;
      cursor: help;
    }

    .tooltip-trigger .tooltip {
      display: none;
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      padding: 8px 14px;
      background: var(--gray-900);
      color: #FFFFFF;
      font-size: 0.8rem;
      font-weight: 500;
      line-height: 1.4;
      border-radius: 8px;
      white-space: nowrap;
      box-shadow: var(--shadow-lg);
      pointer-events: none;
      z-index: 10;
    }

    .tooltip-trigger .tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: var(--gray-900);
    }

    .tooltip-trigger:hover .tooltip,
    .tooltip-trigger:focus .tooltip {
      display: block;
    }

    /* ========================================
       REDUCED MOTION
       ======================================== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
    }

    /* ========================================
       PREVIEW GALLERY LIGHTBOX
       ======================================== */
    .gallery-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .gallery-overlay.active {
      display: flex;
    }

    .gallery__close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      transition: background 0.15s;
      z-index: 1001;
    }

    .gallery__close:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .gallery__close svg {
      width: 20px;
      height: 20px;
    }

    .gallery__title {
      position: absolute;
      top: 20px;
      left: 24px;
      font-size: 0.94rem;
      font-weight: 600;
      color: #fff;
      z-index: 1001;
    }

    .gallery__counter {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--gray-400);
      z-index: 1001;
    }

    .gallery__main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 64px 80px 8px;
      position: relative;
      min-height: 0;
    }

    .gallery__main img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .gallery__caption {
      text-align: center;
      padding: 6px 24px;
      font-size: 0.82rem;
      color: var(--gray-400);
      font-weight: 500;
    }

    .gallery__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      transition: background 0.15s;
      z-index: 1001;
    }

    .gallery__nav:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    .gallery__nav svg {
      width: 20px;
      height: 20px;
    }

    .gallery__nav--prev { left: 20px; }
    .gallery__nav--next { right: 20px; }

    .gallery__thumbs {
      display: flex;
      gap: 8px;
      padding: 8px 24px 20px;
      overflow-x: auto;
      max-width: 100%;
      justify-content: center;
      flex-shrink: 0;
    }

    .gallery__thumb {
      flex-shrink: 0;
      width: 80px;
      height: 52px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      opacity: 0.45;
      transition: opacity 0.15s, border-color 0.15s;
    }

    .gallery__thumb.active,
    .gallery__thumb:hover {
      opacity: 1;
      border-color: var(--blue-400);
    }

    .gallery__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-card__visual[data-gallery] {
      cursor: pointer;
      position: relative;
    }

    .product-card__visual[data-gallery]::after {
      content: 'Click to watch videos';
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      padding: 6px 16px;
      background: rgba(0, 0, 0, 0.65);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 500;
      border-radius: 9999px;
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
      white-space: nowrap;
    }

    .product-card__visual[data-gallery]:hover::after {
      opacity: 1;
    }

    /* ========================================
       VIDEO CHOOSER MODAL
       ======================================== */
    .video-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .video-overlay.active { display: flex; }

    .video-modal {
      position: relative;
      width: 100%;
      max-width: 1200px;
      background: var(--slate-900);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    }

    .video-modal__close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      transition: background 0.15s;
    }
    .video-modal__close:hover { background: rgba(255, 255, 255, 0.2); }
    .video-modal__close svg { width: 18px; height: 18px; }

    .video-modal__title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      margin: 0 40px 4px 0;
    }
    .video-modal__subtitle {
      font-size: 0.85rem;
      color: var(--gray-400);
      margin: 0 0 24px;
    }

    .video-choices {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .video-choice {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      text-align: left;
      padding: 0;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      color: #fff;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s, transform 0.15s;
      overflow: hidden;
    }
    .video-choice:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--blue-400);
      transform: translateY(-2px);
    }
    .video-choice__thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #000;
    }
    .video-choice__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.2s, opacity 0.2s;
    }
    .video-choice:hover .video-choice__thumb img {
      transform: scale(1.03);
      opacity: 0.85;
    }
    .video-choice__play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .video-choice__play-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.55);
      border: 2px solid rgba(255, 255, 255, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s, transform 0.15s;
    }
    .video-choice:hover .video-choice__play-circle {
      background: var(--blue-500);
      border-color: #fff;
      transform: scale(1.08);
    }
    .video-choice__play-circle svg {
      width: 20px;
      height: 20px;
      margin-left: 2px;
    }
    .video-choice__text {
      padding: 16px 18px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .video-choice__label { font-size: 0.95rem; font-weight: 600; }
    .video-choice__desc { font-size: 0.78rem; color: var(--gray-400); font-weight: 400; }

    .video-modal__secondary {
      margin-top: 20px;
      text-align: center;
    }
    .video-modal__secondary button {
      background: none;
      border: none;
      color: var(--blue-400);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      padding: 6px 8px;
    }
    .video-modal__secondary button:hover { text-decoration: underline; }

    .video-embed {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      border-radius: 12px;
      overflow: hidden;
      background: #000;
    }
    .video-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-back {
      margin-top: 16px;
      background: none;
      border: none;
      color: var(--gray-400);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      padding: 4px 0;
    }
    .video-back:hover { color: #fff; }

    @media (max-width: 768px) {
      .video-modal { padding: 28px 18px; }
      .video-choices { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .gallery__main { padding: 60px 16px 8px; }
      .gallery__nav { width: 36px; height: 36px; }
      .gallery__nav--prev { left: 8px; }
      .gallery__nav--next { right: 8px; }
      .gallery__title { font-size: 0.8rem; left: 16px; top: 16px; max-width: 60%; }
      .gallery__counter { top: 16px; }
      .gallery__thumb { width: 56px; height: 38px; }
      .gallery__thumbs { padding: 8px 16px 16px; }
    }

    /* ========================================
       WAITLIST MODAL
       ======================================== */
    body.modal-open { overflow: hidden; }

    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s var(--ease-out);
    }

    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }

    .modal__card {
      position: relative;
      width: 100%;
      max-width: 480px;
      height: 88vh;
      margin: 24px;
      background: #FFFFFF;
      border-radius: 16px;
      box-shadow: var(--shadow-2xl);
      overflow: hidden;
      transform: translateY(16px) scale(0.97);
      transition: transform 0.3s var(--ease-out);
    }

    .modal-overlay.active .modal__card {
      transform: translateY(0) scale(1);
    }

    .modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 10;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-100);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      color: var(--gray-500);
      transition: all var(--duration-fast) var(--ease-out);
    }

    .modal__close:hover {
      background: var(--gray-200);
      color: var(--gray-700);
    }

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

    .modal__iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    @media (max-width: 768px) {
      .modal__card {
        margin: 16px;
        border-radius: 12px;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
      }
    }

    @media (max-width: 480px) {
      .modal__card {
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
      }
    }
/* ========================================
       VIDEO CHOOSER MODAL — enlarged titles above thumbnails
       (enhancement layer; overrides the base .video-choice rules above)
       ======================================== */
    .video-choice__head {
      width: 100%;
      padding: 20px 22px 14px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .video-choice__label {
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }
    .video-choice__desc {
      font-size: 0.88rem;
      color: var(--gray-400);
      font-weight: 400;
    }
    /* Distinct accent colour per video type */
    .video-choice--intro { border-top: 3px solid #38BDF8; }
    .video-choice--walkthrough { border-top: 3px solid #FBBF24; }
    .video-choice--intro .video-choice__label { color: #38BDF8; }
    .video-choice--walkthrough .video-choice__label { color: #FBBF24; }
    .video-choice--intro:hover { border-color: #38BDF8; }
    .video-choice--walkthrough:hover { border-color: #FBBF24; }
    .video-choice--intro:hover .video-choice__play-circle { background: #0EA5E9; border-color: #fff; }
    .video-choice--walkthrough:hover .video-choice__play-circle { background: #F59E0B; border-color: #fff; }
