:root {
  --ink: #1b133c;
  --cyan: #1ba9c8;
  --blue: #115d92;
  --aqua: #7ee8f1;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.66);
  --line: rgba(27, 19, 60, 0.12);
  --muted: rgba(27, 19, 60, 0.68);
  --shadow: 0 24px 70px rgba(27, 19, 60, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f7fbff;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #f7fbff;
  color: #1b133c;
  font-family: "Inter", sans-serif;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

#app,
.page-shell {
  min-height: 100vh;
}

.page-shell {
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(126, 232, 241, 0.28), transparent 28%),
    radial-gradient(circle at 92% 36%, rgba(17, 93, 146, 0.16), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #eefbff 42%, #f8f6ff 100%);
}

.privacy-page {
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at 14% 10%, rgba(126, 232, 241, 0.28), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(17, 93, 146, 0.14), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #eefbff 46%, #f8f6ff 100%);
}

.privacy-page-header,
.privacy-page-card {
  width: min(920px, 100%);
  margin: 0 auto;
}

.privacy-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
}

.privacy-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(27, 19, 60, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.privacy-page-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.2);
}

.privacy-page-card h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.privacy-page-card h2 {
  margin-top: 28px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.privacy-page-card p {
  margin: 12px 0 0;
  color: rgba(27, 19, 60, 0.72);
  font-size: 0.98rem;
  line-height: 1.72;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 1rem 1rem 0;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 8px 18px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(27, 19, 60, 0.11);
  backdrop-filter: blur(18px) saturate(1.3);
}

.brand {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 4px 6px;
  border-radius: 999px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 116px;
  height: auto;
  max-height: 44px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(27, 19, 60, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.language-toggle,
.mobile-language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 19, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
}

.language-toggle {
  min-height: 38px;
  padding: 0 12px;
}

.mobile-language-toggle {
  width: 100%;
  min-height: 42px;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active,
.language-toggle:hover,
.language-toggle:focus-visible,
.mobile-language-toggle:hover,
.mobile-language-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: 0;
  transform: translateY(-1px);
}

.mobile-menu-button,
.mobile-nav-panel {
  display: none;
}

.mobile-menu-button {
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(27, 19, 60, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu-button span + span {
  margin-top: 3px;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  width: min(340px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(27, 19, 60, 0.12);
  backdrop-filter: blur(18px) saturate(1.2);
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(27, 19, 60, 0.76);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-panel a.active,
.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible {
  background: rgba(27, 169, 200, 0.1);
  color: var(--ink);
  outline: 0;
}

.hero-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
}

.hero-shell::before,
.content-sections::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(27, 19, 60, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(27, 19, 60, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 78%);
  content: "";
  animation: grid-drift 18s linear infinite;
}

.hero-shell::after {
  position: absolute;
  inset: auto -10% -20% -10%;
  z-index: -1;
  height: 52vh;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(27, 169, 200, 0.2), transparent 62%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72));
  content: "";
  pointer-events: none;
}

.three-stage,
.fallback-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero-content {
  display: grid;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 132px 0 64px;
}

.hero-copy {
  max-width: 760px;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 8.2vw, 7.7rem);
  line-height: 0.88;
}

h1 em {
  color: var(--blue);
  font-style: italic;
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(27, 19, 60, 0.76);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--ink), #106f99);
  color: #fff;
  box-shadow: 0 16px 34px rgba(27, 19, 60, 0.22);
}

.button.secondary {
  border-color: rgba(27, 19, 60, 0.12);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.button:hover,
.button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.enquiry-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 42% 34%, rgba(126, 232, 241, 0.24), transparent 34%),
    rgba(16, 25, 44, 0.34);
  backdrop-filter: blur(18px) saturate(1.1);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 26px;
  width: min(900px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 251, 255, 0.82)),
    #fff;
  box-shadow: 0 30px 90px rgba(27, 19, 60, 0.24);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(27, 19, 60, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.modal-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 8px 8px 8px 0;
}

