:root {
  --purple:#9146FF;
  --purple2:#8B3DFF;
  --bg:#FFFFFF;
  --heading:#111111;
  --text:#6B6875;
  --line:#E5E2EA;
  --soft:#F0E7FF;
  --input:#F4F0FA
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,sans-serif;
  line-height:1.72
}
h1,h2,h3,h4 {
  color:var(--heading);
  line-height:1.15
}
a {
  color:var(--purple2);
  text-decoration:none
}
.wrap {
  width:min(92%,1200px);
  margin:auto
}
header {
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line)
}
.nav {
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between
}
.brand {
  font-size:22px;
  font-weight:850;
  color:var(--heading)
}
.brand span {
  color:var(--purple)
}
.navlinks {
  display:flex;
  gap:18px;
  font-size:13px
}
.navlinks a {
  color:var(--text)
}
.navlinks a:hover {
  color:var(--purple)
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:11px;
  border:1px solid var(--line);
  font-weight:750;
  transition:.25s;
  color:var(--heading)
}
.btn:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(145,70,255,.16)
}
.primary {
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  border:0;
  color:#fff
}
.hero {
  padding:100px 0 75px
}
.hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:55px
}
.eyebrow {
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:var(--soft);
  color:var(--purple2);
  font-size:12px;
  font-weight:750
}
.hero h1 {
  font-size:clamp(42px,6vw,72px);
  letter-spacing:-3px;
  margin:18px 0
}
.hero p {
  font-size:18px;
  max-width:700px
}
.hero-image {
  width:100%;
  max-width:590px;
  justify-self:end;
  border-radius:30px;
  box-shadow:0 25px 80px rgba(145,70,255,.12)
}
.actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:25px
}
section {
  padding:70px 0
}
.head {
  text-align:center;
  max-width:800px;
  margin:0 auto 38px
}
.head h2 {
  font-size:38px;
  margin:0 0 12px
}
.head p {
  margin:0
}
.grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}
.card {
  position:relative;
  overflow:hidden;
  padding:26px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  transition:.35s
}
.card:hover {
  transform:translateY(-8px);
  border-color:#cbb1ff;
  box-shadow:0 25px 65px rgba(145,70,255,.13)
}
.card:after {
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  right:-80px;
  bottom:-80px;
  border-radius:50%;
  background:rgba(145,70,255,.10);
  transition:.4s
}
.card:hover:after {
  transform:scale(1.6)
}
.icon {
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:var(--soft);
  color:var(--purple);
  font-weight:900;
  font-size:23px
}
.badge {
  display:inline-block;
  margin-top:14px;
  padding:5px 8px;
  background:var(--soft);
  border-radius:7px;
  color:var(--purple2);
  font-size:10px;
  font-weight:800
}
.card h3 {
  font-size:20px;
  margin:12px 0 8px
}
.card p {
  font-size:14px
}
.link {
  display:inline-block;
  margin-top:8px;
  font-weight:750
}
.image-band {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  align-items:center
}
.image-band img {
  width:100%;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:0 20px 55px rgba(17,17,17,.07)
}
.article {
  max-width:900px;
  margin:auto
}
.article h1 {
  font-size:50px;
  letter-spacing:-1.5px
}
.article h2 {
  font-size:30px;
  margin-top:45px
}
.article p,.article li {
  color:var(--text)
}
.toc,.note {
  padding:20px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--input)
}
.toc a {
  display:block;
  margin:5px 0
}
.faq details {
  border-bottom:1px solid var(--line);
  padding:17px 0
}
.faq summary {
  cursor:pointer;
  color:var(--heading);
  font-weight:750
}
.faq p {
  margin-bottom:0
}
.tablewrap {
  overflow:auto;
  border:1px solid var(--line);
  border-radius:14px
}
.compare {
  border-collapse:collapse;
  width:100%;
  min-width:720px
}
.compare th,.compare td {
  padding:15px;
  border-bottom:1px solid var(--line);
  text-align:left
}
.compare th {
  background:var(--input);
  color:var(--heading)
}
.compare td {
  color:var(--text)
}
footer {
  border-top:1px solid var(--line);
  padding:50px 0;
  color:var(--text);
  font-size:13px
}
.foot {
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:35px
}
.foot h4 {
  color:var(--heading)
}
.foot a {
  display:block;
  margin:7px 0
}
.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:.7s
}
.reveal.show {
  opacity:1;
  transform:none
}
.float {
  animation:float 4s ease-in-out infinite
}
@keyframes float {
  50% {
    transform:translateY(-7px)
  }
}
@media(max-width:950px) {
  .grid {
    grid-template-columns:repeat(2,1fr)
  }
  .hero-grid,.image-band {
    grid-template-columns:1fr
  }
  .hero-image {
    justify-self:center
  }
  .navlinks {
    display:flex;
    max-width:52vw;
    overflow-x:auto;
    white-space:nowrap;
    gap:12px;
    scrollbar-width:none
  }
  .navlinks::-webkit-scrollbar {
    display:none
  }
  .nav .btn {
    display:none
  }
}
@media(max-width:600px) {
  .grid,.foot {
    grid-template-columns:1fr
  }
  .hero h1 {
    letter-spacing:-2px
  }
  .article h1 {
    font-size:38px
  }
}
/* Expanded Altox Cloud UI */









