:root{
  --bg0:#05030a;
  --bg1:#060416;
  --bg2:#090821;
  --bg3:#0f0c2d;
  --text:#f5f5fb;
  --muted:rgba(242,243,255,.7);
  --muted2:rgba(242,243,255,.5);
  --line:rgba(255,255,255,.18);
  --card:rgba(255,255,255,.05);
  --card2:rgba(255,255,255,.08);
  --shadow:0 25px 80px rgba(0,0,0,.45);
  --accent:#a855f7;
  --accent2:#22d3ee;
  --accent3:#f97316;
  --radius:20px;
  --sans: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max:1200px;
}
@font-face{
  font-family:"Inter";
  src:url("../fonts/Inter-roman.var.woff2") format("woff2-variations");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background-color:var(--bg0);
  line-height:1.6;
  min-height:100vh;
  background-image:
    radial-gradient(900px 520px at 18% 8%, rgba(168,85,247,.25) 0%, transparent 65%),
    radial-gradient(900px 520px at 80% 12%, rgba(34,211,238,.2) 0%, transparent 70%),
    radial-gradient(1200px 620px at 50% 110%, rgba(68,34,255,.18) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 38%, var(--bg2) 65%, var(--bg0) 100%);
  background-attachment:fixed;
}
.noscript-banner{
  background:linear-gradient(120deg,var(--accent3),var(--accent));
  color:#12091f;
  text-align:center;
  padding:12px 18px;
  font-weight:600;
  letter-spacing:.2px;
}
.diag-noscript{
  margin-top:16px;
  padding:16px;
  border-radius:var(--radius);
  border:1px dashed rgba(255,255,255,.3);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:0.95rem;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  opacity:.05;
}
a{color:inherit;text-decoration:none;}
a:hover{text-decoration:underline;}
a:focus-visible,
.btn:focus-visible,
.nav a:focus-visible{
  outline:2px solid var(--accent2);
  outline-offset:3px;
}
img{max-width:100%;border-radius:16px;display:block;}
picture.media-frame{display:block;width:100%;border-radius:16px;overflow:hidden;}
picture.media-frame img{border-radius:0;width:100%;height:auto;object-fit:cover;display:block;}
.wrap{max-width:var(--max);margin:0 auto;padding:0 24px;}
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(14px);
  background:rgba(5,3,12,.7);
  border-bottom:1px solid var(--line);
}
.topbar .wrap{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:16px 24px;
}
.brand{
  display:flex;align-items:center;gap:14px;
  font-weight:700;
  letter-spacing:.3px;
}
.brand-name{
  color:#d7d9e8;
  font-weight:650;
  letter-spacing:.4px;
}
.brand .dot{
  width:12px;height:12px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 0 0 5px rgba(168,85,247,.2);
}
.brand-logo{
  height:40px;
  width:auto;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.25);
  padding:4px 12px;
  background:rgba(255,255,255,.04);
  filter: invert(1) hue-rotate(180deg) saturate(110%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 18%, rgba(0,0,0,.95) 82%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 18%, rgba(0,0,0,.95) 82%, rgba(0,0,0,0) 100%);
}
.nav{
  display:flex;gap:10px;flex-wrap:wrap;
  font-size:14px;color:var(--muted);
}
.nav a{
  padding:8px 14px;border-radius:999px;border:1px solid transparent;
}
.nav a:hover{border-color:var(--line);background:rgba(255,255,255,.05);text-decoration:none;}
.nav .active{border-color:rgba(168,85,247,.45);background:rgba(168,85,247,.14);color:var(--text);font-weight:600;}
.nav-cta{
  display:flex;align-items:center;gap:12px;
}
.hero > .nav-cta{justify-content:center;}
.nav-cta a.btn{padding:8px 18px;font-size:14px;}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 26px;border-radius:999px;
  background:linear-gradient(120deg,var(--accent),var(--accent2));
  color:#12091f;font-weight:600;border:none;box-shadow:0 18px 35px rgba(168,85,247,.35);
}
.btn:hover{opacity:.9;text-decoration:none;}
.btn-ghost{
  border:1px solid rgba(255,255,255,.3);
  background:transparent;
  color:var(--text);
  box-shadow:none;
}
main{padding:40px 0 90px;}
.section{padding:48px 0;border-bottom:1px solid rgba(255,255,255,.08);}
.section:last-of-type{border-bottom:none;}
section[id]{scroll-margin-top:96px;}
.section-title{
  font-size:32px;font-weight:700;margin-bottom:12px;
}
.solution-title{
  font-size:48px;
  letter-spacing:.6px;
  margin-bottom:18px;
}
.section-subtitle{
  color:var(--muted);max-width:720px;margin-bottom:36px;font-size:18px;
}
.hero{
  padding:60px 0 30px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:20px;
}
.hero-grid--mono{
  grid-template-columns:1fr;
}
.hero-card{
  padding-top:150px;
}
.hero-card-icon{
  position:absolute;
  top:26px;
  right:26px;
  width:120px;
  height:120px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(5,3,10,.7);
  box-shadow:0 25px 80px rgba(5,3,10,.55);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(6px);
}
.hero-card-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
@media(max-width:980px){
  .topbar .wrap{flex-direction:column;align-items:flex-start;}
  .nav{width:100%;justify-content:flex-start;}
  .nav-cta{width:100%;justify-content:flex-start;}
  .hero-grid{grid-template-columns:1fr;}
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
  padding:26px;
  position:relative;
}
.card::after{
  content:"";position:absolute;inset:0;border-radius:inherit;border:1px solid rgba(255,255,255,.06);pointer-events:none;
}
.card-highlight{
  background:
    radial-gradient(circle at 15% 10%, rgba(168,85,247,.3), transparent 60%),
    radial-gradient(circle at 85% 20%, rgba(34,211,238,.2), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
.hero-kicker{font-size:13px;font-weight:650;text-transform:uppercase;color:var(--muted);letter-spacing:.4px;display:flex;align-items:center;gap:10px;margin-bottom:18px;}
.hero-title{font-size:52px;margin:0 0 20px;line-height:1.05;}
.hero-subhead{font-size:18px;font-weight:600;color:var(--text);margin:0 0 12px;letter-spacing:.2px;text-transform:uppercase;}
.hero-text{font-size:20px;color:var(--muted);margin-bottom:32px;max-width:100%;}
.key-facts{list-style:none;padding:0;margin:0 0 24px;display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:10px;color:var(--muted);font-size:0.95rem;}
.key-facts li{padding:10px 12px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(255,255,255,.02);}
.key-facts strong{display:block;color:var(--text);font-size:0.85rem;text-transform:uppercase;letter-spacing:.25px;margin-bottom:4px;}
.hero-feature{border:1px solid var(--line);border-radius:var(--radius);background:var(--card);box-shadow:var(--shadow);padding:18px;display:flex;flex-direction:column;gap:12px;}
.policy-hero{padding:80px 0 40px;}
.policy-meta{display:flex;flex-wrap:wrap;gap:12px;color:var(--muted);font-size:0.95rem;margin-bottom:18px;}
.policy-meta span{padding:6px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.03);}
.policy-card{border:1px solid var(--line);border-radius:var(--radius);background:var(--card);box-shadow:var(--shadow);padding:26px;}
.policy-sections{display:flex;flex-direction:column;gap:18px;margin-top:32px;}
.policy-detail{border:1px solid rgba(255,255,255,.18);border-radius:18px;background:rgba(255,255,255,.02);overflow:hidden;}
.policy-detail summary{cursor:pointer;padding:18px 24px;font-weight:600;letter-spacing:.2px;display:flex;align-items:center;justify-content:space-between;list-style:none;}
.policy-detail summary::-webkit-details-marker{display:none;}
.policy-detail summary::marker{display:none;}
.policy-detail summary svg{width:16px;height:16px;fill:currentColor;transition:transform .2s ease;}
.policy-detail[open] summary svg{transform:rotate(180deg);}
.policy-detail__body{padding:0 24px 20px;color:var(--muted);font-size:1rem;line-height:1.6;}
.policy-detail__body p{margin:0 0 12px;}
.policy-detail__body ul{padding-left:20px;margin:0 0 12px;}
.feature-meta{display:flex;align-items:center;justify-content:space-between;}
.feature-tag{font-size:12px;text-transform:uppercase;letter-spacing:.3px;color:var(--muted);border:1px solid rgba(255,255,255,.25);padding:4px 10px;border-radius:999px;}
.feature-title{font-size:20px;font-weight:700;color:var(--text);}
.feature-shot{border-radius:16px;border:1px solid rgba(255,255,255,.12);box-shadow:0 15px 40px rgba(0,0,0,.35);width:100%;height:260px;object-fit:cover;object-position:center 20%;}
.feature-caption{font-size:14px;color:var(--muted2);}
.proof-line{
  display:flex;
  flex-wrap:wrap;
  gap:12px 24px;
  font-size:15px;
  color:var(--muted);
  margin-top:26px;
}
.proof-line strong{color:var(--text);font-weight:650;}
.mini-services{
  background:rgba(255,255,255,.02);
}
.mini-services .card{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.mini-services p{margin:0;color:var(--muted);}
.lang-switch{
  display:flex;
  gap:8px;
  font-size:14px;
  color:var(--muted2);
}
.lang-switch a{padding:6px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.2);}
.lang-switch .active{background:rgba(168,85,247,.16);color:var(--text);border-color:rgba(168,85,247,.4);}
.metrics{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px;margin-top:34px;}
.metric-card{padding:14px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);display:flex;flex-direction:column;min-height:100px;}
.metric-title{font-size:18px;font-weight:650;margin:0 0 6px;line-height:1.15;}
.metric-sub{margin-top:auto;font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted2);line-height:1.25;}
.common-issues ul{list-style:none;margin:0;padding:0;}
.common-issues li{position:relative;padding-left:1.25rem;margin:0 0 .75rem 0;line-height:1.5;}
.common-issues li::before{content:"";position:absolute;left:0;top:.55em;width:6px;height:6px;border-radius:999px;background:linear-gradient(120deg,var(--accent),var(--accent2));}
.common-issues .help-block{margin-top:1.1rem;padding-top:1.1rem;border-top:1px solid rgba(255,255,255,.12);}
.common-issues .help-block .hero-subhead{margin-bottom:6px;}
.common-issues .help-block .section-subtitle{margin:0;line-height:1.6;}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}
.apps-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:26px;
}
.services-panel{
  position:relative;
  padding:32px 28px 32px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background:linear-gradient(140deg,rgba(255,255,255,.04),rgba(0,0,0,.25));
  box-shadow:0 25px 60px rgba(0,0,0,.45);
  display:flex;
  flex-direction:column;
  gap:18px;
}
.services-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.services-heading-text{
  flex:1;
  min-width:0;
}
.services-panel-icon{
  width:110px;
  height:110px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(5,3,10,.72);
  box-shadow:0 25px 70px rgba(5,3,10,.5);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(6px);
  flex-shrink:0;
  align-self:flex-start;
}
.services-panel-icon img{width:100%;height:100%;object-fit:cover;display:block;}
.services-panel > .pill{align-self:flex-start;display:inline-flex;}
.services-subhead{
  font-size:18px;
  font-weight:600;
  color:rgba(255,255,255,.9);
  margin:6px 0 8px;
}
.services-body{
  font-size:16px;
  color:var(--muted);
  margin:0 0 18px;
}
.services-body-subline{
  display:block;
  margin-top:6px;
  color:rgba(242,243,255,.85);
  font-size:15px;
  letter-spacing:.01em;
}
.pill{display:inline-flex;align-items:center;gap:8px;padding:6px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.18);font-size:13px;color:var(--muted);}
.section .pill{margin-bottom:12px;}
.badge{padding:4px 10px;border-radius:999px;font-size:12px;font-weight:600;background:rgba(168,85,247,.18);}
.app-card{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.app-card__body{
  display:flex;
  flex-direction:column;
  gap:14px;
  color:inherit;
  text-decoration:none;
}
.app-card__body:hover h3{text-decoration:underline;}
.app-card .list{gap:6px;font-size:14px;line-height:1.45;}
.app-card h3{margin:4px 0 4px;font-size:24px;}
.app-card p{color:var(--muted);margin:0 0 16px;font-size:15px;}
.app-shot{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  position:relative;
  min-height:200px;
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}
.app-shot::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.08);
  pointer-events:none;
}
.app-shot picture.media-frame{width:100%;height:220px;}
.app-shot picture.media-frame img{height:100%;}
.app-shot--top picture.media-frame{height:260px;}
.app-shot--topleft picture.media-frame{height:260px;}
.app-shot--top picture.media-frame img{object-position:center top;}
.app-shot--topleft picture.media-frame img{object-position:left top;}
.app-actions{margin-top:auto;display:flex;justify-content:flex-end;}
.play-badge img{width:140px;height:auto;display:block;filter:drop-shadow(0 6px 20px rgba(0,0,0,.35));}
.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;}
.features.causes-grid{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));}
.features.fill-parent{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;width:100%;}
.features.fill-parent .feature{min-height:100%;display:flex;flex-direction:column;justify-content:flex-start;height:100%;}
@media(max-width:980px){
  .features.fill-parent{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:580px){
  .features.fill-parent{grid-template-columns:1fr;}
}
.issues-grid{gap:20px;}
.feature{padding:18px;border-radius:16px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.03);transition:border-color .25s ease, box-shadow .25s ease, transform .2s ease;}
.feature.issue{cursor:pointer;}
.feature.issue.is-active{border-color:rgba(168,85,247,.55);box-shadow:0 15px 35px rgba(168,85,247,.25);background:rgba(168,85,247,.08);transform:translateY(-2px);}
.feature h4.card-title{display:flex;align-items:center;gap:10px;}
.feature h4.card-title svg.ico{width:22px;height:22px;opacity:.95;flex-shrink:0;color:var(--accent2);filter:drop-shadow(0 0 6px rgba(34,211,238,.35));}
.feature .meta{margin-top:12px;font-size:13px;color:var(--muted2);display:flex;flex-wrap:wrap;gap:8px;align-items:center;}
.feature .meta .meta-label{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted2);margin-right:4px;}
.feature .meta a{color:var(--text);font-weight:600;}
.cause-tile{display:block;height:100%;text-decoration:none;}
.cause-tile:hover{border-color:rgba(255,255,255,.4);text-decoration:none;}
.cause-tile.is-highlighted{border-color:var(--accent2);box-shadow:0 18px 40px rgba(34,211,238,.25);background:rgba(34,211,238,.08);}
.cta-row{margin-top:32px;display:flex;flex-wrap:wrap;gap:12px;align-items:center;}
.cta-row .btn{justify-content:center;min-width:180px;}