.modal-copy h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.9;
}

.modal-copy p,
.enquiry-form p {
  margin: 0;
  color: rgba(27, 19, 60, 0.68);
  line-height: 1.6;
}

.modal-copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-copy li {
  position: relative;
  padding-left: 20px;
  color: rgba(27, 19, 60, 0.76);
  line-height: 1.45;
}

.modal-copy li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(27, 169, 200, 0.1);
  content: "";
}

.enquiry-form {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(27, 169, 200, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(27, 19, 60, 0.7);
  font-size: 0.84rem;
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 19, 60, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.enquiry-form input {
  min-height: 46px;
  padding: 0 14px;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 108px;
  padding: 12px 14px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: rgba(27, 169, 200, 0.66);
  box-shadow: 0 0 0 4px rgba(27, 169, 200, 0.12);
}

.enquiry-form .button {
  width: 100%;
  cursor: pointer;
}

.enquiry-form p {
  font-size: 0.8rem;
}

.content-sections {
  position: relative;
  isolation: isolate;
  padding: 0 0 70px;
}

.service-section {
  min-height: 78vh;
  scroll-margin-top: 96px;
  display: grid;
  align-items: center;
  padding: 82px 0 52px;
}

.service-section.alternate {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(126, 232, 241, 0.1), rgba(255, 255, 255, 0.34));
}

.section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.alternate .section-inner {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.86fr);
}

.alternate .section-copy {
  grid-column: 2;
}

.alternate .portfolio-visual {
  grid-column: 1;
  grid-row: 1;
}

.section-copy h2 {
  max-width: 620px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.95;
}

.section-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.72;
}

.section-copy ul {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.section-copy li {
  position: relative;
  min-height: 34px;
  padding: 6px 0 0 34px;
  color: rgba(27, 19, 60, 0.78);
  font-size: 0.96rem;
  font-weight: 500;
}

.section-copy li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(27, 169, 200, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, var(--cyan) 0 32%, transparent 34%),
    rgba(255, 255, 255, 0.7);
  content: "";
}

.portfolio-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(235, 250, 255, 0.52)),
    radial-gradient(circle at 30% 18%, rgba(126, 232, 241, 0.42), transparent 26%),
    linear-gradient(160deg, rgba(27, 19, 60, 0.96), rgba(17, 93, 146, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.28);
  animation: visual-rise 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(27, 19, 60, 0.08);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(12px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-inner strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(27, 19, 60, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(27, 19, 60, 0.76);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: 0;
  transform: translateY(-1px);
}

.portfolio-visual::before {
  position: absolute;
  inset: 70px 36px 112px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  animation: grid-drift 16s linear infinite;
}

.portfolio-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.22), transparent 48%);
  content: "";
  transform: translateX(-90%);
  animation: sheen 5.6s ease-in-out infinite;
}

.visual-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.visual-topline span,
.visual-topline strong {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.visual-stage {
  position: absolute;
  inset: 96px 38px 126px;
  z-index: 1;
}

.portfolio-visual p {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(27, 19, 60, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
  backdrop-filter: blur(16px);
}

.portfolio-section {
  scroll-margin-top: 96px;
  padding: 70px 0 78px;
}

.portfolio-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.portfolio-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.portfolio-heading h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
}

.portfolio-heading p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 48px rgba(27, 19, 60, 0.1);
  backdrop-filter: blur(16px) saturate(1.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.project-card:hover {
  box-shadow: 0 22px 58px rgba(27, 19, 60, 0.14);
  transform: translateY(-3px);
}

.project-visual {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(145deg, rgba(27, 169, 200, 0.9), rgba(27, 19, 60, 0.88));
  background-size: 28px 28px, 28px 28px, auto;
}

.project-card.has-image .project-visual {
  display: grid;
  min-height: 206px;
  place-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(126, 232, 241, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 250, 254, 0.82) 48%, rgba(27, 169, 200, 0.16));
}

.project-card.has-image .project-visual::before {
  inset: 12px;
  border-color: rgba(27, 169, 200, 0.18);
}

.project-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 206px;
  padding: 14px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(27, 19, 60, 0.16));
  transition: transform 220ms ease;
}

