:root {
  --orange: #ff6a00;
  --orange-2: #ff8c1a;
  --orange-3: #e55000;
  --ink: #050505;
  --ink-soft: #101010;
  --surface: #151515;
  --surface-2: #202020;
  --line: #343434;
  --text: #ffffff;
  --muted: #a8a8a8;
  --silver: #d7d7d7;
  --green: #25d366;
  --cyan: #2dd4bf;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --font-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--font-scale));
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.high-contrast {
  --orange: #ff9b36;
  --orange-2: #ffd2ad;
  --muted: #f1f1f1;
  --line: #f6f6f6;
  --surface: #000000;
  --surface-2: #0a0a0a;
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(150px, 230px) 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 3vw, 3rem);
  background: rgba(5, 5, 5, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
}

.brand img {
  width: min(230px, 42vw);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  color: var(--silver);
  font-size: 0.94rem;
}

.main-nav a {
  padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.header-cta,
.btn,
.chat-input button,
.cookie-panel button {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
}

.header-cta {
  padding: 0.8rem 1rem;
  background: var(--green);
  color: #062f16;
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 94vh;
  padding: clamp(7rem, 11vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.cord-field {
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.84;
}

.cord {
  position: absolute;
  width: 82vw;
  height: 82vw;
  min-width: 720px;
  min-height: 720px;
  border: 4px solid transparent;
  border-left-color: rgba(255, 106, 0, 0.64);
  border-top-color: rgba(255, 140, 26, 0.52);
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(255, 106, 0, 0.34));
}

.cord-one {
  top: 1rem;
  left: -42vw;
  transform: rotate(-12deg);
}

.cord-two {
  top: 4rem;
  left: -39vw;
  transform: rotate(18deg);
  animation: breathe 9s ease-in-out infinite;
}

.cord-three {
  top: 7rem;
  left: -36vw;
  transform: rotate(44deg);
  border-left-color: rgba(45, 212, 191, 0.24);
  border-top-color: rgba(255, 106, 0, 0.4);
}

.hero-copy,
.hero-system {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-logo {
  width: min(430px, 88vw);
  margin-bottom: clamp(1.4rem, 3vw, 2.6rem);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  margin-bottom: 1.35rem;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 710px;
  color: var(--silver);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.2rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #180800;
  box-shadow: 0 18px 42px rgba(255, 106, 0, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-row span {
  border-left: 3px solid var(--orange);
  padding-left: 0.75rem;
}

.hero-system {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2vw, 1.4rem);
  overflow: hidden;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  pointer-events: none;
}

.system-topline,
.signal-grid,
.assistant-panel,
.mini-architecture {
  position: relative;
  z-index: 1;
}

.system-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 1rem;
}

.system-topline strong {
  color: var(--white);
  text-align: right;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.signal-grid article,
.assistant-panel,
.mini-architecture span,
.service-card,
.planner-output,
.chat-widget,
.architecture-map article,
.portal-card,
.contact-form,
.cookie-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}

.signal-grid article {
  padding: 0.8rem;
  min-width: 0;
}

.signal-grid small,
.portal-card small,
.output-label {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-grid strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  line-height: 1;
  color: var(--orange-2);
  margin: 0.38rem 0;
}

.signal-grid span,
.portal-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.assistant-panel {
  margin-top: 0.8rem;
  padding: 1rem;
}

.assistant-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.assistant-line p {
  color: var(--silver);
  margin-bottom: 0;
}

.pulse-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.12);
  margin-top: 0.38rem;
  animation: pulse 1.7s ease-in-out infinite;
}

.pipeline {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pipeline span {
  display: block;
  height: 0.5rem;
  width: var(--w);
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  border-radius: 99px;
}

.mini-architecture {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.mini-architecture span {
  color: var(--silver);
  padding: 0.7rem 0.45rem;
  text-align: center;
  font-size: 0.8rem;
}

.trust-strip {
  width: 100%;
  display: flex;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip span {
  flex: 1;
  min-width: 0;
  padding: 1rem;
  background: #0c0c0c;
  color: var(--silver);
  font-size: 0.9rem;
  text-align: center;
}

.services,
.split-section,
.planner-section,
.platform,
.dashboard-section,
.roadmap,
.contact-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto clamp(2rem, 5vw, 3.6rem);
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-kicker {
  margin-bottom: 0.7rem;
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.section-heading > p:not(.section-kicker),
.contact-copy > p,
.service-card p,
.architecture-map p,
.timeline p,
.portal-card p {
  color: var(--muted);
}

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

.service-card {
  padding: clamp(1rem, 2.4vw, 1.45rem);
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
  transform: translateY(-3px);
}

.service-index {
  color: var(--orange-2);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.84rem;
  margin-bottom: auto;
}

.service-card h3 {
  margin: 1.5rem 0 0.7rem;
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--silver);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.feature-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--silver);
  padding: 0.55rem 0.7rem;
}

.chat-widget {
  background: #0e1210;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #13251a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.chat-header .status {
  color: var(--green);
  font-weight: 900;
}

.chat-feed {
  min-height: 380px;
  max-height: 430px;
  overflow: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.message {
  max-width: 88%;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
}

.message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: var(--silver);
}

.message.user {
  align-self: flex-end;
  background: var(--green);
  color: #052c14;
}

.message.menu {
  display: grid;
  gap: 0.5rem;
  background: transparent;
  padding: 0;
}

.message.menu button {
  text-align: left;
  color: var(--white);
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  padding: 0.7rem;
  cursor: pointer;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input,
.planner-form input,
.planner-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.86rem;
}

.chat-input button {
  background: var(--green);
  color: #062f16;
  padding-inline: 1rem;
}

.planner-section {
  width: 100%;
  max-width: none;
  background: var(--white);
  color: var(--ink);
}

.planner-section .section-shell,
.planner-section > .section-heading,
.planner-section > .planner-grid {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.planner-section .section-kicker {
  color: var(--orange-3);
}

.planner-section .section-heading > p:not(.section-kicker) {
  color: #565656;
}

.planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: 1rem;
}

.planner-form,
.planner-output {
  border-radius: var(--radius);
}

.planner-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
}

.planner-form label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

.planner-form input,
.planner-form select {
  color: var(--ink);
  background: var(--white);
  border-color: #cfcfcf;
}

.planner-output {
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.18), transparent 44%),
    var(--ink);
  color: var(--white);
}

.planner-output dl {
  display: grid;
  gap: 0.8rem;
  margin: 1.3rem 0;
}

.planner-output div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.8rem;
}

