﻿
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0F0E2E;
      --navy2:  #1A1040;
      --blue:   #7C3AED;
      --blue-l: #8B5CF6;
      --yellow: #C4B5FD;
      --bg:     #F5F3FF;
      --text:   #18191F;
      --muted:  #525B6E;
      --white:  #FFFFFF;
      --radius: 8px;
    }

    body {
      font-family: 'Segoe UI', Inter, sans-serif;
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ── HERO BUTTONS ─────────────────────────────── */
    .hero-btns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      width: fit-content;
    }
    .hero-btns .btn { justify-content: center; white-space: nowrap; }

    /* ── BUTTONS ──────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 12px 24px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: opacity .2s, transform .15s;
    }
    .btn:hover { opacity: .88; transform: translateY(-1px); }
    .btn-blue {
      background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
      color: var(--white);
      box-shadow: 0 4px 14px rgba(124,58,237,.3);
      position: relative;
      overflow: hidden;
    }
    .btn-blue::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 55%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
      transform: skewX(-18deg);
      transition: left .5s ease;
    }
    .btn-blue:hover::before { left: 160%; }
    .btn-blue:hover { box-shadow: 0 6px 22px rgba(124,58,237,.5); }

    .btn-yellow{ background: var(--yellow); color: #2D1B69; }
    .btn-outline {
      background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7);
      position: relative; overflow: hidden; z-index: 0;
      transition: color .35s ease, border-color .35s ease, box-shadow .35s ease;
    }
    .btn-outline::before {
      content: ''; position: absolute; inset: 0;
      background: var(--white);
      transform: translateX(-102%);
      transition: transform .38s cubic-bezier(.4,0,.2,1);
      z-index: -1;
    }
    .btn-outline:hover { color: var(--navy); border-color: var(--white); box-shadow: 0 8px 24px rgba(255,255,255,.15); }
    .btn-outline:hover::before { transform: translateX(0); }

    .btn-outline-blue {
      background: transparent; color: var(--blue); border: 2px solid var(--blue);
      position: relative; overflow: hidden; z-index: 0;
      transition: color .35s ease, border-color .35s ease, box-shadow .35s ease;
    }
    .btn-outline-blue::before {
      content: ''; position: absolute; inset: 0;
      background: var(--blue);
      transform: translateX(-102%);
      transition: transform .38s cubic-bezier(.4,0,.2,1);
      z-index: -1;
    }
    .btn-outline-blue:hover { color: #fff; box-shadow: 0 8px 24px rgba(124,58,237,.25); }
    .btn-outline-blue:hover::before { transform: translateX(0); }

    .btn-ghost {
      background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 10px 20px;
      position: relative; overflow: hidden; z-index: 0;
      transition: color .35s ease, border-color .35s ease, box-shadow .35s ease;
    }
    .btn-ghost::before {
      content: ''; position: absolute; inset: 0;
      background: var(--blue);
      transform: translateX(-102%);
      transition: transform .38s cubic-bezier(.4,0,.2,1);
      z-index: -1;
    }
    .btn-ghost:hover { color: #fff; box-shadow: 0 8px 24px rgba(124,58,237,.25); }
    .btn-ghost:hover::before { transform: translateX(0); }

    /* ── NAVBAR ───────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      box-shadow: 0 1px 8px rgba(0,0,0,.08);
      padding: 0 80px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      transition: transform .6s cubic-bezier(.4,0,.2,1), filter .3s ease;
    }
    .nav-logo:hover .logo-icon {
      transform: rotate(360deg);
      filter: drop-shadow(0 0 8px rgba(124,58,237,.65));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      display: block;
      position: relative;
      padding-bottom: 5px;
      transition: color .2s;
    }

    .nav-links a:hover { color: var(--blue); }

    .nav-links a.active {
      color: var(--blue);
      font-weight: 600;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--blue-l));
      border-radius: 2px;
      transition: width .3s ease;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }

    .nav-cta { display: flex; align-items: center; gap: 10px; }
    .nav-cta .btn {
      border-radius: 50px;
      padding: 10px 22px;
      font-size: 14px;
    }
    .nav-cta .btn-yellow {
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
      box-shadow: none;
      transition: background .2s, color .2s, box-shadow .2s, transform .15s;
    }
    .nav-cta .btn-yellow:hover {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 4px 14px rgba(124,58,237,.3);
      opacity: 1;
    }

    .nav-logo-name {
      background: linear-gradient(135deg, #0F0E2E 0%, #7C3AED 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      transition: background .2s;
    }
    .hamburger:hover { background: var(--bg); }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform .3s ease, opacity .3s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ─────────────────────────────────────── */
    .hero {
      background: var(--navy);
      background-image:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124,58,237,.25) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='600'%3E%3Cpath d='M0 400 Q480 200 960 350 T1920 300' stroke='rgba(255,255,255,.04)' stroke-width='2' fill='none'/%3E%3Cpath d='M0 480 Q480 280 960 430 T1920 380' stroke='rgba(255,255,255,.04)' stroke-width='2' fill='none'/%3E%3Cpath d='M0 560 Q480 360 960 510 T1920 460' stroke='rgba(255,255,255,.04)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
      background-size: cover;
      min-height: 540px;
      display: flex;
      align-items: center;
      padding: 80px 80px;
      gap: 60px;
    }

    .hero-text { flex: 1; max-width: 560px; }
    .hero-text h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .hero-text p {
      color: rgba(255,255,255,.75);
      font-size: 15px;
      margin-bottom: 32px;
      max-width: 420px;
    }

    .hero-art {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Dashboard illustration */
    .dashboard {
      width: 100%;
      max-width: 480px;
    }

    /* ── SECTION SHARED ───────────────────────────── */
    .section { padding: 90px 80px; position: relative; }
    .section-light { background: var(--white); }
    .section-bg    { background: var(--bg); }
    .section-dark  { background: var(--navy); }

    .feature-row {
      display: flex;
      align-items: center;
      gap: 80px;
    }
    .feature-row.reverse { flex-direction: row-reverse; }
    .feature-text { flex: 1; }
    .feature-art  { flex: 1; display: flex; justify-content: center; }
    .about-photo-wrap { align-items: center; }
    .real-mockup {
      width: 100%;
      max-width: 540px;
      border-radius: 16px;
      box-shadow: 0 24px 64px rgba(0,0,0,.12), 0 8px 24px rgba(124,58,237,.08);
      display: block;
    }
    .about-photo {
      width: 100%;
      max-width: 380px;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      border-radius: 20px;
      box-shadow: 0 24px 64px rgba(124,58,237,.15), 0 0 0 1px rgba(124,58,237,.1);
    }

    .feature-text h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .feature-text p {
      color: var(--muted);
      font-size: 15px;
      max-width: 420px;
      margin-bottom: 28px;
    }


    /* ── ILLUSTRATION PLACEHOLDERS ────────────────── */
    .illus {
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 72px;
    }

    /* Project management illustration */
    .illus-pm {
      width: 400px; height: 320px;
      background: linear-gradient(135deg,#F5F3FF 0%,#EDE9FE 100%);
      position: relative;
      overflow: hidden;
    }
    .illus-pm::before {
      content: '';
      position: absolute;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: linear-gradient(135deg,#C4B5FD,#8B5CF6);
      top: -40px; right: -40px;
      opacity: .3;
    }

    /* Collaboration illustration */
    .illus-collab {
      width: 340px; height: 340px;
      position: relative;
    }
    .collab-ring {
      width: 280px; height: 280px;
      border: 2px dashed #CBD5E1;
      border-radius: 50%;
      position: relative;
      margin: 30px auto;
    }
    .avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border: 3px solid white;
      box-shadow: 0 2px 8px rgba(0,0,0,.15);
    }

    /* ── PRICING ──────────────────────────────────── */
    /* Custom software workflow */
    .software-builder {
      position: relative;
      width: min(100%, 480px);
      height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }
    .builder-lines {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: visible;
    }
    .builder-lines path {
      stroke: #A78BFA;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-dasharray: 7 8;
      opacity: .58;
      animation: workflowLine 3.8s linear infinite;
    }
    .builder-window {
      position: relative;
      z-index: 2;
      width: 292px;
      background: #0D0B2A;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 26px 66px rgba(15,14,46,.28), 0 0 0 1px rgba(124,58,237,.16);
      animation: builderFloat 8s ease-in-out infinite;
    }
    .builder-bar {
      height: 42px;
      background: #1A1640;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .builder-dots { display: flex; gap: 6px; }
    .builder-dots span {
      width: 9px;
      height: 9px;
      display: block;
      border-radius: 50%;
    }
    .builder-title {
      color: rgba(255,255,255,.42);
      font-size: 11px;
      font-family: 'Courier New', Consolas, monospace;
    }
    .builder-body { padding: 16px; }
    .builder-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 14px;
    }
    .builder-tabs span {
      height: 22px;
      padding: 0 10px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.5);
      font-size: 9px;
      font-weight: 700;
    }
    .builder-tabs span:first-child {
      background: linear-gradient(90deg, #7C3AED, #8B5CF6);
      color: #fff;
    }
    .builder-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(10px);
      animation: builderItemIn .45s ease forwards;
    }
    .builder-card:nth-child(2) { animation-delay: .5s; }
    .builder-card:nth-child(3) { animation-delay: .9s; }
    .builder-card:nth-child(4) { animation-delay: 1.3s; }
    .builder-card strong {
      display: block;
      color: #fff;
      font-size: 12px;
      line-height: 1.1;
      margin-bottom: 7px;
    }
    .builder-field {
      height: 8px;
      border-radius: 5px;
      background: rgba(255,255,255,.1);
      margin-bottom: 6px;
      overflow: hidden;
    }
    .builder-field span {
      display: block;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, #6EE7B7, #C4B5FD);
      border-radius: inherit;
      animation: builderFill 1.6s ease forwards;
    }
    .builder-card:nth-child(2) .builder-field span { animation-delay: .95s; }
    .builder-card:nth-child(3) .builder-field span { animation-delay: 1.25s; }
    .builder-card:nth-child(4) .builder-field span { animation-delay: 1.55s; }
    .builder-module {
      position: absolute;
      z-index: 3;
      min-width: 108px;
      padding: 11px 12px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid #EDE9FE;
      box-shadow: 0 16px 38px rgba(124,58,237,.15);
      color: #151528;
      opacity: 0;
      animation: moduleIn .45s ease forwards, moduleFloat 6s ease-in-out infinite;
    }
    .builder-module strong {
      display: block;
      font-size: 11px;
      line-height: 1.1;
      margin-bottom: 4px;
    }
    .builder-module span {
      display: block;
      color: #64748B;
      font-size: 9px;
      line-height: 1.15;
    }
    .module-customers { top: 30px; left: 4px; animation-delay: .25s, 1.1s; }
    .module-tasks { top: 62px; right: 0; animation-delay: .55s, 1.4s; }
    .module-reports { bottom: 52px; left: 20px; animation-delay: .85s, 1.7s; }
    .module-automation { bottom: 24px; right: 22px; animation-delay: 1.15s, 2s; }
    .workflow-ready {
      position: absolute;
      z-index: 4;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: 50px;
      background: rgba(16,185,129,.12);
      border: 1px solid rgba(16,185,129,.25);
      color: #047857;
      font-size: 11px;
      font-weight: 800;
      white-space: nowrap;
      backdrop-filter: blur(10px);
      opacity: 0;
      animation: workflowReadyIn .8s ease 1.55s forwards;
    }
    .workflow-ready span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10B981;
      box-shadow: 0 0 0 5px rgba(16,185,129,.12);
    }
    @keyframes workflowLine { to { stroke-dashoffset: -60; } }
    @keyframes builderFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-9px); }
    }
    @keyframes moduleFloat {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -7px; }
    }
    @keyframes moduleIn {
      from { opacity: 0; transform: scale(.9); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes builderItemIn { to { opacity: 1; transform: translateY(0); } }
    @keyframes builderFill { to { width: var(--w); } }
    @keyframes workflowReadyIn { to { opacity: 1; transform: translateX(-50%) translateY(0); } }
    .software-art > svg { display: none; }

    /* Modular software assembly */
    .software-builder {
      height: 380px;
      isolation: isolate;
    }
    .builder-lines path {
      stroke: #8B5CF6;
      stroke-width: 1.8;
      stroke-dasharray: 1;
      stroke-dashoffset: 1;
      opacity: 0;
      animation: lineDrawIn .7s ease forwards;
    }
    @keyframes lineDrawIn {
      0%   { stroke-dashoffset: 1; opacity: 0; }
      15%  { opacity: .55; }
      100% { stroke-dashoffset: 0; opacity: .45; }
    }
    #line-crm        { animation-delay: .15s; }
    #line-login      { animation-delay: .35s; }
    #line-dashboard  { animation-delay: .55s; }
    #line-export     { animation-delay: .75s; }
    #line-automation { animation-delay: .95s; }
    .builder-core {
      position: relative;
      z-index: 2;
      width: 154px;
      height: 154px;
      border-radius: 34px;
      background: linear-gradient(145deg, #0F0E2E, #24135C);
      box-shadow: 0 26px 70px rgba(76,29,149,.28), inset 0 0 0 1px rgba(255,255,255,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: coreSettle .9s ease .2s both;
    }
    .builder-core::before,
    .builder-core::after {
      content: '';
      position: absolute;
      inset: -22px;
      border: 1px solid rgba(124,58,237,.18);
      border-radius: 44px;
      animation: none;
    }
    .builder-core::after {
      inset: -42px;
      border-color: rgba(16,185,129,.16);
    }
    .core-logo {
      position: relative;
      z-index: 2;
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
    }
    .core-logo img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      border-radius: 9px;
    }
    .core-slot {
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 7px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.16);
    }
    .slot-1 { top: 16px; left: 28px; }
    .slot-2 { top: 16px; right: 28px; }
    .slot-3 { right: 16px; bottom: 42px; }
    .slot-4 { left: 16px; bottom: 42px; }
    .slot-5 { left: 50%; bottom: 16px; transform: translateX(-50%); }
    .builder-module {
      width: 144px;
      padding: 10px 12px 10px 12px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid #EDE9FE;
      box-shadow: 0 18px 42px rgba(76,29,149,.14);
      opacity: 0;
      transform: translate(var(--from-x), var(--from-y)) scale(.96);
      animation: moduleSettle 1.35s cubic-bezier(.16, 1, .3, 1) forwards;
    }
    .builder-module strong {
      font-size: 12px;
      color: #151528;
      display: block;
      padding-right: 18px;
    }
    .builder-module span {
      color: #64748B;
      font-size: 9px;
      display: block;
    }
    .builder-module::after {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 3px;
      background: #10B981;
      right: 10px;
      top: 12px;
      opacity: 1;
    }
    .module-crm { top: 18px; left: 18px; --from-x: -42px; --from-y: -24px; animation-delay: .15s; }
    .module-login { top: 18px; right: 18px; --from-x: 42px; --from-y: -24px; animation-delay: .35s; }
    .module-dashboard { right: 0; bottom: 132px; --from-x: 52px; --from-y: 0; animation-delay: .55s; }
    .module-export { bottom: 12px; right: 4px; --from-x: 34px; --from-y: 36px; animation-delay: .75s; }
    .module-automation { bottom: 76px; left: 0; --from-x: -52px; --from-y: 18px; animation-delay: .95s; }
    .workflow-ready {
      background: rgba(15,14,46,.9);
      color: #fff;
      border-color: rgba(124,58,237,.28);
    }
    /* ── Pulsing core rings ── */
    .core-ring {
      position: absolute;
      inset: -10px;
      border-radius: 40px;
      border: 1.5px solid rgba(124,58,237,.45);
      pointer-events: none;
      animation: ringExpand 4s ease-out 1.3s infinite;
    }
    .core-ring-2 { display: none; }
    @keyframes ringExpand {
      0%   { transform: scale(1);   opacity: .7; }
      100% { transform: scale(1.8); opacity: 0;  }
    }

    /* ── Slot activation ── */
    @keyframes slotActivate {
      0%   { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.16); }
      40%  { background: rgba(124,58,237,.55);  border-color: rgba(139,92,246,.9);
             box-shadow: 0 0 12px rgba(124,58,237,.55); }
      100% { background: rgba(124,58,237,.22);  border-color: rgba(139,92,246,.42); }
    }
    .slot-1 { animation: slotActivate .55s ease .15s both; }
    .slot-2 { animation: slotActivate .55s ease .35s both; }
    .slot-3 { animation: slotActivate .55s ease .55s both; }
    .slot-4 { animation: slotActivate .55s ease .95s both; }
    .slot-5 { animation: slotActivate .55s ease .75s both; }

    /* ── Active card cycling ── */
    .builder-module {
      transition: translate .35s ease, box-shadow .35s ease, border-color .35s ease;
    }
    .builder-module.active {
      translate: 0 -4px;
      border-color: rgba(124,58,237,.55);
      box-shadow: 0 22px 52px rgba(76,29,149,.22),
                  0 0 0 2px rgba(124,58,237,.28),
                  0 0 28px rgba(124,58,237,.22);
    }

    @keyframes coreSettle {
      from { opacity: 0; transform: scale(.96); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes moduleSettle {
      to { opacity: 1; transform: translate(0, 0) scale(1); }
    }

    /* ══ API & Backend Art ══ */
    .api-art {
      position: relative;
      width: 100%;
      max-width: 440px;
      flex-shrink: 0;
    }
    .api-terminal {
      background: #0F0E2E;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 28px 64px rgba(15,14,46,.32), 0 0 0 1px rgba(255,255,255,.08);
      font-family: 'Courier New', 'Consolas', monospace;
    }
    .api-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      background: rgba(255,255,255,.04);
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .api-dots { display: flex; gap: 5px; }
    .api-dots span { width: 10px; height: 10px; border-radius: 50%; }
    .api-dots span:nth-child(1) { background: #FF5F57; }
    .api-dots span:nth-child(2) { background: #FFBD2E; }
    .api-dots span:nth-child(3) { background: #28CA41; }
    .api-title {
      flex: 1;
      font-size: 11px;
      color: rgba(255,255,255,.35);
      font-family: 'Segoe UI', sans-serif;
      letter-spacing: .03em;
    }
    .api-live {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      color: #10B981;
      font-family: 'Segoe UI', sans-serif;
      font-weight: 600;
    }
    .api-live em {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #10B981;
      display: block;
      animation: apiDotPulse 1.8s ease-in-out infinite;
    }
    @keyframes apiDotPulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: .35; }
    }
    .api-body {
      padding: 18px 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .api-req {
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      transform: translateX(-10px);
      animation: apiLineIn .4s ease both;
      animation-play-state: paused;
    }
    .api-art.in-view .api-req { animation-play-state: running; }
    .req-1 { animation-delay: .1s; }
    .req-2 { animation-delay: .45s; }
    .req-3 { animation-delay: .8s; }
    .req-4 { animation-delay: 1.15s; }
    .req-5 { animation-delay: 1.5s; }
    @keyframes apiLineIn {
      to { opacity: 1; transform: translateX(0); }
    }
    /* Method badges */
    .m {
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      width: 36px;
      text-align: center;
      letter-spacing: .04em;
      flex-shrink: 0;
    }
    .m.get  { background: rgba(16,185,129,.15); color: #10B981; }
    .m.post { background: rgba(124,58,237,.2);  color: #A78BFA; }
    .m.del  { background: rgba(239,68,68,.14);  color: #F87171; }
    .ep {
      flex: 1;
      font-size: 11.5px;
      color: rgba(255,255,255,.72);
      letter-spacing: .01em;
    }
    .st {
      font-size: 9px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px;
      flex-shrink: 0;
    }
    .st.ok { background: rgba(16,185,129,.15); color: #10B981; }
    .st.cr { background: rgba(139,92,246,.2);  color: #A78BFA; }
    .st.nc { background: rgba(100,116,139,.18); color: #94A3B8; }
    .ms {
      font-size: 10px;
      color: rgba(255,255,255,.28);
      width: 30px;
      text-align: right;
      flex-shrink: 0;
    }
    .api-caret {
      display: inline-block;
      width: 7px;
      height: 13px;
      background: #8B5CF6;
      border-radius: 1px;
      margin-left: 2px;
      animation: apiCaretBlink 1s step-end infinite;
      animation-delay: 2s;
      opacity: 0;
    }
    @keyframes apiCaretBlink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }
    /* Footer row: DB badge + latency pill */
    .api-footer {
      display: flex;
      align-items: stretch;
      gap: 10px;
      margin-top: 12px;
      opacity: 0;
      animation: apiLineIn .4s ease 1.9s both;
      animation-play-state: paused;
    }
    .api-art.in-view .api-footer { animation-play-state: running; }
    .api-db {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid #EDE9FE;
      border-radius: 12px;
      padding: 11px 14px;
      box-shadow: 0 4px 16px rgba(76,29,149,.08);
    }
    .api-db > div { flex: 1; }
    .api-db strong { display: block; font-size: 12px; color: #151528; }
    .api-db span   { font-size: 10px; color: #64748B; }
    .db-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #10B981;
      flex-shrink: 0;
    }
    .api-latency {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #fff;
      border: 1px solid #EDE9FE;
      border-radius: 12px;
      padding: 11px 16px;
      box-shadow: 0 4px 16px rgba(76,29,149,.08);
      flex-shrink: 0;
    }
    .lat-val {
      font-size: 18px;
      font-weight: 700;
      color: #7C3AED;
      line-height: 1;
    }
    .lat-lbl { font-size: 9px; color: #94A3B8; margin-top: 3px; }

    .pricing-header { text-align: center; margin-bottom: 48px; }
    .pricing-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }
    .pricing-header p  { color: var(--muted); max-width: 480px; margin: 0 auto; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
    }

    .plan {
      border: 1.5px solid #E2E8F0;
      border-radius: 12px;
      padding: 36px 28px;
      background: var(--white);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .plan > div:first-child { flex: 1; }
    .plan .btn {
      display: block;
      width: 100%;
      box-sizing: border-box;
      text-align: center;
      padding: 14px 20px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      margin-top: auto;
      flex-shrink: 0;
    }
    .plan.featured {
      background: linear-gradient(160deg, #0D0B24 0%, #13112E 100%);
      color: var(--white);
      border-color: rgba(124,58,237,.25);
      transform: translateY(-12px);
      box-shadow:
        0 24px 60px rgba(0,0,0,.35),
        0 0 0 1px rgba(124,58,237,.2),
        0 0 40px rgba(124,58,237,.06) inset;
    }

    .plan-name { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
    .tech-stack { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.07); }
    .plan.featured .tech-stack { border-top-color: rgba(255,255,255,.12); }
    .tech-tag { font-size: 10px; font-weight: 600; letter-spacing: .05em; color: var(--muted); background: rgba(0,0,0,.05); padding: 2px 8px; border-radius: 4px; }
    .plan.featured .tech-tag { color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
    .plan.featured .plan-name { color: rgba(255,255,255,.7); }
    .project-status {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
      padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
    }
    .project-status.live {
      background: rgba(16,185,129,.12); color: #059669;
      border: 1px solid rgba(16,185,129,.25);
    }
    .project-status.building {
      background: rgba(245,158,11,.10); color: #D97706;
      border: 1px solid rgba(245,158,11,.25);
    }
    .project-status .status-dot {
      width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    }
    .project-status.live .status-dot { background: #10B981; animation: blink 1.6s ease-in-out infinite; }
    .project-status.building .status-dot { background: #F59E0B; animation: blink 1.2s ease-in-out infinite; }
    .plan-price { font-size: 2.4rem; font-weight: 800; line-height: 1; }
    .plan-price span { font-size: 1rem; font-weight: 500; }
    .plan-desc { font-size: 13px; color: var(--muted); }
    .plan.featured .plan-desc { color: rgba(255,255,255,.75); }

    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .plan-features li {
      font-size: 14px;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .plan.featured .plan-features li { color: rgba(255,255,255,.85); }
    .plan-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
    .plan.featured .plan-features li::before { color: var(--yellow); }

    .plan .btn { width: 100%; justify-content: center; margin-top: 4px; }

    /* ── CTA DARK ─────────────────────────────────── */
    .cta-dark {
      background: var(--navy);
      background-image:
        radial-gradient(ellipse 100% 80% at 20% 50%, rgba(124,58,237,.2) 0%, transparent 60%);
      padding: 90px 80px;
      display: flex;
      align-items: center;
      gap: 60px;
      position: relative;
    }
    .cta-dark-text { flex: 1; }
    .cta-dark-text h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.25;
    }
    .cta-dark-text h2 u { text-decoration-color: var(--yellow); }
    .cta-dark-text p { color: rgba(255,255,255,.7); max-width: 420px; margin-bottom: 28px; }
    .cta-dark-art { flex: 1; display: flex; justify-content: center; align-items: center; }

    /* ── CTA CHAT MOCKUP ────────────────────────── */
    .cta-anim-wrap { width: 300px; flex-shrink: 0; }
    .chat-wrap {
      background: #1A1836;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.1);
      box-shadow: 0 28px 64px rgba(0,0,0,.45);
    }
    .chat-header {
      background: #141230;
      padding: 13px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .chat-av {
      width: 34px; height: 34px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700;
      flex-shrink: 0;
    }
    .av-client { background: rgba(124,58,237,.3); color: #C4B5FD; }
    .av-paul   { background: rgba(16,185,129,.2); color: #6EE7B7; width: 28px; height: 28px; font-size: 11px; }
    .chat-hinfo { flex: 1; }
    .chat-hname { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
    .chat-hsub  { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 1px; }
    .chat-online {
      width: 8px; height: 8px; border-radius: 50%; background: #10B981;
      animation: chatPulse 1.4s ease-in-out infinite;
    }
    @keyframes chatPulse { 0%,100%{opacity:1} 50%{opacity:.2} }
    .chat-body {
      padding: 14px 14px 6px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .chat-msg {
      display: flex; flex-direction: column;
      opacity: 0;
      animation: chatIn .35s ease both;
    }
    .chat-msg.msg-in  { align-items: flex-start; }
    .chat-msg.msg-out { align-items: flex-end; }
    .chat-msg.msg-1 { animation-delay: .4s; }
    .chat-msg.msg-2 { animation-delay: 1.4s; }
    .chat-msg.msg-3 { animation-delay: 2.5s; }
    @keyframes chatIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .chat-bubble {
      max-width: 205px;
      padding: 9px 13px;
      border-radius: 14px;
      font-size: 12.5px;
      line-height: 1.45;
      color: rgba(255,255,255,.88);
    }
    .msg-in  .chat-bubble { background: rgba(255,255,255,.09); border-bottom-left-radius: 4px; }
    .msg-out .chat-bubble { background: #7C3AED; border-bottom-right-radius: 4px; }
    .chat-time { font-size: 10px; color: rgba(255,255,255,.28); margin-top: 3px; padding: 0 4px; }
    .chat-typing-row {
      display: flex; align-items: center; gap: 8px;
      opacity: 0;
      animation: chatIn .35s ease 3.5s both;
    }
    .chat-typing-bubble {
      background: rgba(255,255,255,.09);
      border-radius: 14px; border-bottom-left-radius: 4px;
      padding: 10px 14px;
      display: flex; align-items: center; gap: 4px;
    }
    .chat-typing-bubble span {
      display: block; width: 5px; height: 5px;
      border-radius: 50%; background: rgba(255,255,255,.45);
      animation: chatDot .9s ease-in-out infinite;
    }
    .chat-typing-bubble span:nth-child(2) { animation-delay: .2s; }
    .chat-typing-bubble span:nth-child(3) { animation-delay: .4s; }
    @keyframes chatDot {
      0%,60%,100% { transform: translateY(0); opacity: .4; }
      30%          { transform: translateY(-4px); opacity: 1; }
    }
    .chat-input-bar {
      margin: 10px 14px 14px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px;
      padding: 9px 10px 9px 13px;
      display: flex; align-items: center; gap: 8px;
    }
    .chat-input-placeholder { flex: 1; font-size: 12px; color: rgba(255,255,255,.22); }
    .chat-send-btn {
      width: 28px; height: 28px; border-radius: 50%;
      background: #7C3AED; border: none;
      color: white; font-size: 13px; cursor: default;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .chat-msg,
    .chat-typing-row { animation-play-state: paused; }
    .cta-dark-art.visible .chat-msg,
    .cta-dark-art.visible .chat-typing-row { animation-play-state: running; }

    /* 3D character placeholder */
    .char-illus {
      width: 200px; height: 300px;
      background: linear-gradient(180deg, #FCD34D 0%, #F97316 100%);
      border-radius: 100px 100px 0 0;
      opacity: .85;
      position: relative;
    }

    /* ── DATA SECTION ─────────────────────────────── */
    .data-art {
      width: 320px; height: 240px;
      background: #F5F3FF;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* ── SPONSORS ─────────────────────────────────── */
    .sponsors { text-align: center; padding: 90px 80px; position: relative; }
    .sponsors h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 48px; }
    .sponsor-logos {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .sponsor-logo {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: transform .2s;
      letter-spacing: .02em;
    }
    .sponsor-logo:hover { transform: translateY(-4px); }

    /* ── INTEGRATIONS (dark) ──────────────────────── */
    .integrations {
      background: var(--navy);
      padding: 90px 80px;
      display: flex;
      align-items: center;
      gap: 80px;
      position: relative;
    }
    .integrations-art { flex: 1; display: flex; align-items: center; justify-content: center; }

    /* ── PROJECT TIMELINE ───────────────────────── */
    .proj-timeline { display: flex; flex-direction: column; width: 300px; }
    .proj-step {
      display: flex; align-items: flex-start; gap: 16px;
      opacity: 0; animation: stepIn .4s ease both;
      animation-play-state: paused;
    }
    .integrations-art.visible .proj-step { animation-play-state: running; }
    .proj-step:nth-child(1) { animation-delay: .1s; }
    .proj-step:nth-child(2) { animation-delay: .6s; }
    .proj-step:nth-child(3) { animation-delay: 1.1s; }
    .proj-step:nth-child(4) { animation-delay: 1.6s; }
    @keyframes stepIn {
      from { opacity: 0; transform: translateX(-14px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .proj-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
    .proj-dot {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 700; flex-shrink: 0;
    }
    .proj-dot.done    { background: rgba(16,185,129,.18); border: 2px solid #10B981; color: #10B981; }
    .proj-dot.active  { background: rgba(124,58,237,.25); border: 2px solid #8B5CF6;
                        animation: dotPulse 1.6s ease-in-out infinite; }
    .proj-dot.pending { background: rgba(255,255,255,.05); border: 2px solid rgba(255,255,255,.12); color: rgba(255,255,255,.25); }
    @keyframes dotPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,.5); }
      50%       { box-shadow: 0 0 0 8px rgba(139,92,246,0); }
    }
    .proj-connector {
      width: 2px; flex: 1; min-height: 28px;
      margin: 5px 0;
    }
    .proj-connector.done    { background: linear-gradient(to bottom, #10B981, rgba(16,185,129,.25)); }
    .proj-connector.pending { background: rgba(255,255,255,.08); }
    .proj-body { padding-bottom: 24px; padding-top: 6px; }
    .proj-label { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 3px; }
    .proj-label.dim { color: rgba(255,255,255,.3); }
    .proj-sub { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.5; }
    .proj-bar {
      margin-top: 10px; height: 4px; border-radius: 2px;
      background: rgba(255,255,255,.1); width: 140px; overflow: hidden;
    }
    .proj-bar-fill {
      height: 100%; border-radius: 2px;
      background: linear-gradient(to right, #7C3AED, #C4B5FD);
      width: 0;
      animation: barFill 1.8s ease 1.3s forwards;
      animation-play-state: paused;
    }
    .integrations-art.visible .proj-bar-fill { animation-play-state: running; }
    @keyframes barFill { to { width: 62%; } }
    .integrations-text { flex: 1; color: var(--white); }
    .integrations-text h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .integrations-text p {
      color: rgba(255,255,255,.7);
      margin-bottom: 28px;
      max-width: 380px;
    }

    /* App icons cluster */
    .app-cluster {
      width: 320px; height: 320px;
      position: relative;
    }
    .app-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 4px 12px rgba(0,0,0,.25);
    }

    /* ── CTA LIGHT ───────────────────────────────── */
    .cta-light {
      background: var(--white);
      background-image: radial-gradient(ellipse 100% 80% at 20% 50%, rgba(124,58,237,.08) 0%, transparent 60%);
    }
    .cta-light .cta-dark-text h2 {
      background: linear-gradient(135deg, #0F0E2E 0%, #7C3AED 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .cta-light .cta-dark-text h2 u {
      text-decoration-color: var(--blue);
      -webkit-text-decoration-color: var(--blue);
    }
    .cta-light .cta-dark-text p {
      color: var(--muted);
    }

    /* ── INTEGRATIONS LIGHT ─────────────────────── */
    .integrations-light {
      background: var(--bg);
    }
    .integrations-light .integrations-text {
      color: var(--text);
    }
    .integrations-light .integrations-text h2 {
      background: linear-gradient(135deg, #0F0E2E 0%, #7C3AED 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .integrations-light .integrations-text p {
      color: var(--muted);
    }
    .integrations-light .proj-label {
      color: var(--text);
    }
    .integrations-light .proj-label.dim {
      color: var(--muted);
    }
    .integrations-light .proj-sub {
      color: var(--muted);
    }
    .integrations-light .proj-dot.pending {
      background: rgba(124,58,237,.05);
      border-color: rgba(124,58,237,.2);
      color: rgba(124,58,237,.4);
    }
    .integrations-light .proj-connector.pending {
      background: rgba(0,0,0,.1);
    }
    .integrations-light .proj-bar {
      background: rgba(124,58,237,.1);
    }

    /* ── TESTIMONIALS ─────────────────────────────── */
    .testimonials { padding: 90px 80px; position: relative; }
    .testimonials h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      text-align: center;
      margin-bottom: 48px;
    }
    .testimonials h2 span {
      position: relative;
      display: inline-block;
    }
    .testimonials h2 span::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 4px;
      background: var(--yellow);
      border-radius: 2px;
    }

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

    .testimonial-card {
      border-radius: 12px;
      padding: 32px 28px;
      color: var(--white);
      position: relative;
    }
    .tc-1 { background: #4C1D95; }
    .tc-2 { background: #7C3AED; }
    .tc-3 { background: #2D1B69; }

    .quote-icon {
      font-size: 40px;
      line-height: 1;
      opacity: .5;
      margin-bottom: 16px;
      font-family: Georgia, serif;
    }
    .testimonial-card p {
      font-size: 14px;
      line-height: 1.7;
      opacity: .9;
      margin-bottom: 20px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .author-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .author-name { font-weight: 600; font-size: 14px; }
    .author-role { font-size: 12px; opacity: .7; }

    /* ── FOOTER ───────────────────────────────────── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.8);
      padding: 70px 80px 40px;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }

    .footer-brand p {
      font-size: 14px;
      margin-top: 16px;
      opacity: .7;
      max-width: 220px;
    }

    .footer-col h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 18px;
      letter-spacing: .04em;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
    .footer-col ul li a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      opacity: .6;
    }

    /* ── SVG ILLUSTRATIONS ────────────────────────── */

    /* Wave lines in hero bg */
    .hero { position: relative; overflow: hidden; }
    .hero-waves {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .12;
    }

    /* ── GRADIENT TEXT ──────────────────────────────── */
    .hero-text h1 {
      background: linear-gradient(135deg, #fff 5%, #DDD6FE 55%, #A78BFA 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-light .feature-text h2,
    .section-bg .feature-text h2,
    .pricing-header h2,
    .sponsors h2 {
      background: linear-gradient(135deg, #0F0E2E 0%, #7C3AED 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .testimonials h2 span {
      background: linear-gradient(135deg, #0F0E2E 0%, #7C3AED 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── SCROLL REVEAL ───────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── GLOW HOVER ──────────────────────────────── */
    .btn-blue:hover    { box-shadow: 0 0 24px rgba(124,58,237,.55); }
    .btn-yellow:hover  { box-shadow: 0 0 20px rgba(196,181,253,.65); }

    .plan { transition: box-shadow .25s ease, transform .25s ease; }
    .plan:not(.featured):hover {
      box-shadow: 0 12px 36px rgba(124,58,237,.15);
      transform: translateY(-6px);
    }
    .plan.featured:hover {
      box-shadow: 0 28px 64px rgba(124,58,237,.55);
      transform: translateY(-18px);
    }
    .testimonial-card { transition: box-shadow .25s ease, transform .25s ease; }
    .testimonial-card:hover {
      box-shadow: 0 12px 32px rgba(124,58,237,.4);
      transform: translateY(-5px);
    }

    /* ── GLASSMORPHISM NAV ───────────────────────── */
    nav { transition: background .3s ease, box-shadow .3s ease; }
    nav.glass {
      background: rgba(255,255,255,.75);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 2px 28px rgba(124,58,237,.12);
    }

    /* ── HERO MOCKUP ────────────────────────────────── */
    .hero-mockup {
      position: relative;
      width: 430px;
      height: 320px;
      flex-shrink: 0;
    }
    /* Code window */
    .code-window {
      position: absolute;
      top: 0; left: 0;
      width: 272px;
      background: #0D0B2A;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.07);
      animation: floatCode 7s ease-in-out infinite;
    }
    .win-bar {
      background: #1A1640;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .win-dots { display: flex; gap: 6px; }
    .win-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
    .win-title { font-size: 12px; font-family: monospace; color: rgba(255,255,255,.3); margin-left: 6px; }
    .code-body {
      padding: 14px 16px 18px;
      font-family: 'Courier New', Consolas, monospace;
      font-size: 12.5px;
      line-height: 1.9;
    }
    .cl { opacity: 0; transform: translateX(-8px); white-space: nowrap; color: rgba(255,255,255,.7); }
    .cl1 { animation: lineIn .3s ease .5s both; }
    .cl2 { animation: lineIn .3s ease .85s both; }
    .cl3 { animation: lineIn .3s ease 1.15s both; }
    .cl4 { animation: lineIn .3s ease 1.45s both; }
    .cl5 { animation: lineIn .3s ease 1.75s both; }
    .cl6 { animation: lineIn .3s ease 2.1s both; }
    @keyframes lineIn { to { opacity: 1; transform: translateX(0); } }
    .ck { color: #C4B5FD; }
    .cf { color: #A78BFA; }
    .cs { color: #86EFAC; }
    .cn { color: #FDE68A; }
    .cc { color: #6EE7B7; font-style: italic; }
    .caret {
      display: inline-block;
      width: 2px; height: 13px;
      background: #A78BFA;
      margin-left: 2px;
      vertical-align: middle;
      animation: caretBlink .75s step-end infinite;
    }
    @keyframes caretBlink { 50% { opacity: 0; } }

    /* Status badge */
    .hero-status {
      position: absolute;
      top: 128px; right: 4px;
      background: rgba(16,185,129,.11);
      border: 1px solid rgba(16,185,129,.3);
      border-radius: 50px;
      padding: 7px 14px;
      font-size: 11.5px;
      font-weight: 600;
      color: #6EE7B7;
      display: flex;
      align-items: center;
      gap: 7px;
      backdrop-filter: blur(10px);
      opacity: 0;
      animation: fadeSlideIn .4s ease 2.3s forwards, floatStatus 5s ease-in-out 2.7s infinite;
    }
    .pulse-dot {
      width: 8px; height: 8px;
      background: #10B981;
      border-radius: 50%;
      animation: pulseDot 2s ease-in-out infinite;
    }
    @keyframes pulseDot {
      0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
      50%      { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
    }

    /* Dashboard glass */
    .dash-glass {
      position: absolute;
      bottom: 0; right: 0;
      width: 182px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 14px;
      padding: 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,.3);
      animation: floatDash 9s ease-in-out infinite;
    }
    .dash-lbl {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: rgba(255,255,255,.4);
      margin-bottom: 12px;
    }
    .db-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 10.5px;
      color: rgba(255,255,255,.72);
    }
    .db-row:last-child { margin-bottom: 0; }
    .db-icon {
      width: 20px;
      height: 20px;
      border-radius: 6px;
      background: rgba(124,58,237,.24);
      color: #C4B5FD;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      flex-shrink: 0;
    }
    .db-copy { min-width: 0; }
    .db-copy strong {
      display: block;
      color: #fff;
      font-size: 11px;
      line-height: 1.1;
      margin-bottom: 2px;
    }
    .db-copy span {
      display: block;
      color: rgba(255,255,255,.44);
      font-size: 9px;
      line-height: 1.15;
    }

    /* Metric pill */
    .metric-pill {
      position: absolute;
      top: 20px; right: 14px;
      background: rgba(255,255,255,.09);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 12px;
      padding: 10px 14px;
      text-align: center;
      opacity: 0;
      animation: fadeSlideIn .4s ease .7s forwards, floatMetric 6s ease-in-out 1.1s infinite;
    }
    .metric-val { display: block; font-size: 20px; font-weight: 700; color: #fff; line-height: 1; }
    .metric-lbl { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-top: 3px; }

    /* Float keyframes */
    @keyframes floatCode   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    @keyframes floatDash   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
    @keyframes floatStatus { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
    @keyframes floatMetric { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-4px,-6px); } }
    @keyframes fadeSlideIn { from { opacity: 0; transform: scale(.88); } to { opacity: 1; transform: scale(1); } }

    /* ── WEB MOCKUP (Webentwicklung) ─────────────── */
    .web-mockup { position: relative; width: 100%; max-width: 590px; flex-shrink: 0; overflow: visible; }
    .browser-frame {
      width: 100%;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 28px 64px rgba(124,58,237,.14), 0 0 0 1px #EDE9FE;
      overflow: hidden;
      animation: floatCode 9s ease-in-out infinite;
    }
    .browser-chrome {
      background: #F5F3FF;
      border-bottom: 1px solid #EDE9FE;
      padding: 9px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .b-dots { display: flex; gap: 6px; }
    .b-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
    .b-dots span:nth-child(1) { background: #EF4444; }
    .b-dots span:nth-child(2) { background: #F59E0B; }
    .b-dots span:nth-child(3) { background: #10B981; }
    .b-url {
      flex: 1;
      background: #fff;
      border: 1px solid #EDE9FE;
      border-radius: 50px;
      padding: 4px 14px;
      font-size: 11px;
      font-family: monospace;
      color: #525B6E;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .b-url-lock { color: #10B981; }

    /* Split view */
    .browser-split { display: flex; height: 300px; }

    /* Code panel */
    .split-code {
      width: 46%;
      background: #0D0B2A;
      border-right: 1px solid rgba(255,255,255,.07);
      display: flex;
      overflow: hidden;
      flex-shrink: 0;
    }
    .code-nums {
      padding: 12px 6px 12px 10px;
      font-family: monospace;
      font-size: 9px;
      line-height: 1.78;
      color: rgba(255,255,255,.18);
      text-align: right;
      user-select: none;
      flex-shrink: 0;
    }
    .code-content {
      padding: 12px 10px 12px 4px;
      font-family: 'Courier New', Consolas, monospace;
      font-size: 10.5px;
      line-height: 1.78;
      flex: 1;
      overflow: hidden;
    }
    .sc { display: block; white-space: nowrap; color: rgba(255,255,255,.6); }
    .sc.i1 { padding-left: 14px; }
    .sc.i2 { padding-left: 28px; }
    .sc.hl { background: rgba(167,139,250,.1); border-radius: 2px; margin: 0 -4px; padding-left: 18px; }
    .sc-tag  { color: #A78BFA; }
    .sc-attr { color: #86EFAC; }
    .sc-str  { color: #FDE68A; }
    .sc-cmt  { color: #6EE7B7; font-style: italic; }

    /* Preview panel — scaled mini-site */
    .split-preview {
      flex: 1;
      background: #FAFAFA;
      overflow: hidden;
      position: relative;
    }
    /* Inner wrapper rendered at natural size, then scaled down */
    .prev-inner {
      width: calc(100% / 0.47);
      transform: scale(0.47);
      transform-origin: top left;
    }
    .prev-nav {
      background: #fff;
      border-bottom: 1px solid #F0F0F0;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .prev-logo-wrap { display: flex; align-items: center; gap: 9px; }
    .prev-logo-icon {
      width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
      background: linear-gradient(135deg, #7C3AED, #5B21B6);
      color: #fff; font-size: 15px; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
    }
    .prev-logo-label { font-size: 13px; font-weight: 700; color: #1E1850; letter-spacing: .02em; }
    .prev-navlinks { display: flex; gap: 24px; }
    .prev-navtext { font-size: 11px; color: #64748B; font-weight: 500; }

    .prev-hero {
      background: linear-gradient(135deg, #0F0E2E, #2D1B69);
      padding: 28px 24px 32px;
    }
    .prev-hero-tag { font-size: 10px; color: #A78BFA; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
    .prev-h1 { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.2; }
    .prev-h1.accent { color: #C4B5FD; margin-bottom: 12px; }
    .prev-p { font-size: 10px; color: rgba(255,255,255,.55); margin-bottom: 16px; line-height: 1.5; }
    .prev-btns { display: flex; gap: 10px; align-items: center; }
    .prev-cta { font-size: 10px; font-weight: 700; background: #7C3AED; color: #fff; padding: 8px 18px; border-radius: 50px; white-space: nowrap; }
    .prev-cta-ghost { font-size: 10px; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.25); padding: 7px 16px; border-radius: 50px; white-space: nowrap; }

    .prev-cards { display: flex; gap: 14px; padding: 20px 24px; }
    .prev-card {
      flex: 1; height: 120px;
      background: #fff; border-radius: 12px; border: 1px solid #EDE9FE;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 6px; padding: 8px;
    }
    .prev-card-icon { font-size: 24px; line-height: 1; }
    .prev-card-label { font-size: 10px; font-weight: 600; color: #1E1850; text-align: center; }
    .prev-footer { height: 2px; background: #EDE9FE; margin: 0 24px; }

    /* Overlapping mobile mockup */
    .mob-frame {
      position: absolute;
      bottom: -58px;
      right: -70px;
      width: 240px;
      z-index: 10;
      animation: floatDash 7s ease-in-out infinite;
    }
    .real-mob-img {
      width: 100%;
      display: block;
      filter: drop-shadow(0 24px 48px rgba(0,0,0,.32));
    }
    .mob-notch {
      width: 42px; height: 6px;
      background: #1E1850;
      border-radius: 3px;
      margin: 0 auto 7px;
    }
    .mob-screen {
      background: #fff;
      border-radius: 20px;
      height: calc(100% - 18px);
      overflow: hidden;
      color: #151528;
      font-family: Inter, system-ui, sans-serif;
    }
    .mob-chrome {
      background: #F5F3FF;
      padding: 8px 10px;
      border-bottom: 1px solid #EDE9FE;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .mob-logo-bar {
      width: 22px;
      height: 22px;
      object-fit: contain;
      border-radius: 6px;
      display: block;
    }
    .mob-nav-dots { display: flex; gap: 4px; }
    .mob-nav-dots span { width: 16px; height: 4px; background: #DDD6FE; border-radius: 2px; }
    .mob-hero-block {
      background: linear-gradient(135deg, #0F0E2E, #2D1B69);
      padding: 16px 12px 17px;
    }
    .mh {
      display: block;
      color: #fff;
      letter-spacing: 0;
    }
    .mh.lg {
      width: 100%;
      max-width: 104px;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: 5px;
    }
    .mh.md {
      width: 100%;
      max-width: 96px;
      font-size: 10px;
      font-weight: 600;
      line-height: 1.22;
      color: rgba(255,255,255,.78);
      margin-bottom: 7px;
    }
    .mh.sm {
      width: 100%;
      max-width: 105px;
      font-size: 8px;
      line-height: 1.28;
      color: rgba(255,255,255,.52);
      margin-bottom: 11px;
    }
    .mob-cta-bar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 74px;
      height: 22px;
      background: linear-gradient(90deg, #7C3AED, #8B5CF6);
      border-radius: 50px;
      color: #fff;
      font-size: 8px;
      font-weight: 800;
    }
    .mob-cards-col { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
    .mob-card {
      min-height: 42px;
      background: #F5F3FF;
      border-radius: 9px;
      border: 1px solid #EDE9FE;
      padding: 8px 9px;
      overflow: hidden;
    }
    .mob-card strong {
      display: block;
      color: #5B21B6;
      font-size: 9px;
      line-height: 1.15;
      margin-bottom: 4px;
    }
    .mob-card span {
      display: block;
      color: #525B6E;
      font-size: 7.5px;
      line-height: 1.25;
    }

    /* ── ANIMATED HERO BLOBS ─────────────────────── */
    .hero-text, .hero-art { position: relative; z-index: 1; }
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }
    .hero-blob-1 {
      width: 540px; height: 540px;
      background: radial-gradient(circle, rgba(139,92,246,.3) 0%, transparent 70%);
      top: -180px; right: 60px;
      animation: blobFloat 10s ease-in-out infinite;
    }
    .hero-blob-2 {
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(196,181,253,.2) 0%, transparent 70%);
      bottom: -100px; left: 40px;
      animation: blobFloat 7s ease-in-out infinite reverse;
    }
    @keyframes blobFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%       { transform: translate(40px, -28px) scale(1.1); }
      66%       { transform: translate(-22px, 16px) scale(0.92); }
    }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 99;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        padding: 16px 24px 28px;
        box-shadow: 0 8px 32px rgba(124,58,237,.13);
        border-top: 2px solid #EDE9FE;
        animation: mobileMenuIn .22s ease;
      }
      .nav-links.open li a {
        font-size: 17px;
        padding: 10px 4px;
        border-bottom: 1px solid #F5F3FF;
      }
      .nav-links.open li:last-child a { border-bottom: none; }
      @keyframes mobileMenuIn {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      .section, .cta-dark, .integrations, .sponsors, .testimonials { padding: 60px 24px; }
      .feature-row, .feature-row.reverse, .cta-dark, .integrations { flex-direction: column; gap: 40px; }
      .integrations-light .integrations-text { order: -1; }
      .feature-text .btn-outline-blue,
      .integrations-text .btn,
      .cta-dark-text .btn { width: 100%; justify-content: center; }
      .hero { flex-direction: column; padding: 60px 24px; }
      .testimonial-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .web-mockup { max-width: min(590px, calc(100vw - 48px)); padding-bottom: 54px; }
      .mob-frame { right: 8px; bottom: -30px; width: 168px; height: 312px; }
      .software-art { overflow: hidden; }
      .software-builder {
        width: 480px;
        transform: scale(0.72);
        transform-origin: top center;
        margin-bottom: -106px;
      }
    }

    /* ── GALLERY LIGHTBOX ────────────────────────── */
    .gallery-overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(5,4,20,.94);
      backdrop-filter: blur(16px);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .3s ease;
      padding: 24px;
    }
    .gallery-overlay.open { opacity: 1; pointer-events: all; }

    .gallery-header {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; max-width: 960px;
      margin-bottom: 20px;
    }
    .gallery-title {
      font-family: Inter, sans-serif; font-size: 13px; font-weight: 600;
      color: rgba(255,255,255,.4); letter-spacing: .1em; text-transform: uppercase;
    }
    .gallery-title span { color: rgba(255,255,255,.8); }
    .gallery-x {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.6); font-size: 15px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s, color .2s;
    }
    .gallery-x:hover { background: rgba(239,68,68,.45); color: #fff; }

    .gallery-main {
      position: relative;
      width: 100%; max-width: 900px;
      height: 62vh;
      border-radius: 12px; overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,.7);
    }
    .gallery-img {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .4s ease;
      pointer-events: none;
    }
    .gallery-img.active { opacity: 1; }
    .gallery-img img {
      max-width: 100%; max-height: 100%;
      width: auto; height: auto;
      object-fit: contain; display: block;
    }

    .gallery-nav-prev, .gallery-nav-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.12);
      color: #fff; font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; backdrop-filter: blur(8px);
      transition: background .2s, transform .2s;
      z-index: 5;
    }
    .gallery-nav-prev { left: 16px; }
    .gallery-nav-next { right: 16px; }
    .gallery-nav-prev:hover, .gallery-nav-next:hover {
      background: rgba(124,58,237,.7); transform: translateY(-50%) scale(1.08);
    }

    .gallery-dots {
      display: flex; gap: 8px; margin-top: 20px;
    }
    .gallery-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,.25); cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .gallery-dot.active {
      background: var(--blue); transform: scale(1.4);
    }

    .gallery-thumbs {
      display: flex; gap: 10px; margin-top: 16px;
    }
    .gallery-thumb {
      width: 80px; height: 50px; border-radius: 6px; overflow: hidden;
      cursor: pointer; opacity: .45;
      border: 2px solid transparent;
      transition: opacity .2s, border-color .2s;
      flex-shrink: 0;
    }
    .gallery-thumb.active { opacity: 1; border-color: var(--blue); }
    .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

    /* ── SCROLL DOTS NAV ─────────────────────────── */
    .scroll-dots {
      position: fixed;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 200;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .scroll-dot-item {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      cursor: pointer;
    }
    .scroll-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(124,58,237,.18);
      border: 2px solid rgba(124,58,237,.32);
      transition: all .28s cubic-bezier(.4,0,.2,1);
      flex-shrink: 0;
    }
    .scroll-dot-item:hover .scroll-dot {
      background: rgba(124,58,237,.45);
      border-color: var(--blue);
    }
    .scroll-dot-item.active .scroll-dot {
      background: var(--blue);
      border-color: var(--blue);
      box-shadow: 0 0 0 5px rgba(124,58,237,.15);
      transform: scale(1.2);
    }
    .scroll-dot-label {
      position: absolute;
      right: 20px;
      background: var(--navy);
      color: rgba(255,255,255,.9);
      font-size: 11px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 6px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateX(4px);
      transition: opacity .18s ease, transform .18s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,.25);
    }
    .scroll-dot-label::after {
      content: '';
      position: absolute;
      right: -5px;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-right: none;
      border-left-color: var(--navy);
    }
    .scroll-dot-item:hover .scroll-dot-label {
      opacity: 1;
      transform: translateX(0);
    }
    .scroll-dot-item.active .scroll-dot-label {
      opacity: .82;
      transform: translateX(0);
    }
    @media (max-width: 900px) {
      .scroll-dots { display: none; }
      .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 680px; }
      .plan.featured { transform: none; }
    }

    @media (max-width: 560px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
      .gallery-main { height: 48vh; }
      .gallery-thumbs { display: none; }
      .gallery-dots { margin-top: 16px; }

      /* Footer mobile layout */
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
      }
      .footer-brand {
        grid-column: 1 / -1;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }
      .footer-col:last-child {
        grid-column: 1 / -1;
      }
      .footer-col ul li a { overflow-wrap: break-word; }
      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
      }

      /* Hero mockup scale down */
      .hero-art { width: 100%; overflow: hidden; padding: 12px 0; }
      .hero-mockup { width: 100%; max-width: 340px; height: 260px; margin: 0 auto; }
      .code-window { width: min(240px, 70vw); }
      .dash-glass { width: 150px; }
      .hero-status { right: 0; }

      .browser-split { height: 200px; }
      .web-mockup { padding-bottom: 80px; overflow: visible; }
      .mob-frame {
        position: absolute;
        bottom: -50px;
        right: -12px;
        width: 180px;
        height: auto;
      }
      .software-builder {
        transform: scale(0.58);
        margin-bottom: -160px;
      }
      .workflow-ready { bottom: -2px; }
    }