.project-card:hover .project-visual img {
  transform: scale(1.025);
}

.project-visual::before {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  content: "";
}

.project-visual span {
  position: absolute;
  border-radius: 999px;
  background: rgba(126, 232, 241, 0.76);
  box-shadow: 0 0 0 10px rgba(126, 232, 241, 0.1), 0 0 32px rgba(126, 232, 241, 0.38);
  animation: pulse-node 3.2s ease-in-out infinite;
}

.project-visual span:nth-child(1) {
  top: 42px;
  left: 44px;
  width: 18px;
  height: 18px;
}

.project-visual span:nth-child(2) {
  right: 58px;
  bottom: 46px;
  width: 30px;
  height: 30px;
  animation-delay: 220ms;
}

.project-visual span:nth-child(3) {
  top: 74px;
  right: 116px;
  width: 12px;
  height: 12px;
  animation-delay: 440ms;
}

.visual-tone-1 {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(145deg, rgba(17, 93, 146, 0.92), rgba(27, 169, 200, 0.72));
  background-size: 28px 28px, 28px 28px, auto;
}

.visual-tone-2 {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(145deg, rgba(27, 19, 60, 0.92), rgba(126, 232, 241, 0.62));
  background-size: 28px 28px, 28px 28px, auto;
}

.project-copy {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.project-copy p,
.project-copy h3,
.project-copy span,
.project-copy strong {
  margin: 0;
}

.project-copy p {
  color: rgba(27, 19, 60, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-copy h3 {
  color: var(--ink);
  font-family: "Instrument Serif", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.05;
}

.project-copy span {
  color: rgba(27, 19, 60, 0.68);
  font-size: 0.91rem;
  line-height: 1.5;
}

.project-copy strong {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
}

.visual-device {
  position: absolute;
  top: 18%;
  left: 12%;
  width: 48%;
  height: 64%;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.1)),
    linear-gradient(145deg, rgba(27, 169, 200, 0.92), rgba(27, 19, 60, 0.92));
  box-shadow: 0 24px 60px rgba(27, 19, 60, 0.26);
  animation: float-device 4.8s ease-in-out infinite;
}

.visual-device::before,
.visual-device::after {
  position: absolute;
  content: "";
}

.visual-device::before {
  inset: 16px 18px auto;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 28px 0 rgba(255, 255, 255, 0.42),
    0 56px 0 rgba(255, 255, 255, 0.3),
    0 84px 0 rgba(255, 255, 255, 0.22);
}

.visual-device::after {
  right: 18px;
  bottom: 22px;
  width: 42%;
  height: 24%;
  border-radius: 8px;
  background: rgba(126, 232, 241, 0.74);
}

.visual-path {
  position: absolute;
  top: 46%;
  left: 38%;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), var(--aqua), rgba(255, 255, 255, 0.1));
  transform: rotate(-12deg);
  transform-origin: left center;
}

.visual-node,
.orb {
  position: absolute;
  border-radius: 999px;
}

.visual-node {
  z-index: 2;
  width: 18px;
  height: 18px;
  background: var(--aqua);
  box-shadow: 0 0 0 9px rgba(126, 232, 241, 0.12), 0 0 26px rgba(126, 232, 241, 0.74);
  animation: pulse-node 2.8s ease-in-out infinite;
}

.node-a {
  top: 32%;
  left: 68%;
}

.node-b {
  top: 54%;
  left: 78%;
  animation-delay: 240ms;
}

.node-c {
  top: 70%;
  left: 58%;
  animation-delay: 480ms;
}