.diag-layout{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);gap:30px;align-items:start;}
.diag-right{position:sticky;top:110px;display:flex;flex-direction:column;gap:10px;max-height:calc(100vh - 140px);overflow:auto;}
.diag-panel-subtitle{margin:0;color:var(--muted2);font-size:15px;}
.diagnosis-header{position:relative;}
.diagnosis-header::after{content:"";display:block;height:26px;margin-top:10px;opacity:.65;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='60'%3E%3Cpath d='M0 30 C40 10, 80 50, 120 30 S200 10, 240 30 S320 50, 360 30 S440 10, 480 30 S560 50, 640 30' stroke='rgba(120,220,255,0.5)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:100% 100%;}
.diag-causes{display:flex;flex-wrap:wrap;gap:10px;margin-top:4px;}
.cause-pill{display:inline-flex;align-items:center;gap:8px;padding:6px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.18);font-size:13px;color:var(--text);text-decoration:none;background:rgba(255,255,255,.04);}
.cause-pill svg{width:16px;height:16px;opacity:.85;flex-shrink:0;color:var(--accent2);}
.cause-pill:hover{text-decoration:none;border-color:rgba(255,255,255,.35);}
.diag-chain{display:flex;flex-direction:column;gap:14px;}
.diag-chain-card{padding:18px;border-radius:16px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);}
.diag-chain-head{font-size:13px;letter-spacing:.05em;font-weight:700;color:var(--muted2);margin-bottom:10px;text-transform:uppercase;display:flex;align-items:center;gap:8px;}
.diag-chain-head svg{width:16px;height:16px;opacity:.85;color:var(--accent2);}
.diag-chain-body{color:var(--muted);font-size:15px;}
.diag-chain-body ul{margin:0;padding:0;}
.diag-empty{color:var(--muted2);margin:12px 0 0;font-size:14px;}
.cause-templates{display:none;}

