:root {
  color-scheme: dark;
  --bg: #020c13;
  --bg-deep: #01070d;
  --panel: #081a25;
  --panel-soft: #0b202d;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #b7c3ca;
  --muted-strong: #d5dde1;
  --red: #ef2e1d;
  --red-deep: #c71e13;
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
}

:root[data-theme="day"] {
  color-scheme: light;
  --bg: #f4f8fb;
  --bg-deep: #ffffff;
  --panel: #ffffff;
  --panel-soft: #edf3f7;
  --line: rgba(11, 32, 43, 0.14);
  --line-soft: rgba(11, 32, 43, 0.08);
  --text: #071722;
  --muted: #51616b;
  --muted-strong: #22343f;
  --shadow: 0 18px 42px rgba(20, 45, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  transition:
    background 220ms ease,
    color 220ms ease;
}

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

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

.container {
  width: min(92%, 1120px);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background:
    radial-gradient(circle at 16% 12%, rgba(26, 63, 82, 0.28), transparent 28%),
    linear-gradient(90deg, #071722 0%, #020b12 55%, #01070c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar {
  height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.utility-inner,
.utility-left,
.utility-right,
.nav-inner,
.nav-links,
.nav-actions,
.btn,
.hero-actions {
  display: flex;
  align-items: center;
}

.utility-inner {
  height: 100%;
  justify-content: space-between;
  gap: 22px;
}

.utility-left,
.utility-right {
  gap: clamp(16px, 3.1vw, 38px);
}

.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 12px;
  white-space: nowrap;
}

.utility-bar svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.9;
}

.main-nav {
  height: 88px;
}

.nav-inner {
  height: 100%;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-width: 120px;
  color: #fff;
  text-transform: uppercase;
}

.brand-mark {
  width: 72px;
  height: 32px;
  margin-bottom: -6px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 7.5;
}

.brand-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 4.5px;
}

.brand-sub {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 7px;
}

.nav-links {
  gap: clamp(16px, 2.2vw, 32px);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-height: 45px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a.active {
  color: var(--red);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--red);
}

.nav-links svg {
  width: 14px;
  height: 14px;
}

.nav-actions {
  gap: 12px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  height: 40px;
  min-width: 76px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.48);
}

.theme-toggle-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.theme-toggle-day {
  display: none;
}

.btn {
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  min-height: 44px;
  border-radius: 4px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.1;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(239, 46, 29, 0.22);
}

.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.btn-ghost {
  background: rgba(4, 13, 20, 0.4);
  border-color: rgba(255, 255, 255, 0.54);
  color: #fff;
}

.btn-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 12px;
}

.nav-quote {
  min-width: 160px;
  height: 40px;
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: 396px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, #0a1921 0%, #07121a 44%, #020a10 100%),
    url("assets/card-realisations.png") center / cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 11, 17, 0.93) 0%, rgba(2, 11, 17, 0.78) 34%, rgba(2, 11, 17, 0.28) 68%, rgba(2, 11, 17, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(2, 11, 17, 0.16) 55%, rgba(2, 11, 17, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 63px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(43px, 5.1vw, 54px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--red);
}

.title-rule {
  width: 48px;
  height: 3px;
  margin: 15px 0 15px;
  background: var(--red);
}

.hero-copy {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  gap: 20px;
  margin-top: 24px;
}

.hero-actions .btn {
  min-width: 178px;
  height: 44px;
}

.services-section {
  padding: 37px 0 18px;
  background:
    radial-gradient(circle at 10% 14%, rgba(14, 43, 58, 0.44), transparent 35%),
    radial-gradient(circle at 88% 12%, rgba(11, 40, 56, 0.3), transparent 30%),
    linear-gradient(180deg, #03131d 0%, #020c13 58%, #020b12 100%);
}

.services-section h2 {
  margin: 0 0 20px;
  font-size: clamp(23px, 2.5vw, 27px);
  line-height: 1.15;
  letter-spacing: 0;
}

.services-section > .container > .eyebrow {
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 298px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(13, 34, 46, 0.98), rgba(7, 23, 34, 0.98));
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.16);
}

.service-card img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 84px;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(7, 23, 34, 0.68));
}

.service-icon {
  position: absolute;
  top: 96px;
  left: 18px;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  background: #0a1f2d;
  color: var(--red);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}

