@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

@font-face{font-family:'Montserrat';font-style:normal;font-weight:500;font-display:swap;src:url('/fonts/montserrat-latin.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/montserrat-latin.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/montserrat-latin.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:800;font-display:swap;src:url('/fonts/montserrat-latin.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:900;font-display:swap;src:url('/fonts/montserrat-latin.woff2') format('woff2');}

:root{
  --navy:#00274c;
  --blue:#11296b;
  --gray:#ededed;
  --card:#d9d9d9;
  --yellow:#ffcb05;
  --yellow-light:#ffdb57;
  --white:#ffffff;
  --radius:10px;
  --shadow:0 7px 14px rgba(0,39,76,0.12);
  --shadow-sm:0 4px 10px rgba(0,39,76,0.10);
  --maxw:1320px;
  --header-h:120px;
  --crit:#d64545;
  --high:#e08a2c;
  --med:#e0b62c;
  --low:#3a8f5a;
  --info:#3a6fb0;
  --mono:'SFMono-Regular',Consolas,'Liberation Mono',Menlo,monospace;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;font-family:'Montserrat','Kanit',sans-serif;color:var(--navy);background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:800;letter-spacing:.14em;
  text-transform:uppercase;color:var(--blue);margin-bottom:14px;
}
.eyebrow::before{content:"";width:9px;height:9px;border-radius:50%;background:var(--yellow);display:inline-block;}
.section-head{max-width:760px;margin:0 auto 56px;text-align:center;}
.section-head h2{font-size:clamp(28px,4vw,40px);font-weight:900;margin:0 0 14px;line-height:1.15;}
.section-head p{font-size:16px;color:#3d5875;line-height:1.6;margin:0;}
section{padding:96px 0;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;background:var(--yellow);color:var(--navy);
  font-weight:900;font-size:16px;padding:14px 30px;border-radius:var(--radius);box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);background:var(--yellow-light);box-shadow:var(--shadow);}
.btn.outline{background:transparent;border:2px solid var(--navy);box-shadow:none;}
.btn.outline:hover{background:var(--navy);color:var(--white);}
.btn.ghost{background:var(--gray);color:var(--navy);box-shadow:none;}
.btn.ghost:hover{background:#dfe3e8;}
.btn[disabled]{opacity:.5;cursor:not-allowed;transform:none;}

/* ===== Header ===== */
header{position:sticky;top:0;left:0;right:0;z-index:100;background:var(--white);height:var(--header-h);box-shadow:0 4px 16px rgba(0,39,76,0.08);}
header .wrap{max-width:none;height:100%;display:flex;align-items:center;justify-content:space-between;gap:0;}
.brand{display:flex;align-items:center;gap:10px;white-space:nowrap;flex-shrink:0;}
.brand .mark{width:82px;height:82px;flex-shrink:0;}
.brand span{font-weight:900;font-size:36px;letter-spacing:.02em;}
nav.primary{display:flex;align-items:center;flex:1;justify-content:space-evenly;}
nav.primary > a, .has-dropdown > button.navlink{
  font-weight:900;font-size:20px;color:var(--navy);display:flex;align-items:center;gap:6px;padding:8px 0;position:relative;
}
nav.primary > a::after, .has-dropdown > button.navlink::after{
  content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--yellow);transition:width .2s ease;
}
nav.primary > a:hover::after, .has-dropdown:hover > button.navlink::after{width:100%;}
.has-dropdown{position:relative;}
.megamenu{
  position:absolute;top:100%;left:50%;transform:translate(-50%,8px);background:var(--white);
  border-radius:14px;box-shadow:0 22px 48px rgba(0,39,76,0.18);padding:28px 30px;display:grid;
  grid-template-columns:repeat(3,1fr);gap:26px 28px;width:560px;opacity:0;visibility:hidden;
  transition:opacity .18s ease, transform .18s ease;border:1px solid #eef1f5;
}
.has-dropdown:hover .megamenu{opacity:1;visibility:visible;transform:translate(-50%,0);}
.megamenu-col h4{font-size:12px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#7a8ba3;margin:0 0 14px;}
.megamenu-item{display:flex;align-items:center;gap:10px;padding:8px 0;border-radius:8px;font-weight:700;font-size:15px;color:var(--navy);}
.megamenu-item .ico{width:34px;height:34px;border-radius:8px;background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.megamenu-item .ico svg{width:18px;height:18px;fill:currentColor;}
.megamenu-item:hover{color:var(--blue);}
.simple-menu{
  position:absolute;top:100%;left:50%;transform:translate(-50%,8px);background:var(--white);
  border-radius:14px;box-shadow:0 22px 48px rgba(0,39,76,0.18);padding:12px;display:flex;flex-direction:column;
  gap:2px;width:190px;opacity:0;visibility:hidden;transition:opacity .18s ease, transform .18s ease;border:1px solid #eef1f5;
}
.has-dropdown:hover .simple-menu{opacity:1;visibility:visible;transform:translate(-50%,0);}
.simple-menu a{display:block;padding:10px 14px;border-radius:8px;font-weight:700;font-size:15px;color:var(--navy);}
.simple-menu a:hover{background:var(--gray);color:var(--blue);}
.auth{display:flex;align-items:center;gap:8px;flex-shrink:0;}
.auth .divider{width:2px;height:28px;background:var(--gray);border-radius:5px;flex-shrink:0;}
.auth a.login{font-weight:900;font-size:20px;white-space:nowrap;}
.auth .userchip{display:flex;align-items:center;gap:6px;font-weight:800;font-size:14px;min-width:0;padding:6px 8px;border-radius:20px;transition:background .15s ease;}
.auth .userchip:hover{background:var(--gray);}
.auth .userchip span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:76px;}
.auth .btn.outline{padding:9px 16px;font-size:14px;}
.auth .avatar{width:36px;height:36px;border-radius:50%;background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:900;font-size:14px;}
.burger{display:none;width:44px;height:44px;border-radius:8px;align-items:center;justify-content:center;flex-shrink:0;}
.burger-icon{width:24px;height:2px;background:var(--navy);position:relative;}
.burger-icon::before,.burger-icon::after{content:"";position:absolute;left:0;width:24px;height:2px;background:var(--navy);transition:transform .2s;}
.burger-icon::before{top:-8px;}
.burger-icon::after{top:8px;}
.mobile-nav{position:fixed;inset:0;background:var(--navy);z-index:200;transform:translateX(100%);transition:transform .28s ease;padding:28px 28px;overflow-y:auto;}
.mobile-nav.open{transform:translateX(0);}
.mobile-nav .close{position:absolute;top:24px;right:24px;width:40px;height:40px;color:var(--white);}
.mobile-nav a, .mobile-nav .mgroup summary{color:var(--white);font-size:20px;font-weight:800;display:block;padding:16px 0;border-bottom:1px solid rgba(255,255,255,0.12);cursor:pointer;}
.mobile-nav .mgroup .msub{padding-left:14px;}
.mobile-nav .mgroup .msub a{font-size:16px;font-weight:700;color:#cfdaea;border-bottom:none;padding:10px 0;}
.mobile-nav .cta-row{display:flex;gap:12px;margin-top:24px;}

/* ===== Hero ===== */
.hero{padding:76px 0 100px;overflow:hidden;position:relative;}
.hero .wrap{display:grid;grid-template-columns:1.05fr 1fr;gap:56px;align-items:center;}
.hero h1{font-size:clamp(38px,5.6vw,64px);font-weight:900;line-height:1.08;margin:0 0 22px;text-shadow:0 4px 4px rgba(0,0,0,.12);}
.gradient-hover{position:relative;cursor:default;}
.gradient-hover .base-layer{color:var(--navy);}
.gradient-hover .gradient-layer{
  position:absolute;inset:0;color:transparent;
  background-image:radial-gradient(circle 240px at var(--mx,50%) var(--my,50%), var(--yellow) 0%, var(--yellow-light) 40%, transparent 74%);
  -webkit-background-clip:text;background-clip:text;opacity:0;transition:opacity .25s ease;pointer-events:none;
}
.gradient-hover:hover .gradient-layer{opacity:1;}
h1.gradient-hover{text-shadow:none;}
h1.gradient-hover .base-layer, h1.gradient-hover .gradient-layer{text-shadow:0 4px 4px rgba(0,0,0,.12);}
.hero-copy{position:relative;font-size:clamp(17px,2vw,22px);font-weight:800;line-height:1.5;margin:0 0 34px;max-width:520px;}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;}
.hero-art{position:relative;min-width:0;border-radius:18px;overflow:hidden;box-shadow:0 18px 46px rgba(0,39,76,0.18);aspect-ratio:684/480;}

/* ===== Hero: rotating dashboard mockup ===== */
.hero-mock{box-shadow:none;border-radius:0;overflow:visible;display:flex;align-items:center;justify-content:center;}
.hm-window{
  position:relative;width:100%;max-width:600px;min-width:0;background:var(--white);border-radius:20px;
  box-shadow:0 26px 56px rgba(0,39,76,0.2);border:1px solid #eef1f5;overflow:hidden;
  opacity:0;transform:translateY(16px);animation:hmRise .6s ease forwards;
}
.hm-topbar{display:flex;align-items:center;gap:8px;padding:18px 22px;border-bottom:1px solid var(--gray);}
.hm-dot{width:12px;height:12px;border-radius:50%;}
.hm-dot.r{background:#ef5350;}
.hm-dot.y{background:#ffca28;}
.hm-dot.g{background:#66bb6a;}
.hm-live{margin-left:auto;display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:800;color:var(--crit);text-transform:uppercase;letter-spacing:.05em;}
.hm-live-dot{width:8px;height:8px;border-radius:50%;background:var(--crit);animation:hmPulse 1.4s ease-in-out infinite;}
.hm-body{display:flex;}
.hm-sidebar{width:130px;flex-shrink:0;background:#f6f8fb;border-right:1px solid var(--gray);padding:20px 12px;}
.hm-sidebar-label{font-size:10.5px;font-weight:800;letter-spacing:.08em;color:#9aa8bb;margin:0 0 12px 8px;text-transform:uppercase;}
.hm-nav-item{display:block;font-size:14px;font-weight:700;color:#7a8ba3;padding:9px 10px;border-radius:7px;margin-bottom:4px;transition:background .35s ease,color .35s ease;}
.hm-nav-item.active{background:var(--navy);color:var(--white);}
.hm-content{position:relative;flex:1;min-width:0;min-height:300px;}
.hm-screen{position:absolute;top:24px;left:24px;right:24px;bottom:24px;opacity:0;transform:translateY(8px);transition:opacity .5s ease,transform .5s ease;pointer-events:none;}
.hm-screen.active{opacity:1;transform:translateY(0);pointer-events:auto;}
.hm-screen h5{font-size:16px;font-weight:900;color:var(--navy);margin:0 0 18px;}
.hm-content .bar-row{grid-template-columns:64px 1fr 26px;font-size:13px;gap:10px;margin-bottom:12px;}
.hm-stat-row{display:flex;gap:30px;margin-bottom:22px;}
.hm-stat-row b{display:block;font-size:26px;font-weight:900;color:var(--navy);}
.hm-stat-row span{font-size:13px;color:#7a8ba3;font-weight:700;}
.hm-finding-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px 0;border-bottom:1px solid var(--gray);}
.hm-finding-row:last-child{border-bottom:none;}
.hm-finding-name{font-size:14px;font-weight:700;color:var(--navy);}
.hm-finding-meta{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.hm-finding-cvss{font-size:13px;font-weight:900;color:#7a8ba3;}
.hm-report-meta{font-size:13px;color:#7a8ba3;font-weight:700;margin-top:18px;}
.hm-report-meta div{margin-bottom:5px;}
.hm-activity-row{display:flex;align-items:flex-start;gap:12px;padding:9px 0;}
.hm-activity-row .activity-dot{margin-top:5px;flex-shrink:0;}
.hm-activity-text{font-size:14px;font-weight:700;color:var(--navy);line-height:1.45;}
.hm-fw-row{margin-bottom:14px;}
.hm-fw-head{display:flex;justify-content:space-between;font-size:13px;font-weight:800;color:var(--navy);margin-bottom:5px;}
.badge.sm{font-size:11.5px;padding:4px 10px;}
@keyframes hmRise{from{opacity:0;transform:translateY(16px);}to{opacity:1;transform:translateY(0);}}
@keyframes hmPulse{0%,100%{opacity:1;}50%{opacity:.25;}}

/* ===== Cards carousel ===== */
.cards-section{padding-top:40px;padding-bottom:100px;}
.carousel{position:relative;}
.carousel-track{display:flex;gap:24px;overflow-x:auto;scroll-behavior:smooth;padding:6px 4px 20px;scrollbar-width:none;}
.carousel-track::-webkit-scrollbar{display:none;}
.feature-card{flex:0 0 calc((100% - 48px) / 3);background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:28px 26px;transition:transform .2s ease, box-shadow .2s ease;}
.feature-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);}
.feature-card .ico{width:64px;height:64px;border-radius:var(--radius);background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;margin-bottom:22px;}
.feature-card .ico svg{width:30px;height:30px;}
.feature-card h3{font-size:20px;font-weight:900;margin:0 0 10px;}
.feature-card p{font-size:15px;line-height:1.55;margin:0;color:#2c4a68;}
.carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;background:var(--white);box-shadow:0 6px 18px rgba(0,39,76,0.18);display:flex;align-items:center;justify-content:center;z-index:5;transition:background .18s;}
.carousel-arrow:hover{background:var(--yellow);}
.carousel-arrow svg{width:18px;height:18px;stroke:var(--navy);fill:none;stroke-width:2.4;}
.carousel-arrow.prev{left:-24px;}
.carousel-arrow.next{right:-24px;}
.dots{display:flex;justify-content:center;gap:8px;margin-top:8px;}
.dots span{width:8px;height:8px;border-radius:50%;background:var(--card);}
.dots span.active{background:var(--yellow);width:22px;border-radius:5px;transition:width .2s;}

/* ===== Workflow ===== */
.workflow{background:var(--white);}
.workflow .section-head{text-align:left;max-width:none;margin:0 0 40px;}
.wf-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:0;}
.wf-card{background:var(--navy);border:none;padding:36px 26px 30px;display:flex;flex-direction:column;align-items:center;text-align:center;min-height:420px;}
.wf-card:nth-child(1){background:#00274c;--wf-bg:#00274c;}
.wf-card:nth-child(2){background:#11296b;--wf-bg:#11296b;}
.wf-card:nth-child(3){background:#2c4c87;--wf-bg:#2c4c87;}
.wf-card:nth-child(4){background:#7b93b8;--wf-bg:#7b93b8;}
.wf-card:nth-child(5){background:#d9e1ee;--wf-bg:#d9e1ee;}
.wf-card .ico{width:96px;height:96px;color:var(--white);display:flex;align-items:center;justify-content:center;margin:0 0 22px;flex-shrink:0;}
.wf-card .ico svg{width:72px;height:72px;}
.wf-card h3{font-size:18px;font-weight:900;margin:0 0 12px;line-height:1.3;color:var(--white);min-height:2.6em;}
.wf-card p{font-size:16px;line-height:1.6;color:#c7d4e4;margin:0 0 18px;height:11.2em;overflow:hidden;}
.wf-card:nth-child(2) .ico svg{width:78px;height:78px;}
.wf-card:nth-child(3) .ico svg{width:54px;height:54px;}
.wf-card:nth-child(4) .ico svg{width:74px;height:74px;}
.wf-card:nth-child(4) .ico{color:var(--navy);}
.wf-card:nth-child(4) h3{color:var(--navy);}
.wf-card:nth-child(4) p{color:var(--navy);}
.wf-card:nth-child(5) .ico{color:var(--navy);}
.wf-card:nth-child(5) h3{color:var(--navy);}
.wf-card:nth-child(5) p{color:var(--navy);}
.tag-cloud{display:flex;flex-wrap:wrap;gap:8px;margin-top:0;justify-content:center;}
.tag{font-size:12px;font-weight:700;background:#CBD3EA;border:none;color:#11296B;padding:5px 11px;border-radius:20px;}

/* ===== Attack surface ===== */
.surface .stats{display:grid;grid-template-columns:repeat(4,1fr);background:var(--yellow);margin-top:56px;}
.stats .stat{padding:26px 20px;text-align:center;border-right:1px solid rgba(0,39,76,0.18);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;}
.stats .stat:last-child{border-right:none;}
.stats .stat .icon{width:38px;height:38px;margin:0 0 8px;color:var(--navy);}
.stats .stat .icon svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:3.5;}
.stats .stat b{font-size:28px;font-weight:900;display:block;color:var(--navy);}
.stats .stat:not(:last-child) b{font-size:34px;}
.stats .stat span{font-size:28px;font-weight:900;color:var(--navy);}
.surface-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.surface-card{display:block;background:var(--white);border:1px solid var(--gray);border-radius:16px;padding:34px 22px;text-align:center;transition:box-shadow .2s ease, transform .2s ease, border-color .2s;}
.surface-card:hover{box-shadow:var(--shadow-sm);transform:translateY(-4px);border-color:transparent;}
.surface-card .ico{width:60px;height:60px;border-radius:14px;background:#e4e9f7;color:var(--blue);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;}
.surface-card .ico svg{width:28px;height:28px;}
.surface-card .cat{font-size:12px;font-weight:700;letter-spacing:.04em;color:#8fa0b8;margin-bottom:6px;}
.surface-card h4{font-size:17px;font-weight:900;margin:0;}

/* ===== Surface detail page ===== */
.sd-hero{background:var(--navy);color:var(--white);padding:48px 0 56px;}
.sd-back{display:inline-flex;align-items:center;gap:8px;color:#a9bcd6;font-weight:700;font-size:14px;margin-bottom:28px;}
.sd-back:hover{color:var(--yellow-light);}
.sd-hero-top{display:flex;gap:24px;align-items:flex-start;}
.sd-icon{width:64px;height:64px;border-radius:16px;background:rgba(255,255,255,0.1);color:var(--yellow);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.sd-icon svg{width:32px;height:32px;}
.sd-cat{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--yellow-light);margin-bottom:8px;}
.sd-hero h1{font-size:clamp(28px,4vw,42px);font-weight:900;margin:0 0 12px;line-height:1.15;color:var(--white);}
.sd-tagline{font-size:17px;line-height:1.6;color:#c7d4e4;margin:0;max-width:640px;}

.sd-body{padding:56px 0 100px;}
.sd-block{margin-bottom:44px;}
.sd-block h2{font-size:22px;font-weight:900;margin:0 0 16px;}
.sd-why p{font-size:16px;line-height:1.75;color:#3d5875;max-width:820px;}
.sd-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px;}
.sd-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:14px;}
.sd-list li{display:flex;align-items:flex-start;gap:12px;font-size:15px;line-height:1.6;color:#2c4a68;}
.sd-list-ico{width:26px;height:26px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;margin-top:1px;}
.sd-list-get .sd-list-ico{background:#e4f3ea;color:var(--low);}
.sd-list-safe .sd-list-ico{background:#e4e9f7;color:var(--blue);}
.sd-checks{justify-content:flex-start;}
.sd-checks .tag{background:var(--gray);color:var(--navy);font-weight:700;font-size:13px;padding:8px 14px;border-radius:20px;}
.about-panel{background:var(--navy);border-radius:18px;padding:32px 36px;color:#c7d4e4;}
.about-panel h2{color:var(--white);}
.about-panel .credit-bar{border-bottom:none;padding:24px 0 0;}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.contact-card{background:var(--white);border:1px solid var(--gray);border-radius:var(--radius);padding:28px 26px;box-shadow:var(--shadow-sm);}
.contact-card .avatar{width:56px;height:56px;border-radius:50%;background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:900;font-size:20px;margin-bottom:16px;}
.contact-card h3{font-size:19px;font-weight:900;margin:0 0 4px;}
.contact-card .role{font-size:13px;color:#6f84a0;margin-bottom:18px;}
.contact-row{display:flex;align-items:center;gap:12px;font-size:14.5px;font-weight:700;color:var(--navy);padding:10px 0;border-top:1px solid var(--gray);}
.contact-row:first-of-type{border-top:none;}
.contact-row .ico{width:32px;height:32px;border-radius:8px;background:#e4e9f7;color:var(--blue);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.contact-row .ico svg{width:16px;height:16px;}
.contact-row a{color:var(--navy);word-break:break-word;}
.contact-row a:hover{color:var(--blue);text-decoration:underline;}
.sd-cta{margin-top:16px;background:var(--yellow);border-radius:18px;padding:32px 36px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}
.sd-cta h3{font-size:22px;font-weight:900;margin:0 0 6px;color:var(--navy);}
.sd-cta p{margin:0;font-size:14px;color:#5a4200;}
.sd-cta .btn{flex-shrink:0;}

/* ===== Feedback ===== */
.feedback-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:32px;align-items:start;}
.review-col{display:flex;flex-direction:column;gap:16px;}
.review-list{display:flex;flex-direction:column;gap:18px;}
.review-card{background:var(--white);border:1px solid var(--gray);border-radius:var(--radius);padding:22px 24px;box-shadow:var(--shadow-sm);}
.review-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:8px;flex-wrap:wrap;gap:6px;}
.review-who b{display:block;font-size:16px;font-weight:900;}
.review-who span{font-size:13px;color:#6f84a0;}
.review-meta{text-align:right;}
.stars{display:flex;gap:2px;justify-content:flex-end;}
.stars svg{width:15px;height:15px;fill:var(--yellow);}
.stars svg.off{fill:var(--gray);}
.review-meta .date{font-size:12px;color:#9aa9bd;display:block;margin-top:4px;}
.review-card p.text{font-size:14.5px;line-height:1.6;color:#2c4a68;margin:10px 0 0;}
.read-more{font-size:13px;font-weight:800;color:var(--blue);}
.review-pager{display:flex;align-items:center;justify-content:center;gap:16px;}
.review-pager button{width:36px;height:36px;border-radius:50%;border:1px solid var(--gray);background:var(--white);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s,border-color .15s;flex-shrink:0;}
.review-pager button:hover:not(:disabled){background:var(--yellow);border-color:var(--yellow);}
.review-pager button:disabled{opacity:.35;cursor:default;}
.review-pager button svg{width:16px;height:16px;stroke:var(--navy);fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;}
.review-pager #pagerLabel{font-size:13px;font-weight:700;color:#6f84a0;min-width:8em;text-align:center;}
.form-msg{font-size:13.5px;font-weight:700;margin:0 0 4px;padding:10px 12px;border-radius:8px;}
.form-msg.success{color:#1a7a4c;background:#e4f6ec;}
.form-msg.error{color:#b3261e;background:#fbe9e7;}
.review-form{background:var(--white);border:1px solid var(--gray);border-radius:16px;padding:30px 28px;box-shadow:var(--shadow-sm);}
.review-form h3{font-size:19px;font-weight:900;margin:0 0 6px;}
.review-form .sub{font-size:14px;color:#6f84a0;margin:0 0 18px;}
.rate-input{display:flex;gap:8px;margin-bottom:22px;}
.rate-input svg{width:30px;height:30px;fill:var(--gray);cursor:pointer;transition:fill .15s;}
.rate-input svg.active{fill:var(--yellow);}
.field{margin-bottom:16px;}
.field label{display:block;font-size:13px;font-weight:800;margin-bottom:6px;color:var(--navy);}
.field input, .field textarea, .field select{width:100%;border:1px solid var(--gray);border-radius:8px;padding:12px 14px;font-family:inherit;font-size:14px;color:var(--navy);resize:vertical;}
.field input:focus, .field textarea:focus, .field select:focus{outline:2px solid var(--yellow);outline-offset:1px;border-color:var(--yellow);}
.field .hint{font-size:12px;color:#8496ac;margin-top:6px;}
.form-actions{display:flex;gap:12px;margin-top:20px;}
.form-actions .btn{padding:12px 26px;font-size:15px;}

/* ===== Footer ===== */
footer{background:var(--navy);color:var(--white);padding-top:64px;}
.footer-top{display:grid;grid-template-columns:1.4fr .8fr .8fr .8fr;gap:40px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,0.12);}
.footer-brand .brand{margin-bottom:14px;}
.footer-brand .brand span{color:var(--white);}
.footer-brand p{font-size:14px;line-height:1.6;color:#b9c8dc;max-width:340px;margin:0;}
.footer-col h5{font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--yellow-light);margin:0 0 16px;}
.footer-col a{display:block;font-size:14px;color:#cfdaea;margin-bottom:11px;font-weight:600;}
.footer-col a:hover{color:var(--yellow);}
.credit-bar{display:flex;align-items:center;gap:28px;padding:28px 0;flex-wrap:wrap;border-bottom:1px solid rgba(255,255,255,0.12);}
.credit-item{display:flex;align-items:center;gap:14px;flex:1;min-width:260px;}
.credit-item img{width:52px;height:52px;object-fit:contain;border-radius:8px;background:var(--white);padding:4px;}
.credit-item p{font-size:13px;line-height:1.5;color:#c7d4e4;margin:0;}
.footer-bottom{display:flex;justify-content:space-between;padding:22px 0 30px;font-size:12.5px;color:#8fa2ba;flex-wrap:wrap;gap:10px;}

/* ===== Auth pages ===== */
.auth-page{min-height:calc(100vh - var(--header-h));display:flex;align-items:center;justify-content:center;background:var(--gray);padding:60px 20px;}
.auth-card{background:var(--white);border-radius:16px;box-shadow:var(--shadow);padding:44px 40px;width:100%;max-width:440px;}
.auth-card .mark{width:52px;height:52px;margin:0 auto 18px;}
.auth-card h1{font-size:26px;font-weight:900;text-align:center;margin:0 0 8px;}
.auth-card .sub{text-align:center;font-size:14px;color:#6f84a0;margin:0 0 28px;}
.auth-card .btn{width:100%;}
.auth-card .switch{text-align:center;font-size:14px;margin-top:20px;color:#6f84a0;}
.auth-card .switch a{color:var(--blue);font-weight:800;}
.forgot-link{text-align:right;margin:-10px 0 18px;}
.forgot-link a{font-size:13px;font-weight:700;color:var(--blue);}
.reset-link-box{background:var(--gray);border-radius:10px;padding:16px;margin-bottom:18px;font-size:13.5px;color:#3d5875;}
.reset-link{display:block;word-break:break-all;font-family:var(--mono);font-size:12.5px;color:var(--blue);font-weight:700;margin-top:6px;}
.account-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:start;}
.alert{padding:12px 16px;border-radius:8px;font-size:13.5px;font-weight:600;margin-bottom:18px;}
.alert.error{background:#fdeaea;color:var(--crit);border:1px solid #f6c9c9;}
.alert.success{background:#eaf7ef;color:var(--low);border:1px solid #c7e9d3;}
.alert.info{background:#eaf1fb;color:var(--info);border:1px solid #cfe0f6;}

/* ===== Workspace sidebar ===== */
.ws-layout{display:flex;align-items:flex-start;gap:32px;}
.ws-sidebar{width:240px;flex-shrink:0;position:sticky;top:calc(var(--header-h) + 24px);max-height:calc(100vh - var(--header-h) - 48px);overflow-y:auto;}
.ws-sidebar-head{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#8fa0b8;padding-bottom:12px;border-bottom:2px solid var(--yellow);margin-bottom:14px;}
.ws-sidebar-nav{display:flex;flex-direction:column;gap:4px;}
.ws-sidebar-nav a{padding:11px 14px;border-radius:10px;font-weight:800;font-size:15px;color:var(--navy);}
.ws-sidebar-nav a:hover{background:var(--white);}
.ws-sidebar-nav a.active{background:var(--navy);color:var(--white);}
.ws-sidebar-subhead{font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#8fa0b8;margin:26px 0 10px;padding:0 14px;}
.ws-history-empty{font-size:13px;color:#8fa0b8;padding:0 14px;margin:0;}
.ws-history-list{display:flex;flex-direction:column;gap:4px;}
.ws-history-item{display:flex;flex-direction:column;align-items:flex-start;gap:5px;padding:10px 14px;border-radius:10px;}
.ws-history-item:hover{background:var(--white);}
.ws-history-target{font-size:13px;font-weight:800;color:var(--navy);word-break:break-all;}
.ws-history-item .badge{font-size:10px;padding:3px 9px;}
.ws-main{flex:1;min-width:0;}

/* ===== Dashboard ===== */
.dash-wrap{background:var(--gray);min-height:calc(100vh - var(--header-h));padding:52px 0 90px;}
.dash-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:16px;margin-bottom:34px;}
.dash-head h1{font-size:28px;font-weight:900;margin:0 0 6px;}
.dash-head p{margin:0;color:#5c7291;font-size:14.5px;}
.dash-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:26px;align-items:start;}
.panel{background:var(--white);border-radius:14px;box-shadow:var(--shadow-sm);padding:28px 26px;}
.panel h3{font-size:18px;font-weight:900;margin:0 0 6px;}
.panel .sub{font-size:13.5px;color:#6f84a0;margin:0 0 20px;}
.scan-type-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:22px;}
.scan-type{border:2px solid var(--gray);border-radius:16px;padding:24px 16px;font-size:15px;font-weight:800;text-align:center;position:relative;color:#7a8ba3;cursor:pointer;transition:border-color .15s ease, background .15s ease, transform .15s ease;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;min-height:128px;}
.scan-type:hover{border-color:var(--yellow-light);transform:translateY(-2px);box-shadow:0 8px 18px rgba(255,203,5,.16);}
.scan-type .ico{width:36px;height:36px;color:#a7b3c2;}
.scan-type .ico svg{width:100%;height:100%;}
.scan-type:hover .ico{color:var(--navy);}
.scan-type .lock-badge{display:block;font-size:11px;font-weight:700;margin-top:0;color:#a7b3c2;}
.scan-type-grid-lg{grid-template-columns:repeat(3,1fr);gap:20px;}
.scan-type-grid-lg .scan-type{min-height:180px;padding:32px 20px;font-size:17px;border-radius:20px;}
.scan-type-grid-lg .scan-type .ico{width:48px;height:48px;}
.scan-new-panel{max-width:640px;}
.scan-new-back{display:inline-flex;align-items:center;gap:8px;color:#7a8ba3;font-weight:700;font-size:14px;margin-bottom:22px;}
.scan-new-back:hover{color:var(--navy);}
.scan-field-group .field:last-child{margin-bottom:0;}
.cloud-provider-fields{border-top:1px dashed var(--gray);padding-top:14px;margin-top:6px;}
.checkbox-field label{display:flex;align-items:center;gap:8px;font-size:13.5px;font-weight:700;color:var(--navy);cursor:pointer;}
.checkbox-field input{width:auto;}
.badge{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:800;padding:5px 12px;border-radius:20px;text-transform:uppercase;letter-spacing:.04em;}
.badge.crit{background:#fdeaea;color:var(--crit);}
.badge.high{background:#fdf1e5;color:var(--high);}
.badge.med{background:#fdf7e2;color:#a4890f;}
.badge.low{background:#eaf7ef;color:var(--low);}
.badge.info{background:#eaf1fb;color:var(--info);}
.empty-state{text-align:center;padding:50px 20px;color:#8496ac;}
.empty-state svg{width:52px;height:52px;margin:0 auto 14px;color:#c3cedb;}

/* ===== Report page ===== */
.report-wrap{background:var(--gray);padding:44px 0 90px;}
.report-head{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:16px;margin-bottom:30px;}
.report-head h1{font-size:24px;font-weight:900;margin:0 0 6px;word-break:break-all;}
.report-head .meta{font-size:13.5px;color:#5c7291;}
.scan-panel{
  background:var(--navy);border-radius:16px;padding:34px 32px;color:var(--white);display:grid;
  grid-template-columns:1fr 1fr 1fr auto;gap:28px;align-items:center;margin-bottom:32px;box-shadow:var(--shadow);
}
.scan-panel .cvss-block .label{font-size:12px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#9db3cd;margin-bottom:6px;}
.scan-panel .cvss-block .score{font-size:46px;font-weight:900;line-height:1;}
.scan-panel .cvss-block .score span{font-size:16px;font-weight:800;margin-left:8px;vertical-align:middle;}
.scan-panel .sub-stat b{display:block;font-size:26px;font-weight:900;}
.scan-panel .sub-stat .label{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#9db3cd;margin-top:4px;}
.scan-panel .status-pill{background:var(--yellow);color:var(--navy);font-weight:900;font-size:13px;padding:8px 16px;border-radius:20px;display:inline-flex;align-items:center;gap:6px;}
.finding-list{display:flex;flex-direction:column;gap:16px;}
.finding-card{background:var(--white);border-radius:12px;box-shadow:var(--shadow-sm);padding:22px 24px;border-left:5px solid var(--gray);}
.finding-card.crit{border-left-color:var(--crit);}
.finding-card.high{border-left-color:var(--high);}
.finding-card.med{border-left-color:#e0c02c;}
.finding-card.low{border-left-color:var(--low);}
.finding-card.info{border-left-color:var(--info);}
.finding-top{display:flex;justify-content:space-between;align-items:flex-start;gap:14px;margin-bottom:10px;flex-wrap:wrap;}
.finding-top h4{font-size:16px;font-weight:900;margin:0;}
.finding-card p{font-size:14px;line-height:1.6;color:#3d5875;margin:0 0 10px;}
.finding-card .fix{background:var(--gray);border-radius:8px;padding:12px 14px;font-size:13px;color:#3d5875;}
.finding-card .fix b{color:var(--navy);}
.legend{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:22px;font-size:12.5px;color:#5c7291;}
.legend span{display:flex;align-items:center;gap:6px;}
.legend i{width:10px;height:10px;border-radius:50%;display:inline-block;}

/* ===== Lang toggle ===== */
.lang-toggle{display:flex;align-items:center;gap:5px;font-size:12px;font-weight:800;color:#8496ac;}
.lang-toggle a{color:#8496ac;padding:2px 3px;}
.lang-toggle a.active{color:var(--navy);}
.lang-toggle a:hover{color:var(--blue);}
.mobile-nav .cta-row a.active{background:var(--yellow);color:var(--navy);}

/* ===== Severity / role count tiles ===== */
.sevcount-row{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:26px;}
.role-count-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:26px;max-width:560px;}
.sevcount-tile{background:var(--white);border:1px solid var(--gray);border-radius:12px;padding:18px;text-align:center;}
.sevcount-tile b{display:block;font-size:26px;font-weight:900;}
.sevcount-tile span{font-size:12px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#7a8ba3;}
.sevcount-tile.crit b{color:var(--crit);}
.sevcount-tile.high b{color:var(--high);}
.sevcount-tile.med b{color:#a4890f;}
.sevcount-tile.low b{color:var(--low);}

/* ===== Filter bar ===== */
.filter-bar{display:flex;gap:16px;flex-wrap:wrap;align-items:flex-end;background:var(--white);border:1px solid var(--gray);border-radius:12px;padding:18px 20px;margin-bottom:22px;}
.filter-bar .field{margin-bottom:0;min-width:170px;}
.filter-bar .field-search{flex:1;min-width:220px;}
.pagination{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:24px;}
.pg-status{font-size:13px;font-weight:700;color:#6f84a0;}
.pg-btn.disabled{opacity:.4;pointer-events:none;}

/* ===== Data table ===== */
.table-wrap{background:var(--white);border-radius:12px;box-shadow:var(--shadow-sm);overflow-x:auto;margin-bottom:22px;}
.data-table{width:100%;border-collapse:collapse;font-size:13.5px;}
.data-table th{text-align:left;font-size:11.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#7a8ba3;padding:14px 16px;border-bottom:1px solid var(--gray);white-space:nowrap;}
.data-table td{padding:12px 16px;border-bottom:1px solid var(--gray);vertical-align:middle;}
.data-table tr:last-child td{border-bottom:none;}
.data-table a{font-weight:700;color:var(--blue);}
.dim{color:#8fa0b8;}
.inline-update-form{display:flex;gap:8px;flex-wrap:nowrap;}
.inline-update-form select{border:1px solid var(--gray);border-radius:8px;padding:6px 8px;font-size:12px;font-family:inherit;color:var(--navy);max-width:130px;}
.data-table td:has(.inline-update-form){white-space:nowrap;}
.compliance-disclaimer{margin-bottom:26px;}
.compliance-panel{margin-bottom:22px;}
.compliance-control{font-weight:800;white-space:nowrap;}
.compliance-desc{max-width:360px;line-height:1.5;}
.compliance-tag{background:var(--gray);}
.badge.status-open{background:#eaf1fb;color:var(--info);}
.badge.status-in_progress{background:#fdf7e2;color:#a4890f;}
.badge.status-resolved{background:#eaf7ef;color:var(--low);}
.badge.status-false_positive{background:var(--gray);color:#6f84a0;}
.badge.status-risk_accepted{background:#fdf1e5;color:var(--high);}

/* ===== Activity ===== */
.activity-list{display:flex;flex-direction:column;background:var(--white);border-radius:12px;box-shadow:var(--shadow-sm);overflow:hidden;}
.activity-row{display:flex;gap:14px;align-items:flex-start;padding:16px 20px;border-bottom:1px solid var(--gray);}
.activity-row:last-child{border-bottom:none;}
.activity-dot{width:10px;height:10px;border-radius:50%;background:var(--blue);margin-top:5px;flex-shrink:0;}
.activity-dot.type-finding_status_changed{background:#e0b62c;}
.activity-dot.type-finding_assigned{background:var(--info);}
.activity-dot.type-report_generated{background:var(--yellow);}
.activity-dot.type-member_added{background:var(--low);}
.activity-dot.type-member_removed{background:var(--crit);}
.activity-dot.type-member_role_changed{background:var(--high);}
.activity-text{font-size:14px;font-weight:600;color:var(--navy);}
.activity-time{font-size:12px;color:#8fa0b8;margin-top:3px;}

/* ===== Executive report ===== */
.exec-report{background:var(--white);border-radius:14px;box-shadow:var(--shadow-sm);padding:36px;}
.exec-meta{display:flex;gap:28px;flex-wrap:wrap;font-size:13.5px;margin-bottom:26px;padding-bottom:20px;border-bottom:1px solid var(--gray);}
.exec-report h2{font-size:20px;font-weight:900;margin:0 0 12px;}
.exec-report h3{font-size:16px;font-weight:900;margin:30px 0 14px;}
.exec-summary{font-size:14.5px;line-height:1.7;color:#3d5875;}
.bar-chart{display:flex;flex-direction:column;gap:10px;}
.bar-row{display:grid;grid-template-columns:70px 1fr 30px;align-items:center;gap:12px;font-size:13px;font-weight:700;}
.bar-track{background:var(--gray);border-radius:6px;height:14px;overflow:hidden;}
.bar-fill{height:100%;border-radius:6px;min-width:2px;}
.bar-fill.crit{background:var(--crit);}
.bar-fill.high{background:var(--high);}
.bar-fill.med{background:#e0b62c;}
.bar-fill.low{background:var(--low);}
.bar-fill.info{background:var(--info);}

/* ===== Team ===== */
code{background:var(--gray);padding:2px 8px;border-radius:6px;font-size:13px;}

@media print{
  .no-print{display:none !important;}
  body{background:var(--white);}
  .report-wrap{background:var(--white);padding:0;}
  .exec-report{box-shadow:none;padding:0;}
}

@media (max-width:1080px){
  .wf-grid{grid-template-columns:repeat(2,1fr);}
  .wf-card{min-height:auto;}
  .surface-grid{grid-template-columns:repeat(2,1fr);}
  .stats{grid-template-columns:repeat(2,1fr);}
  .feedback-grid{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;}
  .dash-grid{grid-template-columns:1fr;}
  .account-grid{grid-template-columns:1fr;}
  .scan-panel{grid-template-columns:1fr 1fr;}
  .ws-layout{flex-direction:column;}
  .ws-sidebar{width:100%;position:static;}
  .ws-sidebar-nav{flex-direction:row;flex-wrap:wrap;}
}
@media (max-width:920px){
  nav.primary, .auth .login, .auth .divider{display:none;}
  .burger{display:flex;}
  .hero .wrap{grid-template-columns:1fr;}
  .hero-art{order:-1;}
}
/* ===== AI assistant widget ===== */
.ai-widget{position:fixed;top:calc(var(--header-h) + 16px);right:24px;z-index:300;}
.ai-fab{width:56px;height:56px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;box-shadow:0 10px 24px rgba(0,39,76,0.32);transition:transform .18s ease, box-shadow .18s ease;position:relative;}
.ai-fab::after{content:"";position:absolute;inset:-3px;border-radius:50%;border:2px solid var(--yellow);opacity:.55;}
.ai-fab:hover{transform:scale(1.06);box-shadow:0 14px 30px rgba(0,39,76,0.4);}
.ai-fab.open{background:var(--blue);}
.ai-panel{position:absolute;top:68px;right:0;width:352px;max-width:calc(100vw - 40px);background:var(--white);border-radius:16px;box-shadow:0 22px 50px rgba(0,39,76,0.28);border:1px solid var(--gray);overflow:hidden;display:flex;flex-direction:column;max-height:min(520px, calc(100vh - var(--header-h) - 60px));}
.ai-panel[hidden]{display:none;}
.ai-panel-head{background:var(--navy);color:var(--white);padding:14px 16px;display:flex;align-items:center;justify-content:space-between;flex-shrink:0;}
.ai-panel-title{display:flex;align-items:center;gap:9px;font-weight:800;font-size:14.5px;}
.ai-avatar{width:26px;height:26px;border-radius:50%;background:var(--yellow);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.ai-close{color:var(--white);opacity:.8;display:flex;}
.ai-close:hover{opacity:1;}
.ai-messages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:10px;background:var(--gray);min-height:220px;}
.ai-msg{max-width:82%;padding:10px 13px;border-radius:14px;font-size:13.5px;line-height:1.55;white-space:pre-wrap;word-break:break-word;}
.ai-msg-bot{align-self:flex-start;background:var(--white);color:var(--navy);border-bottom-left-radius:4px;box-shadow:var(--shadow-sm);}
.ai-msg-user{align-self:flex-end;background:var(--navy);color:var(--white);border-bottom-right-radius:4px;}
.ai-typing{display:flex;gap:4px;align-items:center;padding:12px 14px;}
.ai-typing span{width:6px;height:6px;border-radius:50%;background:#a7b3c2;animation:ai-bounce 1.2s infinite ease-in-out;}
.ai-typing span:nth-child(2){animation-delay:.15s;}
.ai-typing span:nth-child(3){animation-delay:.3s;}
@keyframes ai-bounce{0%,60%,100%{transform:translateY(0);opacity:.5;}30%{transform:translateY(-4px);opacity:1;}}
.ai-suggestions{padding:0 14px 12px;flex-shrink:0;background:var(--gray);}
.ai-suggestions[hidden]{display:none;}
.ai-suggestions-label{display:block;font-size:11px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#8496ac;margin-bottom:8px;}
.ai-chip-row{display:flex;flex-wrap:wrap;gap:7px;}
.ai-chip{font-size:12.5px;font-weight:700;color:var(--navy);background:var(--white);border:1.5px solid var(--gray);border-radius:16px;padding:7px 13px;text-align:left;transition:background .15s ease,border-color .15s ease;}
.ai-chip:hover{background:var(--yellow-light);border-color:var(--yellow);}
.ai-input-row{display:flex;gap:8px;padding:12px;border-top:1px solid var(--gray);flex-shrink:0;background:var(--white);}
.ai-input{flex:1;border:1.5px solid var(--gray);border-radius:10px;padding:9px 12px;font-size:13.5px;font-family:inherit;color:var(--navy);}
.ai-input:focus{outline:none;border-color:var(--yellow);}
.ai-send{width:38px;height:38px;border-radius:10px;background:var(--yellow);color:var(--navy);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .15s ease;}
.ai-send:hover{background:var(--yellow-light);}

@media (max-width:640px){
  .wrap{padding:0 20px;}
  section{padding:64px 0;}
  .ai-widget{top:auto;bottom:20px;right:16px;}
  .ai-panel{top:auto;bottom:68px;right:0;width:calc(100vw - 32px);}
  .hero-art{aspect-ratio:auto;min-height:320px;}
  .hm-window{max-width:100%;}
  .hm-body{flex-direction:column;}
  .hm-sidebar{width:100%;border-right:none;border-bottom:1px solid var(--gray);display:flex;gap:6px;padding:10px 12px;overflow-x:auto;}
  .hm-sidebar-label{display:none;}
  .hm-nav-item{margin-bottom:0;white-space:nowrap;}
  .hm-content{min-height:210px;}
  .sd-hero-top{flex-direction:column;}
  .sd-grid{grid-template-columns:1fr;gap:0;}
  .contact-grid{grid-template-columns:1fr;}
  .sd-cta{flex-direction:column;align-items:flex-start;}
  .wf-grid{grid-template-columns:1fr;}
  .surface-grid{grid-template-columns:1fr 1fr;}
  .stats{grid-template-columns:1fr 1fr;}
  .footer-top{grid-template-columns:1fr;}
  .feature-card{flex:0 0 270px;}
  .carousel-arrow{display:none;}
  .form-actions{flex-direction:column;}
  .scan-panel{grid-template-columns:1fr;text-align:center;}
  .scan-type-grid{grid-template-columns:1fr;}
  .sevcount-row{grid-template-columns:1fr 1fr;}
  .role-count-row{grid-template-columns:1fr;}
  .filter-bar{flex-direction:column;align-items:stretch;}
}
