:root {
  color-scheme: dark;
  --bg: #08121f;
  --bg-deep: #050b13;
  --surface: #0e1d2e;
  --surface-2: #13263b;
  --surface-3: #172e46;
  --paper: #edf4f4;
  --paper-text: #10202b;
  --line: #29435d;
  --line-soft: rgba(173, 193, 211, 0.18);
  --text: #f7fafc;
  --text-soft: #ced9e3;
  --muted: #9fb1c1;
  --blue: #65b5ff;
  --blue-dark: #13649e;
  --mint: #5addb5;
  --mint-dark: #0a735a;
  --amber: #ffc16b;
  --danger: #ff8f85;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-small: 14px;
  --shell: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 9%, rgba(101, 181, 255, 0.13), transparent 31rem),
    radial-gradient(circle at 13% 27%, rgba(90, 221, 181, 0.07), transparent 29rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 7vw, 6.8rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4.6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.3;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--paper-text);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 18, 31, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 8px 26px rgba(65, 172, 221, 0.22);
  color: #04111d;
}

.brand-mark::after {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(4, 17, 29, 0.23);
  border-radius: 10px;
  content: "";
  transform: rotate(45deg) translate(12px, -12px);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-size: 1.12rem;
  font-weight: 950;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav a {
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(101, 181, 255, 0.1);
  color: var(--text);
}

.hero {
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-block: 88px 104px;
}

.lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #66b8ff, #58dbb2);
  box-shadow: 0 12px 32px rgba(59, 166, 207, 0.2);
  color: #04111d;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(14, 29, 46, 0.72);
  color: var(--text);
}

.button-light {
  background: var(--paper);
  color: var(--paper-text);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.hero-footnote {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.app-window {
  position: relative;
  border: 1px solid rgba(101, 181, 255, 0.32);
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(19, 38, 59, 0.98), rgba(8, 20, 34, 0.98));
  box-shadow: var(--shadow);
}

.app-window::before {
  position: absolute;
  z-index: -1;
  inset: 8% 0 -12% 13%;
  border-radius: 40px;
  background: linear-gradient(140deg, rgba(101, 181, 255, 0.19), rgba(90, 221, 181, 0.12));
  content: "";
  filter: blur(42px);
}

.window-bar {
  display: grid;
  min-height: 62px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.78rem;
}

.window-state {
  justify-self: end;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #49677f;
}

.window-body {
  padding: 24px;
}

.calculation-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.calculation-head div {
  display: grid;
}

.calculation-head div span,
.cost-stack span,
.result-card span {
  color: var(--muted);
  font-size: 0.77rem;
}

.calculation-head strong {
  margin-top: 4px;
  font-size: 1rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-chip::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.status-testing {
  border-color: rgba(255, 193, 107, 0.35);
  background: rgba(255, 193, 107, 0.09);
  color: var(--amber);
}

.status-development {
  border-color: rgba(101, 181, 255, 0.35);
  background: rgba(101, 181, 255, 0.09);
  color: var(--blue);
}

.status-ready {
  border-color: rgba(90, 221, 181, 0.35);
  background: rgba(90, 221, 181, 0.09);
  color: var(--mint);
}

.cost-stack {
  display: grid;
  gap: 10px;
}

.cost-stack > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(5, 11, 19, 0.35);
}

.cost-stack strong {
  font-size: 0.82rem;
  text-align: right;
}

.result-card {
  display: grid;
  margin-top: 12px;
  padding: 20px;
  border: 1px solid rgba(90, 221, 181, 0.28);
  border-radius: 15px;
  background: linear-gradient(120deg, rgba(90, 221, 181, 0.12), rgba(101, 181, 255, 0.08));
}

.result-card strong {
  margin-block: 4px;
  font-size: 1.08rem;
}

.result-card small {
  color: var(--muted);
}

.section {
  padding-block: 112px;
}

.section-soft {
  border-block: 1px solid var(--line-soft);
  background: rgba(14, 29, 46, 0.54);
}

.section-ink {
  background: var(--bg-deep);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.split-heading h2 {
  margin-bottom: 0;
}

.section-intro {
  max-width: 690px;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
}

.feature-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(8, 18, 31, 0.6);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-number {
  display: block;
  margin-bottom: 64px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
}

.product-section {
  display: grid;
  gap: 44px;
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.product-heading p:not(.eyebrow) {
  max-width: 700px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.platform-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.platform-list > li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.platform-list span {
  color: var(--muted);
  font-size: 0.82rem;
}

.platform-list strong {
  font-size: 0.9rem;
}

.product-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-points > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-small);
  color: var(--text-soft);
}

.product-points span {
  color: var(--mint);
  font-weight: 900;
}

.ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.ecosystem h2 {
  margin-bottom: 0;
}

.ecosystem-copy {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.ecosystem-copy p {
  color: var(--text-soft);
  font-size: 1.08rem;
}

.ecosystem-copy p:last-child {
  margin-bottom: 0;
}

.roadmap-list {
  display: grid;
  margin: 58px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 26px;
  padding: 23px 4px;
  border-bottom: 1px solid var(--line);
}

.roadmap-list span {
  color: var(--muted);
  font-size: 0.82rem;
}

.roadmap-list strong {
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.roadmap-list .is-done span {
  color: var(--mint);
}

.roadmap-list .is-active span {
  color: var(--amber);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  gap: clamp(48px, 9vw, 120px);
  margin-bottom: 112px;
  padding: clamp(34px, 6vw, 68px);
  border-radius: 30px;
  background: linear-gradient(135deg, #16658e, #0b755d);
  box-shadow: var(--shadow);
}

.contact-band h2 {
  margin-bottom: 0;
}

.contact-band p {
  color: #e2f3f1;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 54px;
  padding-block: 64px 54px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 9px;
}

.footer-grid > div > strong {
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.footer-grid a:not(.brand) {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-grid a:not(.brand):hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px 34px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.78rem;
}

/* Vnitřní stránky */

.page-hero {
  padding-block: 72px 84px;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.page-hero .lead {
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--text);
  text-decoration: underline;
}

.breadcrumb span::before {
  margin-right: 7px;
  color: #55718a;
  content: "/";
}

.page-status {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.content-stack {
  display: grid;
  gap: 62px;
}

.content-section {
  scroll-margin-top: 30px;
}

.content-section h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.content-section > p {
  color: var(--text-soft);
}

.sticky-card {
  position: sticky;
  top: 30px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(14, 29, 46, 0.88);
}

.sticky-card h2 {
  margin-bottom: 18px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.sticky-card dl {
  display: grid;
  margin-bottom: 22px;
}

.sticky-card dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line-soft);
}

.sticky-card dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.sticky-card dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.sticky-card .button {
  width: 100%;
}

.info-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-small);
  background: rgba(14, 29, 46, 0.64);
}

.info-card h3 {
  margin-bottom: 8px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 16px 15px 46px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--text-soft);
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 17px;
  color: var(--mint);
  content: "✓";
  font-weight: 900;
}

.notice {
  padding: 20px 22px;
  border: 1px solid rgba(255, 193, 107, 0.34);
  border-radius: var(--radius-small);
  background: rgba(255, 193, 107, 0.08);
  color: #ffe4bd;
}

.notice strong {
  color: var(--amber);
}

.notice p:last-child {
  margin-bottom: 0;
}

.data-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  overflow: hidden;
}

.data-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
}

.data-row:last-child {
  border-bottom: 0;
}

.data-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.data-row strong {
  font-size: 0.9rem;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-small);
  background: rgba(14, 29, 46, 0.58);
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.3fr);
  align-items: start;
  gap: clamp(45px, 9vw, 120px);
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin-top: 58px;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 30px;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-nav {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-small);
}