.service-body {
  position: relative;
  z-index: 1;
  padding: 36px 14px 12px;
}

.service-body h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.15;
}

.service-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.36;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.service-body a svg {
  width: 13px;
  height: 13px;
}

.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(9, 29, 41, 0.96), rgba(7, 22, 32, 0.96)),
    radial-gradient(circle at 0% 30%, rgba(255, 255, 255, 0.07), transparent 36%);
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  height: 121px;
  padding: 27px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.feature:last-child {
  border-right: 0;
}

.feature > svg {
  width: 42px;
  height: 42px;
  color: var(--red);
  stroke-width: 1.6;
}

.feature h3 {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.25;
}

.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  line-height: 1.28;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.teaser-card {
  position: relative;
  min-height: 256px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.teaser-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.teaser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 10, 15, 0.03) 0%, rgba(4, 18, 27, 0.76) 43%, rgba(5, 19, 29, 0.98) 100%),
    linear-gradient(90deg, rgba(3, 14, 22, 0.86) 0%, rgba(3, 14, 22, 0.45) 62%, rgba(3, 14, 22, 0.08) 100%);
}

.teaser-content {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 15px;
}

.teaser-content h3 {
  margin: 0 0 5px;
  font-size: 23px;
  line-height: 1.12;
}

.teaser-content p {
  max-width: 290px;
  min-height: 52px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 15% 15%, rgba(14, 43, 58, 0.38), transparent 35%),
    linear-gradient(180deg, #03131d 0%, #020b11 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.82fr 0.9fr 1.5fr 0.75fr;
  gap: 32px;
  padding: 20px 0 16px;
}

.footer-brand .brand {
  align-items: flex-start;
  width: 132px;
  min-width: 132px;
  margin-bottom: 12px;
}

.footer-brand .brand-mark {
  margin-left: 17px;
}

.footer-brand p {
  max-width: 235px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10.5px;
  line-height: 1.38;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.2;
}

.site-footer a,
.footer-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10.5px;
  line-height: 1.35;
}

.site-footer a:hover {
  color: #fff;
}

.footer-contact span {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 9px;
  margin-bottom: 10px;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  stroke-width: 1.8;
}

.socials > div {
  display: flex;
  gap: 11px;
}

.socials a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 2px;
  color: #fff;
}

.socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.socials a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10.5px;
}

.footer-bottom div {
  display: flex;
  gap: 36px;
}

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

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

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .service-body p {
    min-height: 72px;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-right {
    display: none;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-quote {
    display: none;
  }

  .features-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(91%, 640px);
  }

  .utility-bar {
    height: auto;
    padding: 9px 0;
  }

  .utility-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .main-nav {
    height: auto;
  }

  .nav-inner {
    align-items: flex-start;
    padding: 18px 0 14px;
  }

  .brand {
    width: 132px;
    min-width: 132px;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 4px 14px;
    justify-content: end;
  }

  .nav-links a {
    min-height: 28px;
    font-size: 12px;
  }

  .nav-links a.active::after {
    bottom: -1px;
    width: 27px;
  }

  .hero {
    min-height: 430px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 11, 17, 0.94), rgba(2, 11, 17, 0.66)),
      linear-gradient(180deg, rgba(2, 11, 17, 0.04), rgba(2, 11, 17, 0.55));
  }

  .hero-content {
    padding: 60px 0 50px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .services-grid,
  .teaser-grid,
  .features-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:nth-child(2),
  .feature:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .teaser-card {
    min-height: 285px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .utility-left span:nth-child(2) {
    display: none;
  }

  .nav-inner {
    display: block;
  }

  .nav-links {
    justify-content: start;
    margin-top: 16px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .service-body p {
    min-height: 0;
  }
}

:root[data-theme="day"] .site-header {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 250, 0.98)),
    linear-gradient(180deg, #ffffff 0%, #edf4f8 100%);
  border-bottom-color: rgba(11, 32, 43, 0.1);
  box-shadow: 0 12px 32px rgba(19, 49, 66, 0.08);
}

:root[data-theme="day"] .utility-bar {
  border-bottom-color: rgba(11, 32, 43, 0.12);
}

:root[data-theme="day"] .utility-bar span,
:root[data-theme="day"] .nav-links a {
  color: rgba(7, 23, 34, 0.82);
}

:root[data-theme="day"] .brand,
:root[data-theme="day"] .theme-toggle {
  color: #071722;
}

:root[data-theme="day"] .nav-links a.active {
  color: var(--red);
}

:root[data-theme="day"] .theme-toggle {
  border-color: rgba(11, 32, 43, 0.18);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 45, 58, 0.1);
}