.visual-mobile .visual-device,
.visual-mobile .visual-path,
.visual-mobile .visual-node,
.visual-seo .visual-device,
.visual-seo .visual-path,
.visual-seo .visual-node,
.visual-geo .visual-device,
.visual-geo .visual-path,
.visual-geo .visual-node,
.visual-web3 .visual-device,
.visual-web3 .visual-path,
.visual-web3 .visual-node,
.visual-integration .visual-device,
.visual-integration .visual-path,
.visual-integration .visual-node {
  display: none;
}

.app-phone,
.app-icon,
.app-dot,
.mobile-showcase,
.mobile-device,
.mobile-badge,
.mobile-sync-line,
.search-window,
.crawler-bot,
.rank-bar,
.ai-answer-card,
.ai-rank,
.model-core,
.contract-card,
.eth-diamond,
.dapp-window,
.chain-link,
.web3-dapp,
.web3-contract,
.web3-eth,
.web3-node,
.web3-line,
.gateway-card,
.api-hub,
.hardware-chip,
.security-shield,
.integration-line,
.integration-core,
.integration-endpoint,
.integration-connector {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(27, 19, 60, 0.16);
  backdrop-filter: blur(12px);
}

.app-phone {
  top: 16%;
  width: 32%;
  height: 64%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.1)),
    linear-gradient(145deg, rgba(27, 169, 200, 0.92), rgba(27, 19, 60, 0.9));
  animation: float-device 4.8s ease-in-out infinite;
}

.app-phone::before {
  position: absolute;
  top: 12px;
  width: 38%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.app-phone::after {
  position: absolute;
  inset: 42px 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 52%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 7px, transparent 7px 22px);
  content: "";
}

.app-phone i {
  position: absolute;
  bottom: 14px;
  font-style: normal;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.app-phone.ios {
  left: 18%;
  transform: rotate(-5deg);
}

.app-phone.android {
  right: 18%;
  transform: rotate(5deg);
  animation-delay: 280ms;
}

.app-icon {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  background: linear-gradient(145deg, #1b133c, #115d92);
}

.app-icon.apple {
  top: 18%;
  right: 12%;
}

.app-icon.robot {
  bottom: 14%;
  left: 12%;
  background: linear-gradient(145deg, #1ba9c8, #115d92);
}

.app-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 0 10px rgba(126, 232, 241, 0.12), 0 0 28px rgba(126, 232, 241, 0.5);
  animation: pulse-node 2.8s ease-in-out infinite;
}

.app-dot-a {
  top: 44%;
  left: 46%;
}

.app-dot-b {
  right: 28%;
  bottom: 28%;
  animation-delay: 320ms;
}

.mobile-showcase {
  top: 18%;
  left: 50%;
  width: 56%;
  height: 58%;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12)),
    linear-gradient(145deg, rgba(27, 169, 200, 0.86), rgba(27, 19, 60, 0.88));
  transform: translateX(-50%);
}

.mobile-showcase::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  content: "";
}

.mobile-showcase i,
.mobile-showcase b,
.mobile-showcase em {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.mobile-showcase i {
  top: 48px;
  left: 44px;
  width: 42%;
  height: 14px;
}

.mobile-showcase b {
  top: 84px;
  left: 44px;
  width: 64%;
  height: 14px;
}

.mobile-showcase em {
  right: 42px;
  bottom: 42px;
  width: 34%;
  height: 28%;
  background: rgba(126, 232, 241, 0.72);
}

.mobile-device {
  width: 116px;
  height: 214px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(17, 93, 146, 0.92));
  animation: float-device 4.8s ease-in-out infinite;
}

.mobile-device::before {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(27, 19, 60, 0.22);
  content: "";
  transform: translateX(-50%);
}

.mobile-device::after {
  position: absolute;
  inset: 40px 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(126, 232, 241, 0.48), transparent 54%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.48) 0 8px, transparent 8px 26px);
  content: "";
}

.mobile-device strong {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
}

.ios-device {
  left: 18%;
  top: 22%;
  transform: rotate(-7deg);
}

.android-device {
  right: 18%;
  top: 22%;
  transform: rotate(7deg);
  animation-delay: 260ms;
}

