/* =============================================================
   Digital Solution Bangladesh — Design System
   Author: DSB
   Contents
   01. Tokens
   02. Reset & base
   03. Layout primitives
   04. Components (buttons, pills, cards, chips, icons)
   05. Header / navigation / drawer
   06. Hero
   07. Trust marquee
   08. Services
   09. Process
   10. Projects
   11. Technologies (dark)
   12. About
   13. FAQ
   14. CTA band
   15. Contact & form
   16. Footer & back-to-top
   17. Motion / reveal / reduced-motion
   ============================================================= */

/* ---------- 01. Tokens ------------------------------------- */
:root {
  /* brand — sampled from the company logo */
  --brand-1: #655ac1;
  --brand-2: #9336b4;
  --brand: #6d5cd1;
  --brand-600: #5d4dc0;
  --brand-700: #4c3fa3;
  --brand-soft: #f1eefc;
  --brand-soft-2: #efe4f7;
  --accent: #b44bd6;
  --grad: linear-gradient(120deg, var(--brand-1) 0%, var(--brand-2) 100%);
  --grad-text: linear-gradient(100deg, #a89bff 0%, #e07bf5 100%);

  /* neutrals */
  --ink-900: #14112a;
  --ink-800: #241f45;
  --ink-700: #443e66;
  --ink-500: #6b6688;
  --ink-400: #8f8aa8;
  --line: #e9e6f2;
  --line-strong: #d9d5e8;
  --surface: #ffffff;
  --surface-alt: #f7f6fc;
  --night: #0b0820;
  --night-2: #130d33;
  --night-3: #1b1247;

  /* shape */
  --r-xs: 8px;
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* elevation */
  --sh-1: 0 1px 2px rgba(20, 17, 42, .05), 0 1px 3px rgba(20, 17, 42, .04);
  --sh-2: 0 4px 12px rgba(20, 17, 42, .06), 0 2px 4px rgba(20, 17, 42, .04);
  --sh-3: 0 18px 40px -18px rgba(20, 17, 42, .22), 0 6px 16px -8px rgba(20, 17, 42, .12);
  --sh-4: 0 34px 70px -28px rgba(20, 17, 42, .32), 0 10px 24px -12px rgba(20, 17, 42, .16);
  --sh-brand: 0 14px 30px -12px rgba(109, 92, 209, .55);

  /* type */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* metrics */
  --shell: 1200px;
  --gutter: clamp(1rem, 3.5vw, 2rem);
  --topbar-h: 40px;
  --header-h: 68px;
  --section-y: clamp(4.5rem, 8vw, 7.5rem);

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

@media (min-width: 1024px) {
  :root { --header-h: 80px; }
}

/* ---------- 02. Reset & base ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-500);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.18;
  letter-spacing: -.02em;
  text-wrap: balance;
  font-weight: 800;
}

p { text-wrap: pretty; }

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }

ul, ol { list-style: none; padding: 0; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ico {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .7rem 1.1rem;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border-radius: var(--r-xs);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- 03. Layout primitives -------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 820px; }

.section {
  position: relative;
  padding-block: var(--section-y);
  background: var(--surface);
}
.section--alt { background: var(--surface-alt); }

.section--dark {
  background: var(--night);
  color: rgba(255, 255, 255, .58);
  overflow: hidden;
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .section__lede { color: rgba(255, 255, 255, .55); }

.section__head {
  max-width: 700px;
  margin: 0 auto clamp(2.75rem, 5vw, 4rem);
  text-align: center;
}
.section__title {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  margin: 1rem 0 .9rem;
}
.section__lede {
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
  color: var(--ink-500);
}

.dark-orbs { position: absolute; inset: 0; pointer-events: none; }
.dark-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.dark-orbs span:nth-child(1) {
  top: -10%; left: 15%;
  width: min(420px, 60vw); aspect-ratio: 1;
  background: rgba(101, 90, 193, .3);
}
.dark-orbs span:nth-child(2) {
  bottom: -15%; right: 10%;
  width: min(380px, 55vw); aspect-ratio: 1;
  background: rgba(147, 54, 180, .26);
}

/* ---------- 04. Components --------------------------------- */

/* Pills / eyebrows */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--brand-700);
  background: var(--brand-soft);
  border: 1px solid rgba(109, 92, 209, .14);
  border-radius: var(--r-pill);
}
.pill--onDark {
  color: #cdc2ff;
  background: rgba(129, 112, 235, .12);
  border-color: rgba(160, 145, 255, .22);
}
.pill--glow {
  color: #d7cdff;
  background: rgba(129, 112, 235, .14);
  border-color: rgba(178, 165, 255, .26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #b9a8ff;
  box-shadow: 0 0 0 0 rgba(185, 168, 255, .7);
  animation: ping 2.2s var(--ease) infinite;
}
@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(185, 168, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 168, 255, 0); }
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.grad-text::after {
  content: "";
  position: absolute;
  /* The heading's tight line-height pulls the box bottom above the glyph
     descenders, so the rule needs extra clearance to miss the g/y tails. */
  left: 0; right: 0; bottom: -.19em;
  height: .05em;
  min-height: 3px;
  border-radius: var(--r-pill);
  background: var(--grad-text);
  opacity: .85;
}

