:root{
    --ink:#000;
    --text:#171717;
    --muted:#737373;
    --line:#E5E5E5;
    --bg:#fff;
    --bg-soft:#FAFAFA;
    --accent:#6E56CF;
    --accent-dark:#5943B3;
    --accent-soft:#F3F1FC;
  }

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

  html{scroll-behavior:smooth}

  body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',-apple-system,"SF Pro Text",sans-serif;
    font-weight:400;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }

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

  .m-top {
    margin-top: 20px;
  }
  .wrap{
    max-width:960px;
    margin:0 auto;
    padding:0 24px;
  }

  .mono{
    font-family:'JetBrains Mono',ui-monospace,Menlo,monospace;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:500;
    padding:10px 20px;
    border-radius:9999px;
    border:1px solid transparent;
    white-space:nowrap;
    cursor:pointer;
  }

  .btn-solid{
    background:var(--accent);
    color:#fff;
  }

  .btn-solid:hover{
    background:var(--accent-dark);
  }

  .btn-outline{
    border-color:var(--ink);
    color:var(--ink);
    background:#fff;
  }

  .btn-outline:hover{
    background:var(--bg-soft);
  }

  /* NAV */

  nav.topnav{
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    background:#fff;
    z-index:100;
  }

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

  .logo{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    font-size:16px;
  }

  .logo .dot{
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--accent);
    display:inline-block;
  }

  .navlinks{
    display:flex;
    gap:28px;
    font-size:14px;
    color:var(--muted);
  }

  .navlinks a:hover{
    color:var(--ink);
  }

  .navright{
    display:flex;
    align-items:center;
    gap:14px;
  }

  @media(max-width:680px){
    .navlinks{
      display:none;
    }
  }

  /* HERO */

  header.hero{
    padding:88px 0 64px;
  }

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

  .hero-text{
    text-align:left;
  }

  h1{
    font-size:clamp(30px,4.2vw,44px);
    font-weight:500;
    letter-spacing:-0.01em;
    color:var(--ink);
  }

  .sub{
    max-width:420px;
    margin:18px 0 0;
    font-size:16.5px;
    color:var(--muted);
  }

  .hero-actions{
    display:flex;
    justify-content:flex-start;
    gap:12px;
    margin-top:30px;
    flex-wrap:wrap;
  }

  .eyebrow{
    font-family:'JetBrains Mono',monospace;
    font-size:12px;
    color:var(--muted);
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:16px;
  }

  /* HERO VISUAL */

  .hero-visual{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .prompt-chip{
    display:flex;
    align-items:center;
    gap:9px;
    max-width:340px;
    font-size:12.5px;
    color:var(--text);
    text-align:left;
    background:var(--bg-soft);
    border:1px solid var(--line);
    border-radius:9999px;
    padding:10px 16px;
    min-height:16px;
  }

  .prompt-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--accent);
    flex-shrink:0;
  }

  #typed{
    white-space:pre-wrap;
  }

  .caret{
    display:inline-block;
    width:6px;
    height:12px;
    background:var(--accent);
    vertical-align:-1px;
    animation:blink 1s steps(1) infinite;
    flex-shrink:0;
  }

  @keyframes blink{
    50%{opacity:0}
  }

  .flow-line{
    position:relative;
    width:1px;
    height:34px;
    margin:2px 0;
    background:repeating-linear-gradient(
      to bottom,
      var(--line) 0 4px,
      transparent 4px 8px
    );
  }

  .flow-dot{
    position:absolute;
    left:50%;
    top:0;
    width:6px;
    height:6px;
    margin-left:-3px;
    border-radius:50%;
    background:var(--accent);
    opacity:0;
    animation:flow-move 2.4s ease-in-out infinite;
  }

  @keyframes flow-move{
    0%{top:0;opacity:0}
    15%{opacity:1}
    85%{opacity:1}
    100%{top:100%;opacity:0}
  }

  .hero-browser{
    width:100%;
    max-width:340px;
    opacity:0;
    transform:translateY(8px);
    transition:opacity .5s ease,transform .5s ease;
  }

  .hero-visual.generated .hero-browser{
    opacity:1;
    transform:none;
  }

  .mockup{
    border:1px solid var(--line);
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    max-width:480px;
  }

  .mockup-bar{
    height:30px;
    border-bottom:1px solid var(--line);
    display:flex;
    align-items:center;
    gap:6px;
    padding:0 12px;
  }

  .mockup-bar span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--line);
  }

  .mockup-body{
    padding:22px;
    min-height:180px;
    background:var(--bg-soft);
  }

  .mb{
    background:#fff;
    border:1px solid var(--line);
    border-radius:4px;
  }

  .hero-mb{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:18px;
  }

  .hero-mb .wide{
    width:70%;
    height:12px;
  }

  .hero-mb .thin{
    width:45%;
    height:7px;
  }

  .mb-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:6px;
    margin-top:4px;
  }

  .mb-grid .mb{
    height:30px;
  }

  .cta-mock{
    width:92px;
    height:22px;
    border-radius:9999px;
    background:var(--accent);
    border:none;
    margin-top:6px;
  }

  .float-badge{
    position:absolute;
    font-size:11px;
    color:var(--muted);
    background:#fff;
    border:1px solid var(--line);
    border-radius:9999px;
    padding:5px 11px;
    opacity:0;
    transform:translateY(6px);
    transition:opacity .5s ease,transform .5s ease;
  }

  .hero-visual.generated .float-badge{
    opacity:1;
    transform:none;
  }

  .hero-visual.generated .b1{transition-delay:.1s}
  .hero-visual.generated .b2{transition-delay:.22s}
  .hero-visual.generated .b3{transition-delay:.34s}

  .b1{top:6%;right:-6px}
  .b2{top:46%;left:-14px}
  .b3{bottom:-12px;right:12px}

  @media(max-width:820px){
    .hero-grid{
      grid-template-columns:1fr;
    }

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

    .sub{
      margin-left:auto;
      margin-right:auto;
    }

    .hero-actions{
      justify-content:center;
    }

    .hero-visual{
      margin-top:48px;
    }

    .b1{right:4px}
    .b2{left:4px}
  }

  /* SECTIONS */

  .section{
    padding:72px 0;
    border-top:1px solid var(--line);
  }

  .section-head{
    text-align:center;
    margin-bottom:44px;
  }

  .section-head h2{
    font-size:26px;
    font-weight:500;
    color:var(--ink);
  }

  .section-head p{
    color:var(--muted);
    font-size:15px;
    margin-top:10px;
  }

  /* FEATURES */

  .feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }

  .feature{
    background:#fff;
    padding:28px;
    min-height:170px;
  }

  .feature-num{
    font-family:'JetBrains Mono',monospace;
    color:var(--muted);
    font-size:12px;
    margin-bottom:18px;
  }

  .feature h3{
    font-size:17px;
    font-weight:500;
    margin-bottom:8px;
  }

  .feature p{
    font-size:14px;
    color:var(--muted);
  }

  @media(max-width:680px){
    .feature-grid{
      grid-template-columns:1fr;
    }
  }

  /* SITE TYPES */

  .template-layout{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:48px;
    align-items:start;
  }

  .template-nav{
    position:sticky;
    top:88px;
    display:flex;
    flex-direction:column;
    gap:2px;
  }

  .tnav-item{
    display:flex;
    align-items:center;
    gap:10px;
    text-align:left;
    background:none;
    border:none;
    font-family:inherit;
    font-size:14px;
    color:var(--muted);
    padding:10px 14px;
    border-radius:9999px;
    cursor:pointer;
    transition:background .15s ease,color .15s ease;
  }

  .tnav-item .idot{
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--line);
    flex-shrink:0;
  }

  .tnav-item:hover:not(.active){
    background:var(--accent-soft);
    color:var(--ink);
  }

  .tnav-item.active{
    background:var(--accent);
    color:#fff;
  }

  .tnav-item.active .idot{
    background:#fff;
  }

  .template-content{
    display:flex;
    flex-direction:column;
  }

  .tpanel{
    scroll-margin-top:110px;
    padding-bottom:56px;
    margin-bottom:56px;
    border-bottom:1px solid var(--line);
    opacity:.35;
    transition:opacity .3s ease;
  }

  .tpanel:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
  }

  .tpanel.active{
    opacity:1;
  }

  .tpanel-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:6px;
  }

  .tpanel-head h3{
    font-size:20px;
    font-weight:500;
    color:var(--ink);
  }

  .price{
    font-family:'JetBrains Mono',monospace;
    font-size:15px;
    color:var(--accent);
    font-weight:500;
    white-space:nowrap;
  }

  .pill-tag{
    font-family:'JetBrains Mono',monospace;
    font-size:11.5px;
    color:var(--muted);
    border:1px solid var(--line);
    border-radius:9999px;
    padding:4px 10px;
    flex-shrink:0;
  }

  .tpanel-desc{
    color:var(--muted);
    font-size:14.5px;
    max-width:480px;
    margin-bottom:22px;
  }

  .tfeatures{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:9px;
    margin-bottom:26px;
  }

  .tfeatures li{
    display:flex;
    align-items:baseline;
    gap:10px;
    font-size:14px;
    color:var(--text);
  }

  .tfeatures li::before{
    content:"✓";
    color:var(--accent);
    font-size:12px;
  }

  .mockup{
    width:100%;
  }

  /* MOCKUPS */

  .mb-wordpress{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .mb-wordpress .wide{
    width:70%;
    height:11px;
  }

  .mb-wordpress .thin{
    width:45%;
    height:7px;
  }

  .mb-wordpress-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin-top:8px;
  }

  .mb-wordpress-grid .mb{
    height:50px;
  }

  .mb-company{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:180px;
  }

  .mb-company .wide{
    width:65%;
    height:12px;
  }

  .mb-company .thin{
    width:45%;
    height:7px;
  }

  .mb-company .cta{
    width:100px;
    height:25px;
    border-radius:9999px;
    background:var(--accent);
    border:none;
  }

  .mb-blog{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .mb-blog .row{
    display:flex;
    flex-direction:column;
    gap:6px;
  }

  .mb-blog .row .t{
    width:70%;
    height:9px;
  }

  .mb-blog .row .d{
    width:45%;
    height:6px;
    background:var(--bg-soft);
  }

  .mb-shop{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }

  .mb-shop .card{
    display:flex;
    flex-direction:column;
    gap:6px;
  }

  .mb-shop .card .img{
    height:55px;
  }

  .mb-shop .card .price{
    width:50%;
    height:6px;
    background:#fff;
    border:1px solid var(--line);
  }

  @media(max-width:760px){
    .template-layout{
      grid-template-columns:1fr;
    }

    .template-nav{
      position:static;
      flex-direction:row;
      overflow-x:auto;
      gap:8px;
      padding-bottom:6px;
      -webkit-overflow-scrolling:touch;
    }

    .tnav-item{
      flex-shrink:0;
    }
  }

  /* HOW */

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

  .step .num{
    font-family:'JetBrains Mono',monospace;
    color:var(--muted);
    font-size:13px;
    margin-bottom:10px;
  }

  .step h3{
    font-size:16px;
    font-weight:500;
    margin-bottom:8px;
    color:var(--ink);
  }

  .step p{
    font-size:14px;
    color:var(--muted);
  }

  @media(max-width:680px){
    .steps{
      grid-template-columns:1fr;
    }
  }

  /* PARTNERS */

  .marquee{
    border-top:1px solid var(--line);
    overflow:hidden;
    padding:40px 0;
  }

  .marquee .section-head{
    margin-bottom:32px;
  }

  .marquee-viewport{
    overflow:hidden;
    -webkit-mask-image:linear-gradient(
      90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent
    );
    mask-image:linear-gradient(
      90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent
    );
  }

  .marquee-track{
    display:flex;
    align-items:center;
    gap:72px;
    width:max-content;
    animation:marquee-scroll 26s linear infinite;
  }

  .marquee-viewport:hover .marquee-track{
    animation-play-state:paused;
  }

  @keyframes marquee-scroll{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
  }

  .partner-logo{
    font-size:19px;
    font-weight:600;
    letter-spacing:-0.01em;
    white-space:nowrap;
    color:var(--muted);
    opacity:.75;
  }

  /* CTA */

  .cta{
    text-align:center;
    padding:80px 0;
  }

  .cta h2{
    font-size:28px;
    font-weight:500;
    color:var(--ink);
    margin-bottom:16px;
  }

  .cta p{
    color:var(--muted);
    margin-bottom:28px;
  }

  /* FOOTER */

  footer{
    border-top:1px solid var(--line);
    padding:28px 0;
  }

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

  footer .flinks{
    display:flex;
    gap:20px;
    font-size:13px;
    color:var(--muted);
  }

  footer .fnote{
    font-size:13px;
    color:var(--muted);
  }


  /* =========================================
     FINAL DARK FOOTER
     ========================================= */
  
     .footer-dark {
        background: #000;
        color: #fff;
        min-height: 92vh;
        display: flex;
        align-items: stretch;
        margin-top: 0;
      }
      
      .footer-inner {
        width: 100%;
        max-width: 1160px;
        margin: 0 auto;
        padding: 90px 32px 28px;
        display: flex;
        flex-direction: column;
      }
      
      
      /* HERO */
      
      .footer-top {
        text-align: center;
        max-width: 760px;
        margin: auto auto 80px;
      }
      
      .footer-eyebrow {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        letter-spacing: .12em;
        color: #777;
        margin-bottom: 22px;
      }
      
      .footer-top h2 {
        font-size: clamp(42px, 6vw, 76px);
        line-height: 1.03;
        font-weight: 500;
        letter-spacing: -0.035em;
        margin: 0;
      }
      
      .footer-lead {
        max-width: 560px;
        margin: 24px auto 0;
        color: #8a8a8a;
        font-size: 16px;
        line-height: 1.6;
      }
      
      .footer-main-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 32px;
        padding: 13px 26px;
        border-radius: 9999px;
        background: #fff;
        color: #000;
        font-size: 14px;
        font-weight: 500;
        transition:
          transform .2s ease,
          background .2s ease;
      }
      
      .footer-main-btn:hover {
        background: #e9e9e9;
        transform: translateY(-2px);
      }
      
      
      /* CARDS */
      
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: #292929;
        border: 1px solid #292929;
        margin-bottom: 80px;
      }
      
      .footer-card {
        background: #050505;
        min-height: 270px;
        padding: 26px;
        display: flex;
        flex-direction: column;
        transition: background .2s ease;
      }
      
      .footer-card:hover {
        background: #0c0c0c;
      }
      
      .footer-card-number {
        color: #555;
        font-size: 11px;
      }
      
      .footer-card-content {
        margin-top: auto;
      }
      
      .footer-card-label {
        font-family: 'JetBrains Mono', monospace;
        font-size: 10px;
        letter-spacing: .08em;
        color: #666;
        margin-bottom: 13px;
      }
      
      .footer-card h3 {
        font-size: 22px;
        line-height: 1.2;
        font-weight: 500;
        letter-spacing: -.015em;
        margin-bottom: 12px;
      }
      
      .footer-card h3 span {
        color: #a89ae8;
      }
      
      .footer-card p {
        max-width: 290px;
        color: #777;
        font-size: 13px;
        line-height: 1.55;
      }
      
      .footer-card-link {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-top: 22px;
        color: #fff;
        font-size: 13px;
        transition: gap .2s ease;
      }
      
      .footer-card-link span {
        color: #777;
      }
      
      .footer-card-link:hover {
        gap: 14px;
      }
      
      
      /* LAST CARD */
      
      .footer-card-accent {
        background: #0a0a0a;
      }
      
      .footer-card-accent:hover {
        background: #101010;
      }
      
      
      /* BOTTOM */
      
      .footer-bottom {
        border-top: 1px solid #292929;
        padding-top: 22px;
      
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 30px;
      }
      
      .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      
      .footer-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        font-weight: 600;
      }
      
      .footer-logo span {
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #6E56CF;
      }
      
      .footer-copy {
        color: #555;
        font-size: 11px;
      }
      
      .footer-links {
        display: flex;
        gap: 22px;
        font-size: 12px;
        color: #666;
      }
      
      .footer-links a {
        transition: color .2s ease;
      }
      
      .footer-links a:hover {
        color: #fff;
      }
      
      .footer-copyright {
        text-align: right;
        color: #555;
        font-size: 11px;
      }
      
      
      /* MOBILE */
      
      @media (max-width: 760px) {
      
        .footer-dark {
          min-height: auto;
        }
      
        .footer-inner {
          padding: 70px 20px 24px;
        }
      
        .footer-top {
          margin-bottom: 55px;
        }
      
        .footer-top h2 {
          font-size: 42px;
        }
      
        .footer-lead {
          font-size: 14px;
        }
      
        .footer-grid {
          grid-template-columns: 1fr;
          margin-bottom: 55px;
        }
      
        .footer-card {
          min-height: 230px;
        }
      
        .footer-bottom {
          grid-template-columns: 1fr;
          gap: 20px;
        }
      
        .footer-links {
          flex-wrap: wrap;
          gap: 12px 20px;
        }
      
        .footer-copyright {
          text-align: left;
        }
      
      }
      
    
    
    
    
      /* =========================================
       COMPANY WEBSITE MOCKUP
       ========================================= */
    
    .company-mockup {
      max-width: 480px;
    }
    
    .company-site {
      background: #fff;
      padding: 16px 18px 18px;
    }
    
    
    /* Header */
    
    .company-header {
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--line);
      padding-bottom: 10px;
    }
    
    .company-brand {
      display: flex;
      align-items: center;
      gap: 5px;
    
      font-family: 'JetBrains Mono', monospace;
      font-size: 7px;
      font-weight: 500;
      letter-spacing: .05em;
      color: var(--text);
    }
    
    .company-brand-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }
    
    .company-menu {
      display: flex;
      gap: 5px;
    }
    
    .company-menu span {
      width: 24px;
      height: 3px;
      border-radius: 2px;
      background: var(--line);
    }
    
    
    /* Hero */
    
    .company-hero {
      display: grid;
      grid-template-columns: 1fr .7fr;
      gap: 18px;
      align-items: center;
      padding: 24px 4px 22px;
    }
    
    .company-hero-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    
    .company-title {
      width: 90%;
      height: 10px;
      background: var(--text);
      border-radius: 2px;
    }
    
    .company-title.short {
      width: 65%;
      margin-top: 6px;
    }
    
    .company-description {
      width: 82%;
      height: 5px;
      background: var(--line);
      border-radius: 2px;
      margin-top: 11px;
    }
    
    .company-button {
      width: 54px;
      height: 15px;
      border-radius: 999px;
      background: var(--accent);
      margin-top: 13px;
    }
    
    
    /* Hero image */
    
    .company-hero-image {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .company-image-shape {
      width: 100%;
      height: 78px;
      border-radius: 5px;
      border: 1px solid var(--line);
      background:
        linear-gradient(
          135deg,
          var(--bg-soft) 0%,
          #fff 50%,
          var(--accent-soft) 100%
        );
      position: relative;
      overflow: hidden;
    }
    
    .company-image-shape::after {
      content: "";
      position: absolute;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: var(--accent);
      opacity: .12;
      right: -12px;
      bottom: -18px;
    }
    
    
    /* Features */
    
    .company-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      border-top: 1px solid var(--line);
      padding-top: 15px;
    }
    
    .company-feature {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    
    .company-feature-icon {
      width: 14px;
      height: 14px;
      border-radius: 4px;
      border: 1px solid var(--line);
      background: var(--bg-soft);
      margin-bottom: 2px;
    }
    
    .company-feature-line {
      width: 80%;
      height: 5px;
      background: var(--line);
      border-radius: 2px;
    }
    
    .company-feature-line.short {
      width: 55%;
    }
    
    
    /* Mobile */
    
    @media (max-width: 500px) {
    
      .company-hero {
        grid-template-columns: 1fr;
        gap: 14px;
      }
    
      .company-hero-image {
        display: none;
      }
    
    }
    
    .examples-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    
      font-size: 13px;
      color: var(--text);
    
      padding: 8px 14px;
      border: 1px solid var(--line);
      border-radius: 9999px;
    
      transition:
        background .2s ease,
        border-color .2s ease,
        gap .2s ease;
    }
    
    .examples-btn span {
      color: var(--muted);
    }
    
    .examples-btn:hover {
      background: var(--bg-soft);
      border-color: #ccc;
      gap: 12px;
    }
    .examples-block {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
      max-width: 700px;
    }
    
    .single-example {
      display: block;
      text-decoration: none;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
    
      transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
    }
    
    .single-example:hover {
      transform: translateY(-4px);
      border-color: #ccc;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .09);
    }
    
    .single-example img {
      display: block;
      width: 100% !important;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    
      filter: grayscale(100%);
      transform: scale(1);
      transition:
        filter .5s ease,
        transform .6s cubic-bezier(.2,.7,.2,1);
    }
    
    .single-example:hover img {
      filter: grayscale(0%);
      transform: scale(1.04);
    }
    
    .example-preview {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: var(--bg-soft);
    }
    
    .example-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
    
      padding: 11px 13px;
    
      font-size: 12px;
      color: var(--text);
    }
    
    .example-number {
      color: var(--muted);
      font-size: 10px;
    }
    
    /* Затемнение при наведении */
    
    .example-overlay {
      position: absolute;
      inset: 0;
    
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    
      background: rgba(0, 0, 0, .42);
      color: #fff;
    
      font-size: 13px;
      font-weight: 500;
    
      opacity: 0;
      transition: opacity .25s ease;
    }
    
    .single-example:hover .example-overlay {
      opacity: 1;
    }
    
    .example-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
    
      width: 26px;
      height: 26px;
    
      border-radius: 50%;
      background: #fff;
      color: #000;
    
      font-size: 13px;
    }
    
    
    /* Mobile */
    
    @media (max-width: 600px) {
    
      .examples-block {
        grid-template-columns: 1fr;
        gap: 12px;
      }
    
    }