.mega-hero {
  padding:125px 0 100px;
  background:radial-gradient(circle at 80% 20%,rgba(145,70,255,.11),transparent 30%),linear-gradient(#fff,#fbf9ff)
}
.mega-hero h1 {
  max-width:850px
}
.lead {
  font-size:20px!important;
  line-height:1.7
}
.trust-row {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:28px
}
.trust-row span {
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:12px;
  font-weight:700;
  color:var(--heading)
}
.service-grid {
  grid-template-columns:repeat(2,1fr);
  gap:24px
}
.service-card {
  padding:18px
}
.service-card img {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--line);
  margin-bottom:8px;
  transition:.4s
}
.service-card:hover img {
  transform:scale(1.025)
}
.feature-block {
  background:#faf8fd
}
.mini-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}
.mini-card {
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  background:#fff;
  transition:.3s
}
.mini-card:hover {
  transform:translateY(-6px);
  box-shadow:0 20px 55px rgba(145,70,255,.11);
  border-color:#cbb1ff
}
.mini-card img {
  width:100%;
  height:130px;
  object-fit:cover;
  border-radius:12px;
  background:#faf8fd
}
.mini-card h3 {
  margin:15px 0 6px
}
.mini-card p {
  font-size:13px
}
.mini-card a {
  font-weight:750;
  font-size:13px
}
.seo-cluster {
  background:linear-gradient(180deg,#fff,#fbf9ff)
}
.center {
  justify-content:center
}
.navlinks {
  align-items:center
}
@media(max-width:950px) {
  .service-grid,.mini-grid {
    grid-template-columns:1fr 1fr
  }



}
@media(max-width:600px) {
  .service-grid,.mini-grid {
    grid-template-columns:1fr
  }
  .mega-hero {
    padding:90px 0 70px
  }
  .lead {
    font-size:17px!important
  }

}
.keyword-hub {
  background:linear-gradient(180deg,#fff,#faf7ff)
}
.topic-grid {
  grid-template-columns:repeat(4,1fr)
}
.topic-grid img {
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:13px;
  border:1px solid var(--line);
  margin-bottom:10px
}
.article-visual {
  display:block;
  width:min(100%,760px);
  max-height:360px;
  object-fit:cover;
  border:1px solid var(--line);
  border-radius:20px;
  margin:20px 0 28px;
  background:#faf8ff
}
.article a {
  text-decoration:underline;
  text-decoration-color:#d8c3ff;
  text-underline-offset:3px
}
@media(max-width:950px) {
  .topic-grid {
    grid-template-columns:1fr 1fr
  }
}
@media(max-width:600px) {
  .topic-grid {
    grid-template-columns:1fr
  }
}
/* Premium navigation + SVG containment enhancement */
.nav {
  min-height:76px;
  height:auto;
  padding:6px 0;
  gap:18px
}
.brand {
  white-space:nowrap
}
.navlinks {
  gap:6px
}


.nav-group {
  position:relative
}
.nav-group>a span {
  color:var(--purple);
  margin-left:3px
}



.service-card img,.topic-grid img,.mini-card img,.image-band img,.hero-image,.article-visual {
  object-fit:contain;
  background:linear-gradient(145deg,#fbf9ff,#f3ecff);
  padding:12px
}
.service-card img {
  height:190px
}
.topic-grid img {
  height:165px
}
.mini-card img {
  height:140px
}
.image-band img {
  min-height:290px
}
.hero-image {
  padding:18px
}
.svg-box {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:260px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(145deg,#fff,#f8f2ff);
  overflow:hidden
}
.svg-box img {
  width:100%;
  height:100%;
  max-height:360px;
  object-fit:contain;
  padding:20px
}
.seo-outline {
  margin-top:26px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff
}
.seo-outline h2 {
  font-size:30px;
  margin:0 0 18px
}
.seo-outline h3 {
  font-size:18px;
  margin:20px 0 6px
}
.seo-outline p {
  margin:0 0 12px
}
@media(max-width:950px) {
  .nav {
    align-items:flex-start
  }
  .navlinks {
    max-width:58vw
  }


}
@media(max-width:600px) {
  .nav {
    padding:8px 0
  }
  .navlinks {
    max-width:62vw
  }

  .service-card img {
    height:170px
  }
  .topic-grid img {
    height:150px
  }
}
/* Editable / premium system */
:root {
  --focus:rgba(145,70,255,.32);
  --nav-height:78px;
  --max:1240px
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:90px
}
body {
  overflow-x:hidden
}
a,button,input,summary {
  outline-color:var(--focus)
}
a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible {
  outline:3px solid var(--focus);
  outline-offset:3px
}
.wrap {
  max-width:var(--max)
}
header {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(229,226,234,.8)
}
.nav {
  position:relative
}
.brand {
  font-size:23px;
  letter-spacing:-.5px
}
.navlinks {
  flex:1;
  justify-content:center
}
.navlinks>a,.nav-group>a {
  white-space:nowrap
}
.nav-group>a {
  display:flex;
  align-items:center;
  gap:3px
}
.nav-cta {
  white-space:nowrap
}
.mobile-menu-btn {
  display:none;
  border:1px solid var(--line);
  background:#fff;
  color:var(--heading);
  border-radius:11px;
  padding:10px 12px;
  font-weight:800;
  cursor:pointer
}
.mobile-menu-btn span {
  display:block;
  width:18px;
  height:2px;
  background:currentColor;
  margin:4px 0;
  border-radius:2px
}
.topic-seo-section {
  background:linear-gradient(180deg,#fff,#faf7ff)
}
.topic-seo-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}
.topic-seo-grid article {
  padding:24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  transition:.3s
}
.topic-seo-grid article:hover {
  transform:translateY(-5px);
  border-color:#cbb1ff;
  box-shadow:0 18px 50px rgba(145,70,255,.10)
}
.topic-seo-grid h3 {
  margin:0 0 9px;
  font-size:19px
}
.topic-seo-grid p {
  font-size:14px
}
.topic-seo-grid a {
  font-weight:800;
  color:var(--purple2)
}
.editor-shell {
  padding:80px 0
}
.editor-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin:25px 0
}
.editor-grid label {
  font-weight:750;
  color:var(--heading)
}
.editor-grid input {
  display:block;
  width:100%;
  margin-top:8px;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff;
  color:var(--heading);
  font:inherit
}
.editor-shell pre {
  white-space:pre-wrap;
  overflow:auto
}
.editor-shell code {
  background:var(--input);
  padding:2px 5px;
  border-radius:5px
}
img {
  max-width:100%
}
.service-card img,.topic-grid img,.mini-card img,.image-band img,.hero-image,.article-visual {
  object-position:center
}
.hero-image {
  aspect-ratio:7/4
}
.service-card img,.topic-grid img,.mini-card img {
  aspect-ratio:16/9
}
@media(max-width:1050px) {
  .navlinks {
    gap:2px
  }

  .nav-cta {
    padding:10px 13px
  }
  .topic-seo-grid {
    grid-template-columns:1fr 1fr
  }
}
@media(max-width:820px) {
  .mobile-menu-btn {
    display:block
  }
  .navlinks {
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    max-width:none;
    padding:12px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:0 25px 70px rgba(40,20,80,.15)
  }
  .navlinks.open {
    display:flex
  }

  .nav-group {
    width:100%
  }


  .nav-cta {
    display:none!important
  }
  .nav {
    padding:8px 0
  }
  .topic-seo-grid {
    grid-template-columns:1fr 1fr
  }
}
@media(max-width:600px) {
  .topic-seo-grid,.editor-grid {
    grid-template-columns:1fr
  }
  .hero-image {
    aspect-ratio:1/1
  }
  .service-card img {
    height:165px
  }
  .topic-grid img {
    height:145px
  }
  .mini-card img {
    height:125px
  }
  .editor-shell {
    padding:50px 0
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  .reveal,.float,.card,.mini-card,.topic-seo-grid article {
    transition:none!important;
    animation:none!important
  }
  .reveal {
    opacity:1;
    transform:none
  }
}
/* Altox Cloud v4 navigation: clear hierarchy, distinct icons, no misleading menu labels */
.nav-trigger {
  appearance:none;
  border:0;
  background:transparent;
  color:var(--text);
  font:inherit;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:7px;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer
}
.nav-trigger:hover,.nav-trigger[aria-expanded="true"] {
  background:var(--soft);
  color:var(--purple)
}
.nav-trigger-icon,.nav-icon {
  display:inline-flex;
  flex:0 0 20px;
  width:20px;
  height:20px;
  align-items:center;
  justify-content:center;
  color:var(--purple);
  position:relative
}
.nav-trigger-icon::before,.nav-icon::before {
  content:"";
  display:block;
  width:15px;
  height:15px;
  border:1.8px solid currentColor;
  border-radius:4px
}
.icon-grid::before {
  box-shadow:5px 0 0 -1.8px #fff,5px 0 0 0 currentColor,0 5px 0 -1.8px #fff,0 5px 0 0 currentColor,5px 5px 0 -1.8px #fff,5px 5px 0 0 currentColor
}
.icon-cpu::before {
  border-radius:3px;
  box-shadow:0 -4px 0 -2.5px currentColor,0 4px 0 -2.5px currentColor,4px 0 0 -2.5px currentColor,-4px 0 0 -2.5px currentColor
}
.icon-chip::before {
  border-radius:5px
}
.icon-bolt::before {
  border-radius:50%
}
.icon-desktop::before {
  width:16px;
  height:11px;
  border-radius:3px;
  box-shadow:0 5px 0 -4px currentColor
}
.icon-india::before {
  border-radius:50%
}
.icon-book::before {
  border-radius:2px 5px 5px 2px
}
.icon-help::before {
  border-radius:50%
}
.icon-cloud::before {
  border-radius:9px
}
.icon-chart::before {
  border-radius:2px;
  box-shadow:4px -4px 0 -2px currentColor
}
.chevron {
  width:7px;
  height:7px;
  border-right:1.8px solid currentColor;
  border-bottom:1.8px solid currentColor;
  transform:rotate(45deg);
  margin-top:-4px;
  transition:.2s
}
.nav-trigger[aria-expanded="true"] .chevron {
  transform:rotate(225deg);
  margin-top:4px
}





.irctc-section {
  background:#fbf9ff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.irctc-section .image-band img {
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  object-fit:contain
}
@media(max-width:820px) {
  .nav-trigger {
    width:100%;
    justify-content:space-between;
    padding:12px 13px
  }


  .navlinks>a {
    width:100%
  }
}
.foot a {
  display:block;
  margin:.35rem 0;
  color:inherit;
  text-decoration:none
}
.foot a:hover {
  color:var(--purple)
}
/* Altox Cloud logo */
.brand-logo {
  display:block;
  width:168px;
  height:auto;
  max-height:52px;
  object-fit:contain;
  object-position:left center
}
.brand {
  display:flex;
  align-items:center;
  min-width:168px
}
@media(max-width:820px) {
  .brand-logo {
    width:145px;
    max-height:46px
  }
  .brand {
    min-width:145px
  }
}
/* Editorial assets: visual support without keyword stuffing */
.editorial-visual {
  margin:30px 0 10px;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(145deg,#fff,#f8f2ff);
  box-shadow:0 18px 55px rgba(55,20,90,.08)
}
.editorial-visual img {
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1200/620;
  object-fit:contain;
  padding:10px
}
.editorial-visual figcaption {
  padding:10px 16px 14px;
  font-size:12px;
  color:var(--text);
  border-top:1px solid var(--line)
}
.editorial-assets {
  background:linear-gradient(180deg,#fff,#fbf9ff);
  border-top:1px solid var(--line)
}
.editorial-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px
}
.editorial-card {
  display:block;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  transition:transform .25s,box-shadow .25s,border-color .25s;
  color:var(--heading)
}
.editorial-card:hover {
  transform:translateY(-5px);
  border-color:#cdb2ff;
  box-shadow:0 20px 55px rgba(145,70,255,.12)
}
.editorial-card img {
  display:block;
  width:100%;
  height:190px;
  object-fit:contain;
  background:#fbf9ff;
  padding:10px;
  border-bottom:1px solid var(--line)
}
.editorial-card span {
  display:block;
  padding:14px 16px;
  font-weight:800
}
@media(max-width:800px) {
  .editorial-grid {
    grid-template-columns:1fr 1fr
  }
}
@media(max-width:560px) {
  .editorial-grid {
    grid-template-columns:1fr
  }
  .editorial-card img {
    height:170px
  }
}
/* Final navigation and visual system — single source of truth */
.site-header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.nav {
  min-height:76px;
  height:auto;
  display:flex;
  align-items:center;
  gap:18px;
  position:relative;
}
.brand {
  display:flex;
  align-items:center;
  flex:0 0 auto;
  line-height:0;
}
.brand-logo {
  display:block;
  width:176px;
  height:48px;
  object-fit:contain;
  object-position:left center;
}
.navlinks {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex:1;
  min-width:0;
}
.nav-link,.nav-trigger {
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:11px 12px;
  border-radius:10px;
  color:var(--text);
  font:inherit;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  border:0;
  background:transparent;
  cursor:pointer;
  white-space:nowrap;
}
.nav-link:hover,.nav-trigger:hover,.nav-trigger[aria-expanded="true"] {
  color:var(--purple);
  background:var(--soft);
}
.nav-group {
  position:relative;
}
.nav-trigger-icon {
  display:inline-flex;
  width:18px;
  height:18px;
  position:relative;
  color:currentColor;
}
.nav-trigger-icon::before {
  content:"";
  width:13px;
  height:13px;
  border:1.7px solid currentColor;
  border-radius:4px;
  position:absolute;
  left:2px;
  top:2px;
}
.nav-icon {
  display:inline-flex;
  width:22px;
  height:22px;
  position:relative;
  color:var(--purple);
  align-items:center;
  justify-content:center;
}
.nav-icon::before {
  content:"";
  width:15px;
  height:15px;
  border:1.7px solid currentColor;
  border-radius:5px;
}
.chevron {
  width:7px;
  height:7px;
  border-right:1.7px solid currentColor;
  border-bottom:1.7px solid currentColor;
  transform:rotate(45deg);
  margin:-4px 0 0 2px;
  transition:transform .18s ease;
}
.nav-trigger[aria-expanded="true"] .chevron {
  transform:rotate(225deg);
  margin-top:4px;
}
.dropdown {
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%) translateY(-5px);
  width:340px;
  padding:8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 24px 70px rgba(40,20,80,.16);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .16s ease,transform .16s ease,visibility .16s ease;
}
.nav-group.open>.dropdown,.nav-group:focus-within>.dropdown {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.dropdown a {
  display:grid;
  grid-template-columns:24px 1fr;
  gap:10px;
  align-items:center;
  padding:11px;
  border-radius:11px;
  color:var(--heading);
  text-decoration:none;
}
.dropdown a:hover,.dropdown a:focus-visible {
  background:var(--soft);
  outline:none;
}
.dropdown b,.dropdown small {
  display:block;
}
.dropdown b {
  font-size:13px;
  line-height:1.25;
}
.dropdown small {
  margin-top:3px;
  color:var(--text);
  font-size:11px;
  font-weight:500;
}
.nav-cta {
  flex:0 0 auto;
}
.mobile-menu-btn {
  display:none;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:11px;
  color:var(--heading);
  cursor:pointer;
}
.mobile-menu-btn span {
  display:block;
  width:18px;
  height:2px;
  background:currentColor;
  border-radius:2px;
}
.service-card img {
  height:210px;
  object-fit:contain;
  background:#fbf9ff;
  padding:8px;
  border:1px solid var(--line);
}
.image-band img,.hero-image,.article-hero img,.topic-grid img {
  object-fit:contain;
  background:#fbf9ff;
}
@media (max-width:1040px) {
  .navlinks {
    gap:1px
  }
  .nav-link,.nav-trigger {
    padding:10px 8px;
    font-size:13px
  }
  .brand-logo {
    width:160px;
  }
}
@media (max-width:820px) {
  .nav {
    min-height:68px
  }
  .mobile-menu-btn {
    display:flex;
    margin-left:auto
  }
  .nav-cta {
    display:none!important
  }
  .navlinks {
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 8px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    padding:10px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:0 24px 70px rgba(40,20,80,.16);
    max-height:calc(100vh - 90px);
    overflow:auto;
    gap:3px;
  }
  .navlinks.open {
    display:flex
  }
  .nav-link,.nav-trigger {
    width:100%;
    justify-content:flex-start;
    padding:13px;
    font-size:14px
  }
  .nav-trigger {
    justify-content:space-between
  }
  .nav-group {
    width:100%
  }
  .dropdown {
    position:static;
    width:auto;
    transform:none!important;
    display:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    box-shadow:none;
    background:var(--input);
    border:0;
    border-radius:12px;
    margin:3px 0;
    padding:5px
  }
  .nav-group.open>.dropdown {
    display:block
  }
  .dropdown a {
    padding:11px 10px
  }
  .brand-logo {
    width:150px;
    height:44px
  }
  .service-card img {
    height:190px;
  }
}
@media (max-width:520px) {
  .brand-logo {
    width:136px
  }
  .nav {
    gap:10px
  }
  .service-card img {
    height:175px;
  }
}
/* v11 focused technical resource layout */
.article-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:28px;
  align-items:start
}
.side-card {
  position:sticky;
  top:100px;
  background:#fff;
  border:1px solid #E5E2EA;
  border-radius:22px;
  padding:22px;
  box-shadow:0 14px 36px rgba(49,32,82,.08)
}
.side-card a {
  display:block;
  padding:9px 0;
  color:#6D28D9;
  font-weight:700
}
.content-section {
  margin-bottom:36px
}
.content-section p,.content-section li {
  line-height:1.78
}
.code-list {
  background:#F4F0FA;
  border:1px solid #E5E2EA;
  border-radius:16px;
  padding:12px 18px
}
.code-list p {
  margin:10px 0
}
.code-list code {
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  background:#fff;
  border:1px solid #e5e2ea;
  border-radius:7px;
  padding:3px 6px;
  color:#6D28D9
}
.source-note {
  margin-top:28px;
  padding:16px 18px;
  border-left:4px solid #9146FF;
  background:#F4F0FA;
  border-radius:10px
}
.resource-links {
  display:grid;
  gap:12px
}
.resource-links a {
  font-weight:700
}
@media(max-width:820px) {
  .article-layout {
    grid-template-columns:1fr
  }
  .side-card {
    position:static
  }
}
/* Extreme technical SEO presentation layer */
.guide-toc {
  display:grid;
  gap:7px;
  padding:16px;
  background:#F4F0FA;
  border:1px solid #E5E2EA;
  border-radius:16px
}
.guide-toc a {
  color:#6D28D9;
  font-weight:750;
  text-decoration:none
}
.guide-toc a:hover {
  text-decoration:underline
}
.fact-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:20px 0
}
.fact {
  padding:18px;
  border:1px solid #E5E2EA;
  border-radius:16px;
  background:#fff
}
.fact strong {
  display:block;
  color:#111;
  margin-bottom:6px
}
.guide-callout {
  padding:20px;
  border:1px solid #d9c7ff;
  border-left:5px solid #9146FF;
  border-radius:16px;
  background:#F0E7FF
}
.guide-table {
  width:100%;
  border-collapse:collapse;
  margin:20px 0;
  font-size:14px
}
.guide-table th,.guide-table td {
  padding:12px;
  border:1px solid #E5E2EA;
  text-align:left;
  vertical-align:top
}
.guide-table th {
  background:#F4F0FA;
  color:#111
}
.asset-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:22px
}
.asset-strip img {
  width:100%;
  height:150px;
  object-fit:contain;
  border:1px solid #E5E2EA;
  border-radius:16px;
  background:#FBF9FF;
  padding:10px
}
.mini-cta {
  margin-top:22px;
  padding:22px;
  border-radius:20px;
  background:#111;
  color:#fff
}
.mini-cta a {
  color:#fff
}
.guide-list li {
  margin:8px 0
}
@media(max-width:800px) {
  .fact-grid,.asset-strip {
    grid-template-columns:1fr
  }
  .guide-table {
    display:block;
    overflow-x:auto;
    white-space:normal
  }
}
/* Expanded technical guide components */
.content-illustration {
  display:block;
  width:100%;
  max-width:900px;
  height:auto;
  margin:22px auto;
  border:1px solid #E5E2EA;
  border-radius:18px;
  background:#fff;
  padding:10px;
  box-sizing:border-box
}
.guide-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px
}
.guide-grid>div {
  border:1px solid #E5E2EA;
  background:#fff;
  border-radius:16px;
  padding:18px
}
.guide-grid h3 {
  margin:0 0 8px
}
.guide-table {
  width:100%;
  border-collapse:collapse;
  margin:18px 0;
  background:#fff;
  border:1px solid #E5E2EA
}
.guide-table th,.guide-table td {
  padding:12px 13px;
  text-align:left;
  border-bottom:1px solid #E5E2EA;
  vertical-align:top
}
.guide-table th {
  background:#F0E7FF
}
.guide-table tr:last-child td {
  border-bottom:0
}
.code-list {
  display:grid;
  grid-template-columns:minmax(180px,.8fr) 1.7fr;
  border:1px solid #E5E2EA;
  border-radius:14px;
  overflow:hidden;
  background:#fff
}
.code-list code,.code-list span {
  padding:11px 13px;
  border-bottom:1px solid #E5E2EA
}
.code-list code {
  background:#F4F0FA;
  color:#6D28D9;
  font-weight:700
}
@media(max-width:760px) {
  .guide-grid {
    grid-template-columns:1fr
  }
  .guide-table {
    font-size:14px;
    display:block;
    overflow-x:auto
  }
  .code-list {
    grid-template-columns:1fr
  }
}
/* Altox premium navbar + logo refresh */
.brand-logo {
  width:176px;
  height:52px;
  object-fit:contain;
  object-position:left center
}
.nav-link,.nav-trigger {
  gap:8px
}
.nav-link>svg,.nav-trigger>svg {
  width:17px;
  height:17px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex:0 0 auto
}
.nav-link:hover>svg,.nav-trigger:hover>svg {
  transform:translateY(-1px)
}
.dropdown {
  width:370px;
  padding:10px
}
.dropdown a {
  grid-template-columns:26px 1fr;
  gap:11px
}
.dropdown a>svg {
  width:20px;
  height:20px;
  stroke:#9146FF;
  fill:none;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round
}
.dropdown a:hover>svg {
  stroke:#6D28D9
}
.dropdown-heading {
  padding:7px 11px 9px;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  color:#8a8592
}
.dropdown-divider {
  height:1px;
  background:#E5E2EA;
  margin:7px 10px
}
.guides-dropdown {
  box-shadow:0 28px 80px rgba(40,20,80,.19)
}
@media(max-width:820px) {
  .brand-logo {
    width:150px;
    height:46px
  }
  .dropdown {
    width:auto
  }
  .dropdown-heading {
    padding-top:8px
  }
  .nav-link>svg,.nav-trigger>svg {
    width:18px;
    height:18px
  }
}
/* v6: tablet + mobile hardening */
html {
  scroll-behavior:smooth;
  scroll-padding-top:96px
}
body {
  overflow-x:hidden
}
img,svg,video {
  max-width:100%
}
.wrap {
  width:min(1180px,calc(100% - 40px))
}
.article,.content-section {
  min-width:0
}
.article p,.article li {
  overflow-wrap:anywhere
}
.table-scroll {
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:16px
}
.guide-table {
  min-width:640px
}
.actions {
  flex-wrap:wrap
}
.btn {
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center
}
.dropdown a,.nav-link,.nav-trigger,.mobile-menu-btn {
  touch-action:manipulation
}
.content-section {
  scroll-margin-top:100px
}
@media(max-width:1024px) {
  section {
    padding-left:0;
    padding-right:0
  }
  .wrap {
    width:min(100% - 32px,960px)
  }
  .hero-grid,.article-grid {
    gap:28px
  }
  .hero h1,.mega-hero h1,.article-hero h1 {
    font-size:clamp(40px,6vw,64px)
  }
  .article-layout {
    grid-template-columns:minmax(0,1fr) 230px;
    gap:20px
  }
  .side-card {
    padding:18px
  }
  .service-grid,.topic-grid,.mini-grid {
    gap:16px
  }
  .content-illustration {
    max-height:430px
  }
  .foot {
    gap:24px
  }
}
@media(max-width:820px) {
  html {
    scroll-padding-top:82px
  }
  .wrap {
    width:min(100% - 28px,760px)
  }
  .hero,.mega-hero,.article-hero {
    padding-top:70px;
    padding-bottom:58px
  }
  .hero-grid,.article-grid,.image-band {
    grid-template-columns:1fr!important
  }
  .hero-image,.article-image {
    width:min(100%,620px);
    margin-inline:auto;
    max-height:390px
  }
  .article-layout {
    grid-template-columns:1fr
  }
  .side-card {
    position:static;
    order:2
  }
  .guide-grid,.fact-grid {
    grid-template-columns:1fr 1fr
  }
  .asset-strip {
    grid-template-columns:1fr 1fr
  }
  .content-section {
    margin-bottom:30px
  }
  .dropdown a {
    min-height:54px
  }
  .dropdown small {
    font-size:12px
  }
  .navlinks {
    overscroll-behavior:contain
  }
  .foot {
    grid-template-columns:1fr 1fr
  }
  .guide-table {
    font-size:13px
  }
}
@media(max-width:600px) {
  .wrap {
    width:min(100% - 22px,560px)
  }
  .site-header {
    backdrop-filter:blur(14px)
  }
  .nav {
    min-height:62px
  }
  .brand-logo {
    width:128px;
    height:40px
  }
  .mobile-menu-btn {
    width:42px;
    height:42px
  }
  .navlinks {
    left:6px;
    right:6px;
    max-height:calc(100dvh - 78px);
    border-radius:14px
  }
  .hero,.mega-hero,.article-hero {
    padding-top:52px;
    padding-bottom:46px
  }
  .hero h1,.mega-hero h1,.article-hero h1,.article h1 {
    font-size:clamp(34px,10vw,48px);
    line-height:1.04;
    letter-spacing:-1.5px
  }
  .lead {
    font-size:16px!important;
    line-height:1.65
  }
  .actions {
    display:grid;
    grid-template-columns:1fr;
    gap:10px
  }
  .actions .btn {
    width:100%
  }
  .trust-row {
    gap:7px
  }
  .trust-row span {
    font-size:11px
  }
  .service-grid,.topic-grid,.mini-grid,.guide-grid,.fact-grid,.asset-strip,.foot {
    grid-template-columns:1fr
  }
  .service-card,.mini-card,.content-section,.side-card {
    border-radius:16px
  }
  .content-section p,.content-section li {
    line-height:1.7
  }
  .content-section h2 {
    font-size:27px
  }
  .content-section h3 {
    font-size:20px
  }
  .content-illustration {
    padding:5px;
    border-radius:14px
  }
  .table-scroll {
    margin:16px 0;
    border:1px solid var(--line)
  }
  .guide-table {
    margin:0;
    min-width:600px;
    border:0
  }
  .guide-table th,.guide-table td {
    padding:10px
  }
  .code-list {
    grid-template-columns:1fr
  }
  .code-list code,.code-list span {
    overflow-wrap:anywhere
  }
  .editorial-grid {
    grid-template-columns:1fr
  }
  .editorial-card img {
    height:auto;
    max-height:220px
  }
  .side-card a {
    padding:11px 0
  }
  .source-note,.guide-callout {
    padding:15px
  }
  .eyebrow {
    font-size:11px
  }
  .article-layout {
    gap:16px
  }
}
@media(max-width:380px) {
  .wrap {
    width:calc(100% - 18px)
  }
  .brand-logo {
    width:116px
  }
  .hero h1,.mega-hero h1,.article-hero h1,.article h1 {
    font-size:32px
  }
  .dropdown a {
    grid-template-columns:22px 1fr;
    gap:8px;
    padding:10px 8px
  }
  .dropdown a>svg {
    width:18px;
    height:18px
  }
}
/* Final responsive hardening */
.navlinks {
  scrollbar-width:none
}
.navlinks::-webkit-scrollbar {
  display:none
}
.brand-logo {
  object-fit:contain;
  object-position:left center
}
.dropdown {
  max-height:min(70vh,620px);
  overflow:auto;
  -webkit-overflow-scrolling:touch
}
.nav-group.open>.nav-trigger {
  background:var(--soft);
  color:var(--purple)
}
.mobile-menu-btn {
  flex:0 0 auto
}
.site-header {
  scroll-margin-top:0
}
.article h2,.content-section h2 {
  scroll-margin-top:105px
}
.content-section {
  overflow-wrap:anywhere
}
.content-illustration {
  object-fit:contain
}
.about-hero {
  background:linear-gradient(180deg,#fff,#faf7ff)
}
@media(max-width:820px) {
  .nav {
    align-items:center
  }
  .brand-logo {
    width:min(150px,38vw);
    height:auto;
    max-height:46px
  }
  .navlinks {
    z-index:60
  }
  .dropdown {
    max-height:58vh
  }
  .nav-link,.nav-trigger {
    min-height:48px
  }
  .nav-cta {
    display:none!important
  }
}
@media(max-width:480px) {
  .brand-logo {
    width:120px
  }
  .nav {
    gap:8px
  }
  .mobile-menu-btn {
    width:44px;
    height:44px
  }
  .dropdown a {
    min-height:56px
  }
  .dropdown-heading {
    font-size:11px
  }
  .article-layout {
    width:100%
  }
}
/* Altox Cloud professional icon + mobile navigation refinement */
.nav-link>svg,.nav-trigger>svg {
  width:31px;
  height:31px;
  min-width:31px;
  padding:7px;
  border-radius:10px;
  background:linear-gradient(145deg,#9b55ff 0%,#6d28d9 100%);
  color:#fff;
  stroke:currentColor;
  fill:none;
  box-shadow:0 7px 16px rgba(109,40,217,.18), inset 0 1px 0 rgba(255,255,255,.35);
  transition:transform .2s ease,box-shadow .2s ease;
}
.nav-link:hover>svg,.nav-trigger:hover>svg,.nav-trigger[aria-expanded="true"]>svg {
  transform:translateY(-1px) scale(1.04);
  box-shadow:0 9px 20px rgba(109,40,217,.24), inset 0 1px 0 rgba(255,255,255,.4);
}
.dropdown a>svg {
  width:32px;
  height:32px;
  padding:7px;
  border-radius:10px;
  background:linear-gradient(145deg,#f1e8ff,#e7d8ff);
  color:#7c3aed;
  stroke:#7c3aed;
  fill:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 5px 12px rgba(109,40,217,.08);
  transition:transform .2s ease,background .2s ease;
}
.dropdown a:hover>svg {
  transform:translateY(-1px) scale(1.04);
  background:linear-gradient(145deg,#e9dcff,#d9c1ff);
  stroke:#5b21b6
}
.service-icon-frame {
  width:96px;
  height:96px;
  margin:2px 0 18px;
  display:grid;
  place-items:center;
  border-radius:24px;
  background:radial-gradient(circle at 28% 20%,rgba(255,255,255,.98),rgba(255,255,255,.75) 34%,rgba(240,231,255,.96) 100%);
  border:1px solid #e4d7ff;
  box-shadow:0 16px 35px rgba(109,40,217,.11),inset 0 1px 0 #fff;
  position:relative;
  overflow:hidden;
}
.service-icon-frame::after {
  content:"";
  position:absolute;
  inset:auto -18px -24px auto;
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(145,70,255,.10);
  filter:blur(3px);
}
.service-icon-frame img {
  width:66px!important;
  height:66px!important;
  object-fit:contain!important;
  border:0!important;
  border-radius:0!important;
  margin:0!important;
  position:relative;
  z-index:1;
  filter:drop-shadow(0 7px 9px rgba(57,30,100,.12));
  transition:transform .35s ease,filter .35s ease;
}
.service-card:hover .service-icon-frame img {
  transform:translateY(-3px) scale(1.06);
  filter:drop-shadow(0 11px 14px rgba(57,30,100,.17))
}
.service-card {
  position:relative;
  overflow:hidden
}
.service-card::before {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background:linear-gradient(90deg,#9146ff,#b779ff,#6d28d9);
  opacity:.8;
  transform:scaleX(.35);
  transform-origin:left;
  transition:transform .35s ease;
}
.service-card:hover::before {
  transform:scaleX(1)
}
.mobile-menu-btn {
  position:relative;
  width:44px;
  height:44px;
  padding:0;
  display:none;
  align-items:center;
  justify-content:center;
  border:1px solid #ded6ea;
  background:rgba(255,255,255,.94);
  border-radius:13px;
  box-shadow:0 8px 22px rgba(40,20,80,.08);
  z-index:65;
}
.mobile-menu-btn span {
  position:absolute;
  left:12px;
  width:20px;
  height:2px;
  margin:0;
  border-radius:99px;
  background:#16121f;
  transition:transform .24s ease,opacity .2s ease,top .24s ease;
}
.mobile-menu-btn span:nth-child(1) {
  top:14px
}
.mobile-menu-btn span:nth-child(2) {
  top:21px
}
.mobile-menu-btn span:nth-child(3) {
  top:28px
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  top:21px;
  transform:rotate(45deg)
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity:0;
  transform:scaleX(.2)
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  top:21px;
  transform:rotate(-45deg)
}
@media(max-width:820px) {
  .mobile-menu-btn {
    display:inline-flex
  }
  .nav {
    position:relative;
    min-height:64px
  }
  .navlinks {
    top:calc(100% + 10px);
    padding:8px;
    background:rgba(255,255,255,.985);
    backdrop-filter:blur(18px);
    border:1px solid #ded6ea;
    border-radius:18px;
    box-shadow:0 28px 80px rgba(34,17,66,.2)
  }
  .navlinks.open {
    animation:mobileNavIn .22s ease both
  }
  .nav-link,.nav-trigger {
    min-height:52px;
    border-radius:13px;
    padding:10px 11px
  }
  .nav-link>svg,.nav-trigger>svg {
    width:34px;
    height:34px;
    min-width:34px;
    padding:8px
  }
  .nav-group.open>.nav-trigger {
    background:#f1e8ff
  }
  .dropdown {
    background:#f8f5fc;
    border:1px solid #ebe3f5;
    margin:2px 0 5px;
    padding:6px;
    border-radius:14px
  }
  .dropdown a {
    min-height:58px;
    border-radius:11px
  }
  .dropdown a>svg {
    width:34px;
    height:34px;
    padding:8px
  }
  .navlinks .nav-cta {
    display:none!important
  }
}
@keyframes mobileNavIn {
  from {
    opacity:0;
    transform:translateY(-7px) scale(.985)
  }
  to {
    opacity:1;
    transform:none
  }
}
@media(max-width:600px) {
  .service-icon-frame {
    width:82px;
    height:82px;
    border-radius:21px;
    margin-bottom:15px
  }
  .service-icon-frame img {
    width:56px!important;
    height:56px!important
  }
  .mobile-menu-btn {
    width:43px;
    height:43px
  }
}
@media(prefers-reduced-motion:reduce) {
  .mobile-menu-btn span,.service-icon-frame img,.nav-link>svg,.nav-trigger>svg {
    transition:none
  }
  .navlinks.open {
    animation:none
  }
}


/* 2026 clean layout pass: deliberate vertical rhythm and readable content width. */
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow {
  width: min(900px, 100%);
}
.content-section {
  padding-block: 88px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 10px 0 14px;
  line-height: 1.08;
}
.section-heading p,
.context-row p,
.info-card p {
  line-height: 1.75;
}
.two-column-context {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.context-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.context-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.context-row h3 {
  margin: 0 0 7px;
}
.context-row p {
  margin: 0;
}
.context-number {
  font-size: 12px;
  font-weight: 900;
  color: var(--purple);
  padding-top: 4px;
}
.faq-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}
.info-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.info-card img {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}
.info-card h3 {
  margin: 0 0 9px;
}
.page-hero {
  padding: 88px 0 54px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 900px;
  margin: 10px 0 18px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -2px;
}
.faq-page {
  border-top: 1px solid var(--line);
}
.faq-page details {
  padding: 24px 4px;
}
.faq-page summary {
  font-size: 17px;
  line-height: 1.45;
  padding-right: 32px;
}
.faq-page details p {
  max-width: 820px;
  margin: 13px 0 0;
  line-height: 1.75;
}
.faq-toolbar {
  padding: 16px 0 24px;
}
.faq-toolbar p {
  margin: 0;
  color: var(--muted, var(--text));
}
.nav-link svg,
.nav-trigger svg {
  width: 31px;
  height: 31px;
  min-width: 31px;
  flex: 0 0 31px;
  padding: 7px;
  border-radius: 10px;
  background: linear-gradient(145deg, #9b55ff 0%, #6d28d9 100%);
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 7px 16px rgba(109, 40, 217, .18), inset 0 1px 0 rgba(255,255,255,.35);
}
@media (max-width: 800px) {
  .content-section { padding-block: 62px; }
  .two-column-context,
  .faq-preview-grid { grid-template-columns: 1fr; gap: 22px; }
  .page-hero { padding: 62px 0 38px; }
  .page-hero h1 { letter-spacing: -1.2px; }
}


/* Homepage context expansion — final density and alignment layer */
.homepage-introduction {
  padding-top:72px;
  padding-bottom:72px;
  background:#fff;
}
.homepage-intro-grid {
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);
  gap:52px;
  align-items:start;
}
.homepage-introduction .section-heading {
  max-width:780px;
}
.homepage-introduction h2,
.context-deep h2,
.workload-section h2,
.decision-section h2,
.homepage-responsibility h2,
.final-home-panel h2 {
  font-size:clamp(32px,4.2vw,48px);
  letter-spacing:-1.5px;
  margin:14px 0 18px;
}
.homepage-introduction p,
.context-deep p,
.workload-section p,
.decision-section p,
.operations-section p,
.geography-section p,
.guide-map-section p,
.homepage-responsibility p {
  max-width:860px;
}
.homepage-intro-aside {
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(145deg,#fff,#fbf8ff);
  overflow:hidden;
}
.intro-stat-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  border-bottom:1px solid var(--line);
}
.intro-stat-row div {
  min-height:118px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.intro-stat-row div:nth-child(2n) {
  border-right:0;
}
.intro-stat-row div:nth-child(3),
.intro-stat-row div:nth-child(4) {
  border-bottom:0;
}
.intro-stat-row strong {
  color:var(--purple);
  font-size:13px;
}
.intro-stat-row span {
  color:var(--heading);
  font-size:14px;
  font-weight:800;
}
.plain-panel {
  display:grid;
  grid-template-columns:64px 1fr;
  gap:16px;
  align-items:start;
  padding:24px;
}
.plain-panel img {
  width:64px;
  height:64px;
  object-fit:contain;
  padding:10px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--soft);
}
.plain-panel h3 {
  margin:3px 0 7px;
  font-size:19px;
}
.plain-panel p {
  margin:0;
  font-size:14px;
}
.context-deep {
  padding-top:76px;
  padding-bottom:78px;
  background:linear-gradient(180deg,#fbf9ff 0%,#fff 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.context-deep-grid.five-layer-grid {
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:18px;
}
.five-layer-grid .context-panel {
  grid-column:span 2;
}
.five-layer-grid .context-panel:nth-child(4),
.five-layer-grid .context-panel:nth-child(5) {
  grid-column:span 3;
}
.context-panel {
  padding:24px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 32px rgba(55,20,90,.045);
}
.context-panel-icon {
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:15px;
  background:var(--soft);
  margin-bottom:18px;
}
.context-panel-icon img {
  width:30px;
  height:30px;
  object-fit:contain;
}
.layer-number {
  display:block;
  color:var(--purple2);
  font-size:10px;
  font-weight:850;
  letter-spacing:.8px;
}
.context-panel h3 {
  margin:8px 0 8px;
  font-size:21px;
}
.context-panel p {
  margin:0;
  font-size:14px;
}
.context-note {
  display:grid;
  grid-template-columns:170px 1fr;
  gap:18px;
  align-items:start;
  margin-top:20px;
  padding:20px 22px;
  border:1px solid #d7c6fb;
  border-radius:16px;
  background:var(--soft);
}
.context-note strong {
  color:var(--heading);
}
.context-note span {
  color:var(--text);
}
.services-section {
  padding-top:82px;
  padding-bottom:84px;
}
.service-note {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:24px;
  padding:22px 24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--input);
}
.service-note strong {
  color:var(--heading);
}
.service-note p {
  margin:6px 0 0;
  font-size:14px;
}
.workload-section {
  padding-top:80px;
  padding-bottom:84px;
  background:#fff;
  border-top:1px solid var(--line);
}
.workload-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.workload-card {
  min-height:270px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.workload-card:hover {
  transform:translateY(-4px);
  border-color:#cbb1ff;
  box-shadow:0 18px 50px rgba(145,70,255,.09);
}
.workload-card img {
  width:50px;
  height:50px;
  object-fit:contain;
  padding:9px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--soft);
}
.workload-card h3 {
  margin:17px 0 8px;
  font-size:20px;
}
.workload-card p {
  margin:0;
  font-size:14px;
}
.decision-section {
  padding-top:80px;
  padding-bottom:84px;
  background:linear-gradient(180deg,#fbf9ff,#fff);
}
.decision-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.decision-card {
  display:grid;
  grid-template-columns:48px 1fr;
  gap:16px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.decision-card > span {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--soft);
  color:var(--purple2);
  font-size:12px;
  font-weight:850;
}
.decision-card h3 {
  margin:2px 0 7px;
  font-size:18px;
}
.decision-card p {
  margin:0;
  font-size:13px;
}
.feature-block {
  padding-top:82px;
  padding-bottom:82px;
}
.operations-section {
  padding-top:84px;
  padding-bottom:88px;
}
.homepage-longform-grid {
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);
  gap:58px;
  align-items:start;
}
.operations-points {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  padding-top:4px;
}
.operations-points article {
  padding:20px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.operations-points strong {
  color:var(--heading);
  font-size:15px;
}
.operations-points p {
  margin:6px 0 0;
  font-size:13px;
}
.geography-section {
  padding-top:82px;
  padding-bottom:84px;
  border-top:1px solid var(--line);
}
.guide-map-section {
  padding-top:82px;
  padding-bottom:88px;
  background:#fff;
  border-top:1px solid var(--line);
}
.guide-map-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.guide-map-card {
  display:grid;
  grid-template-columns:96px 1fr;
  gap:20px;
  align-items:start;
  padding:22px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.guide-map-card:hover {
  transform:translateY(-4px);
  border-color:#cbb1ff;
  box-shadow:0 18px 50px rgba(145,70,255,.08);
}
.guide-map-card > img {
  width:96px;
  height:96px;
  object-fit:contain;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fbf9ff;
  padding:12px;
}
.guide-map-card span {
  color:var(--purple2);
  font-size:10px;
  font-weight:850;
  letter-spacing:.8px;
}
.guide-map-card h3 {
  margin:7px 0 7px;
  font-size:20px;
}
.guide-map-card p {
  margin:0 0 12px;
  font-size:13px;
}
.guide-map-card a {
  font-weight:800;
  font-size:13px;
}
.faq-teaser {
  padding-top:80px;
  padding-bottom:82px;
}
.homepage-responsibility {
  padding-top:82px;
  padding-bottom:82px;
  background:linear-gradient(180deg,#fbf9ff 0%,#fff 100%);
  border-top:1px solid var(--line);
}
.responsibility-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.responsibility-column {
  padding:22px;
  border-top:3px solid var(--purple);
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  border-left:1px solid var(--line);
  border-radius:0 0 16px 16px;
  background:#fff;
}
.responsibility-column h3 {
  margin:0 0 8px;
  font-size:19px;
}
.responsibility-column p {
  margin:0;
  font-size:13px;
}
.responsibility-note {
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-top:18px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:15px;
  background:var(--input);
  font-size:13px;
}
.responsibility-note strong {
  color:var(--heading);
  white-space:nowrap;
}
.final-home-cta {
  padding-top:76px;
  padding-bottom:92px;
}
.final-home-panel {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(135deg,#fff,#f7f0ff);
  box-shadow:0 20px 60px rgba(145,70,255,.08);
}
.final-home-panel h2 {
  margin-top:0;
}
.final-home-panel p {
  max-width:760px;
  margin-bottom:0;
}
.final-home-panel .actions {
  margin-top:0;
  flex:0 0 auto;
}
@media(max-width:980px) {
  .homepage-intro-grid,
  .homepage-longform-grid {
    grid-template-columns:1fr;
    gap:30px;
  }
  .workload-grid {
    grid-template-columns:1fr 1fr;
  }
  .responsibility-grid {
    grid-template-columns:1fr 1fr;
  }
  .context-deep-grid.five-layer-grid {
    grid-template-columns:1fr 1fr;
  }
  .five-layer-grid .context-panel,
  .five-layer-grid .context-panel:nth-child(4),
  .five-layer-grid .context-panel:nth-child(5) {
    grid-column:auto;
  }
}
@media(max-width:760px) {
  .decision-grid,
  .guide-map-grid,
  .operations-points,
  .workload-grid,
  .responsibility-grid {
    grid-template-columns:1fr;
  }
  .guide-map-card {
    grid-template-columns:72px 1fr;
  }
  .guide-map-card > img {
    width:72px;
    height:72px;
  }
  .service-note,
  .final-home-panel,
  .responsibility-note {
    flex-direction:column;
    align-items:flex-start;
  }
  .context-note {
    grid-template-columns:1fr;
  }
  .homepage-introduction,
  .context-deep,
  .services-section,
  .workload-section,
  .decision-section,
  .feature-block,
  .operations-section,
  .geography-section,
  .guide-map-section,
  .faq-teaser,
  .homepage-responsibility,
  .final-home-cta {
    padding-top:62px;
    padding-bottom:64px;
  }
}
@media(max-width:520px) {
  .intro-stat-row div {
    min-height:100px;
    padding:16px;
  }
  .plain-panel {
    grid-template-columns:52px 1fr;
    padding:18px;
  }
  .plain-panel img {
    width:52px;
    height:52px;
  }
  .homepage-introduction h2,
  .context-deep h2,
  .workload-section h2,
  .decision-section h2,
  .homepage-responsibility h2,
  .final-home-panel h2 {
    font-size:31px;
  }
}


/* Final stability layer: content remains visible when JavaScript is unavailable or fails. */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .reveal.show {
  opacity: 1;
  transform: none;
}

.nav-link:focus-visible,
.nav-trigger:focus-visible,
.mobile-menu-btn:focus-visible,
.dropdown a:focus-visible,
.btn:focus-visible,
.foot a:focus-visible {
  outline: 3px solid rgba(145,70,255,.30);
  outline-offset: 2px;
}

.nav-link svg,
.nav-trigger svg {
  flex: 0 0 31px;
}

@media (max-width: 820px) {
  .nav-link svg,
  .nav-trigger svg {
    width: 34px;
    height: 34px;
    min-width: 34px;
    flex-basis: 34px;
    padding: 8px;
  }
}

/* Homepage compact rhythm pass — reduce empty vertical space without removing useful content. */
.homepage-page section {
  margin-bottom:0;
}
.homepage-page .mega-hero {
  padding-top:78px;
  padding-bottom:56px;
}
.homepage-page .homepage-introduction {
  padding-top:54px;
  padding-bottom:54px;
  margin-bottom:0;
}
.homepage-page .context-deep {
  padding-top:56px;
  padding-bottom:58px;
}
.homepage-page .services-section {
  padding-top:58px;
  padding-bottom:60px;
}
.homepage-page .workload-section {
  padding-top:58px;
  padding-bottom:60px;
}
.homepage-page .decision-section {
  padding-top:58px;
  padding-bottom:60px;
}
.homepage-page .feature-block {
  padding-top:58px;
  padding-bottom:58px;
}
.homepage-page .seo-cluster {
  padding-top:58px;
  padding-bottom:58px;
}
.homepage-page .operations-section {
  padding-top:58px;
  padding-bottom:60px;
}
.homepage-page .geography-section {
  padding-top:58px;
  padding-bottom:60px;
}
.homepage-page .guide-map-section {
  padding-top:58px;
  padding-bottom:62px;
}
.homepage-page .faq-teaser {
  padding-top:56px;
  padding-bottom:58px;
}
.homepage-page .homepage-responsibility {
  padding-top:58px;
  padding-bottom:58px;
}
.homepage-page .final-home-cta {
  padding-top:54px;
  padding-bottom:68px;
}
.homepage-page .section-heading,
.homepage-page .head {
  margin-bottom:24px;
}
.homepage-page .homepage-intro-grid,
.homepage-page .homepage-longform-grid {
  gap:42px;
}
.homepage-page .context-deep-grid.five-layer-grid,
.homepage-page .workload-grid,
.homepage-page .decision-grid,
.homepage-page .guide-map-grid,
.homepage-page .responsibility-grid,
.homepage-page .mini-grid {
  gap:14px;
}
.homepage-page .context-panel,
.homepage-page .workload-card,
.homepage-page .decision-card,
.homepage-page .guide-map-card,
.homepage-page .responsibility-column,
.homepage-page .info-card {
  padding:20px;
}
.homepage-page .workload-card {
  min-height:0;
}
.homepage-page .context-panel-icon,
.homepage-page .workload-card img,
.homepage-page .info-card img {
  margin-bottom:14px;
}
.homepage-page .context-note,
.homepage-page .service-note,
.homepage-page .responsibility-note {
  margin-top:16px;
}
.homepage-page .guide-map-card {
  grid-template-columns:82px 1fr;
  gap:16px;
}
.homepage-page .guide-map-card > img {
  width:82px;
  height:82px;
  padding:10px;
}
.homepage-page .operations-points {
  gap:10px;
}
.homepage-page .operations-points article {
  padding:17px;
}
.homepage-page .final-home-panel {
  padding:28px;
  gap:30px;
}
.homepage-page .final-home-panel .actions {
  gap:10px;
}
.homepage-page .image-band {
  gap:42px;
}
.homepage-page .image-band img {
  min-height:250px;
}
.homepage-page .mini-card {
  padding:14px;
}
.homepage-page .mini-card img {
  height:120px;
}
@media (max-width:980px) {
  .homepage-page .homepage-intro-grid,
  .homepage-page .homepage-longform-grid {
    gap:28px;
  }
}
@media (max-width:760px) {
  .homepage-page .mega-hero {
    padding-top:56px;
    padding-bottom:44px;
  }
  .homepage-page .homepage-introduction,
  .homepage-page .context-deep,
  .homepage-page .services-section,
  .homepage-page .workload-section,
  .homepage-page .decision-section,
  .homepage-page .feature-block,
  .homepage-page .seo-cluster,
  .homepage-page .operations-section,
  .homepage-page .geography-section,
  .homepage-page .guide-map-section,
  .homepage-page .faq-teaser,
  .homepage-page .homepage-responsibility {
    padding-top:44px;
    padding-bottom:48px;
  }
  .homepage-page .final-home-cta {
    padding-top:44px;
    padding-bottom:54px;
  }
  .homepage-page .section-heading,
  .homepage-page .head {
    margin-bottom:20px;
  }
  .homepage-page .context-panel,
  .homepage-page .workload-card,
  .homepage-page .decision-card,
  .homepage-page .guide-map-card,
  .homepage-page .responsibility-column,
  .homepage-page .info-card {
    padding:18px;
  }
  .homepage-page .image-band img {
    min-height:0;
  }
  .homepage-page .guide-map-card {
    grid-template-columns:72px 1fr;
  }
  .homepage-page .guide-map-card > img {
    width:72px;
    height:72px;
  }
  .homepage-page .final-home-panel {
    padding:22px;
    gap:20px;
  }
}


/* v21: support links in primary navigation */
.navlinks > .nav-link {
  flex:0 0 auto;
}
@media (min-width:821px) and (max-width:1100px) {
  .nav {
    gap:10px;
  }
  .brand-logo {
    width:150px;
  }
  .navlinks {
    gap:2px;
  }
  .nav-link,
  .nav-trigger {
    padding:9px 7px;
    gap:5px;
    font-size:13px;
  }
  .nav-link > svg,
  .nav-trigger > svg {
    width:29px;
    height:29px;
    min-width:29px;
    flex-basis:29px;
    padding:6px;
  }
  .nav-cta {
    padding-inline:11px;
    white-space:nowrap;
  }
}
@media (max-width:820px) {
  .navlinks {
    max-height:calc(100vh - 86px);
    overflow-y:auto;
  }
  .navlinks > .nav-link {
    width:100%;
  }
}

/* v22 navigation refinement: text-first, smooth, clean, and consistent */
:root {
  scroll-padding-top: 92px;
}

html {
  scroll-behavior: smooth;
}

.navlinks {
  align-items: center;
  gap: 3px;
}

.nav-link,
.nav-trigger {
  position: relative;
  min-height: 42px;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 11px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.nav-link::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  opacity: .85;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-trigger .chevron {
  transition:
    transform 200ms cubic-bezier(.2,.8,.2,1),
    margin-top 200ms ease;
}

.dropdown {
  transition:
    opacity 220ms cubic-bezier(.2,.8,.2,1),
    transform 220ms cubic-bezier(.2,.8,.2,1),
    visibility 220ms ease;
}

.dropdown a {
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  transform: translateX(2px);
}

@media (max-width: 1040px) {
  .nav-link,
  .nav-trigger {
    min-height: 40px;
    padding: 9px 9px;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  :root {
    scroll-padding-top: 78px;
  }

  .navlinks {
    gap: 3px;
  }

  .nav-link,
  .nav-trigger {
    min-height: 50px;
    padding: 12px 13px;
  }

  .nav-link::after,
  .nav-trigger::after {
    left: 13px;
    right: 13px;
    bottom: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav-link,
  .nav-trigger,
  .nav-link::after,
  .nav-trigger::after,
  .nav-trigger .chevron,
  .dropdown,
  .dropdown a {
    transition: none !important;
  }
}


/* v23: compact dropdown groups — remove excess vertical space while keeping the menu readable. */
.nav-group {
  line-height: 1;
}

.nav-group > .dropdown {
  width: 348px;
  padding: 6px;
  top: calc(100% + 7px);
  border-radius: 14px;
}

.nav-group > .dropdown .dropdown-heading {
  padding: 6px 9px 7px;
  line-height: 1.2;
  margin: 0;
}

.nav-group > .dropdown .dropdown-divider {
  margin: 4px 8px;
}

.nav-group > .dropdown a {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  min-height: 0;
  padding: 8px 8px;
  border-radius: 9px;
}

.nav-group > .dropdown a > svg {
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 6px;
  border-radius: 8px;
}

.nav-group > .dropdown b {
  font-size: 12.5px;
  line-height: 1.2;
}

.nav-group > .dropdown small {
  margin-top: 2px;
  font-size: 10.5px;
  line-height: 1.2;
}

.nav-group > .dropdown a:hover,
.nav-group > .dropdown a:focus-visible {
  transform: none;
}

@media (max-width: 820px) {
  .nav-group > .dropdown {
    width: auto;
    padding: 4px;
    top: auto;
    margin: 1px 0 3px;
    border-radius: 11px;
  }

  .nav-group > .dropdown .dropdown-heading {
    padding: 5px 8px 6px;
  }

  .nav-group > .dropdown .dropdown-divider {
    margin: 3px 7px;
  }

  .nav-group > .dropdown a {
    min-height: 0;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 8px;
    border-radius: 8px;
  }

  .nav-group > .dropdown a > svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    padding: 6px;
  }
}
