:root {
  --ink: #14142c;
  --ink-soft: #252747;
  --paper: #f2f6f7;
  --white: #ffffff;
  --burgundy: #702424;
  --blue: #55afe3;
  --pink: #e276a4;
  --orange: #ff914d;
  --green: #237f60;
  --line: rgba(20, 20, 44, 0.14);
  --line-light: rgba(242, 246, 247, 0.2);
  --shadow: 0 24px 70px rgba(20, 20, 44, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

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

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  font-size: 6.8rem;
  font-weight: 760;
}

h2 {
  font-size: 3rem;
  font-weight: 720;
}

h3 {
  font-size: 1.35rem;
  font-weight: 720;
}

.sr-only,
.skip-link {
  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:focus {
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  margin: 0;
  clip: auto;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - 2rem, 1220px);
  margin: 0 auto;
  padding: 1rem 0;
  color: var(--white);
  transition: color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 -1rem;
  z-index: -1;
  background: rgba(242, 246, 247, 0);
  border: 1px solid rgba(242, 246, 247, 0);
  border-radius: 8px;
  backdrop-filter: blur(0);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled::before {
  background: rgba(242, 246, 247, 0.9);
  border-color: rgba(20, 20, 44, 0.08);
  box-shadow: 0 12px 34px rgba(20, 20, 44, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.95rem;
}

.primary-nav a {
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  border-radius: 4px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a:focus-visible {
  background: rgba(20, 20, 44, 0.07);
}

.nav-contact {
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.menu-toggle__bar {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 8.8rem 1rem 4.5rem;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(20, 20, 44, 0.98), rgba(20, 20, 44, 0.88) 42%, rgba(20, 20, 44, 0.5) 67%, rgba(20, 20, 44, 0.1)),
    url("assets/vr-cloud.png");
  background-position: center;
  background-size: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18%;
  background: linear-gradient(0deg, var(--paper), rgba(242, 246, 247, 0));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.8rem;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b9e2fb;
}

.hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.35rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.05rem;
  font-weight: 730;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #5b1d1d;
  border-color: #5b1d1d;
}

.button--ghost {
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 740px);
  margin: 1.6rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.proof-strip div {
  padding: 1rem;
  background: rgba(20, 20, 44, 0.58);
}

.proof-strip dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 0.12rem 0 0;
  font-weight: 730;
  line-height: 1.25;
}

.section {
  padding: 5.5rem 1rem;
}

.section__inner,
.platform-section,
.sectors-section,
.process-section,
.leadership-section,
.contact-section,
.site-footer,
.network-hero,
.contact-band {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section--intro .section__inner,
.platform-section,
.leadership-section,
.contact-section,
.network-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
}

.section-heading--wide {
  max-width: 840px;
}

.intro-copy {
  display: grid;
  gap: 1rem;
  color: rgba(20, 20, 44, 0.78);
  font-size: 1.08rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  padding-top: 0;
}

.service-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1.1rem;
  min-height: 390px;
  padding: 1.4rem;
  color: var(--white);
  border-radius: 8px;
}

.service-card p:not(.service-card__index) {
  color: rgba(255, 255, 255, 0.82);
}

.service-card__index {
  width: fit-content;
  padding: 0.18rem 0.5rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 760;
}

.service-card__meta {
  align-self: end;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.service-card--blue {
  background: #195d83;
}

.service-card--pink {
  background: #8a3659;
}

.service-card--orange {
  background: #8b4520;
}

.platform-section {
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.platform-copy {
  display: grid;
  gap: 1.25rem;
}

.platform-copy p {
  color: rgba(20, 20, 44, 0.78);
}

.platform-copy .offer-note {
  padding-left: 0.85rem;
  color: rgba(20, 20, 44, 0.66);
  border-left: 3px solid var(--blue);
  font-size: 0.9rem;
}

.platform-copy .hero__actions {
  align-items: center;
}

.tick-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 1.35rem;
}

.tick-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
  border-radius: 2px;
}

.text-link {
  width: fit-content;
  color: var(--burgundy);
  font-weight: 760;
}

.video-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  border: 1px solid rgba(20, 20, 44, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-stage::before {
  content: "Lontis demo";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0.45rem 0.65rem;
  color: var(--white);
  background: rgba(20, 20, 44, 0.82);
  font-size: 0.78rem;
  font-weight: 740;
}

.video-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sectors-section {
  display: grid;
  gap: 2.4rem;
}

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

.sector-list article {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sector-list p {
  color: rgba(20, 20, 44, 0.72);
}

.sector-list .sector-list__kicker {
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.sector-list a {
  align-self: end;
  width: fit-content;
  color: var(--burgundy);
  font-weight: 760;
}

.sector-list__accent {
  display: block;
  width: 42px;
  height: 5px;
  border-radius: 2px;
}

.sector-list__accent--blue {
  background: var(--blue);
}

.sector-list__accent--green {
  background: var(--green);
}

.sector-list__accent--burgundy {
  background: var(--burgundy);
}

.sector-list__accent--orange {
  background: var(--orange);
}

.process-section {
  display: grid;
  gap: 2rem;
  padding-top: 4.5rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-list li {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 250px;
  padding: 1.2rem;
  background: var(--paper);
}

.process-list span {
  color: var(--burgundy);
  font-weight: 800;
}

.process-list p {
  color: rgba(20, 20, 44, 0.72);
}

.press-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
  align-items: start;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 5.5rem;
  padding: 2rem;
  color: var(--white);
  background: #195d83;
  border-radius: 8px;
}

.press-band .eyebrow {
  color: #d7f0ff;
}

.press-band__copy {
  display: grid;
  gap: 0.75rem;
}

.press-band__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.press-band__items article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 0.7rem;
  min-height: 210px;
  padding: 1.1rem;
  background: #195d83;
}

.press-band__items p {
  color: #d7f0ff;
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.press-band__items span {
  color: rgba(255, 255, 255, 0.78);
}

.press-band__items a {
  align-self: end;
  width: fit-content;
  font-weight: 760;
}

.team-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 540px) minmax(0, 540px) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  color: var(--white);
  background: var(--ink);
}

.team-photo {
  grid-column: 2;
  margin: 0;
}

.team-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.team-photo figcaption {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.team-copy {
  grid-column: 3;
  display: grid;
  gap: 1.05rem;
}

.team-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.team-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0.7rem 0 0;
  padding: 1px;
  overflow: hidden;
  background: var(--line-light);
  border-radius: 8px;
}

.team-points div {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
}

.team-points dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.team-points dd {
  margin: 0.3rem 0 0;
  font-weight: 730;
  line-height: 1.25;
}

.article-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0.45rem;
  padding: 1px;
  overflow: hidden;
  background: var(--line-light);
  border-radius: 8px;
}

.article-links a {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.75rem;
  min-height: 148px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.article-links a:hover,
.article-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(85, 175, 227, 0.72);
  transform: translateY(-2px);
}

.article-links a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.article-links__source {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.article-links strong {
  line-height: 1.25;
}

.article-links .article-links__cta {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 130px;
  padding: 0.5rem 0.65rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
}

.article-links a:hover .article-links__cta,
.article-links a:focus-visible .article-links__cta {
  background: var(--blue);
}

.leadership-section {
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  color: var(--white);
}

.leadership-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(1rem, 1fr) minmax(0, 540px) minmax(0, 540px) minmax(1rem, 1fr);
  background: var(--ink);
}

.leadership-copy {
  grid-column: 2;
  display: grid;
  gap: 1.05rem;
}

.fact-panel {
  grid-column: 3;
}

.leadership-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.fact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--line-light);
}