/* Buttons */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.4rem;
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), border-color .22s var(--ease), opacity .2s;
}
.btn .ico { transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn--sm { padding: .6rem 1.05rem; font-size: .875rem; }
.btn--lg { padding: .95rem 1.7rem; font-size: 1rem; border-radius: var(--r); }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--brand);
  box-shadow: var(--sh-brand);
}
.btn--primary:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(109, 92, 209, .6);
}
.btn--primary:disabled { opacity: .65; cursor: progress; transform: none; }

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-2px);
}

.btn--light { background: #fff; color: var(--brand-700); box-shadow: var(--sh-3); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--sh-4); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }

/* Icon tile */
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(109, 92, 209, .12);
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.card__icon .ico { width: 22px; height: 22px; }
.card__icon--sm { width: 38px; height: 38px; border-radius: 11px; }
.card__icon--sm .ico { width: 17px; height: 17px; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chips li {
  padding: .35rem .7rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-700);
  background: #f2f0f9;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
}
.chips--onDark li {
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

/* Tags on media */
.tag {
  position: absolute;
  top: .85rem; right: .85rem;
  padding: .3rem .7rem;
  font-size: .75rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tag--blue    { background: #dbeafe; color: #1d4ed8; }
.tag--violet  { background: #ede9fe; color: #6d28d9; }
.tag--emerald { background: #d1fae5; color: #047857; }
.tag--amber   { background: #fef3c7; color: #b45309; }
.tag--orange  { background: #ffedd5; color: #c2410c; }

/* Tick list */
.ticks { display: grid; gap: .7rem; }
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9375rem;
  color: var(--ink-700);
}
.ticks .ico { width: 18px; height: 18px; color: var(--brand); margin-top: .18rem; }
@media (min-width: 600px) { .ticks { grid-template-columns: 1fr 1fr; } }

/* Card grids */
.cards { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
@media (min-width: 620px)  { .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              border-color .35s var(--ease-out);
}

/* ---------- 05. Header / nav ------------------------------- */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 101;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .62);
  background: #07051a;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}
.topbar__note { display: flex; align-items: center; gap: .45rem; }
.topbar__links { display: flex; align-items: center; gap: 1.5rem; }
.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s var(--ease);
}
.topbar__links a:hover { color: #fff; }
.topbar .ico { width: 14px; height: 14px; color: var(--accent); }
.topbar.is-hidden { transform: translateY(-100%); opacity: 0; }

.site-header {
  position: fixed;
  inset: var(--topbar-h) 0 auto;
  z-index: 100;
  transition: top .35s var(--ease), background-color .35s var(--ease),
              box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
}
.site-header.is-scrolled {
  top: 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px -12px rgba(20, 17, 42, .18);
}

.brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.brand__mark {
  width: auto;
  height: 34px;
  filter: drop-shadow(0 3px 8px rgba(109, 92, 209, .35));
  transition: transform .3s var(--ease);
}
.brand:hover .brand__mark { transform: scale(1.06) rotate(-3deg); }
.brand__text {
  display: none;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
  transition: color .35s var(--ease);
}
.brand__text span { color: #b9a8ff; }
.is-scrolled .brand__text { color: var(--ink-900); }
.is-scrolled .brand__text span { color: var(--brand); }
@media (min-width: 480px) { .brand__text { display: block; } }
@media (min-width: 1024px) { .brand__mark { height: 42px; } .brand__text { font-size: .9375rem; } }

.nav { display: none; align-items: center; gap: .15rem; }
.nav__link {
  position: relative;
  padding: .55rem .85rem;
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  border-radius: var(--r-xs);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: .28rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0;
  transition: left .28s var(--ease), right .28s var(--ease), opacity .28s var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.nav__link.is-active::after { left: .85rem; right: .85rem; opacity: 1; }
.is-scrolled .nav__link { color: var(--ink-500); }
.is-scrolled .nav__link:hover { color: var(--ink-900); background: var(--surface-alt); }
.is-scrolled .nav__link.is-active { color: var(--brand); }

.site-header__cta { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .site-header__cta { display: block; }
}

.burger {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-xs);
  color: #fff;
  transition: background-color .2s var(--ease), color .35s var(--ease);
}
.burger:hover { background: rgba(255, 255, 255, .12); }
.is-scrolled .burger { color: var(--ink-800); }
.is-scrolled .burger:hover { background: var(--surface-alt); }
.burger .ico { width: 24px; height: 24px; }
.burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }
@media (min-width: 1024px) { .burger { display: none; } }

.scroll-progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  transition: width .1s linear;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  padding-top: calc(var(--header-h) + 8px);
  transform: translateY(-102%);
  transition: transform .4s var(--ease-out);
}
.drawer[hidden] { display: block; visibility: hidden; }
.drawer.is-open { transform: translateY(0); }
.drawer__panel {
  margin: 0 var(--gutter);
  padding: 1rem;
  display: grid;
  gap: .25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-4);
  max-height: calc(100dvh - var(--header-h) - 32px);
  overflow-y: auto;
}
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-800);
  border-radius: var(--r-sm);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.drawer__link .ico { width: 18px; height: 18px; color: var(--ink-400); transition: transform .25s var(--ease); }
.drawer__link:hover { background: var(--brand-soft); color: var(--brand-700); }
.drawer__link:hover .ico { transform: translateX(3px); color: var(--brand); }
.drawer__link.is-active { background: var(--brand-soft); color: var(--brand-700); }
.drawer .btn { margin-top: .6rem; }
.drawer__meta {
  display: grid;
  gap: .5rem;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--ink-500);
}
.drawer__meta a { display: flex; align-items: center; gap: .55rem; }
.drawer__meta .ico { color: var(--brand); }

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(11, 8, 32, .5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.drawer-scrim[hidden] { display: block; visibility: hidden; }
.drawer-scrim.is-open { opacity: 1; }

body.nav-open { overflow: hidden; }

/* ---------- 06. Hero --------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding-top: calc(var(--topbar-h) + var(--header-h) + 2.5rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 50% -10%, #2c1a72 0%, transparent 55%),
    linear-gradient(160deg, #0f0b2e 0%, #1a1050 48%, #2d1a6e 100%);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .7; z-index: -2; }
.hero__aurora { position: absolute; inset: 0; z-index: -3; pointer-events: none; }
.hero__aurora .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.orb--1 {
  top: -18%; right: -12%;
  width: min(640px, 85vw); aspect-ratio: 1;
  background: rgba(109, 92, 209, .3);
  animation: float-a 18s ease-in-out infinite;
}
.orb--2 {
  bottom: -22%; left: -14%;
  width: min(560px, 78vw); aspect-ratio: 1;
  background: rgba(147, 54, 180, .26);
  animation: float-b 22s ease-in-out infinite;
}
.orb--3 {
  top: 32%; left: 42%;
  width: min(400px, 60vw); aspect-ratio: 1;
  background: rgba(180, 75, 214, .16);
  animation: float-a 26s ease-in-out infinite reverse;
}
@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-4%, 6%, 0) scale(1.08); }
}
@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(6%, -5%, 0) scale(1.1); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 100%);
}

.hero__inner { text-align: center; }

.hero__title {
  font-size: clamp(2.35rem, 1.1rem + 5.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  color: #fff;
  margin: 1.6rem auto 0;
  max-width: 15ch;
}
.hero__lede {
  max-width: 60ch;
  margin: 1.6rem auto 0;
  font-size: clamp(1.02rem, .97rem + .35vw, 1.25rem);
  color: rgba(255, 255, 255, .62);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 2.4rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  max-width: 780px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: 1.15rem .75rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.stat:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(178, 165, 255, .3);
  transform: translateY(-3px);
}
.stat__value {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(100deg, #c4b8ff, #f0a8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  text-align: center;
}

.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  transition: color .25s var(--ease);
}
.hero__scroll:hover { color: rgba(255, 255, 255, .8); }
.hero__scroll .ico { width: 16px; height: 16px; animation: nudge 1.9s var(--ease) infinite; }
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---------- 07. Trust marquee ------------------------------ */
.trust {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust__label {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 1.6rem;
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  width: max-content;
  padding-inline: 2rem;
  animation: scroll-x 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-size: clamp(.95rem, .9rem + .3vw, 1.15rem);
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink-700);
  opacity: .68;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.marquee__track li:hover { opacity: 1; color: var(--brand-700); }
.marquee__track li .ico { width: 20px; height: 20px; color: var(--brand); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 08. Services ----------------------------------- */
.card--service {
  padding: 1.6rem 1.5rem 1.7rem;
  overflow: hidden;
}
.card--service::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, var(--tint-soft, var(--brand-soft)) 0%, transparent 62%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.card--service:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: var(--tint-line, rgba(109, 92, 209, .3));
}
.card--service:hover::before { opacity: 1; }
.card--service > * { position: relative; }
.card--service h3 {
  font-size: 1.0625rem;
  margin: 1.25rem 0 .55rem;
  line-height: 1.35;
}
.card--service p { font-size: .9125rem; color: var(--ink-500); }
.card--service .card__icon {
  color: var(--tint, var(--brand));
  background: var(--tint-soft, var(--brand-soft));
  border-color: var(--tint-line, rgba(109, 92, 209, .14));
}
.card--service:hover .card__icon {
  background: var(--tint, var(--brand));
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}

[data-tint="indigo"]  { --tint: #6d5cd1; --tint-soft: #f1eefc; --tint-line: rgba(109, 92, 209, .25); }
[data-tint="blue"]    { --tint: #2563eb; --tint-soft: #eff5ff; --tint-line: rgba(37, 99, 235, .22); }
[data-tint="cyan"]    { --tint: #0891b2; --tint-soft: #ecfeff; --tint-line: rgba(8, 145, 178, .22); }
[data-tint="emerald"] { --tint: #059669; --tint-soft: #ecfdf5; --tint-line: rgba(5, 150, 105, .22); }
[data-tint="amber"]   { --tint: #d97706; --tint-soft: #fffbeb; --tint-line: rgba(217, 119, 6, .22); }
[data-tint="orange"]  { --tint: #ea580c; --tint-soft: #fff7ed; --tint-line: rgba(234, 88, 12, .22); }
[data-tint="rose"]    { --tint: #e11d48; --tint-soft: #fff1f4; --tint-line: rgba(225, 29, 72, .22); }
[data-tint="fuchsia"] { --tint: #a21caf; --tint-soft: #fdf4ff; --tint-line: rgba(162, 28, 175, .22); }

/* ---------- 09. Process ------------------------------------ */
.steps {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  counter-reset: step;
}
@media (min-width: 620px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;
  padding: 2rem 1.5rem 1.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.step::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-3); border-color: rgba(109, 92, 209, .28); }
.step:hover::after { transform: scaleX(1); }
.step__num {
  position: absolute;
  top: .55rem; right: 1rem;
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--brand);
  opacity: .09;
}
.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 20px -10px rgba(109, 92, 209, .7);
}
.step__icon .ico { width: 20px; height: 20px; }
.step h3 { font-size: 1.0625rem; margin: 1.1rem 0 .5rem; }
.step p { font-size: .9125rem; }

/* ---------- 10. Projects ----------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: -1.25rem 0 2.5rem;
}
.filter {
  padding: .55rem 1.1rem;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-500);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: color .25s var(--ease), background-color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.filter:hover { color: var(--brand-700); border-color: var(--brand); }
.filter.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: var(--sh-brand);
}

.card--project { overflow: hidden; display: flex; flex-direction: column; }
.card--project:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: rgba(109, 92, 209, .28);
}
.card--project.is-hidden { display: none; }

.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-alt); }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.card--project:hover .card__media img { transform: scale(1.07); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 8, 32, .55), transparent 55%);
  pointer-events: none;
}

.card__body { display: flex; flex-direction: column; gap: .85rem; padding: 1.35rem 1.4rem 1.5rem; flex: 1; }
.card__lead { display: flex; align-items: flex-start; gap: .75rem; }
.card__lead h3 { font-size: 1rem; line-height: 1.35; margin-bottom: .15rem; }
.card__client { font-size: .8125rem; font-weight: 600; color: var(--brand); }
.card__desc { font-size: .9125rem; color: var(--ink-500); flex: 1; }
.card--project:hover .card__icon { background: var(--brand); color: #fff; }

.grid-empty {
  margin-top: 2rem;
  text-align: center;
  color: var(--ink-400);
  font-size: .9375rem;
}

/* ---------- 11. Technologies ------------------------------- */
.card--tech {
  padding: 1.6rem 1.5rem;
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: none;
}
.card--tech:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(160, 145, 255, .3);
}
.card--tech h3 {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #b9a8ff;
  margin-bottom: 1.1rem;
}
.card--tech:hover .chips--onDark li {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(178, 165, 255, .24);
  color: rgba(255, 255, 255, .92);
}

/* ---------- 12. About -------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }

.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-4);
}
.split__media::before {
  content: "";
  position: absolute;
  inset: -14px -14px 24px 24px;
  border-radius: var(--r-xl);
  background: var(--grad);
  opacity: .12;
  z-index: -1;
  filter: blur(2px);
}
.split__badge {
  position: absolute;
  right: -12px;
  bottom: -22px;
  display: grid;
  gap: .1rem;
  padding: 1rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-3);
}
.split__badge strong {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.split__badge span { font-size: .8125rem; font-weight: 500; color: var(--ink-500); }
@media (max-width: 899px) { .split__badge { right: 12px; bottom: -18px; } }

.split__body { display: grid; gap: 1.1rem; }
.split__body p { font-size: 1rem; color: var(--ink-500); }
.split__body .ticks { margin-top: .5rem; }

.duo { display: grid; gap: clamp(1rem, 2vw, 1.75rem); margin-bottom: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 760px) { .duo { grid-template-columns: 1fr 1fr; } }

.panel {
  padding: clamp(1.75rem, 3vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.panel:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.panel h3 { font-size: 1.3rem; margin: 1.3rem 0 .7rem; }
.panel p { font-size: .96rem; }
.panel--brand {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 24px 50px -22px rgba(109, 92, 209, .6);
}
.panel--brand h3 { color: #fff; }
.panel--brand p { color: rgba(255, 255, 255, .84); }
.panel--brand .card__icon {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}

.values { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 620px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value {
  padding: 1.5rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.value:hover { transform: translateY(-4px); border-color: rgba(109, 92, 209, .28); box-shadow: var(--sh-2); }
.value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  color: var(--brand);
  background: var(--brand-soft);
}
.value__icon .ico { width: 20px; height: 20px; }
.value h4 { font-size: 1rem; font-weight: 700; margin: 1rem 0 .45rem; }
.value p { font-size: .875rem; }

/* ---------- 13. FAQ ---------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item[open] { border-color: rgba(109, 92, 209, .35); box-shadow: var(--sh-2); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--brand); }
.faq__item summary .ico {
  width: 20px; height: 20px;
  color: var(--brand);
  transition: transform .3s var(--ease);
}
.faq__item[open] summary { color: var(--brand-700); }
.faq__item[open] summary .ico { transform: rotate(180deg); }
.faq__answer {
  padding: 0 1.35rem 1.3rem;
  font-size: .9375rem;
  color: var(--ink-500);
  animation: fade-down .3s var(--ease-out);
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 14. CTA band ----------------------------------- */
.cta-band {
  position: relative;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--grad);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .16), transparent 42%),
    radial-gradient(circle at 85% 85%, rgba(255, 255, 255, .12), transparent 45%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.4fr auto; gap: 3rem; } }
.cta-band h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); color: #fff; margin-bottom: .6rem; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 56ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- 15. Contact & form ----------------------------- */
.contact { display: grid; gap: clamp(2rem, 4vw, 3.25rem); }
@media (min-width: 900px) { .contact { grid-template-columns: 2fr 3fr; } }

.contact__aside h3 { font-size: 1.15rem; margin-bottom: 1.5rem; }
.contact__list { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
.contact__list li { display: flex; align-items: flex-start; gap: .9rem; }
.contact__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.contact__list p { font-size: .9375rem; font-weight: 500; color: var(--ink-800); }
.contact__list a { transition: color .2s var(--ease); }
.contact__list a:hover { color: var(--brand); }

.contact__promo {
  padding: 1.5rem;
  background: var(--grad);
  border-radius: var(--r-lg);
  box-shadow: 0 22px 45px -22px rgba(109, 92, 209, .65);
}
.contact__promo h4 { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.contact__promo p { color: rgba(255, 255, 255, .82); font-size: .9125rem; }

.contact__form-wrap {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
}

.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; gap: 1.15rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: .4rem; min-width: 0; }
.field label { font-size: .875rem; font-weight: 600; color: var(--ink-800); }
.field__opt { font-weight: 400; color: var(--ink-400); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-size: .9375rem;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6688' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 18px;
  padding-right: 2.6rem;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-400); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--ink-400); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(109, 92, 209, .14);
}
.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #e11d48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, .1);
}
.field__error { font-size: .8125rem; color: #e11d48; min-height: 0; }
.field__error:empty { display: none; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form .btn { justify-self: start; }
.form__note { font-size: .8125rem; color: var(--ink-400); }
.form__note a { color: var(--brand); font-weight: 600; }

.form-success {
  display: grid;
  place-items: center;
  gap: .6rem;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.form-success__icon {
  display: grid;
  place-items: center;
  width: 66px; height: 66px;
  margin-bottom: .5rem;
  border-radius: 50%;
  color: #059669;
  background: #ecfdf5;
}
.form-success__icon .ico { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.35rem; }
.form-success p { max-width: 42ch; font-size: .9375rem; }
.form-success .btn { margin-top: .75rem; }

/* ---------- 16. Footer & back-to-top ----------------------- */
.site-footer {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: #07051a;
  color: rgba(255, 255, 255, .5);
  font-size: .9125rem;
}
.site-footer__top {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 620px) { .site-footer__top { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .site-footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media (min-width: 620px) and (max-width: 999px) { .site-footer__brand { grid-column: 1 / -1; } }

.site-footer__brand p { max-width: 34ch; margin-top: 1.15rem; }
.brand--footer .brand__mark { height: 44px; }
.brand--footer .brand__text { display: block; color: #fff; font-size: 1rem; }
.brand--footer .brand__text span { color: #b9a8ff; }

.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  transition: background-color .25s var(--ease), color .25s var(--ease),
              transform .25s var(--ease), border-color .25s var(--ease);
}
.socials a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-3px);
}
.socials .ico { width: 18px; height: 18px; }

.site-footer__col h4 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #b9a8ff;
  margin-bottom: 1.15rem;
}
.site-footer__col ul { display: grid; gap: .7rem; }
.site-footer__col a { transition: color .2s var(--ease), padding-left .2s var(--ease); }
.site-footer__col a:hover { color: #fff; padding-left: 4px; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
}
.site-footer__made { color: rgba(255, 255, 255, .3); font-size: .8rem; }

.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: var(--sh-brand);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              visibility .3s, background-color .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--brand-600); transform: translateY(-3px); }
.to-top .ico { width: 20px; height: 20px; }

/* ---------- 17. Motion / reveal ---------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { --d: 1; }
[data-reveal-delay="2"] { --d: 2; }
[data-reveal-delay="3"] { --d: 3; }
[data-reveal-delay="4"] { --d: 4; }

/* No-JS safety: never hide content if the script fails */
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__canvas { display: none; }
}

/* Print */
@media print {
  .topbar, .site-header, .drawer, .drawer-scrim, .to-top,
  .hero__canvas, .hero__aurora, .hero__grid, .hero__scroll { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .hero { padding-block: 1.5rem; background: #fff !important; color: #000 !important; }
}