.planner-output dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.planner-output dd {
  margin: 0.25rem 0 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
}

.architecture-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.architecture-map article {
  border: 0;
  border-radius: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #111111;
  min-height: 280px;
}

.architecture-map span {
  color: var(--orange-2);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

.architecture-map h3 {
  margin-top: 2.8rem;
}

.dashboard-section {
  padding-top: 0;
}

.portal-preview {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111111;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portal-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.portal-nav strong {
  color: var(--white);
  margin-right: auto;
}

.portal-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.portal-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
}

.portal-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--orange-2);
  line-height: 1;
  margin: 0.9rem 0 0.4rem;
}

.progress-track {
  height: 0.72rem;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  margin: 1rem 0;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline li {
  background: #101010;
  padding: clamp(1rem, 2vw, 1.4rem);
  min-height: 260px;
}

.timeline span {
  color: var(--orange-2);
  font-weight: 900;
}

.timeline h3 {
  margin-top: 4rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.68fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-copy address {
  font-style: normal;
  color: var(--silver);
  margin-top: 1.5rem;
}

.contact-copy a {
  color: var(--orange-2);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
  resize: vertical;
}

.accessibility-tools {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  gap: 0.35rem;
  padding: 0.35rem;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.accessibility-tools button {
  min-width: 40px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 91;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--green);
  color: #052c14;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.25);
}

.cookie-panel {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 110;
  width: min(720px, calc(100vw - 11rem));
  padding: 1rem;
  background: #161616;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  transform: translateX(-50%);
}

.cookie-panel.is-hidden {
  display: none;
}

.cookie-panel p {
  color: var(--silver);
  margin: 0;
}

.cookie-panel button {
  color: #180800;
  background: var(--orange-2);
  min-height: 44px;
  min-width: 130px;
  padding-inline: 1rem;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  padding: 3rem 1rem 7rem;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer img {
  width: min(340px, 80vw);
}

.site-footer p {
  color: var(--silver);
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
}

@keyframes pulse {
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.04);
  }
}

@keyframes breathe {
  50% {
    transform: rotate(21deg) translate3d(1rem, 0, 0);
  }
}

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

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

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

  .portal-card.wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 0.3rem;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .main-nav {
    position: absolute;
    inset: calc(100% + 1px) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.6rem;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.8rem;
  }

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

  .hero {
    padding-top: 7rem;
  }

  .hero-system {
    width: 100%;
    max-width: 620px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(1180px, calc(100% - 1rem));
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  h1 {
    font-size: clamp(2.75rem, 17vw, 4.6rem);
  }

  .hero-logo {
    width: min(330px, 100%);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .mini-architecture,
  .service-grid,
  .architecture-map,
  .timeline,
  .portal-main,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    text-align: left;
  }

  .portal-nav {
    overflow-x: auto;
  }

  .portal-nav span {
    white-space: nowrap;
  }

  .accessibility-tools {
    left: 0.5rem;
    bottom: 0.5rem;
  }

  .floating-whatsapp {
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .cookie-panel {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 4.4rem;
    width: auto;
    display: grid;
    transform: none;
  }
}

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