.fact-panel div {
  display: grid;
  gap: 0.45rem;
  min-height: 120px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
}

.fact-panel span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 730;
  text-transform: uppercase;
}

.fact-panel strong {
  font-size: 1.15rem;
}

.contact-section {
  align-items: start;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.contact-copy {
  display: grid;
  gap: 1.05rem;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(20, 20, 44, 0.76);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.contact-links a,
.contact-band a {
  padding: 0.6rem 0.75rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(20, 20, 44, 0.11);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(20, 20, 44, 0.72);
  font-size: 0.9rem;
  font-weight: 720;
}

.contact-form__message,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(20, 20, 44, 0.16);
  border-radius: 4px;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 0.75rem;
}

.contact-form textarea {
  min-height: 150px;
  padding: 0.75rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(85, 175, 227, 0.24);
}

.form-status {
  min-height: 1.4em;
  color: var(--green);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0 3rem;
  color: rgba(20, 20, 44, 0.72);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 76px;
  height: 82px;
  object-fit: contain;
}

.site-footer__meta {
  text-align: right;
}

.network-page {
  background: var(--ink);
}

.network-hero {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  min-height: 88svh;
  padding: 8rem 0 4rem;
  color: var(--white);
}

.network-hero__copy {
  display: grid;
  gap: 1.25rem;
}

.network-hero__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.network-hero__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0e1025;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
}

.network-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 2rem 0 5rem;
}

.network-page .site-footer {
  color: rgba(255, 255, 255, 0.72);
  border-color: var(--line-light);
}

@media (max-width: 980px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section--intro .section__inner,
  .platform-section,
  .leadership-section,
  .contact-section,
  .network-hero {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

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

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

  .press-band {
    grid-template-columns: 1fr;
  }

  .team-section {
    grid-template-columns: minmax(1rem, 1fr) minmax(0, var(--max)) minmax(1rem, 1fr);
    gap: 2.3rem;
  }

  .team-photo,
  .team-copy {
    grid-column: 2;
  }

  .leadership-section {
    grid-template-columns: minmax(1rem, 1fr) minmax(0, var(--max)) minmax(1rem, 1fr);
  }

  .leadership-copy,
  .fact-panel {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header {
    width: min(100% - 1rem, 1220px);
    padding-top: 0.7rem;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    inset: 4.6rem 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    width: min(100% - 1rem, 520px);
    margin: 0 auto;
    padding: 0.6rem;
    color: var(--ink);
    background: rgba(242, 246, 247, 0.98);
    border: 1px solid rgba(20, 20, 44, 0.1);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 0.9rem;
  }

  .hero {
    min-height: 86svh;
    padding-top: 7rem;
  }

  .hero__media {
    background-image:
      linear-gradient(180deg, rgba(20, 20, 44, 0.96), rgba(20, 20, 44, 0.82) 56%, rgba(20, 20, 44, 0.34)),
      url("assets/vr-cloud.png");
    background-position: center bottom;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

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

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .capability-grid,
  .sector-list,
  .process-list,
  .fact-panel,
  .press-band__items,
  .team-points,
  .article-links,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-list li {
    min-height: 0;
  }

  .contact-form button,
  .form-status {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer__meta {
    text-align: left;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero__actions,
  .contact-links,
  .contact-band {
    display: grid;
  }

  .button,
  .contact-links a,
  .contact-band a {
    width: 100%;
  }
}

@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;
  }
}