.legal-nav strong {
  margin-bottom: 5px;
  font-size: 0.82rem;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--text);
  text-decoration: underline;
}

.operator-card {
  display: grid;
  gap: 0;
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(14, 29, 46, 0.62);
}

.operator-card div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.operator-card div:last-child {
  border-bottom: 0;
}

.operator-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.operator-card strong {
  font-size: 0.92rem;
}

.operator-card a {
  color: var(--blue);
}

.not-found {
  display: grid;
  min-height: 68vh;
  place-content: center;
  justify-items: start;
  padding-block: 80px;
}

.not-found strong {
  color: var(--mint);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.not-found h1 {
  margin-block: 16px 22px;
}

.not-found p {
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.meta-line {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 960px) {
  .hero,
  .product-heading,
  .ecosystem,
  .detail-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .app-window {
    max-width: 680px;
  }

  .sticky-card,
  .legal-nav {
    position: static;
  }

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

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 740px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding-block: 16px 12px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero {
    gap: 52px;
    padding-block: 64px 82px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .section {
    padding-block: 82px;
  }

  .split-heading,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .product-points,
  .info-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-number {
    margin-bottom: 38px;
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-bar > span:nth-child(2) {
    display: none;
  }

  .cost-stack > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .cost-stack strong {
    text-align: left;
  }

  .roadmap-list li {
    grid-template-columns: 108px 1fr;
    gap: 16px;
  }

  .contact-band {
    margin-bottom: 82px;
    padding: 30px 24px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .data-row,
  .operator-card div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: none;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    padding-block: 8px;
    text-align: center;
  }

  .calculation-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .legal-nav {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .page-hero {
    padding-block: 30px;
  }

  .legal-content p,
  .legal-content li {
    color: #222;
  }
}