@media(max-width:1024px){
  .diag-layout{gap:24px;grid-template-columns:1fr 0.95fr;}
}

@media(max-width:900px){
  .diag-layout{grid-template-columns:1fr;}
  .diag-right{position:static;max-height:none;overflow:visible;margin-top:20px;}
}
.feature h4{margin:8px 0;font-size:18px;}
.feature p{margin:0;color:var(--muted2);font-size:14px;}
.list{display:flex;flex-direction:column;gap:10px;color:var(--muted);font-size:15px;}
.list li{list-style:none;position:relative;padding-left:22px;}
.list li::before{content:"";position:absolute;left:0;top:10px;width:10px;height:10px;border-radius:50%;background:linear-gradient(120deg,var(--accent),var(--accent2));}
.faq{display:grid;gap:16px;}
.faq-item{border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:18px;background:rgba(255,255,255,.03);} 
.faq-item h4{margin:0 0 10px;}
 .cta-panel{padding:32px 28px 38px;border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);background:linear-gradient(125deg,rgba(168,85,247,.24),rgba(34,211,238,.16));box-shadow:var(--shadow);max-width:720px;margin:0 auto;text-align:left;position:relative;overflow:hidden;}
.cta-panel-icon{position:absolute;top:24px;right:24px;width:60px;height:60px;border-radius:18px;border:1px solid rgba(255,255,255,.18);background:rgba(5,3,10,.65);box-shadow:0 20px 45px rgba(5,3,10,.45);overflow:hidden;display:flex;align-items:center;justify-content:center;backdrop-filter:blur(5px);opacity:.97;}
.cta-panel-icon img{width:100%;height:100%;object-fit:cover;display:block;}
.to-top{
  position:fixed;
  bottom:32px;
  right:28px;
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(5,3,12,.82);
  box-shadow:0 20px 40px rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  opacity:0;
  transform:translateY(12px);
  transition:opacity .2s ease, transform .2s ease;
  z-index:60;
}
.to-top svg{width:18px;height:18px;fill:currentColor;}
.to-top:hover{text-decoration:none;opacity:1;}
.to-top:focus-visible{outline:2px solid var(--accent2);outline-offset:4px;}
.to-top.is-visible{opacity:.95;transform:translateY(0);}
.split{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;align-items:start;}
.equal-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;}
.step-card{border:1px solid rgba(255,255,255,.14);border-radius:18px;padding:20px;background:rgba(255,255,255,.03);box-shadow:0 15px 35px rgba(0,0,0,.25);}
.step-card h4{margin:0 0 8px;font-size:18px;}
.design-note{background:rgba(255,255,255,.02);}
.design-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:48px;align-items:start;}
.design-note__lead{max-width:60ch;color:var(--muted);line-height:1.6;}
.principles-line{margin-top:18px;display:grid;gap:12px;line-height:1.55;}
.principles-line div{position:relative;padding-left:18px;}
.principles-line div::before{content:"";position:absolute;left:0;top:10px;width:8px;height:8px;border-radius:50%;background:linear-gradient(120deg,var(--accent),var(--accent2));}
.principles-line strong{font-weight:600;}
.design-note__shot{margin:0;align-self:start;border-radius:22px;overflow:hidden;box-shadow:0 20px 55px rgba(0,0,0,.35);}
.design-note__shot picture.media-frame{height:260px;}
.design-note__shot picture.media-frame img{height:100%;object-position:center 20%;}
.design-note__caption{margin-top:10px;font-size:0.95rem;color:var(--muted2);}
.table{width:100%;border-spacing:0;border-collapse:collapse;font-size:15px;}
.table tr{border-bottom:1px solid rgba(255,255,255,.12);} 
.table td{padding:12px 0;color:var(--muted);} 
.icon-circle{width:38px;height:38px;border-radius:14px;border:1px solid rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.04);}
.footer{padding:60px 0;color:var(--muted2);font-size:14px;text-align:center;}
.footer a{color:var(--text);}
.footer-top{display:flex;flex-wrap:wrap;gap:12px 18px;justify-content:center;align-items:center;margin-bottom:8px;}
.footer-links{display:flex;gap:12px;flex-wrap:wrap;}
.footer-links a{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.05);
  transition:transform .2s ease, border-color .2s ease;
}
.footer-links a:hover{transform:translateY(-2px);border-color:rgba(168,85,247,.6);}
.footer-links svg{width:16px;height:16px;fill:var(--text);opacity:.9;}
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px;}
blockquote{margin:0;padding:20px;border-left:3px solid rgba(255,255,255,.24);background:rgba(255,255,255,.04);border-radius:16px;border:1px solid rgba(255,255,255,.12);}
@media(max-width:600px){
  .topbar .wrap{padding:14px 18px;}
  .hero-title{font-size:38px;}
  .hero-text{font-size:18px;}
  .section{padding:44px 0;}
  .card{padding:20px;}
  .hero-card{padding-top:130px;}
  .hero-card-icon{width:86px;height:86px;top:20px;right:20px;}
  .services-heading{flex-direction:column;gap:18px;align-items:flex-start;}
  .services-panel-icon{width:90px;height:90px;}
  .to-top{bottom:18px;right:18px;width:42px;height:42px;border-radius:14px;}
}
@media(max-width:900px){
  body{background-attachment:scroll;}
}
@media(prefers-reduced-motion:reduce){
  *{transition:none !important;animation:none !important;}
  html{scroll-behavior:auto;}
}
.cta-note{text-align:center;margin-top:12px;font-size:14px;color:var(--muted2);}
.feature .meta .meta-label{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted2);margin-right:4px;}
.muted{opacity:.75;}
