:root {
  --ink: #0a1724;
  --ink-2: #163042;
  --surface: rgba(12, 31, 44, 0.72);
  --surface-2: rgba(17, 43, 53, 0.76);
  --text: #eefaf6;
  --dark-text: #eefaf6;
  --muted: #b8c9c5;
  --dark-muted: #a8bbb7;
  --line: rgba(255, 255, 255, 0.18);
  --dark-line: rgba(255, 255, 255, 0.14);
  --teal: #5cc8ff;
  --teal-dark: #0b4f7a;
  --amber: #f3c86a;
  --coral: #9bdcff;
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--dark-text);
  background: #0a1724;
  isolation: isolate;
}

body.menu-open {
  overflow: hidden;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.cosmic-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: transparent;
  mix-blend-mode: screen;
  opacity: 0.82;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(92, 200, 255, 0.24), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(243, 200, 106, 0.18), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(155, 220, 255, 0.14), transparent 30%),
    rgba(10, 23, 36, 0.14);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.72), rgba(5, 12, 22, 0.24) 45%, rgba(5, 12, 22, 0.5)),
    linear-gradient(180deg, rgba(5, 12, 22, 0.08), rgba(5, 12, 22, 0.68));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 5vw, 58px);
  color: var(--text);
  background: rgba(7, 17, 17, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 17, 0.92);
  border-color: rgba(0, 217, 192, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 5px;
  border: 1px solid rgba(155, 220, 255, 0.5);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 34px rgba(4, 34, 60, 0.24),
    0 0 26px rgba(92, 200, 255, 0.18);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(238, 250, 246, 0.78);
  font-weight: 700;
  font-size: 0.94rem;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  color: #061d31;
  background: var(--teal);
  border-color: rgba(92, 200, 255, 0.28);
  box-shadow: 0 14px 30px rgba(92, 200, 255, 0.18);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 45;
  display: none;
  padding: 16px 20px 24px;
  background: rgba(7, 17, 17, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--text);
  background: transparent;
  padding: calc(var(--header-height) + 72px) clamp(18px, 6vw, 78px) 36px;
}

.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 22, 34, 0.7) 0%, rgba(9, 22, 34, 0.48) 46%, rgba(9, 22, 34, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 22, 34, 0.02) 0%, rgba(9, 22, 34, 0.62) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16%;
  z-index: 1;
  height: 180px;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0%, rgba(92, 200, 255, 0.14) 42%, rgba(243, 200, 106, 0.11) 54%, transparent 76%),
    repeating-linear-gradient(100deg, transparent 0 34px, rgba(255, 255, 255, 0.04) 35px 36px);
  clip-path: polygon(0 46%, 100% 0, 100% 66%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 9% -12% auto auto;
  z-index: 1;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(97, 213, 205, 0.18);
  border-radius: 50%;
  opacity: 0.7;
  transform: rotate(-14deg);
  box-shadow:
    inset 0 0 70px rgba(92, 200, 255, 0.08),
    0 0 90px rgba(243, 200, 106, 0.06);
}

.hero-visual-system {
  position: absolute;
  top: 17%;
  right: clamp(20px, 6vw, 90px);
  z-index: 1;
  width: min(43vw, 560px);
  aspect-ratio: 1;
  pointer-events: none;
}

.orbit-ring,
.orbit-core,
.orbit-node {
  position: absolute;
}

.orbit-ring {
  inset: 10%;
  border: 1px solid rgba(224, 252, 255, 0.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 24px rgba(0, 217, 192, 0.82);
}

.orbit-ring::before {
  top: 12%;
  left: 18%;
}

.orbit-ring::after {
  right: 10%;
  bottom: 24%;
  background: var(--amber);
  box-shadow: 0 0 24px rgba(255, 184, 77, 0.72);
}

.ring-one {
  animation: orbitDrift 12s linear infinite;
}

.ring-two {
  inset: 22%;
  border-style: dashed;
  opacity: 0.72;
  animation: orbitDrift 16s linear infinite reverse;
}

.orbit-core {
  inset: 34%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 200, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.32), transparent 24%),
    radial-gradient(circle, rgba(92, 200, 255, 0.24), rgba(9, 22, 34, 0.38) 58%, rgba(9, 22, 34, 0.08));
  box-shadow:
    inset 0 0 48px rgba(92, 200, 255, 0.16),
    0 0 90px rgba(92, 200, 255, 0.16);
}

.orbit-core span {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
}

.orbit-node {
  width: 176px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(224, 252, 255, 0.18);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(9, 22, 34, 0.54);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.orbit-node strong,
.orbit-node span {
  display: block;
}

.orbit-node strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.orbit-node span {
  margin-top: 6px;
  color: rgba(238, 250, 246, 0.68);
  font-size: 0.86rem;
  line-height: 1.35;
}

.node-web {
  top: 2%;
  left: 22%;
}

.node-app {
  top: 31%;
  right: -2%;
}

.node-admin {
  right: 18%;
  bottom: 2%;
}

.node-support {
  left: 9%;
  bottom: 12%;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 36px));
  margin: 0;
  padding-top: 0;
  align-self: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  line-height: 0.98;
}