:root[data-theme="day"] .theme-toggle:hover {
  border-color: rgba(239, 46, 29, 0.42);
}

:root[data-theme="day"] .theme-toggle-night {
  display: none;
}

:root[data-theme="day"] .theme-toggle-day {
  display: inline-flex;
}

:root[data-theme="day"] .btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(7, 23, 34, 0.32);
  color: #071722;
}

:root[data-theme="day"] .hero {
  border-bottom-color: rgba(11, 32, 43, 0.12);
  background:
    linear-gradient(90deg, #f7fbfd 0%, #edf6fb 44%, #dceef7 100%),
    url("assets/card-realisations.png") center / cover;
}

:root[data-theme="day"] .hero-video {
  opacity: 0.98;
}

:root[data-theme="day"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 38%, rgba(255, 255, 255, 0.22) 72%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.2) 52%, rgba(255, 255, 255, 0.54) 100%);
}

:root[data-theme="day"] .hero h1 {
  color: #071722;
}

:root[data-theme="day"] .hero-copy {
  color: rgba(7, 23, 34, 0.82);
}

:root[data-theme="day"] .services-section {
  background:
    radial-gradient(circle at 10% 14%, rgba(220, 238, 247, 0.92), transparent 35%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, #edf4f8 58%, #ffffff 100%);
}

:root[data-theme="day"] .services-section h2,
:root[data-theme="day"] .service-body h3,
:root[data-theme="day"] .feature h3,
:root[data-theme="day"] .teaser-content h3,
:root[data-theme="day"] .site-footer h3 {
  color: #071722;
}

:root[data-theme="day"] .service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 250, 0.98));
  box-shadow: var(--shadow);
}

:root[data-theme="day"] .service-card img {
  filter: brightness(1.08) saturate(0.9) contrast(0.98);
}

:root[data-theme="day"] .service-card::after {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.86));
}

:root[data-theme="day"] .service-icon {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(20, 45, 58, 0.08);
}

:root[data-theme="day"] .service-body p,
:root[data-theme="day"] .feature p {
  color: rgba(7, 23, 34, 0.72);
}

:root[data-theme="day"] .features-strip {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 250, 0.98)),
    radial-gradient(circle at 0% 30%, rgba(239, 46, 29, 0.06), transparent 36%);
  box-shadow: var(--shadow);
}

:root[data-theme="day"] .feature,
:root[data-theme="day"] .feature:nth-child(2),
:root[data-theme="day"] .feature:nth-child(-n + 2) {
  border-color: rgba(11, 32, 43, 0.12);
}

:root[data-theme="day"] .teaser-card {
  background: #ffffff;
  box-shadow: var(--shadow);
}

:root[data-theme="day"] .teaser-card img {
  filter: brightness(1.12) saturate(0.9) contrast(0.96);
}

:root[data-theme="day"] .teaser-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.68) 42%, rgba(255, 255, 255, 0.96) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.58) 62%, rgba(255, 255, 255, 0.1) 100%);
}

:root[data-theme="day"] .teaser-content p {
  color: rgba(7, 23, 34, 0.76);
}

:root[data-theme="day"] .site-footer {
  border-top-color: rgba(11, 32, 43, 0.1);
  background:
    radial-gradient(circle at 15% 15%, rgba(220, 238, 247, 0.72), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #edf4f8 100%);
}

:root[data-theme="day"] .site-footer a,
:root[data-theme="day"] .footer-contact span,
:root[data-theme="day"] .footer-brand p {
  color: rgba(7, 23, 34, 0.68);
}

:root[data-theme="day"] .site-footer a:hover {
  color: #071722;
}

:root[data-theme="day"] .socials a {
  border-color: rgba(7, 23, 34, 0.28);
  color: #071722;
  background: rgba(255, 255, 255, 0.76);
}

:root[data-theme="day"] .footer-bottom {
  border-top-color: rgba(11, 32, 43, 0.1);
}

:root[data-theme="day"] .footer-bottom p,
:root[data-theme="day"] .footer-bottom a {
  color: rgba(7, 23, 34, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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