.mobile-badge {
  min-width: 86px;
  min-height: 42px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(145deg, #1b133c, #1ba9c8);
}

.ios-badge {
  right: 12%;
  top: 16%;
}

.android-badge {
  left: 12%;
  bottom: 16%;
}

.mobile-sync-line {
  left: 28%;
  right: 28%;
  top: 50%;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 232, 241, 0.84), transparent);
  box-shadow: none;
}

.search-window {
  top: 16%;
  left: 12%;
  width: 76%;
  height: 44%;
  align-items: start;
  justify-items: start;
  padding: 22px;
  border-radius: 8px;
}

.search-window i {
  width: 74%;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 44px 0 rgba(255, 255, 255, 0.6), 0 88px 0 rgba(255, 255, 255, 0.36);
}

.search-window strong {
  position: absolute;
  top: 20px;
  left: 34px;
  color: var(--blue);
  font-size: 1rem;
}

.search-window b {
  position: absolute;
  right: 22px;
  top: 22px;
  color: var(--ink);
  font-size: 2.4rem;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

.search-window em {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
}

.crawler-bot {
  right: 15%;
  bottom: 18%;
  width: 120px;
  height: 82px;
  border-radius: 26px;
  background: linear-gradient(145deg, #1b133c, #1ba9c8);
}

.crawler-bot i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 28px 0 0 #fff;
}

.rank-bar {
  left: 16%;
  bottom: 20%;
  width: 34%;
  height: 10px;
  border-radius: 999px;
  background: var(--aqua);
  animation: pulse-node 2.8s ease-in-out infinite;
}

.rank-two {
  bottom: 27%;
  width: 28%;
  opacity: 0.74;
}

.rank-three {
  bottom: 34%;
  width: 22%;
  opacity: 0.55;
}

.ai-answer-card {
  top: 14%;
  left: 14%;
  width: 56%;
  height: 42%;
  align-items: start;
  justify-items: start;
  padding: 22px;
  border-radius: 8px;
}

.ai-answer-card strong {
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  font-weight: 400;
}

.ai-answer-card i {
  margin-top: 12px;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

.ai-rank {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: 2.2rem;
  background: linear-gradient(145deg, #1ba9c8, #1b133c);
}

.rank-a {
  right: 20%;
  top: 22%;
}

.rank-b {
  right: 34%;
  bottom: 25%;
  width: 58px;
  height: 58px;
  font-size: 1.8rem;
}

.rank-c {
  right: 14%;
  bottom: 18%;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
}

.model-core {
  left: 34%;
  bottom: 16%;
  width: 120px;
  height: 70px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(145deg, #115d92, #7ee8f1);
}

.contract-card,
.dapp-window,
.gateway-card {
  align-items: start;
  justify-items: start;
  padding: 18px;
  border-radius: 8px;
}

.contract-card {
  top: 14%;
  left: 12%;
  width: 48%;
  height: 36%;
}

.contract-card strong,
.dapp-window strong,
.gateway-card strong {
  font-family: "Instrument Serif", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.contract-card i,
.dapp-window i,
.gateway-card i {
  margin-top: 10px;
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.eth-diamond {
  top: 20%;
  right: 18%;
  width: 92px;
  height: 92px;
  background: linear-gradient(145deg, #1b133c, #7ee8f1);
  clip-path: polygon(50% 0, 92% 50%, 50% 100%, 8% 50%);
  animation: float-device 4.6s ease-in-out infinite;
}

.dapp-window {
  right: 14%;
  bottom: 16%;
  width: 48%;
  height: 32%;
}

.chain-link {
  width: 68px;
  height: 28px;
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 8px rgba(126, 232, 241, 0.8);
}

.link-a {
  left: 42%;
  top: 50%;
  transform: rotate(22deg);
}

.link-b {
  right: 40%;
  top: 50%;
  transform: rotate(-22deg);
}

.web3-dapp,
.web3-contract {
  align-items: start;
  justify-items: start;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.web3-dapp strong,
.web3-contract strong {
  font-family: "Instrument Serif", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}

.web3-dapp i,
.web3-contract i {
  margin-top: 10px;
  color: rgba(27, 19, 60, 0.62);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
}

.web3-dapp {
  top: 14%;
  left: 12%;
  width: 36%;
  height: 28%;
}

.web3-contract {
  right: 9%;
  bottom: 13%;
  width: 42%;
  height: 28%;
}

.web3-eth {
  top: 20%;
  right: 16%;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.92), transparent 22%),
    linear-gradient(145deg, rgba(27, 19, 60, 0.94), rgba(27, 169, 200, 0.9));
  animation: float-device 4.8s ease-in-out infinite;
}

.web3-eth i {
  display: block;
  width: 54px;
  height: 78px;
  background: rgba(255, 255, 255, 0.88);
  clip-path: polygon(50% 0, 88% 46%, 50% 100%, 12% 46%);
}

.web3-node {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  background: linear-gradient(145deg, #115d92, #1b133c);
  animation: pulse-node 3.2s ease-in-out infinite;
}

.web3-node.node-one {
  left: 18%;
  bottom: 23%;
}

.web3-node.node-two {
  left: 50%;
  top: 40%;
  width: 48px;
  height: 48px;
  animation-delay: 220ms;
}

.web3-node.node-three {
  right: 8%;
  top: 43%;
  width: 48px;
  height: 48px;
  animation-delay: 420ms;
}

.web3-line {
  z-index: 1;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 232, 241, 0.78), transparent);
  box-shadow: none;
}

.web3-line-a {
  left: 32%;
  top: 48%;
  width: 36%;
  transform: rotate(18deg);
}

.web3-line-b {
  left: 28%;
  bottom: 38%;
  width: 34%;
  transform: rotate(-22deg);
}

.web3-line-c {
  right: 16%;
  top: 39%;
  width: 28%;
  transform: rotate(48deg);
}

.integration-core {
  top: 32%;
  left: 50%;
  z-index: 3;
  width: 178px;
  height: 116px;
  padding: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 24%, rgba(126, 232, 241, 0.9), transparent 18%),
    linear-gradient(145deg, rgba(27, 19, 60, 0.96), rgba(17, 93, 146, 0.92));
  color: #fff;
  transform: translateX(-50%);
}

.integration-core::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  content: "";
}

.integration-core strong,
.integration-endpoint strong {
  position: relative;
  z-index: 1;
  font-family: "Instrument Serif", serif;
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1;
}

.integration-core i,
.integration-endpoint i {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
}

.integration-endpoint {
  width: 118px;
  min-height: 78px;
  align-content: center;
  justify-items: start;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.integration-endpoint strong {
  color: var(--ink);
  font-size: 1.28rem;
}

.integration-endpoint i {
  color: rgba(27, 19, 60, 0.62);
}

.integration-endpoint.payment {
  top: 12%;
  left: 5%;
}

.integration-endpoint.hardware {
  top: 12%;
  right: 5%;
}

.integration-endpoint.security {
  right: 5%;
  bottom: 14%;
}

.integration-endpoint.systems {
  left: 5%;
  bottom: 14%;
}

.integration-connector {
  z-index: 1;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(126, 232, 241, 0.85), transparent),
    rgba(17, 93, 146, 0.16);
  box-shadow: none;
  transform-origin: center;
}

.c-a {
  top: 35%;
  left: 24%;
  width: 28%;
  transform: rotate(20deg);
}

.c-b {
  top: 35%;
  right: 24%;
  width: 28%;
  transform: rotate(-20deg);
}

.c-c {
  bottom: 33%;
  right: 24%;
  width: 28%;
  transform: rotate(20deg);
}

.c-d {
  bottom: 33%;
  left: 24%;
  width: 28%;
  transform: rotate(-20deg);
}

.orb {
  opacity: 0.74;
  filter: blur(0.2px);
}

.orb.one {
  top: 8%;
  right: 13%;
  width: 78px;
  height: 78px;
  background: radial-gradient(circle at 30% 28%, #fff, var(--aqua) 36%, rgba(27, 169, 200, 0.1));
  animation: orbit-one 7s ease-in-out infinite;
}

.orb.two {
  right: 28%;
  bottom: 12%;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at 30% 28%, #fff, #1ba9c8 48%, rgba(17, 93, 146, 0.08));
  animation: orbit-two 6s ease-in-out infinite;
}

.orb.three {
  top: 58%;
  left: 2%;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 30% 28%, #fff, #115d92 48%, rgba(27, 19, 60, 0.08));
  animation: orbit-three 5.8s ease-in-out infinite;
}

.visual-seo .visual-device,
.visual-geo .visual-device {
  width: 58%;
  height: 54%;
  border-radius: 8px;
}

.visual-seo .visual-device::before,
.visual-geo .visual-device::before {
  height: 12px;
  box-shadow:
    0 34px 0 rgba(255, 255, 255, 0.42),
    0 68px 0 rgba(255, 255, 255, 0.28);
}

.visual-web3 .visual-device {
  clip-path: polygon(50% 0, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
}

.visual-integration .visual-device {
  width: 42%;
  height: 42%;
  border-radius: 999px;
}

@keyframes grid-drift {
  to {
    background-position: 72px 0, 0 72px;
  }
}

@keyframes visual-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sheen {
  0%,
  58% {
    transform: translateX(-90%);
  }

  82%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes float-device {
  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes pulse-node {
  50% {
    transform: scale(1.18);
  }
}

@keyframes orbit-one {
  50% {
    transform: translate(-22px, 18px);
  }
}

@keyframes orbit-two {
  50% {
    transform: translate(24px, -18px);
  }
}

@keyframes orbit-three {
  50% {
    transform: translate(18px, 24px);
  }
}

@media (min-width: 768px) {
  .site-header {
    padding-top: 1.5rem;
  }
}

@media (max-width: 900px) {
  .section-inner,
  .alternate .section-inner {
    grid-template-columns: 1fr;
  }

  .alternate .section-copy,
  .alternate .portfolio-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-visual {
    min-height: 440px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-pill {
    width: min(100%, 360px);
    justify-content: space-between;
    padding-right: 8px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .mobile-nav-panel.open {
    display: grid;
    gap: 4px;
  }

  .brand img {
    width: 92px;
    max-height: 36px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 112px 0 42px;
  }

  .three-stage {
    opacity: 0.36;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.25rem);
    line-height: 0.9;
  }

  .lede,
  .section-copy p {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .enquiry-modal {
    padding: 14px;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 16px 16px;
  }

  .modal-copy {
    padding: 14px 28px 0 0;
  }

  .modal-copy h2 {
    font-size: clamp(2.5rem, 14vw, 3.7rem);
  }

  .enquiry-form {
    padding: 16px;
  }

  .service-section {
    min-height: auto;
    padding: 62px 0 40px;
    scroll-margin-top: 88px;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
    gap: 24px;
  }

  .section-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.75rem);
  }

  .section-copy ul {
    gap: 6px;
    margin-top: 18px;
  }

  .section-copy li {
    font-size: 0.9rem;
  }

  .portfolio-visual {
    min-height: 350px;
  }

  .portfolio-visual::before {
    inset: 68px 18px 104px;
  }

  .visual-stage {
    inset: 88px 24px 112px;
  }

  .portfolio-visual p {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 0.82rem;
  }

  .portfolio-section {
    padding: 54px 0 58px;
    scroll-margin-top: 88px;
  }

  .portfolio-inner {
    width: min(100% - 28px, 1180px);
  }

  .portfolio-heading {
    gap: 14px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-visual {
    min-height: 148px;
  }

  .project-card.has-image .project-visual,
  .project-visual img {
    min-height: 172px;
    height: 172px;
  }

  .site-footer {
    padding: 28px 0 34px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 28px, 1180px);
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-nav a {
    min-height: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
