/* Apps V2, visually aligned with approved Home V6 */
.apps-v2-content{
  max-width:1320px!important;
}
.apps-v2-hero{
  padding:48px 0 34px;
  border-bottom:1px solid var(--ks-soft-line);
}
.apps-v2-brand{
  display:flex;
  align-items:center;
  gap:26px;
}
.apps-v2-logo{
  width:104px;
  height:104px;
  object-fit:contain;
  background:transparent;
  border:0;
  box-shadow:none;
}
.apps-v2-brand h1{
  margin:0;
  font-size:clamp(54px,6vw,88px);
  line-height:.92;
  letter-spacing:-.065em;
  font-weight:760;
}
.apps-v2-brand p{
  margin:16px 0 0;
  max-width:680px;
  color:var(--ks-muted);
  font-size:17px;
  line-height:1.65;
}
.apps-v2-controls{
  padding:34px 0 28px;
}
.apps-v2-search-wrap{
  position:relative;
  max-width:640px;
}
.apps-v2-search-icon{
  position:absolute;
  left:15px;
  top:50%;
  transform:translateY(-50%);
  color:#737981;
  font-size:20px;
  pointer-events:none;
}
.apps-v2-search{
  width:100%;
  height:50px;
  padding:0 16px 0 44px;
  background:transparent;
  color:var(--ks-text);
  border:1px solid var(--ks-line);
  border-radius:13px;
  outline:none;
  transition:border-color .2s ease, background .2s ease;
}
.apps-v2-search::placeholder{color:#6d727a}
.apps-v2-search:focus{
  border-color:rgba(255,255,255,.19);
  background:var(--ks-surface);
}
[data-theme="light"] .apps-v2-search:focus{
  border-color:rgba(0,0,0,.16);
}
.apps-v2-filters{
  display:flex;
  gap:8px;
  overflow:auto;
  padding-top:18px;
  scrollbar-width:none;
}
.apps-v2-filters::-webkit-scrollbar{display:none}
.apps-v2-chip{
  border:0;
  border-bottom:1px solid transparent;
  background:transparent;
  color:#81868e;
  padding:8px 10px 9px;
  cursor:pointer;
  white-space:nowrap;
  font-size:13px;
  transition:color .18s ease,border-color .18s ease;
}
.apps-v2-chip:hover{color:var(--ks-text)}
.apps-v2-chip.active{
  color:var(--ks-text);
  border-bottom-color:var(--ks-text);
}
.apps-v2-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  padding:12px 0 90px;
}
.apps-v2-grid .app-card{
  min-height:190px;
  border:1px solid var(--ks-soft-line);
  border-radius:18px;
  background:#191c20;
  padding:18px;
  box-shadow:none;
  transition:
    transform .28s cubic-bezier(.2,.75,.22,1),
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease;
}
[data-theme="light"] .apps-v2-grid .app-card{
  background:#f9f9f7;
}
.apps-v2-grid .app-card:hover{
  transform:translateY(-6px);
  background:#1d2025;
  border-color:rgba(255,255,255,.10);
  box-shadow:0 16px 34px rgba(0,0,0,.16);
}
[data-theme="light"] .apps-v2-grid .app-card:hover{
  background:#ffffff;
  border-color:rgba(0,0,0,.10);
  box-shadow:0 16px 34px rgba(20,25,35,.08);
}
.apps-v2-grid .card-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:#23262c!important;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:none;
  color:#f5f5f4;
  font-size:15px;
  transition:transform .28s cubic-bezier(.2,.75,.22,1);
}
.apps-v2-grid .app-card:nth-child(4n) .card-icon{background:#20242a!important}
.apps-v2-grid .app-card:nth-child(6n) .card-icon{background:#29262f!important}
.apps-v2-grid .app-card:nth-child(9n) .card-icon{background:#1e2929!important}
.apps-v2-grid .app-card:hover .card-icon{
  transform:scale(1.075);
}
.apps-v2-grid .app-card h3{
  margin:18px 0 9px;
  font-size:16px;
  line-height:1.22;
  letter-spacing:-.025em;
  font-weight:700;
}
.apps-v2-grid .app-card p{
  margin:0;
  color:var(--ks-muted);
  font-size:12.5px;
  line-height:1.55;
}
.apps-v2-feedback{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  padding:72px 0 58px;
  border-top:1px solid var(--ks-soft-line);
}
.apps-v2-feedback h2{
  margin:0;
  max-width:760px;
  font-size:clamp(34px,4.5vw,60px);
  line-height:1;
  letter-spacing:-.05em;
}
.apps-v2-feedback p{
  margin:16px 0 0;
  color:var(--ks-muted);
}
.apps-v2-contact-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}
.apps-v2-contact{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border:1px solid var(--ks-line);
  border-radius:12px;
  color:var(--ks-muted);
  transition:.2s ease;
}
.apps-v2-contact:hover{
  color:var(--ks-text);
  transform:translateY(-3px);
  background:var(--ks-surface);
}
@media(max-width:1180px){
  .apps-v2-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media(max-width:900px){
  .apps-v2-hero{padding-top:30px}
  .apps-v2-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .apps-v2-feedback{align-items:flex-start;flex-direction:column}
}
@media(max-width:620px){
  .apps-v2-brand{gap:16px}
  .apps-v2-logo{width:76px;height:76px}
  .apps-v2-brand h1{font-size:50px}
  .apps-v2-brand p{font-size:15px}
  .apps-v2-controls{padding-top:26px}
  .apps-v2-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    padding-bottom:64px;
  }
  .apps-v2-grid .app-card{
    min-height:176px;
    padding:14px;
    border-radius:16px;
  }
  .apps-v2-grid .card-icon{
    width:58px;height:58px;border-radius:17px;
  }
  .apps-v2-grid .app-card h3{font-size:14px}
  .apps-v2-grid .app-card p{font-size:11.5px}
  .apps-v2-feedback{padding:58px 0 42px}
}


/* Privacy Policy V2, aligned with Home V6 and Apps V2 */
.privacy-v2-content{
  max-width:1320px!important;
}
.privacy-v2-hero{
  padding:48px 0 34px;
  border-bottom:1px solid var(--ks-soft-line);
}
.privacy-v2-brand{
  display:flex;
  align-items:center;
  gap:26px;
}
.privacy-v2-logo{
  width:104px;
  height:104px;
  object-fit:contain;
  background:transparent;
  border:0;
  box-shadow:none;
}
.privacy-v2-brand h1{
  margin:0;
  font-size:clamp(54px,6vw,88px);
  line-height:.92;
  letter-spacing:-.065em;
  font-weight:760;
}
.privacy-v2-brand p{
  margin:16px 0 0;
  color:var(--ks-muted);
  max-width:680px;
  font-size:17px;
  line-height:1.65;
}

.privacy-v2-general{
  padding:76px 0 82px;
  border-bottom:1px solid var(--ks-soft-line);
}
.privacy-v2-general-copy{
  max-width:900px;
}
.privacy-v2-general h2{
  margin:0;
  font-size:clamp(42px,5.2vw,72px);
  line-height:1;
  letter-spacing:-.055em;
  font-weight:720;
}
.privacy-v2-general p{
  margin:24px 0 0;
  max-width:780px;
  color:var(--ks-muted);
  font-size:17px;
  line-height:1.75;
}

.privacy-v2-apps{
  padding:82px 0 94px;
}
.privacy-v2-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:40px;
}
.privacy-v2-section-head h2{
  margin:0;
  font-size:clamp(42px,5.2vw,72px);
  line-height:1;
  letter-spacing:-.055em;
}
.privacy-v2-section-head p{
  margin:0;
  max-width:520px;
  color:var(--ks-muted);
  font-size:14px;
  line-height:1.65;
}
.privacy-v2-grid{
  display:grid;
  grid-template-columns:repeat(10,minmax(0,1fr));
  gap:14px;
}
.privacy-v2-grid .app-icon{
  position:relative;
  aspect-ratio:1;
  border-radius:22px!important;
  background:#1d2024!important;
  border:1px solid var(--ks-soft-line)!important;
  box-shadow:none!important;
  color:#f5f5f4!important;
  font-size:13px!important;
  transition:
    transform .30s cubic-bezier(.2,.75,.22,1),
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease!important;
}
.privacy-v2-grid .app-icon:nth-child(3n){background:#202329!important}
.privacy-v2-grid .app-icon:nth-child(5n){background:#25222a!important}
.privacy-v2-grid .app-icon:nth-child(7n){background:#1d2828!important}
.privacy-v2-grid .app-icon.featured{
  grid-column:auto!important;
  grid-row:auto!important;
  border-radius:22px!important;
  animation:none!important;
}
.privacy-v2-grid .app-icon.featured:after{display:none!important}
.privacy-v2-grid .app-icon:hover{
  transform:translateY(-6px) scale(1.035)!important;
  background:#24272c!important;
  border-color:rgba(255,255,255,.11)!important;
  box-shadow:0 16px 34px rgba(0,0,0,.15)!important;
}
[data-theme="light"] .privacy-v2-grid .app-icon{
  background:#ededeb!important;
  color:#1b1c1e!important;
  border-color:rgba(0,0,0,.05)!important;
}
[data-theme="light"] .privacy-v2-grid .app-icon:hover{
  background:#ffffff!important;
  border-color:rgba(0,0,0,.09)!important;
  box-shadow:0 14px 30px rgba(25,30,40,.08)!important;
}
.privacy-v2-grid .privacy-app-icon{
  position:absolute;
  inset:0;
  width:100%!important;
  height:100%!important;
  display:block;
  object-fit:cover;
  border-radius:inherit;
  pointer-events:none;
}
.privacy-v2-grid .app-icon .tip{
  bottom:calc(100% + 10px);
  background:#22252a!important;
  color:#f5f5f4!important;
  border:1px solid var(--ks-line)!important;
  border-radius:10px!important;
  box-shadow:0 12px 28px rgba(0,0,0,.18)!important;
}
[data-theme="light"] .privacy-v2-grid .app-icon .tip{
  background:#ffffff!important;
  color:#1a1b1e!important;
  box-shadow:0 12px 28px rgba(20,25,35,.10)!important;
}

.privacy-v2-contact{
  border-top:1px solid var(--ks-soft-line);
  padding:72px 0 54px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:28px;
}
.privacy-v2-contact h2{
  margin:0;
  font-size:clamp(36px,4.6vw,62px);
  line-height:1;
  letter-spacing:-.05em;
}
.privacy-v2-contact p{
  margin:16px 0 0;
  color:var(--ks-muted);
}
.privacy-v2-email{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border:1px solid var(--ks-line);
  border-radius:12px;
  color:var(--ks-muted);
  transition:.22s ease;
  flex:0 0 auto;
}
.privacy-v2-email:hover{
  color:var(--ks-text);
  transform:translateY(-3px);
  background:var(--ks-surface);
}

@media(max-width:1180px){
  .privacy-v2-grid{grid-template-columns:repeat(8,minmax(0,1fr))}
}
@media(max-width:900px){
  .privacy-v2-hero{padding-top:30px}
  .privacy-v2-grid{grid-template-columns:repeat(6,minmax(0,1fr))}
  .privacy-v2-section-head{
    align-items:flex-start;
    flex-direction:column;
  }
}
@media(max-width:620px){
  .privacy-v2-brand{gap:16px}
  .privacy-v2-logo{width:76px;height:76px}
  .privacy-v2-brand h1{font-size:48px}
  .privacy-v2-brand p{font-size:15px}
  .privacy-v2-general{padding:58px 0 64px}
  .privacy-v2-apps{padding:62px 0 70px}
  .privacy-v2-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:9px;
  }
  .privacy-v2-grid .app-icon{
    border-radius:16px!important;
    font-size:11px!important;
  }
  .privacy-v2-contact{
    padding:58px 0 40px;
    align-items:flex-start;
  }
}

@media (max-width: 900px){
  .topbar{
    position:sticky!important;top:0!important;z-index:100!important;
    height:66px!important;min-height:66px!important;
    background:rgba(21,23,26,.96)!important;background-image:none!important;
    -webkit-backdrop-filter:blur(18px) saturate(115%)!important;
    backdrop-filter:blur(18px) saturate(115%)!important;
    border-bottom:1px solid rgba(255,255,255,.055)!important;
    box-shadow:0 8px 24px rgba(0,0,0,.08)!important;
    margin-left:-22px!important;margin-right:-22px!important;
    padding-left:22px!important;padding-right:22px!important;
    isolation:isolate!important;
  }
  [data-theme="light"] .topbar{
    background:rgba(243,243,240,.97)!important;background-image:none!important;
    border-bottom-color:rgba(0,0,0,.055)!important;
    box-shadow:0 8px 22px rgba(20,24,32,.06)!important;
  }
}
@media (max-width: 620px){
  .topbar{
    margin-left:-16px!important;margin-right:-16px!important;
    padding-left:16px!important;padding-right:16px!important;
  }
}
