:root{
    --purple:#7A5CFF;
    --ink:#0f1222;
    --muted: rgba(15,18,34,.62);
    --border: rgba(15,18,34,.10);
    --ease: cubic-bezier(.2,.8,.2,1);
  }
  
  *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body{
    margin:0;
    font-family: 'Nunito', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--ink);
    background:#fff;
  }
  
  /* Utilities */
  .container{ width:min(1120px, 92vw); margin:0 auto; }
  .muted{ color: var(--muted); }
  .tiny{ font-size: 12px; }
  
  /* Buttons */
  .btn, .ghost{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 900;
    cursor:pointer;
    text-decoration:none;
    transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
  }
  .btn svg {
    flex-shrink: 0;
  }
  .btn .fab.fa-android {
    font-size: 1.1em;
    margin-right: 4px;
  }
  .btn{
    background: var(--purple);
    color:#fff;
    border-color: rgba(122,92,255,.30);
    box-shadow: 0 18px 40px rgba(122,92,255,.18);
  }
  .btn:hover, .ghost:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0,0,0,.10);
  }
  .btn:active, .ghost:active{ transform: translateY(0); box-shadow:none; }
  .ghost{
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(8px);
    color: rgba(15,18,34,.86);
  }
  .full{ width:100%; }
  
  /* Nav */
  .nav{
    position: sticky;
    top:0;
    z-index: 50;
    background: rgba(255,255,255,.75); /* Increased translucency */
    backdrop-filter: blur(16px); /* Stronger blur */
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .nav-inner{
    height: 66px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 14px;
  }
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  font-weight: 1000;
  color: inherit;
}
.brand-icon{
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}
  .brand-name{ letter-spacing: -0.02em; }
  
  .nav-links{
    display:flex;
    gap: 16px;
  }
  .nav-links a{
    text-decoration:none;
    color: rgba(15,18,34,.78);
    font-weight: 900;
  }
  .nav-links a:hover{ color: rgba(15,18,34,.95); }
  
  .nav-cta{
    display:flex;
    align-items:center;
    gap: 10px;
  }
  
  .burger{
    display:none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.5);
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .burger span{
    display:block;
    width: 100%;
    height: 2px;
    background: #0F172A; /* Dark ink for visibility */
    border-radius: 2px;
  }
  
  .mobile-menu{
    display:none;
    padding: 12px 4vw 18px;
    border-top: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.92); /* Translucent */
    backdrop-filter: blur(12px);
  }
  .mobile-menu a, .mobile-menu button{
    display: block;
    width: 100%;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 700;
    color: rgba(15,18,34,.86);
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(0,0,0,0.03); /* Subtle background for links */
  }
  .mobile-menu a:hover { background: rgba(0,0,0,0.06); }
  
  /* Hero */
  .hero{
    padding: 86px 0 0;
    background:
      radial-gradient(900px 520px at 20% 0%, rgba(122,92,255,.18), transparent 60%),
      radial-gradient(700px 360px at 90% 10%, rgba(122,92,255,.14), transparent 55%);
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 38px;
    align-items:center;
  }
  .hero h1{
    margin: 16px 0 12px;
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: -0.03em;
  }
  .grad{
    background: linear-gradient(90deg, var(--purple), rgba(122,92,255,.55));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .sub{ margin:0 0 18px; max-width: 58ch; font-size: 14px; line-height: 1.5; color: rgba(15,18,34,.62); font-weight: 700; }
  .hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; }
  
  .proof{
    display:flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .proof-item{
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(8px);
    min-width: 140px;
  }
  .proof-big{ font-weight: 1000; }
  .proof-small{ font-size: 12px; color: var(--muted); font-weight: 900; }
  
  .trust{
    margin-top: 16px;
    display:flex;
    gap: 12px;
    align-items:center;
    flex-wrap: wrap;
  }
  .trust-label{ font-weight: 900; color: rgba(15,18,34,.72); }
  .trust-logos{ display:flex; gap: 8px; flex-wrap: wrap; }
  .chip{
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.72);
    font-weight: 900;
    font-size: 12px;
  }
  
  .hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .hero-collage{
    position:relative;
    width: 640px;
    height: 520px;
  }
  .glow{
    position:absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,92,255,.22), transparent 62%);
    filter: blur(2px);
    left: 40px;
    top: -50px;
  }
  .orbit-rings{
    position:absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    left: 60px;
    top: 0;
  }
  .orbit-rings .ring{
    position:absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(93, 76, 255, .24);
    box-shadow: 0 0 50px rgba(93, 76, 255, .14);
    animation: ringPulse 6s ease-in-out infinite;
  }
  .orbit-rings .ring-2{
    inset: 32px;
    border-color: rgba(93, 76, 255, .20);
    animation-delay: -2s;
  }
  .orbit-rings .ring-3{
    inset: 64px;
    border-color: rgba(93, 76, 255, .18);
    animation-delay: -4s;
  }
  .hero-mascot{
    position:absolute;
    width: min(560px, 46vw);
    height: min(560px, 46vw);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
  }
  .hero-mascot img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(30, 36, 90, .18));
  }
  .hero-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(122,92,255,.14);
    box-shadow: 0 12px 26px rgba(25, 30, 74, .14);
    backdrop-filter: blur(8px);
    font-weight: 800;
    color: rgba(15,18,34,.82);
    animation: cardFloat 7s ease-in-out infinite;
    z-index: 4;
  }
  .hero-card-title{ font-size: 12px; letter-spacing: .01em; }
  .hero-card-sub{ font-size: 12px; color: rgba(15,18,34,.55); font-weight: 700; }
  .hero-card-big{ font-size: 16px; font-weight: 1000; margin-top: 2px; }
  .hero-card-ico{
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display:grid;
    place-items:center;
    background: rgba(122,92,255,.12);
    font-size: 16px;
  }
  .hero-card-usage{
    top: -20px;
    right: 40px;
    width: 200px;
    flex-direction: column;
    align-items: flex-start;
    animation-delay: -1.5s;
  }
  .hero-card-mini{
    margin-top: 6px;
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    width: 100%;
    height: 36px;
    align-items:end;
  }
  .hero-card-mini span{
    display:block;
    width: 100%;
    border-radius: 6px;
    background: linear-gradient(180deg, #7B6CFF, #B9B0FF);
  }
  .hero-card-mini span:nth-child(1){ height: 12px; }
  .hero-card-mini span:nth-child(2){ height: 26px; }
  .hero-card-mini span:nth-child(3){ height: 18px; }
  .hero-card-mini span:nth-child(4){ height: 30px; }
  .hero-card-mini span:nth-child(5){ height: 16px; }
  .hero-card-location{
    right: -4px;
    top: calc(58% + 55px);
    animation-delay: -4.8s;
  }
  .hero-card-blocked{
    left: 20px;
    top: 110px;
    width: 220px;
    padding: 10px 14px;
    animation-delay: -3.2s;
  }
  .hero-card-sites{
    display:flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .hero-card-row{
    display:flex;
    align-items:center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 900;
    color: rgba(15,18,34,.78);
  }
  .hero-card-site{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
  }
  .hero-card-ban{
    font-size: 14px;
  }
  .kubo-demo{
    position: relative;
    z-index: 2;
  }

  @keyframes cardFloat{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
  }
  @keyframes ringPulse{
    0%, 100%{ transform: scale(1); opacity: .9; }
    50%{ transform: scale(1.04); opacity: .65; }
  }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *, *::before, *::after{
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  /* Sections */
  .section{ padding: 20px 0; }
  .section.alt{ background: rgba(122,92,255,.05); }
  .section-head h2{
    margin:0 0 12px;
    font-size: 42px;
    letter-spacing: -0.03em;
    font-weight: 800;
  }
  .section-head p{ margin:0; max-width: 62ch; }
  
  /* Tabs */
  .tabs{ 
    margin-top: 40px; 
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tablist{
    display:inline-flex;
    gap: 4px;
    padding: 6px;
    background: rgba(15,18,34,.04);
    border-radius: 99px;
    position: relative;
    margin-bottom: 30px;
  }
  .tab{
    padding: 10px 24px;
    border-radius: 99px;
    border: none;
    background: transparent;
    color: rgba(15,18,34,.6);
    font-weight: 700;
    cursor:pointer;
    transition: all .2s var(--ease);
    font-size: 15px;
  }
  .tab:hover{
    color: rgba(15,18,34,.9);
  }
  .tab.active{
    background: #fff;
    color: var(--purple);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    font-weight: 800;
  }
  
  .tabpanes{ 
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
  }
  .pane{
    display:none;
    animation: fadeUp .4s var(--ease);
  }
  .pane.active{ display:block; }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .pane-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items:center;
    background: #F8FAFC;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(15,18,34,.04);
  }
  .pane-grid > *{
    min-width: 0;
  }
  .pane-apps .pane-grid,
  .pane-safe .pane-grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 3.0fr);
  }
  .pane-location .pane-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }
  .pane-location .sphone {
    padding: 6px;
  }
  .pane-location .sscreen {
    padding: 0;
    box-shadow: none;
    background: #f7f8fb;
  }
  .pane-location .phone-screen .location-map {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transform: scaleY(1.08);
    transform-origin: center;
    border-radius: 20px;
  }
  .pane-grid h3 {
    font-size: 28px;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
  }
  
  .list{ 
    margin: 24px 0 0; 
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .list li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(15,18,34,.8);
    font-weight: 600;
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(122,92,255,.15);
    color: var(--purple);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
  }
  .list.small li::before {
    display: none;
  }
  
  /* Specific styling for the Pricing/generic lists if they shared class .list */
  .pricing .list {
    margin: 24px 0;
  }
  .pricing .list li {
    font-size: 15px;
    color: rgba(15,18,34,.75);
  }
  .pricing .list li::before { 
    display: inline-flex;
    content: "•"; 
    background: transparent; 
    color: var(--purple); 
    width: auto; 
    height: auto; 
    font-size: 20px; 
    line-height: 1;
    margin-right: 4px;
  }

  .app-clip-container {
    position: relative;
    width: 100%;
    /* The video is vertical/high resolution, so we use a mobile-friendly aspect ratio */
    aspect-ratio: 9/16; 
    max-width: 280px; /* Reduced width to fit better and maintain resolution quality */
    max-height: 500px;
    margin: 0 auto 16px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 4px solid #070707; /* Phone-like border */
  }
  .app-clip-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .app-clip-caption {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--purple);
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    background: rgba(122,92,255,.05);
    border-radius: 14px;
    border: 1px solid rgba(122,92,255,.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .pane-card.video-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the video */
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,.08);
  }

  .pane-card.phone-duo-card {
    padding: 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,.08);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .pane-location .pane-card.phone-duo-card {
    width: min(520px, 100%);
    padding: 28px;
    background: #F8FAFC;
  }
  .phone-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
  }
  .pane-location .phone-duo {
    display: flex;
    justify-content: center;
  }
  .phone-duo-desktop { display: grid; gap: 0px; }
  .phone-mobile-only { display: none; gap: 12px; }
  .phone-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .phone-label {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
    background: rgba(122,92,255,0.08);
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid rgba(122,92,255,0.16);
    box-shadow: 0 2px 8px rgba(122,92,255,0.12);
  }

  .feature-phone {
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  }
  .phone-screen {
    padding: 0;
  }
  .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  .crop-screen {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 22px;
    width: 100%;
    height: 100%;
  }
  .crop-screen .cropped-video {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / var(--w-frac));
    height: calc(100% / var(--h-frac));
    transform: translate(calc(-1 * var(--x-frac) * 100%), calc(-1 * var(--y-frac) * 100%)) scale(0.97);
    transform-origin: top left;
    object-fit: cover;
    will-change: transform;
  }

  /* Maximize viewport for in-phone videos */
  .phone-screen.crop-screen {
    padding: 0;
    border-radius: 22px;
  }

  .pane-metric{ display:flex; justify-content:space-between; align-items:center; font-weight: 1000; }
  .pane-note{ margin-top: 10px; }
  .k{ color: rgba(15,18,34,.60); }
  .v{ color: rgba(15,18,34,.92); }
  .mini-chart{
    margin-top: 12px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(122,92,255,.06);
    overflow:hidden;
  }
  .mini-chart svg{ width:100%; height:100%; display:block; }
  
  .app-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-weight: 900;
  }
  .app-dot{
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(122,92,255,.75);
    display:inline-block;
    margin-right: 10px;
  }
  .tag{
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(122,92,255,.14);
    border: 1px solid rgba(122,92,255,.22);
  }
  .tag.off{ background: rgba(15,18,34,.08); border-color: rgba(15,18,34,.10); }
  
  .shield{ display:flex; gap: 10px; align-items:center; }
  .shield-icon{ width: 42px; height: 42px; border-radius: 14px; background: rgba(122,92,255,.14); display:flex; align-items:center; justify-content:center; }
  .shield-title{ font-weight: 1000; }
  .shield-sub{ font-size: 13px; }
  
  .routine .step{
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.65);
    font-weight: 900;
    display:flex;
    gap: 10px;
    align-items:center;
    margin-top: 10px;
  }
  .routine .step.done{ opacity: .70; }
  .routine .step.active{
    border-color: rgba(122,92,255,.22);
    background: rgba(122,92,255,.10);
  }
  
  /* Feature grid */
  .feature-grid{
    margin-top: 18px;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .fcard{
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.75);
    padding: 16px;
  }
  .ficon{
    width: 44px; height: 44px;
    border-radius: 16px;
    background: rgba(122,92,255,.14);
    display:flex; align-items:center; justify-content:center;
    margin-bottom: 10px;
  }
  .fcard h4{ margin:0 0 6px; }
  .fcard p{ margin:0; }

  .mobile-phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .mobile-clip-text {
    font-weight: 800;
    color: rgba(15,18,34,.86);
    font-size: 14px;
    line-height: 1.4;
  }
  .mobile-caption {
    display: none;
  }

  .desktop-caption {
    margin-top: 14px;
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    color: rgba(15,18,34,.9);
    background: rgba(122,92,255,.08);
    border: 1px solid rgba(122,92,255,.14);
    border-radius: 16px;
    padding: 12px 16px;
    width: 100%;
  }
  
  /* Steps */
  .steps{
    margin-top: 22px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stepcard{
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.75);
    padding: 16px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), z-index 0s;
  }
  .stepcard:hover {
    z-index: 50;
    position: relative;
  }
  .stepcard h4 {
    margin: 0 0 4px;
    font-size: 16px; /* Adjust size if needed, but margin is the request */
  }
  .stepcard p {
    margin: 0 0 12px;
  }
  .num{
    width: 36px; height: 36px;
    border-radius: 999px;
    background: rgba(122,92,255,.14);
    border: 1px solid rgba(122,92,255,.22);
    display:flex; align-items:center; justify-content:center;
    font-weight: 1000;
    margin-bottom: 10px;
  }

  /* Competition Analysis */
  .comparison-table{
    margin-top: 22px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    overflow:hidden;
    background: rgba(255,255,255,.75);
  }
  .comparison-intro{
    margin: 10px 0 0;
    max-width: 70ch;
  }
  .comparison-row{
    display:grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .comparison-row + .comparison-row{ border-top: 1px solid rgba(0,0,0,.06); }
  .comparison-cell{
    padding: 16px;
    border-right: 1px solid rgba(0,0,0,.06);
    font-weight: 800;
    color: rgba(15,18,34,.82);
  }
  .comparison-cell:last-child{ border-right: 0; }
  .comparison-head .comparison-cell{
    font-weight: 1000;
    background: rgba(15,18,34,.03);
    color: rgba(15,18,34,.82);
  }
  .comparison-cell.label{
    font-weight: 1000;
    color: rgba(15,18,34,.92);
  }
  .comparison-cell.kubo{
    background: rgba(122,92,255,.12);
    border-color: rgba(122,92,255,.22);
  }
  .comparison-head .comparison-cell.kubo{ background: rgba(122,92,255,.18); }
  .comparison-note{ margin: 12px 0 0; }
  .comparison-cta{
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(122,92,255,.22);
    background: rgba(122,92,255,.10);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .comparison-cta h3{ margin:0 0 6px; font-size: 20px; }
  .comparison-cta p{ margin:0; max-width: 60ch; }
  .comparison-summary{
    margin-top: 14px;
  }

  /* Pricing */
  .toggle-row{
    margin-top: 20px;
    display:flex;
    align-items:center;
    gap: 10px;
  }
  .switch{
    width: 52px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(15,18,34,.06);
    position:relative;
    cursor:pointer;
  }
  .knob{
    position:absolute;
    top: 3px;
    left: 3px;
    width: 24px; height: 24px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    transition: transform .22s var(--ease);
  }
  .switch[aria-pressed="true"] .knob{
    transform: translateX(22px);
  }
  .save{
    display:inline-block;
    margin-left: 8px;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #F3E8FF;
    color: #7C3AED;
    border: none;
    font-weight: 800;
  }
  
  .pricing{
    margin-top: 18px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .pcard{
    border-radius: 24px;
    border: 1px solid rgba(15,18,34,.08);
    background: #fff;
    padding: 32px;
    position:relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .pcard:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -8px rgba(0,0,0,.08);
  }
  .pcard h3{
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--ink);
  }
  .pcard .muted{
    font-size: 15px;
    font-weight: 500;
  }
  .pcard .ghost{
    background: #fff;
    border-color: rgba(15,18,34,.15);
    color: var(--ink);
  }
  .pcard .btn, .pcard .ghost {
    margin-top: auto;
  }
  .pcard .ghost:hover{
    border-color: rgba(15,18,34,.3);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
  }
  .pcard.featured{
    border: 2px solid var(--purple);
    box-shadow: 0 24px 60px -12px rgba(122,92,255,.25);
    background: linear-gradient(160deg, #fff 40%, #FBF8FF 100%);
  }
  .ribbon{
    position:absolute;
    top: 24px;
    right: 24px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #F3E8FF;
    color: #7C3AED;
    border: none;
    font-weight: 800;
  }
  .price{
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 8px 0;
  }

  /* Blog */
  .blog-grid{
    margin-top: 22px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .blog-card{
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.75);
    padding: 18px;
    display:flex;
    flex-direction:column;
    gap: 10px;
    min-height: 230px;
  }
  .blog-card h3{
    margin:0;
    font-size: 20px;
    letter-spacing: -0.01em;
  }
  .blog-meta{
    display:flex;
    align-items:center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(15,18,34,.70);
  }
  .blog-tag{
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(122,92,255,.12);
    border: 1px solid rgba(122,92,255,.18);
  }
  .blog-link{
    margin-top: auto;
    text-decoration:none;
    font-weight: 900;
    color: rgba(15,18,34,.86);
  }
  .blog-link:hover{ color: rgba(15,18,34,1); }
  .blog-figure{
    margin: 14px 0;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.7);
    padding: 10px;
  }
  .blog-figure img{
    width:100%;
    height:auto;
    display:block;
    border-radius: 14px;
  }
  .blog-figure figcaption{
    margin-top: 8px;
    font-size: 12px;
    color: rgba(15,18,34,.70);
    font-weight: 800;
  }
  .blog-quote{
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(122,92,255,.20);
    background: rgba(122,92,255,.08);
    font-weight: 900;
    color: rgba(15,18,34,.85);
  }
  .blog-quote cite{
    display:block;
    margin-top: 6px;
    font-style: normal;
    font-size: 12px;
    color: rgba(15,18,34,.65);
  }
  .blog-cta{
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px dashed rgba(122,92,255,.25);
    background: rgba(122,92,255,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .blog-cta h3{ margin:0 0 6px; font-size: 20px; }

  .blog-card-link{
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .blog-card-link:hover .blog-card{
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -8px rgba(0,0,0,.08);
  }
  .blog-card-thumb{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
  }
  .blog-back{
    display: inline-block;
    text-decoration: none;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 16px;
  }
  .blog-back:hover{ text-decoration: underline; }
  .blog-post-header h1{
    margin: 12px 0 8px;
    font-size: 42px;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  .blog-post-desc{
    font-size: 18px;
    max-width: 70ch;
    line-height: 1.5;
  }
  .blog-hero-img{
    margin: 24px 0;
  }
  .blog-hero-img img{
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
  }
  .blog-post-body{
    max-width: 72ch;
    line-height: 1.75;
    font-size: 17px;
    color: rgba(15,18,34,.82);
  }
  .blog-post-body h2{
    margin: 32px 0 12px;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .blog-post-body h3{
    margin: 24px 0 8px;
    font-size: 22px;
    color: var(--ink);
  }
  .blog-post-body p{
    margin: 0 0 16px;
  }
  .blog-post-body ul, .blog-post-body ol{
    margin: 0 0 16px;
    padding-left: 24px;
  }
  .blog-post-body li{
    margin-bottom: 6px;
  }
  .blog-post-body strong{
    color: var(--ink);
  }
  .blog-post-body a{
    color: var(--purple);
    text-decoration: underline;
  }
  .blog-post-body blockquote{
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 4px solid var(--purple);
    background: rgba(122,92,255,.06);
    border-radius: 0 12px 12px 0;
    font-style: italic;
  }
  .blog-post-body img{
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    margin: 16px 0;
  }
  @media (max-width: 980px){
    .blog-grid{ grid-template-columns: 1fr; }
    .blog-post-header h1{ font-size: 32px; }
    .blog-post-body{ font-size: 16px; }
  }

  /* FAQ */
  .faq details{
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.75);
    padding: 14px 16px;
    margin-top: 10px;
  }
  .faq summary{ cursor:pointer; font-weight: 800; }
  .faq p{ margin: 10px 0 0; }
  
  /* Footer */
  .footer{ padding: 26px 0; border-top: 1px solid rgba(0,0,0,.06); }
  .footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
  }
  .footer-links{ display:flex; gap: 14px; }
  .footer-links a{ text-decoration:none; color: rgba(15,18,34,.72); font-weight: 900; }
  .footer-links .link-button{
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: rgba(15,18,34,.72);
    font-weight: 900;
    cursor: pointer;
  }

  .legal{
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .legal h3{
    margin: 0;
    font-size: 18px;
  }
  .legal .list{
    margin-top: 6px;
  }

  .modal{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
  }
  .modal.open{
    display: flex;
  }
  .modal-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(15,18,34,.55);
    backdrop-filter: blur(2px);
  }
  .modal-panel{
    position: relative;
    width: min(720px, 92vw);
    max-height: 86vh;
    overflow: auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(15,18,34,.08);
    box-shadow: 0 24px 80px rgba(15,18,34,.35);
    padding: 20px;
    z-index: 1;
  }
  .modal-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }
  .modal-head h3{
    margin: 0;
    font-size: 20px;
  }
  .modal-close{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(15,18,34,.12);
    background: rgba(15,18,34,.04);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
  .modal-body h4{
    margin: 16px 0 6px;
    font-size: 16px;
  }
  
    
  /* Flowchart / Bifurcation */
  .flow-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
  }
  .flow-step {
    flex: 1;
    max-width: 280px;
  }
  .flow-step-center {
    align-self: center;
  }
  .flow-container .stepcard {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .flow-arrow {
    font-size: 32px;
    color: var(--purple);
    font-weight: bold;
  }
  .flow-branch-arrow,
  .flow-merge-arrow {
    color: var(--purple);
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flow-branch-arrow svg,
  .flow-merge-arrow svg {
    width: 72px;
    height: 72px;
  }
  .step-img {
    width: 100%;
    height: 320px; /* Fixed height for consistency */
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15,18,34,.03);
    border: 1px solid var(--border);
    position: relative;
  }
  .step-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* Show full image without cropping */
    object-position: center;
    background: #fff; /* White background for transparency/padding */
  }

  /* Split Group for Paired Mode */
  .step-split-group {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    align-items: flex-end; /* Align bottom to keep images aligned */
  }
  .step-sub-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0; /* Prevent flex overflow */
  }
  .step-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--purple);
    text-align: center;
    letter-spacing: 0.02em;
  }
  .step-separator {
    font-size: 11px;
    font-weight: 900;
    color: var(--muted);
    padding-bottom: 130px; /* Align with center of 260px images */
  }
  .step-sub-item .step-img {
    height: 260px; /* Slightly shorter for split view */
    margin-bottom: 0;
  }

  /* Zoomable Images */
  .step-img.zoomable {
    overflow: visible; /* Allow zoom breakout */
    cursor: zoom-in;
    z-index: 1;
    transition: z-index 0s linear 0.1s; /* Delay z-index drop */
  }
  .step-img.zoomable img {
    border-radius: 12px; /* moved from container to img for zoom */
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
    transform-origin: center center;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  .step-img.zoomable:hover {
    z-index: 100;
    transition-delay: 0s;
  }
  .step-img.zoomable:hover img {
    transform: scale(2.2);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
    border-radius: 16px;
  }

  /* Disable zoom effect on mobile devices */
  @media (max-width: 860px) {
    .step-img.zoomable {
      cursor: default;
    }
    
    .step-img.zoomable img {
      transition: none;
    }
    
    .step-img.zoomable:hover {
      z-index: 1;
    }
    
    .step-img.zoomable:hover img {
      transform: none;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border-radius: 12px;
    }
  }

  .flow-choices-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 2; /* Allow more space for the choice cards */
  }
  .flow-divider {
    display: none;
  }
  .flow-step {
    flex: 1;
    min-width: 240px;
  }
  .flow-choices {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    align-items: stretch;
  }
  .flow-choices .stepcard {
    width: 100%;
  }
  .choice-top, .choice-bottom {
    width: 100%;
  }
  .flow-convergence {
    display: none;
  }
  
  @media (max-width: 980px){
    .container {
      overflow-x: hidden;
    }
    .flow-container {
      flex-direction: column;
      align-items: stretch;
    }
    .flow-step-center {
      align-self: stretch;
    }
    .flow-step {
      max-width: 100%;
    }
    .flow-container .stepcard,
    .flow-choices .stepcard {
      max-width: 100%;
    }
    .flow-step,
    .flow-choices {
      max-width: 100%;
      width: 100%;
    }
    .flow-arrow {
      transform: rotate(90deg);
      margin: 10px 0;
    }
    .flow-branch-arrow,
    .flow-merge-arrow {
      display: none;
    }
    .flow-choices-container {
      flex-direction: column;
      gap: 12px;
      width: 100%;
    }
    .flow-divider {
      width: 100%;
    }
    .flow-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: 6px 0 18px;
      color: rgba(122,92,255,.9);
      font-weight: 900;
      letter-spacing: 0.02em;
    }
    .flow-divider::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: rgba(122,92,255,.2);
      transform: translateX(-50%);
    }
    .flow-divider::after {
      content: attr(data-label);
      background: #f6f4ff;
      border: 1px solid rgba(122,92,255,.2);
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 12px;
      position: relative;
      z-index: 1;
    }
    .step-img-dual {
      height: 320px;
    }
    .step-img {
      height: 320px;
    }
    .flow-container .stepcard,
    .flow-choices .stepcard {
      width: 100%;
    }
    /* Stack both tabs to single column on mobile */
    .pane-safe .pane-grid { grid-template-columns: 1fr; }
  }
  .choice-top, .choice-bottom {
    flex: 1;
  }

  /* How it Works Tabs */

  .how-pane {
    display: none;
    animation: fadeUp .4s var(--ease);
  }
  .how-pane.active {
    display: block;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
  .step-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(122,92,255,.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 16px;
    border: 1px dashed rgba(122,92,255,.2);
  }
  @media (max-width: 980px) {
    .steps-grid {
      grid-template-columns: 1fr;
    }
  }

  .reveal{
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .45s var(--ease), transform .45s var(--ease);
  }
  .reveal.in{
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 980px){
    .phone-duo{ grid-template-columns: 1fr; gap: 20px; }
    .phone-duo-desktop{ display: none; }
    .phone-mobile-only{ display: flex; flex-direction: column; align-items: center; }
    .pane-location .phone-duo-desktop{ display: none; }
    .pane-location .phone-mobile-only{ display: flex; }
    .phone-label{ font-size: 12px; letter-spacing: 0.06em; white-space: nowrap; }
    .feature-phone{ width: min(240px, 100%); height: 470px; }
    .desktop-caption{ display: none; }
    /* Use full viewport so no extra padding/whitespace appears on mobile */
    .phone-mobile-only .crop-screen{
      width: 100%;
      height: 100%;
      margin: 0;
    }
    .phone-mobile-only .crop-screen .cropped-video{
      transform: translate(calc(-1 * var(--x-frac) * 100%), calc(-1 * var(--y-frac) * 100%)) scale(0.97);
    }
  }
  @media (max-width: 980px){
    .hero-grid{ grid-template-columns: 1fr; }
    .hero-visual{ margin-top: 28px; }
    .pane-grid{ grid-template-columns: 1fr; padding: 24px; gap: 24px; }
    .pane-location .pane-grid{ grid-template-columns: 1fr; }
    .pane-apps .pane-grid{ grid-template-columns: 1fr; }
    .feature-grid{ grid-template-columns: 1fr 1fr; }
    .steps{ grid-template-columns: 1fr; }
    .pricing{ grid-template-columns: 1fr; }
    
    .tablist {
      flex-wrap: wrap;
      justify-content: center;
      background: transparent;
      padding: 0;
    }
    .tab {
      background: #fff;
      border: 1px solid rgba(0,0,0,.08);
      padding: 10px 16px;
    }
    .tab.active {
      background: var(--purple);
      color: #fff;
    }
  }
  @media (max-width: 860px){
    .nav-links{ display:none; }
    /* Show CTA button in header on mobile */
    .nav-cta .btn { display: inline-flex; font-size: 14px; padding: 10px 16px; }
    .burger{ display:flex; }
    .mobile-menu.open{ display:block; }
  }

  @media (max-width: 680px){
    .hero{ padding: 76px 0 24px; }
    .hero-visual{ width: 100%; }
    .hero-collage{
      width: min(420px, 92vw);
      height: min(420px, 92vw);
      margin: 0 auto;
      transform: scale(0.88);
      transform-origin: top center;
    }
    .glow{
      width: 420px;
      height: 420px;
      left: 50%;
      top: -36px;
      transform: translateX(-50%);
    }
    .hero-mascot{
      width: min(320px, 70vw);
      height: min(320px, 70vw);
    }
    .hero-card-usage{
      right: 8px;
      top: -14px;
      width: 180px;
    }
    .hero-card-blocked{
      left: 8px;
      top: 80px;
      width: 200px;
    }
    .hero-card-location{
      right: 0;
      top: calc(60% + 20px);
    }
  }

  .sphone {
    width: 260px;
    height: 502px;
    border-radius: 27px;
    border: 2px solid #070707;
    background: #f4f4f7;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 72px rgba(0,0,0,.16);
    overflow: hidden;
  }
  .phone-duo .feature-phone {
    width: min(260px, 100%);
    height: 502px;
  }
  .sphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 2;
  }
  .sscreen{
    flex: 1;
    border-radius: 22px;
    padding: 10px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
    overflow:hidden;
  }

  .kubo-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(122,92,255,.10);
    border: 1px solid rgba(122,92,255,.14);
    font-weight: 1000;
  }
  .kubo-app{ letter-spacing: -0.02em; }
  .kubo-status{ opacity: .65; font-weight: 900; }

  .kubo-steps{
    position: relative;
    margin-top: 12px;
    min-height: 430px;
  }
  .kstep{
    position:absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .45s var(--ease);
  }
  .kstep.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .khead{ margin-bottom: 12px; }
  .ktitle{ font-weight: 1000; font-size: 18px; }
  .ksub{ margin-top: 4px; color: rgba(15,18,34,.60); font-weight: 900; font-size: 12px; }

  .khome{ position: relative; }
  .khome-top{ margin-bottom: 12px; }
  .khome-title{ font-weight: 1000; }
  .khome-sub{ margin-top: 4px; color: rgba(15,18,34,.60); font-weight: 900; font-size: 12px; }

  .kapp-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .kapp{
    border-radius: 18px;
    border: 1px solid rgba(15,18,34,.10);
    background: rgba(15,18,34,.03);
    padding: 12px;
    transition: transform .12s var(--ease), background .12s var(--ease);
  }
  .kapp.is-pressed{ transform: scale(.98); background: rgba(122,92,255,.10); }
  .kapp-ico{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(122,92,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 1000;
  }
  .kapp.yt .kapp-ico{ background: rgba(239,68,68,.14); }
  .kapp-name{ margin-top: 10px; font-weight: 1000; }
  .kapp-meta{ margin-top: 4px; font-size: 12px; color: rgba(15,18,34,.55); font-weight: 900; }
  .kapp-status{ margin-top: 10px; }

  .kcard{
    border-radius: 18px;
    border: 1px solid rgba(15,18,34,.10);
    background: rgba(15,18,34,.03);
    padding: 12px;
  }
  .krow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(0,0,0,.06);
  }
  .kleft{ display:flex; align-items:center; gap: 10px; }
  .kico{
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(122,92,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 1000;
  }
  .kname{ font-weight: 1000; }
  .kmeta{ margin-top: 2px; font-size: 12px; color: rgba(15,18,34,.55); font-weight: 900; }

  .ktag{
    font-size: 12px;
    font-weight: 1000;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,18,34,.10);
    background: rgba(255,255,255,.80);
  }
  .ktag[data-tag="allow"]{ background: rgba(34,197,94,.14); border-color: rgba(34,197,94,.20); color: rgba(21,128,61,.95); }
  .ktag[data-tag="block"]{ background: rgba(239,68,68,.14); border-color: rgba(239,68,68,.20); color: rgba(153,27,27,.95); }
  .ktag[data-tag="limit"]{ background: rgba(245,158,11,.16); border-color: rgba(245,158,11,.22); color: rgba(146,64,14,.95); }
  .ktag[data-tag="live"]{ background: rgba(122,92,255,.14); border-color: rgba(122,92,255,.22); color: rgba(83,63,210,.98); }

  .kbar{
    height: 10px;
    border-radius: 999px;
    background: rgba(15,18,34,.08);
    margin: 10px 10px 12px;
    overflow:hidden;
  }
  .kfill{
    display:block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(122,92,255,.95), rgba(122,92,255,.55));
  }

  .kshield{
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(0,0,0,.06);
    margin-bottom: 10px;
  }
  .kshield-ico{
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(122,92,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .kshield-title{ font-weight: 1000; }

  .kweb{ display:flex; flex-direction:column; gap: 8px; }
  .kweb-row{
    display:grid;
    grid-template-columns: 12px 1fr auto;
    gap: 8px;
    align-items:center;
    padding: 10px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(0,0,0,.06);
  }
  .kdot{ width: 10px; height: 10px; border-radius: 999px; }
  .kdot.good{ background: rgba(34,197,94,.85); }
  .kdot.bad{ background: rgba(239,68,68,.85); }
  .kweb-row.blocked{ background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.14); }
  .kweb-host{ font-weight: 1000; }
  .kweb-time{ font-size: 12px; font-weight: 1000; color: rgba(15,18,34,.55); }

  .klaunch{ margin-top: 12px; position: relative; }
  .klaunch-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 16px;
    background: rgba(122,92,255,.08);
    border: 1px solid rgba(122,92,255,.16);
    transition: transform .12s var(--ease), background .12s var(--ease);
  }
  .klaunch-row.is-pressed{ transform: scale(.98); background: rgba(122,92,255,.14); }
  .klaunch-pill{
    font-size: 12px;
    font-weight: 1000;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,18,34,.10);
    background: rgba(255,255,255,.88);
  }

  .kpopup{
    position:absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events:none;
    transition: opacity .25s var(--ease), transform .35s var(--ease);
  }
  .kpopup.show{ opacity: 1; transform: translateY(0); }
  .kpopup-card{
    width: min(260px, 92%);
    margin: 0 auto;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 22px 60px rgba(0,0,0,.14);
    padding: 12px 14px;
    text-align:center;
  }
  .kpopup-title{ font-weight: 1000; }
  .kpopup-sub{ margin-top: 6px; font-size: 12px; font-weight: 900; color: rgba(15,18,34,.62); }

  .kbrowse{
    margin-top: 12px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(15,18,34,.03);
    padding: 12px;
    position: relative;
  }
  .kaddr{
    display:flex;
    align-items:center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(0,0,0,.06);
    font-weight: 1000;
  }
  .klock{ opacity: .75; }
  .kurl{ font-weight: 1000; color: rgba(15,18,34,.86); }
  .kcursor{ opacity: .7; animation: kcursor 1s steps(2, start) infinite; }
  @keyframes kcursor{ 0%{ opacity: .0 } 50%{ opacity: .7 } 100%{ opacity: .0 } }
  .kpage{
    margin-top: 10px;
    border-radius: 14px;
    background: rgba(239,68,68,.10);
    border: 1px solid rgba(239,68,68,.14);
    padding: 12px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s var(--ease), transform .35s var(--ease);
  }
  .kbrowse.is-blocked .kpage{ opacity: 1; transform: translateY(0); }
  .kpage-title{ font-weight: 1000; }
  .kpage-sub{ margin-top: 6px; font-size: 12px; font-weight: 900; color: rgba(15,18,34,.62); }

  .kmap{
    position: relative;
    height: 220px;
    border-radius: 18px;
    background:
      radial-gradient(500px 220px at 20% 10%, rgba(122,92,255,.20), transparent 55%),
      linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
    border: 1px solid rgba(0,0,0,.08);
    overflow:hidden;
    margin-bottom: 12px;
  }
  .kgrid{
    position:absolute;
    inset:0;
    background:
      linear-gradient(to right, rgba(15,18,34,.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(15,18,34,.06) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .35;
  }
  .kpin{
    position:absolute;
    left: 54%;
    top: 54%;
    transform: translate(-50%,-70%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .kpin-dot{
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--purple);
    box-shadow: 0 14px 30px rgba(122,92,255,.35);
    position: relative;
    z-index: 2;
  }
  .kring{
    position:absolute;
    inset: -14px;
    border-radius: 999px;
    border: 2px solid rgba(122,92,255,.28);
    animation: kring 1.25s var(--ease) infinite;
  }
  @keyframes kring{ 0%{ transform: scale(.65); opacity: .0 } 15%{ opacity: .9 } 100%{ transform: scale(1.05); opacity: 0 } }
  .kroute{
    position:absolute;
    left: 18px;
    right: 18px;
    bottom: 22px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(122,92,255,.10), rgba(122,92,255,.55), rgba(122,92,255,.10));
    overflow:hidden;
  }
  .kroute::after{
    content:"";
    position:absolute;
    left: -40%;
    top: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(122,92,255,.95), transparent);
    animation: kroute 1.35s linear infinite;
    opacity: .55;
  }
  @keyframes kroute{ 0%{ transform: translateX(0); } 100%{ transform: translateX(220%); } }

  .kubo-dots{
    display:flex;
    justify-content:center;
    gap: 8px;
    margin-top: 12px;
  }
  .kdotstep{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(15,18,34,.18);
  }
  .kdotstep.active{ background: rgba(122,92,255,.95); }

  /* Hide new mobile elements by default (Desktop) */
  .k-dashboard, .k-floating-pills { display: none; }

  @media (max-width: 680px){
    /* Give the phone a bit more room on very small screens to avoid visible cropping */
    .sphone{ width: min(300px, 94vw); height: 580px; }
    .kubo-demo { display: flex; flex-direction: column; align-items: center; }
  }

  
    /* @media (max-width: 680px){
      .sphone{ width: min(340px, 92vw); height: auto; }
      .sscreen{ padding: 0 !important; flex: none; background: #F6F7F9; position: relative; }

      .kubo-topbar, .kubo-steps, .kubo-dots { display: none !important; }

      .k-dashboard {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-bottom: 20px;
      }

      .k-dash-header {
        background: #8B5CF6;
        color: white;
        padding: 40px 20px 40px;
        position: relative;
        background-image: linear-gradient(135deg, #8B5CF6 25%, transparent 25%), linear-gradient(225deg, #8B5CF6 25%, transparent 25%);
        background-position: 10px 0;
        background-size: 20px 20px;
        background-repeat: repeat-x;
      }
      .k-dash-header::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 10px;
        background: #8B5CF6;
        z-index: -1;
      }

      .k-dash-top { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

      .k-dash-status {
        display: flex; align-items: center; justify-content: center;
        font-size: 12px; opacity: 0.9; margin-bottom: 20px;
        gap: 6px; font-weight: 600;
      }
      .k-status-dot { width: 8px; height: 8px; background: #EF4444; border-radius: 50%; }

      .k-dash-profile {
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 12px 16px;
        display: flex; align-items: center; gap: 12px;
        border: 1px solid rgba(255,255,255,0.2);
      }
      .k-profile-ico { font-size: 24px; opacity: 0.8; }
      .k-profile-info { text-align: left; }
      .k-profile-label { font-size: 11px; opacity: 0.8; font-weight: 600; }
      .k-profile-name { font-size: 16px; font-weight: 700; }

      .k-dash-body {
        padding: 20px;
        display: flex; flex-direction: column; gap: 16px;
        margin-top: -10px;
        z-index: 2;
      }

      .k-card-flat {
        background: #fff;
        border-radius: 20px;
        padding: 16px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
      }
      .k-card-label { font-size: 12px; font-weight: 600; color: #64748B; margin-bottom: 6px; }
      .k-card-big { font-size: 24px; font-weight: 800; }
      .k-card-big .muted { font-size: 16px; color: #94A3B8; font-weight: 600; }

      .k-card-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
      .k-card-title { font-weight: 700; font-size: 16px; }
      .k-badge { background: #F3E8FF; color: #7E22CE; padding: 4px 10px; border-radius: 99px; font-size: 11px; font-weight: 700; }

      .k-limit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
      .k-limit-box { background: #F8FAFC; padding: 10px; border-radius: 12px; }
      .k-limit-label { font-size: 11px; color: #64748B; font-weight: 600; margin-bottom: 4px; }
      .k-limit-val { font-weight: 700; font-size: 15px; }

      .k-progress { height: 6px; background: #E2E8F0; border-radius: 99px; overflow: hidden; margin-bottom: 16px; }
      .k-prog-bar { height: 100%; background: #7C3AED; }

      .k-btn-light {
        width: 100%; border: none; background: #F8FAFC; padding: 12px;
        border-radius: 12px; font-weight: 700; font-size: 13px; color: #0F172A;
        cursor: pointer;
      }

      .k-row-card { display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
      .k-icon-circle {
        width: 36px; height: 36px; background: #F3E8FF; border-radius: 50%;
        display: flex; align-items: center; justify-content: center; font-size: 18px;
      }
      .k-arrow { margin-left: auto; color: #64748B; font-weight: 700; }

      .k-dash-bottom { padding: 0 20px; margin-top: auto; }
      .k-swipe-btn {
        background: #E2E8F0; color: #475569; padding: 6px; padding-right: 20px;
        border-radius: 99px; display: flex; align-items: center; gap: 12px;
        font-size: 13px; font-weight: 600;
      }
      .k-swipe-icon {
        width: 36px; height: 36px; background: #8B5CF6; color: white;
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-weight: 800;
      }

      .kubo-demo { display: flex; flex-direction: column; align-items: center; }

      .k-floating-pills {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 20;
        overflow: visible;
      }
      .k-pill {
        position: absolute;
        left: 50%;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.78);
        padding: 8px 12px;
        border-radius: 99px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        font-weight: 800;
        font-size: 13px;
        color: #0F172A;
        border: 1px solid rgba(255,255,255,0.9);
        backdrop-filter: blur(8px);
        white-space: nowrap !important;
        animation: floatPill 3s ease-in-out infinite;
        z-index: 21;
        transform: translateX(-50%);
      }
      .k-pill-icon { font-size: 16px; }

      .k-pill-tl { top: 32px; left: calc(50% - 140px); animation-delay: 0s; }
      .k-pill-mr { top: 44%; left: calc(50% + 140px); animation-delay: 1s; }
      .k-pill-bl { bottom: 72px; left: calc(50% - 130px); animation-delay: 2s; }

      @keyframes floatPill {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-6px); }
      }
    }
  */
