  @font-face{
    font-family:'Inter';
    font-style:normal;
    font-weight:400 700;
    font-display:swap;
    src:url('../../fonts/inter-latin-var.woff2') format('woff2');
  }
  @font-face{
    font-family:'Sora';
    font-style:normal;
    font-weight:600 800;
    font-display:swap;
    src:url('../../fonts/sora-latin-var.woff2') format('woff2');
  }
  :root{
    --coral:#EF4A3F;
    --coral-dark:#C7362C;
    --coral-tint:#FDECEA;
    --violet:#7658F7;
    --violet-dark:#5B3ED9;
    --violet-tint:#EFEAFE;
    --ink:#1C1830;
    --ink-soft:#5C566F;
    --ink-faint:#8D87A0;
    --bg:#FCFBFE;
    --bg-alt:#F5F2FC;
    --line:#E9E4F6;
    --white:#FFFFFF;
    --grad: linear-gradient(120deg, var(--coral) 0%, var(--violet) 100%);
    --shadow-sm: 0 2px 10px rgba(28,24,48,0.06);
    --shadow-md: 0 12px 32px rgba(28,24,48,0.10);
    --shadow-lg: 0 24px 60px rgba(28,24,48,0.14);
    --radius: 18px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  .ic svg, .dot svg, .cross svg, .flip-arrow svg{display:block;}
  /* Defensive reset: grid/flex items default to min-width:auto, which stops long
     text/mockup content from shrinking and causes horizontal overflow on narrow
     screens once these containers collapse to a single column. */
  .hero-grid > *, .problem-grid > *, .diff-grid > *, .tab-panel-inner > *,
  .journey-grid > *, .mv-grid > *, .method-grid > *, .method-cols > *,
  .simple-list-grid > *, .example-compare > *, .cap-grid > *, .cap-cols > *,
  .step-grid > *, .profile-grid > *, .dashboard-grid > *, .report-cat-grid > *,
  .filters-inner > *, .plan-grid > *, .value-inner > *, .choose-grid > *,
  .benefit-row > *, .challenge-row > *, .contact-form > *, .demo-grid > *,
  .priorities-grid > *, .split-grid > *, .fd-list > *, .fd-cols > *,
  .pain-list > li, .diff-list > li, .check-list > li, .outcomes-grid > li{
    min-width:0;
  }
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--bg);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{font-family:'Sora', sans-serif; letter-spacing:-0.01em; color:var(--ink);}
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
  section{position:relative;}
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Sora',sans-serif; font-weight:700; font-size:12.5px;
    letter-spacing:0.08em; text-transform:uppercase;
    color:var(--violet-dark); margin-bottom:14px;
  }
  .eyebrow::before{content:''; width:8px; height:8px; border-radius:50%; background:var(--grad); display:inline-block;}
  .section-head{max-width:900px; margin:0 auto 48px; text-align:center;}
  .section-head h2{font-size:clamp(28px,3.4vw,40px); font-weight:800; line-height:1.2;}
  .section-head p{color:var(--ink-soft); font-size:17px; margin-top:14px;}

  /* Buttons */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    font-family:'Sora',sans-serif; font-weight:700; font-size:15px;
    padding:14px 26px; border-radius:12px; cursor:pointer; border:none;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
  }
  .btn-primary{background:var(--violet); color:#fff; box-shadow:0 10px 24px rgba(118,88,247,0.32);}
  .btn-primary:hover{background:var(--violet-dark); transform:translateY(-2px); box-shadow:0 14px 30px rgba(118,88,247,0.4);}
  .btn-ghost{background:#fff; color:var(--ink); border:1.5px solid var(--line);}
  .btn-ghost:hover{border-color:var(--violet); color:var(--violet-dark); transform:translateY(-2px);}
  .btn-sm{padding:10px 18px; font-size:13.5px; border-radius:10px;}

  /* Form fields: required marker + inline field error */
  .required{color:var(--coral); margin-left:2px;}
  .input-error{display:block; color:var(--coral-dark); font-size:12.5px; margin-top:5px;}
  input.input-invalid, select.input-invalid, textarea.input-invalid{
    border-color:var(--coral) !important; background:#fff !important;
  }
  input.input-invalid:focus, select.input-invalid:focus, textarea.input-invalid:focus{
    border-color:var(--coral) !important;
  }

  /* Form success state */
  .form-success{display:flex; flex-direction:column; align-items:center; text-align:center; padding:40px 20px; gap:6px;}
  .form-success-icon{
    width:64px; height:64px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg,#22C55E,#15803D); color:#fff;
    box-shadow:0 12px 28px rgba(21,128,61,0.32);
    margin-bottom:8px;
    animation:form-success-pop .45s cubic-bezier(.34,1.56,.64,1);
  }
  .form-success h3{font-family:'Sora',sans-serif; font-weight:800; font-size:22px; color:var(--ink);}
  .form-success p{color:var(--ink-soft); font-size:15px; line-height:1.6; max-width:380px;}
  @keyframes form-success-pop{
    0%{transform:scale(0.5); opacity:0;}
    70%{transform:scale(1.08); opacity:1;}
    100%{transform:scale(1);}
  }

  /* NAV */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(252,251,254,0.85); backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{display:flex; align-items:center; justify-content:space-between; padding:14px 24px; max-width:1180px; margin:0 auto;}
  .nav-links a.active {color: var(--violet-dark);}
  .brand{display:flex; align-items:center; gap:10px;}
  .brand img{height:43px; width:auto;}
  .nav-links{display:flex; align-items:center; gap:34px;}
  .nav-links a{font-weight:600; font-size:14.5px; color:var(--ink-soft); transition:color .15s;}
  .nav-links a:hover{color:var(--violet-dark);}
  .nav-cta{display:flex; align-items:center; gap:12px;}
  .nav-mobile-cta{display:none;}
  .burger{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;}
  .burger span{width:24px; height:2.5px; background:var(--ink); border-radius:2px;}

  /* MEGA MENU */
  .nav-item{position:relative; display:flex; align-items:center;}
  .nav-dropdown-trigger{display:flex; align-items:center; gap:5px;}
  .nav-dropdown-trigger .chevron{transition:transform .2s ease;}
  .nav-item:hover .nav-dropdown-trigger .chevron,
  .nav-item.open .nav-dropdown-trigger .chevron{transform:rotate(180deg);}
  .mega-toggle{display:none; align-items:center; justify-content:center; background:none; border:none; padding:4px; margin-left:4px; color:var(--ink-soft); cursor:pointer;}

  .nav-item.has-dropdown{padding-bottom:20px; margin-bottom:-20px;}
  .mega-dropdown{
    position:absolute; top:100%; left:50%;
    transform:translateX(-50%) translateY(6px);
    width:560px; max-width:min(560px,86vw);
    background:#fff; border:1px solid var(--line); border-radius:18px;
    box-shadow:var(--shadow-lg); padding:16px;
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity .18s ease, transform .18s ease, visibility .18s;
    z-index:200;
  }
  .mega-dropdown::before{
    content:''; position:absolute; top:-7px; left:50%; transform:translateX(-50%) rotate(45deg);
    width:14px; height:14px; background:#fff; border-left:1px solid var(--line); border-top:1px solid var(--line); border-radius:3px 0 0 0;
  }
  .nav-item:hover .mega-dropdown,
  .nav-item:focus-within .mega-dropdown,
  .nav-item.open .mega-dropdown{
    opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
  }
  .mega-grid{display:grid; grid-template-columns:1fr 1fr; gap:2px; position:relative;}
  .mega-item{display:flex; align-items:center; gap:12px; padding:11px 12px; border-radius:12px; transition:background .15s ease;}
  .mega-item:hover{background:var(--bg-alt);}
  .mega-item .ic{width:38px; height:38px; border-radius:10px; flex-shrink:0; display:flex; align-items:center; justify-content:center;}
  .mega-item b{font-family:'Sora',sans-serif; font-weight:700; font-size:13.5px; color:var(--ink); line-height:1.25;}
  .mega-item.active{background:var(--violet-tint);}
  .mega-item.active b{color:var(--violet-dark);}

  /* HERO */
  .hero{padding:40px 0 40px; overflow:hidden;}
  .hero-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;}
  .hero-tags{display:flex; flex-wrap:wrap; gap:10px 18px; margin:26px 0 30px;}
  .hero-tags span{display:flex; align-items:center; gap:7px; font-size:13.5px; font-weight:600; color:var(--ink-soft);}
  .hero-tags span::before{content:''; display:inline-block; width:16px; height:16px; flex-shrink:0; background-size:contain; background-repeat:no-repeat;}
  .hero-tags span.tag-nocard::before, .cta-trust span.tag-nocard::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='5' width='20' height='14' rx='2'/><line x1='2' y1='10' x2='22' y2='10'/><line x1='6' y1='15' x2='10' y2='15'/></svg>");}
  .hero-tags span.tag-setup::before, .cta-trust span.tag-setup::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F59E0B' stroke='none'><path d='M13 2L4 14h6l-1 8 9-12h-6l1-8z'/></svg>");}
  .hero-tags span.tag-trusted::before, .cta-trust span.tag-trusted::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2l8 4v6c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6z'/><path d='M9 12l2 2 4-4'/></svg>");}
  .hero-tags span.tag-rating::before, .cta-trust span.tag-rating::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F5B301' stroke='none'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/></svg>");}
  .hero h1{font-size:42px; font-weight:800; line-height:1.12;}
  .hero h1 .hl{background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;}
  .hero p.lead{font-size:18px; color:var(--ink-soft); margin:20px 0 6px; max-width:520px;}
  .hero-ctas{display:flex; gap:14px; margin-top:30px; flex-wrap:wrap;}

  /* Hero visual: chaos -> control signature */
  .hero-visual{height:460px;}
  .hero-visual-canvas{position:relative; width:100%; height:100%;}
  .chaos-card{
    position:absolute; background:#fff; border-radius:14px; box-shadow:var(--shadow-md);
    padding:14px 16px; font-family:'Sora',sans-serif; font-weight:700; font-size:13px;
    color:var(--ink-soft); display:flex; align-items:center; gap:10px; border:1px solid var(--line);
  }
  .chaos-card .dot{width:26px; height:26px; border-radius:8px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:14px;}
  .c1{top:14px; left:0; transform:rotate(-7deg); z-index:2;}
  .c1 .dot{background:var(--coral-tint); color:var(--coral-dark);}
  .c2{top:96px; left:130px; transform:rotate(5deg); z-index:1;}
  .c2 .dot{background:#E7F6EC; color:#1F9254;}
  .c3{top:8px; left:255px; transform:rotate(-3deg); z-index:3;}
  .c3 .dot{background:var(--violet-tint); color:var(--violet-dark);}
  .cross{position:absolute; color:var(--coral); font-size:22px; font-weight:800; z-index:4;}
  .cross1{top:38px; left:36px; transform:rotate(-7deg);}
  .cross2{top:118px; left:168px; transform:rotate(5deg);}
  .cross3{top:32px; left:290px; transform:rotate(-3deg);}
  .flip-arrow{
    position:absolute; top:190px; left:50%; transform:translateX(-50%);
    font-size:26px; color:var(--ink-faint);
  }
  .control-card{
    position:absolute; bottom:0; left:6%; width:88%;
    background:var(--white); border-radius:20px; box-shadow:var(--shadow-lg);
    border:1px solid var(--line); padding:22px; overflow:hidden;
  }
  .control-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:5px; background:var(--grad);
  }
  .control-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:16px;}
  .control-head .title{font-family:'Sora',sans-serif; font-weight:800; font-size:14.5px;}
  .control-head .live{display:flex; align-items:center; gap:6px; font-size:11.5px; font-weight:700; color:#1F9254;}
  .control-head .live::before{content:''; width:7px; height:7px; border-radius:50%; background:#1F9254;}
  .control-rows{display:flex; flex-direction:column; gap:10px;}
  .crow{display:flex; align-items:center; gap:12px; padding:9px 10px; border-radius:10px; background:var(--bg-alt);}
  .crow .ic{width:30px; height:30px; border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .crow .meta{flex:1;}
  .crow .meta b{display:block; font-size:12.5px; font-family:'Sora',sans-serif;}
  .crow .meta span{font-size:11px; color:var(--ink-faint);}
  .bar{width:64px; height:6px; border-radius:4px; background:var(--line); overflow:hidden;}
  .bar i{display:block; height:100%; background:var(--grad);}

  /* Trust strip */
  .trust{padding:20px 0 60px;}
  .trust-strip{
    display:flex; flex-wrap:wrap; gap:22px; justify-content:space-between; align-items:center;
    background:var(--white); border:1px solid var(--line); border-radius:18px; padding:26px 34px;
    box-shadow:var(--shadow-sm);
  }
  .trust-item{display:flex; align-items:center; gap:12px;}
  .trust-item .num{font-family:'Sora',sans-serif; font-weight:800; font-size:26px; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;}
  .trust-item .lab{font-size:13px; color:var(--ink-soft); font-weight:600; max-width:120px;}

  /* Problem section */
  .problem{
    position:relative; overflow:hidden; padding:88px 0;
    background:linear-gradient(128deg, #FDF1EF 0%, #F8F4FC 48%, #EFE9FC 100%);
  }
  .problem::before{
    content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
    background-image:radial-gradient(rgba(28,24,48,0.07) 1.3px, transparent 1.3px);
    background-size:26px 26px;
    -webkit-mask-image:radial-gradient(ellipse 75% 65% at 30% 20%, #000 40%, transparent 100%);
            mask-image:radial-gradient(ellipse 75% 65% at 30% 20%, #000 40%, transparent 100%);
  }
  .problem-blob-a{position:absolute; width:420px; height:420px; border-radius:50%; background:var(--coral); filter:blur(120px); opacity:0.16; top:-160px; right:-80px; z-index:0; pointer-events:none;}
  .problem-blob-b{position:absolute; width:380px; height:380px; border-radius:50%; background:var(--violet); filter:blur(130px); opacity:0.18; bottom:-180px; left:-100px; z-index:0; pointer-events:none;}
  .problem .wrap{position:relative; z-index:1;}
  .problem-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
  .pain-list{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
  .pain-list li{
    display:flex; gap:10px; font-size:14px; color:var(--ink); align-items:flex-start;
    background:var(--white); border:1px solid var(--line); border-radius:12px; padding:12px 14px;
  }
  .pain-list li::before{
    content:''; flex-shrink:0; margin-top:1px;
    width:20px; height:20px; border-radius:6px; background-color:var(--coral-tint);
    background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C7362C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 5l14 14M19 5L5 19'/></svg>");
    background-size:11px 11px; background-repeat:no-repeat; background-position:center;
  }
  .problem-note{margin-top:22px; padding:18px 20px; border-radius:14px; background:var(--violet-tint); border:1px solid #DDD3FB; font-size:14.5px; color:var(--ink);}
  .problem-note b{color:var(--violet-dark);}
  .stack-visual{position:relative; height:320px;}
  .stack-item{
    position:absolute; width:78%; background:var(--white); border:1px solid var(--line);
    border-radius:14px; padding:16px 18px; font-family:'Sora',sans-serif; font-weight:700; font-size:13.5px; color:var(--ink-soft);
    display:flex; align-items:center; gap:12px; box-shadow:var(--shadow-sm);
  }
  .stack-item .ic{width:32px; height:32px; border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0;}
  .s1{top:0; left:0; transform:rotate(-4deg);}
  .s2{top:80px; left:14%; transform:rotate(3deg);}
  .s3{top:160px; left:2%; transform:rotate(-2deg);}
  .s4{top:236px; left:16%; color:var(--ink); border:1.5px solid var(--violet); box-shadow:var(--shadow-md); transform:rotate(0deg);}
  .s4 .ic{background:var(--violet); color:#fff;}

  /* App Showcase */
  .showcase{
    position:relative; padding:100px 0 130px; overflow:hidden;
    background:var(--ink);
  }
  .showcase::before{
    content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
    background-image:radial-gradient(rgba(255,255,255,0.08) 1.2px, transparent 1.2px);
    background-size:26px 26px;
    -webkit-mask-image:radial-gradient(ellipse 60% 60% at 50% 42%, #000 30%, transparent 100%);
            mask-image:radial-gradient(ellipse 60% 60% at 50% 42%, #000 30%, transparent 100%);
  }
  .showcase-blob-a{position:absolute; width:520px; height:520px; border-radius:50%; background:var(--violet); filter:blur(140px); opacity:0.5; top:50%; left:50%; transform:translate(-70%,-60%); z-index:0; pointer-events:none;}
  .showcase-blob-b{position:absolute; width:460px; height:460px; border-radius:50%; background:var(--coral); filter:blur(150px); opacity:0.32; top:50%; left:50%; transform:translate(10%,-40%); z-index:0; pointer-events:none;}
  .showcase .wrap{position:relative; z-index:1;}
  .showcase .section-head h2{color:#fff;}
  .showcase .section-head p{color:#B6AFCB;}
  .showcase-stage{position:relative; max-width:900px; margin:64px auto 0;}
  .showcase-browser{max-width:100%; box-shadow:var(--shadow-lg);}
  .showcase-browser .device-topbar{padding:13px 16px;}
  .showcase-browser .device-topbar span{width:9px; height:9px;}
  .showcase-browser .device-body{padding:26px;}
  .showcase-browser .device-stats{grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:20px;}
  .showcase-browser .device-stat{padding:14px 10px;}
  .showcase-browser .device-stat b{font-size:19px;}
  .chart-card{background:var(--bg-alt); border-radius:12px; padding:16px; margin-bottom:14px;}
  .chart-card .row-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:14px;}
  .chart-card .row-top b{font-family:'Sora',sans-serif; font-size:13px;}
  .chart-card .row-top span{font-size:11px; color:#1F9254; font-weight:700; background:#E4F7EA; padding:3px 9px; border-radius:999px;}
  .mini-chart{display:flex; align-items:flex-end; gap:8px; height:70px;}
  .mini-chart i{flex:1; background:linear-gradient(180deg, var(--violet), var(--coral)); border-radius:5px 5px 2px 2px; opacity:0.9;}
  .showcase-phone{position:absolute; width:190px; z-index:2; box-shadow:var(--shadow-lg);}
  .showcase-phone-left{bottom:-72px; left:-58px; transform:rotate(-8deg);}
  .showcase-phone-right{bottom:-88px; right:-58px; transform:rotate(7deg);}
  .showcase-phone .phone-screen{min-height:250px; padding:12px;}
  .showcase-caption{position:absolute; background:#fff; border-radius:10px; padding:8px 14px; box-shadow:var(--shadow-sm); font-family:'Sora',sans-serif; font-weight:700; font-size:11.5px; color:var(--ink); border:1px solid var(--line); display:flex; align-items:center; gap:6px; white-space:nowrap;}
  .showcase-caption::before{content:''; width:7px; height:7px; border-radius:50%; background:#1F9254;}
  .cap-1{top:26px; left:-40px;}
  .cap-2{top:60px; right:-46px;}
  @media (max-width:860px){
    .showcase-stage{max-width:340px;}
    .showcase-phone{position:static; width:170px; transform:none; margin:20px auto 0; box-shadow:var(--shadow-md);}
    .showcase-caption{display:none;}
    .showcase-browser .device-stats{grid-template-columns:repeat(2,1fr);}
    .foot-privacy{max-width:none;}
  }
  .features{padding:96px 0;}
  .feat-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .feat-card{
    display:flex; flex-direction:column; height:100%;
    background:var(--white); border:1px solid var(--line); border-radius:16px; padding:26px 24px;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .feat-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent;}
  .feat-card .ic{
    width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    margin-bottom:16px;
  }
  .feat-card h3{font-size:17px; font-weight:700; margin-bottom:8px;}
  .feat-card p{font-size:14px; color:var(--ink-soft); margin-bottom:18px;}
  .feat-card-link{
    display:inline-flex; align-items:center; gap:6px; margin-top:auto;
    font-family:'Sora',sans-serif; font-weight:700; font-size:13.5px; color:var(--violet-dark);
    transition:gap .15s ease;
  }
  .feat-card-link:hover{gap:9px;}
  .tint-a{background:var(--coral-tint); color:var(--coral-dark);}
  .tint-b{background:var(--violet-tint); color:var(--violet-dark);}

  /* Platform tabs */
  .platform{padding:96px 0; background:var(--bg-alt);}
  .tabs{max-width:900px; margin:0 auto;}
  .tab-inputs{display:none;}
  .tab-labels{display:flex; justify-content:center; gap:10px; margin-bottom:36px; flex-wrap:wrap;}
  .tab-labels label{
    padding:12px 26px; border-radius:12px; background:#fff; border:1.5px solid var(--line);
    font-family:'Sora',sans-serif; font-weight:700; font-size:14px; cursor:pointer; color:var(--ink-soft);
    transition:all .18s;
  }
  .tab-panels{position:relative;}
  .tab-panel{display:none; background:#fff; border-radius:20px; padding:40px; border:1px solid var(--line); box-shadow:var(--shadow-sm);}
  .tab-panel-inner{display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;}
  .tab-panel-inner > div{min-width:0;}
  .tab-panel h3{font-size:24px; margin-bottom:10px;}
  .tab-panel > .tab-panel-inner > div:first-child p.desc{color:var(--ink-soft); margin-bottom:20px;}
  .check-list li{display:flex; gap:10px; font-size:14.5px; padding:6px 0; color:var(--ink);}
  .check-list li::before{content:''; background-color:var(--violet); width:20px; height:20px; border-radius:50%; flex-shrink:0; background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12.5l4.5 4.5L20 6'/></svg>"); background-size:11px 11px; background-repeat:no-repeat; background-position:center;}
  .role-visual{background:var(--bg-alt); border-radius:16px; padding:26px; height:100%; display:flex; align-items:center; justify-content:center;}

  /* App-screen mockups */
  .device{background:#fff; border-radius:20px; box-shadow:var(--shadow-md); border:1px solid var(--line); overflow:hidden; width:100%;}
  .device-browser{max-width:340px;}
  .showcase .showcase-browser{max-width:none;}
  .device-topbar{display:flex; align-items:center; gap:6px; padding:11px 14px; background:var(--bg-alt); border-bottom:1px solid var(--line);}
  .device-topbar span{width:8px; height:8px; border-radius:50%; background:var(--line);}
  .device-topbar .dtitle{margin-left:8px; font-family:'Sora',sans-serif; font-weight:700; font-size:11.5px; color:var(--ink-faint); width: 100%;background: none;}
  .device-body{padding:18px;}
  .device-stats{display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:14px;}
  .device-stat{background:var(--bg-alt); border-radius:10px; padding:10px 8px;}
  .device-stat b{display:block; font-family:'Sora',sans-serif; font-size:15px; color:var(--ink);}
  .device-stat span{font-size:10px; color:var(--ink-faint); font-weight:600;}
  .device-list{display:flex; flex-direction:column; gap:8px;}
  .device-row{display:flex; align-items:center; gap:10px; padding:8px 10px; border-radius:9px; background:var(--bg-alt);}
  .device-row .ic{width:26px; height:26px; border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0;}
  .device-row .meta{flex:1; min-width:0;}
  .device-row .meta b{display:block; font-size:11.5px; font-family:'Sora',sans-serif;}
  .device-row .meta span{font-size:10px; color:var(--ink-faint);}
  .device-row .mini-bar{width:44px; height:5px; border-radius:4px; background:var(--line); overflow:hidden; flex-shrink:0;}
  .device-row .mini-bar i{display:block; height:100%; background:var(--violet);}

  .device-phone{max-width:230px; border-radius:32px; padding:10px 10px 16px; border:1px solid var(--line);}
  .device-phone .phone-notch{width:70px; height:16px; background:var(--ink); border-radius:0 0 12px 12px; margin:0 auto 8px;}
  .device-phone .phone-screen{background:var(--bg-alt); border-radius:20px; padding:14px; min-height:300px;}
  .phone-head{display:flex; align-items:center; gap:8px; margin-bottom:14px;}
  .phone-head .av-sm{width:30px; height:30px; border-radius:50%; background:var(--violet); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Sora',sans-serif; font-weight:800; font-size:12px; flex-shrink:0;}
  .phone-head b{display:block; font-size:12.5px; font-family:'Sora',sans-serif;}
  .phone-head span{font-size:10px; color:var(--ink-faint);}
  .phone-card{background:#fff; border-radius:12px; padding:12px; margin-bottom:10px; box-shadow:var(--shadow-sm);}
  .phone-card .row-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:8px;}
  .phone-card .row-top b{font-size:11.5px; font-family:'Sora',sans-serif;}
  .tag-ok{font-size:9.5px; font-weight:700; padding:3px 8px; border-radius:999px; background:#E4F7EA; color:#1F9254;}
  .tag-due{font-size:9.5px; font-weight:700; padding:3px 8px; border-radius:999px; background:var(--coral-tint); color:var(--coral-dark);}
  .week-strip{display:flex; gap:5px;}
  .week-strip span{flex:1; height:22px; border-radius:6px; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:700; color:var(--ink-faint);}
  .week-strip span.present{background:var(--violet); color:#fff;}
  .phone-home{width:60px; height:4px; border-radius:3px; background:var(--line); margin:12px auto 0;}
  #tab1:checked ~ .tab-labels label[for="tab1"],
  #tab2:checked ~ .tab-labels label[for="tab2"],
  #tab3:checked ~ .tab-labels label[for="tab3"]{background:var(--violet); color:#fff; border-color:transparent;}
  #tab1:checked ~ .tab-panels #panel1,
  #tab2:checked ~ .tab-panels #panel2,
  #tab3:checked ~ .tab-panels #panel3{display:block;}

  /* Highlights */
  .highlights{padding:96px 0;}
  .hl-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
  .hl-card{background:var(--white); border:1px solid var(--line); border-radius:16px; padding:24px; }
  .hl-card .num{font-family:'Sora',sans-serif; font-weight:800; font-size:13px; color:var(--ink-faint); margin-bottom:10px;}
  .hl-card h3{font-size:16px; margin-bottom:8px;}
  .hl-card p{font-size:13.5px; color:var(--ink-soft);}

  /* Industries */
  .industries{padding:80px 0; background:var(--ink); text-align:center;}
  .industries .section-head h2{color:#fff;}
  .industries .section-head p{color:#B6AFCB;}
  .pill-cloud{display:flex; flex-wrap:wrap; gap:12px; justify-content:center; max-width:900px; margin:0 auto;}
  .pill-cloud span{
    padding:10px 20px; border-radius:999px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.16);
    font-size:14px; font-weight:600; color:#EDEAF7;
  }

  /* How it works */
  .how{padding:96px 0;}
  .how-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px; position:relative;}
  .how-card{background:var(--white); border:1px solid var(--line); border-radius:18px; padding:32px 26px; position:relative;}
  .how-card .step-num{font-family:'Sora',sans-serif; font-weight:800; font-size:15px; color:#fff; background:var(--grad); width:38px; height:38px; border-radius:11px; display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
  .how-card h3{font-size:18px; margin-bottom:8px;}
  .how-card p{font-size:14.5px; color:var(--ink-soft);}

  /* Differentiation */
  .diff{padding:96px 0; background:var(--bg-alt);}
  .diff-grid{display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center;}
  .diff-grid > *{min-width:0;}
  .diff-list{display:grid; grid-template-columns:1fr 1fr; gap:12px 20px;}
  .diff-list li{display:flex; gap:10px; font-size:14.5px; align-items:flex-start;}
  .diff-list li::before{content:''; background-color:var(--violet); width:20px; height:20px; border-radius:50%; flex-shrink:0; margin-top:1px; background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12.5l4.5 4.5L20 6'/></svg>"); background-size:11px 11px; background-repeat:no-repeat; background-position:center;}
  .diff-card{background:#fff; border-radius:20px; border:1px solid var(--line); box-shadow:var(--shadow-md); padding:34px;}
  .diff-card .badge{display:inline-block; background:var(--coral-tint); color:var(--coral-dark); font-family:'Sora',sans-serif; font-weight:700; font-size:12px; padding:6px 14px; border-radius:999px; margin-bottom:16px;}
  .diff-card h3{font-size:20px; margin-bottom:14px;}

  /* Testimonials */
  .testi{padding:96px 0;}
  .rating-badge{display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom:10px;}
  .stars{color:#F5A623; font-size:18px; letter-spacing:2px;}
  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .testi-card{background:var(--white); border:1px solid var(--line); border-radius:16px; padding:26px; display:flex; flex-direction:column; gap:14px;}
  .testi-card .stars{font-size:14px; justify-content:flex-start; margin:0;}
  .testi-card p{font-size:14.5px; color:var(--ink); flex:1;}
  .testi-who{display:flex; align-items:center; gap:10px; padding-top:8px; border-top:1px solid var(--line);}
  .testi-who .av{width:38px; height:38px; border-radius:50%; background:var(--grad); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Sora',sans-serif; font-weight:800; font-size:14px; flex-shrink:0;}
  .testi-who b{display:block; font-size:13.5px;}
  .testi-who span{font-size:12px; color:var(--ink-faint);}

  /* FAQ */
  .faq{padding:96px 0; background:var(--bg-alt);}
  .faq-list{max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:12px;}
  .faq-item{background:#fff; border:1px solid var(--line); border-radius:14px; padding:6px 22px; overflow:hidden;}
  .faq-item summary{
    list-style:none; cursor:pointer; padding:16px 0; font-family:'Sora',sans-serif; font-weight:700; font-size:15.5px;
    display:flex; justify-content:space-between; align-items:center; gap:16px;
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary::after{content:'+'; font-size:22px; color:var(--violet); font-weight:400; flex-shrink:0; transition:transform .2s;}
  .faq-item[open] summary::after{transform:rotate(45deg);}
  .faq-item p{font-size:14.5px; color:var(--ink-soft); padding-bottom:18px;}

  /* Final CTA */
  .final-cta{padding:80px 0; text-align:center;}
  .cta-box{
    background:var(--ink);
    border-radius:28px; padding:44px 40px 56px; position:relative; overflow:hidden;
    color:#fff; isolation:isolate;
  }
  .cta-box::before{
    content:''; position:absolute; inset:0; z-index:0;
    background-image:radial-gradient(rgba(255,255,255,0.09) 1.2px, transparent 1.2px);
    background-size:24px 24px;
    -webkit-mask-image:radial-gradient(ellipse 70% 70% at 50% 40%, #000 40%, transparent 100%);
            mask-image:radial-gradient(ellipse 70% 70% at 50% 40%, #000 40%, transparent 100%);
  }
  .cta-box > *{position:relative; z-index:1;}
  .cta-glow-a{position:absolute !important; width:360px; height:360px; border-radius:50%; background:var(--violet); filter:blur(100px); opacity:0.45; top:-140px; left:-100px; z-index:0;}
  .cta-glow-b{position:absolute !important; width:300px; height:300px; border-radius:50%; background:var(--coral); filter:blur(110px); opacity:0.25; bottom:-140px; right:-80px; z-index:0;}
  .cta-bubble{position:absolute !important; top:36px; right:56px; width:70px; height:56px; border:2px solid rgba(255,255,255,0.14); border-radius:18px 18px 18px 4px; z-index:0;}
  .cta-box h2{font-size:clamp(26px,3.6vw,38px); font-weight:800; max-width:640px; margin:0 auto 16px; color:#fff;}
  .cta-box p{color:#C9C3E0; max-width:560px; margin:0 auto 32px; font-size:16px;}
  .cta-box .btn-primary{background:#fff; color:var(--violet-dark); box-shadow:0 14px 32px rgba(0,0,0,0.28);}
  .cta-box .btn-primary:hover{background:#F1ECFF; color:var(--violet-dark); transform:translateY(-2px); box-shadow:0 18px 36px rgba(0,0,0,0.32);}
  .cta-trust{margin-top:30px; display:flex; gap:24px; justify-content:center; flex-wrap:wrap;}
  .cta-trust span{display:flex; align-items:center; gap:7px; font-size:13px; font-weight:600; color:#B7AFD6;}
  .cta-trust span::before{content:''; display:inline-block; width:16px; height:16px; flex-shrink:0; background-size:contain; background-repeat:no-repeat;}
  .cta-btns{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

    /* Footer */
  footer{
    position:relative; overflow:hidden; padding:72px 0 30px;
    background:var(--ink); color:#D9D4EA;
  }
  footer::before{
    content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
    background-image:radial-gradient(rgba(255,255,255,0.07) 1.2px, transparent 1.2px);
    background-size:24px 24px;
    -webkit-mask-image:radial-gradient(ellipse 65% 60% at 15% 0%, #000 30%, transparent 100%);
            mask-image:radial-gradient(ellipse 65% 60% at 15% 0%, #000 30%, transparent 100%);
  }
  .foot-glow{position:absolute; width:420px; height:420px; border-radius:50%; background:var(--violet); filter:blur(130px); opacity:0.28; top:-180px; right:-100px; z-index:0; pointer-events:none;}
  footer .wrap{position:relative; z-index:1;}
  .foot-top{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; padding-bottom:36px; margin-bottom:36px; border-bottom:1px solid rgba(255,255,255,0.1);}
  .foot-brand{display:flex; align-items:center; gap:10px;}
  .foot-brand img{height:30px;}
  .foot-tagline{font-family:'Sora',sans-serif; font-weight:700; font-size:14.5px; color:#fff;}
  .foot-top-cta{display:flex; align-items:center; gap:16px; flex-wrap:wrap;}
  .foot-social{display:flex; flex-wrap:wrap; gap:10px;}
  .foot-social a{
    width:40px; height:40px; border-radius:11px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
    display:flex; align-items:center; justify-content:center; color:#C9C3E0;
    transition:color .18s, background .18s, transform .18s, border-color .18s;
  }
  .foot-social a:hover{color:#fff; background:var(--violet); border-color:transparent; transform:translateY(-3px);}
  .foot-social a svg{width:18px; height:18px;}

  .foot-grid{display:grid; grid-template-columns:1.1fr 0.75fr 0.85fr 1.4fr; gap:24px; align-items:start; padding-bottom:40px;}
  @media (max-width:860px){
    .foot-grid{grid-template-columns:1fr 1fr; gap:28px 20px;}
  }
  @media (max-width:600px){
    .foot-grid{grid-template-columns:1fr; gap:32px;}
  }
  .foot-privacy{font-size:13px; color:#9A93B5; max-width:320px; line-height:1.6;}
  .foot-col h4{font-family:'Sora',sans-serif; font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:#fff; margin-bottom:18px;}
  .foot-col ul{display:flex; flex-direction:column; gap:12px;}
  .foot-col ul li a{font-size:14px; color:#B7AFD6; transition:color .15s;}
  .foot-col ul li a:hover{color:#fff;}
  .foot-apps{display:flex; gap:14px;}
  .foot-app-card{
    background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:16px;
    padding:16px; text-align:center; flex:1; transition:border-color .18s, transform .18s;
  }
  .foot-app-card:hover{border-color:var(--violet); transform:translateY(-3px);}
  .foot-app-card .qr-wrap{background:#fff; border-radius:10px; padding:8px; margin:0 auto 10px; width:82px;}
  .foot-app-card .qr-wrap img{width:100%; height:auto; display:block;}
  .foot-app-card span{display:block; font-size:12px; font-weight:700; color:#fff; font-family:'Sora',sans-serif;}
  .foot-app-card small{display:block; font-size:10.5px; color:#9A93B5; margin-top:2px;}
  .store-badge{
    display:flex; align-items:center; justify-content:center; gap:6px;
    width:100%; box-sizing:border-box; overflow:hidden;
    margin-top:12px; padding:7px 8px; border-radius:9px;
    background:#000; border:1px solid rgba(255,255,255,0.18);
    transition:transform .15s ease, border-color .15s ease;
  }
  .store-badge:hover{transform:translateY(-2px); border-color:rgba(255,255,255,0.4);}
  .store-badge svg{flex-shrink:0; width:16px; height:16px; color:#fff;}
  .store-badge span{text-align:left; font-size:11px; line-height:1.15; white-space:nowrap; min-width:0;}
  .store-badge span small{display:block; font-size:7.5px; font-weight:500; color:#D9D4EA; text-transform:uppercase; letter-spacing:.02em; margin-top:0; white-space:nowrap;}

  .foot-bottom{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; padding-top:24px; border-top:1px solid rgba(255,255,255,0.1);}
  .foot-copy{font-size:12.5px; color:#8D87A0;}
  .foot-legal{display:flex; gap:20px; flex-wrap:wrap;}
  .foot-legal a{font-size:12.5px; color:#8D87A0; transition:color .15s;}
  .foot-legal a:hover{color:#fff;}
  @media (max-width:980px){
    .hero-grid, .problem-grid, .diff-grid{grid-template-columns:1fr;}
    .feat-grid{grid-template-columns:repeat(2,1fr);}
    .hl-grid{grid-template-columns:repeat(2,1fr);}
    .how-grid, .testi-grid{grid-template-columns:1fr;}
    .tab-panel-inner{grid-template-columns:1fr;}
    .hero-visual{height:380px; margin-top:20px;}
    .nav-links{display:none; align-items:stretch; max-height:calc(100vh - 64px); overflow-y:auto; -webkit-overflow-scrolling:touch;}
    .nav-links > a{width:100%; padding:10px 0;}
    .burger{display:flex;}
    .nav-cta{display:none;}
    .nav-mobile-cta{
      display:flex; flex-direction:column; gap:10px; width:100%;
      margin-top:16px; padding-top:16px; border-top:1px solid var(--line);
    }
    .nav-mobile-cta .btn{width:100%;}
    .nav-mobile-cta .btn-primary{color:#fff;}
    .nav-mobile-cta .btn-ghost{color:var(--ink);}

    .nav-item{width:100%; flex-direction:column; align-items:stretch;}
    .nav-item.has-dropdown{padding-bottom:0; margin-bottom:0;}
    .nav-dropdown-trigger{width:100%; justify-content:space-between;}
    .nav-dropdown-trigger .chevron{display:none;}
    .mega-toggle{
      display:flex; position:absolute; top:0; right:0; height:44px; width:44px;
    }
    .mega-toggle svg{transition:transform .2s ease;}
    .nav-item.open .mega-toggle svg{transform:rotate(180deg);}
    .mega-dropdown{
      position:static; transform:none; width:100%; max-width:none;
      box-shadow:none; border:none; border-radius:0; padding:4px 0 4px 0; margin-top:2px;
      opacity:1; visibility:visible; pointer-events:auto;
      display:none;
    }
    .mega-dropdown::before{display:none;}
    .nav-item.open .mega-dropdown{display:block; transform:none; left:auto;}
    .mega-grid{grid-template-columns:1fr; gap:0;}
    .mega-item{padding:11px 0;}
    .mega-item b{font-size:13px;}
  }
  @media (max-width:600px){
    .feat-grid, .hl-grid, .pain-list, .diff-list{grid-template-columns:1fr;}
    .trust-strip{justify-content:center; text-align:center;}
    .tab-panel{padding:22px;}
    .hero-ctas .btn{width:100%;}
    .cta-btns .btn{width:100%;}
    .diff-grid .btn{white-space:normal; width:100%; text-align:center;}
    .foot-apps{max-width:340px;}
    /* The floating cards (.c1/.c2/.c3 etc.) are positioned with fixed px offsets
       designed for a ~520px canvas. Below 600px the column is narrower than
       that, so the canvas keeps its fixed reference size and gets scaled down
       to fit — .hero-visual itself must NOT get an explicit width, since (at
       this breakpoint) it shares a single grid track with the hero text; a
       fixed-width child here would force that whole track wider than the
       viewport and clip the text instead (min-width:0 alone isn't enough
       once a definite width is set on the item itself). */
    .hero-visual{height:280px; display:flex; justify-content:center; overflow:hidden;}
    .hero-visual-canvas{width:520px; height:460px; flex-shrink:0; transform-origin:top center;}
  }
  @media (max-width:600px){ .hero-visual-canvas{transform:scale(0.6087);} }
  @media (max-width:480px){ .hero-visual{height:232px;} .hero-visual-canvas{transform:scale(0.504);} }
  @media (max-width:400px){ .hero-visual{height:190px;} .hero-visual-canvas{transform:scale(0.413);} }
  @media (max-width:340px){ .hero-visual{height:157px;} .hero-visual-canvas{transform:scale(0.3413);} }

  .footer-badges{display:flex; flex-direction:column; gap:8px; margin-top:16px;}
  .foot-badge{
    display:inline-flex; align-items:center; gap:6px; width:fit-content;
    font-size:12.5px; color:#E4DFF5; background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12); border-radius:999px; padding:6px 12px;
  }