.hero-line {
  max-width: 720px;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.22;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(238, 250, 246, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.hero-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  width: 100%;
  margin-top: clamp(44px, 8vh, 88px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-stats article {
  min-height: 96px;
  padding: 20px;
  background: rgba(9, 22, 34, 0.58);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
}

.hero-stats span {
  margin-top: 6px;
  color: rgba(238, 250, 246, 0.68);
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 6vw, 78px);
}

.section-heading {
  max-width: 850px;
}

.section-heading h2,
.proof-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--dark-text);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.proof-copy p,
.contact-copy p {
  max-width: 720px;
  color: var(--dark-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.services-section {
  background: rgba(10, 23, 36, 0.42);
  backdrop-filter: blur(6px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--dark-line);
  background: var(--dark-line);
}

.service-card {
  display: block;
  min-height: 310px;
  padding: 28px;
  background: rgba(10, 18, 26, 0.78);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(12, 31, 44, 0.86);
}

.service-number {
  color: var(--teal-dark);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.service-card h3 {
  margin: 56px 0 12px;
  font-size: 1.4rem;
}

.service-card p {
  margin: 0;
  color: var(--dark-muted);
  line-height: 1.68;
}

.service-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 82px);
  background: rgba(8, 21, 32, 0.68);
  backdrop-filter: blur(8px);
}

.split-section .section-heading h2,
.split-section .section-heading p:not(.eyebrow) {
  color: var(--text);
}

.process-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list article {
  padding: 26px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.process-list h3 {
  margin: 12px 0 8px;
}

.process-list p {
  margin: 0;
  color: rgba(238, 250, 246, 0.7);
  line-height: 1.7;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: rgba(12, 31, 44, 0.58);
  backdrop-filter: blur(8px);
}

.proof-points {
  display: grid;
  gap: 16px;
}

.proof-points article {
  padding: 24px;
  border-left: 4px solid var(--teal-dark);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points strong {
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
}

.proof-points span {
  margin-top: 8px;
  color: var(--dark-muted);
  line-height: 1.65;
}

.outcome-section {
  background: rgba(10, 23, 36, 0.42);
  backdrop-filter: blur(6px);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--dark-line);
  background: var(--dark-line);
}

.outcome-grid div {
  min-height: 210px;
  padding: 24px;
  background: rgba(10, 18, 26, 0.82);
  backdrop-filter: blur(14px);
}

.outcome-grid span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.outcome-grid strong {
  display: block;
  margin-top: 42px;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  line-height: 1.45;
}

.faq-section {
  background: rgba(8, 21, 32, 0.72);
  backdrop-filter: blur(8px);
}

.faq-section .section-heading h2,
.faq-section .section-heading p:not(.eyebrow) {
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin-top: 38px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

summary {
  cursor: pointer;
  padding: 22px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(238, 250, 246, 0.72);
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(72px, 10vw, 124px) clamp(18px, 6vw, 78px);
  background: rgba(12, 31, 44, 0.6);
  backdrop-filter: blur(8px);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.email-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(238, 250, 246, 0.94);
}

.contact-form label,
.contact-form span {
  display: block;
}

.contact-form span {
  margin-bottom: 8px;
  color: #102022;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 14px;
  color: #102022;
  background: #f8fbf8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(92, 200, 255, 0.2);
  border-color: var(--teal-dark);
}

.form-note {
  margin: 0;
  color: #536561;
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 6vw, 78px);
  color: rgba(238, 250, 246, 0.72);
  background: rgba(8, 21, 32, 0.84);
  backdrop-filter: blur(8px);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal);
  font-weight: 800;
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: 78svh;
  padding-top: calc(var(--header-height) + 70px);
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 18% 8% auto auto;
  z-index: -1;
  width: min(520px, 52vw);
  aspect-ratio: 1;
  border: 1px solid rgba(92, 200, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 80px rgba(92, 200, 255, 0.1),
    0 0 120px rgba(243, 200, 106, 0.08);
}

.service-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 1.02;
}

.service-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(238, 250, 246, 0.76);
  font-size: 1.1rem;
  line-height: 1.76;
}

.service-hero-panel {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(224, 252, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(92, 200, 255, 0.14), rgba(243, 200, 106, 0.08)),
    rgba(9, 22, 34, 0.56);
  backdrop-filter: blur(16px);
}

.service-hero-panel span {
  display: block;
  color: var(--amber);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.service-hero-panel strong {
  display: block;
  margin-top: 28px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.3vw, 2.4rem);
  line-height: 1.28;
}

.service-detail-section {
  background: rgba(10, 23, 36, 0.42);
  backdrop-filter: blur(6px);
}

.service-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbitDrift {
  from {
    transform: rotate(-18deg);
  }

  to {
    transform: rotate(342deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .service-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .proof-band,
  .service-hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .hero::after,
  .hero-visual-system {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: block;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    padding: 4px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: calc(var(--header-height) + 56px) 16px 24px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 22, 34, 0.72) 0%, rgba(9, 22, 34, 0.58) 46%, rgba(9, 22, 34, 0.86) 100%),
      linear-gradient(90deg, rgba(9, 22, 34, 0.62), rgba(9, 22, 34, 0.12));
  }

  .hero::before {
    bottom: 20%;
    height: 130px;
    opacity: 0.64;
  }

  .hero::after,
  .hero-visual-system {
    display: none;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding-top: 0;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-line {
    font-size: 1.22rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-stats article {
    min-height: 86px;
    padding: 18px;
  }

  .section,
  .contact-section {
    padding: 68px 16px;
  }

  .service-grid,
  .service-page-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 56px);
  }

  .service-hero h1 {
    font-size: 2.55rem;
  }

  .service-card {
    min-height: 250px;
  }

  .service-card h3 {
    margin-top: 34px;
  }

  .outcome-grid strong {
    margin-top: 30px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

}
