.aiw-article {
    --aiw-bg: #0f172a;
    --aiw-card: #111827;
    --aiw-card-2: #1f2937;
    --aiw-text: #f8fafc;
    --aiw-muted: #cbd5e1;
    --aiw-soft: #e2e8f0;
    --aiw-accent: #38bdf8;
    --aiw-accent-2: #a78bfa;
    --aiw-success: #34d399;
    --aiw-border: rgba(255,255,255,.12);
    --aiw-shadow: 0 22px 60px rgba(0,0,0,.28);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--aiw-text);
    background: radial-gradient(circle at top left, rgba(56,189,248,.22), transparent 35%),
                radial-gradient(circle at top right, rgba(167,139,250,.22), transparent 32%),
                linear-gradient(180deg, #0f172a 0%, #111827 52%, #0f172a 100%);
    border-radius: 28px;
    overflow: hidden;
    line-height: 1.65;
  }

  .aiw-article * {
    box-sizing: border-box;
  }

  .aiw-wrap {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
  }

  .aiw-hero {
    padding: 72px 0 42px;
    position: relative;
  }

  .aiw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--aiw-border);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: var(--aiw-soft);
    font-size: 14px;
    letter-spacing: .2px;
    animation: aiwFadeUp .7s ease both;
  }

  .aiw-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--aiw-success);
    box-shadow: 0 0 0 8px rgba(52,211,153,.12);
  }

  .aiw-hero h1 {
    max-width: 980px;
    margin: 24px 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: .96;
    letter-spacing: -2.4px;
    animation: aiwFadeUp .8s ease .08s both;
  }

  .aiw-gradient-text {
    background: linear-gradient(90deg, var(--aiw-accent), var(--aiw-accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .aiw-hero p {
    max-width: 850px;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--aiw-muted);
    margin: 0 0 26px;
    animation: aiwFadeUp .8s ease .16s both;
  }

  .aiw-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0;
    animation: aiwFadeUp .8s ease .24s both;
  }

  .aiw-badge {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--aiw-border);
    color: var(--aiw-soft);
    font-size: 14px;
  }

  .aiw-video-card {
    margin: 28px 0 34px;
    padding: 14px;
    border: 1px solid var(--aiw-border);
    border-radius: 28px;
    background: rgba(255,255,255,.07);
    box-shadow: var(--aiw-shadow);
    animation: aiwFadeUp .9s ease .28s both;
  }

  .aiw-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #020617;
  }

  .aiw-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .aiw-section {
    padding: 38px 0;
  }

  .aiw-section h2 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -1.3px;
    margin: 0 0 16px;
  }

  .aiw-section h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px;
  }

  .aiw-section p {
    color: var(--aiw-muted);
    margin: 0 0 16px;
    font-size: 17px;
  }

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

  .aiw-card {
    padding: 22px;
    border: 1px solid var(--aiw-border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
    transform: translateY(0);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    animation: aiwFadeUp .8s ease both;
  }

  .aiw-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56,189,248,.45);
    background: linear-gradient(180deg, rgba(56,189,248,.12), rgba(255,255,255,.055));
  }

  .aiw-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(56,189,248,.24), rgba(167,139,250,.24));
    border: 1px solid var(--aiw-border);
    margin-bottom: 14px;
    font-size: 20px;
  }

  .aiw-steps {
    counter-reset: aiwstep;
    display: grid;
    gap: 14px;
    margin-top: 24px;
  }

  .aiw-step {
    counter-increment: aiwstep;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--aiw-border);
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    animation: aiwFadeUp .8s ease both;
  }

  .aiw-step::before {
    content: counter(aiwstep);
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--aiw-accent), var(--aiw-accent-2));
    color: white;
    font-weight: 700;
  }

  .aiw-callout {
    margin: 28px 0;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(56,189,248,.35);
    background: linear-gradient(135deg, rgba(56,189,248,.14), rgba(167,139,250,.12));
    box-shadow: var(--aiw-shadow);
    position: relative;
    overflow: hidden;
  }

  .aiw-callout::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -20%;
    width: 35%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
    transform: rotate(18deg);
    animation: aiwShine 5s ease-in-out infinite;
  }

  .aiw-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
  }

  .aiw-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .22s ease, opacity .22s ease;
  }

  .aiw-button:hover {
    transform: translateY(-3px);
    opacity: .92;
  }

  .aiw-button-primary {
    background: linear-gradient(135deg, var(--aiw-accent), var(--aiw-accent-2));
    color: white;
    animation: aiwPulse 2.6s ease-in-out infinite;
  }

  .aiw-button-secondary {
    background: rgba(255,255,255,.1);
    border: 1px solid var(--aiw-border);
    color: white;
  }

  .aiw-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }

  .aiw-list li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--aiw-border);
    color: var(--aiw-muted);
  }

  .aiw-list strong {
    color: white;
  }

  .aiw-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .aiw-placeholder {
    min-height: 230px;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 1px dashed rgba(255,255,255,.24);
    border-radius: 24px;
    background: rgba(255,255,255,.055);
    color: var(--aiw-muted);
    text-align: center;
    animation: aiwFloat 5s ease-in-out infinite;
  }

  .aiw-placeholder:nth-child(2) {
    animation-delay: .8s;
  }

  .aiw-faq details {
    border: 1px solid var(--aiw-border);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    padding: 16px 18px;
    margin-bottom: 12px;
  }

  .aiw-faq summary {
    cursor: pointer;
    color: white;
    font-weight: 700;
    font-size: 18px;
  }

  .aiw-faq p {
    margin-top: 12px;
  }

  .aiw-footer-box {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(52,211,153,.13), rgba(56,189,248,.13));
    border: 1px solid var(--aiw-border);
    margin-bottom: 54px;
  }

  @keyframes aiwFadeUp {
    from {
      opacity: 0;
      transform: translateY(22px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes aiwPulse {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(56,189,248,.35);
    }
    50% {
      box-shadow: 0 0 0 10px rgba(56,189,248,0);
    }
  }

  @keyframes aiwShine {
    0%, 35% {
      transform: translateX(-160%) rotate(18deg);
    }
    65%, 100% {
      transform: translateX(420%) rotate(18deg);
    }
  }

  @keyframes aiwFloat {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  @media (max-width: 860px) {
    .aiw-grid,
    .aiw-before-after {
      grid-template-columns: 1fr;
    }

    .aiw-hero {
      padding-top: 46px;
    }

    .aiw-step {
      grid-template-columns: 1fr;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .aiw-article *,
    .aiw-article *::before,
    .aiw-article *::after {
      animation: none !important;
      transition: none !important;
    }
  }

  .aiw-article h1,
  .aiw-article h2,
  .aiw-article h3,
  .aiw-article summary,
  .aiw-article strong {
    color: var(--aiw-text) !important;
  }

  .aiw-article .aiw-gradient-text {
    color: transparent !important;
  }

  .aiw-article .aiw-button,
  .aiw-article .aiw-button:visited,
  .aiw-article .aiw-button:hover {
    color: #fff !important;
  }
