:root {
  color-scheme: dark;
  --bg: #020203;
  --ink: #070809;
  --text: #f8f7f2;
  --text-soft: rgba(248, 247, 242, 0.72);
  --muted: rgba(248, 247, 242, 0.50);
  --hairline: rgba(255, 255, 255, 0.15);
  --hairline-strong: rgba(255, 255, 255, 0.28);
  --metal: rgba(255, 255, 255, 0.075);
  --metal-strong: rgba(255, 255, 255, 0.12);
  --cyan: #78eaff;
  --gold: #f2d074;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --page: min(1180px, calc(100% - 40px));
  --font-brand: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(120, 234, 255, 0.07), transparent 28rem),
    radial-gradient(circle at 90% 30%, rgba(242, 208, 116, 0.045), transparent 24rem),
    linear-gradient(180deg, #040405 0%, #020203 52%, #000 100%);
  color: var(--text);
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
}

body::before,
body::after,
.page-ambient {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 82%, transparent);
}

body::after {
  z-index: -2;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(120, 234, 255, 0.04), transparent 28%, transparent 74%, rgba(255, 255, 255, 0.025));
  opacity: 0.82;
}

.page-ambient {
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.045) 49%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent 24%, transparent 78%, rgba(120, 234, 255, 0.035));
  animation: ambientShift 18s var(--ease-out) infinite alternate;
}

@keyframes ambientShift {
  from { transform: translate3d(-1%, -0.5%, 0); opacity: 0.38; }
  to { transform: translate3d(1%, 0.8%, 0); opacity: 0.70; }
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #000;
  font-weight: 850;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: var(--page);
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  background: rgba(2, 2, 3, 0.68);
  backdrop-filter: blur(24px) saturate(1.15);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  border-color: var(--hairline-strong);
  background: rgba(2, 2, 3, 0.82);
}

.brand,
.footer__brand {
  text-decoration: none;
}

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

.brand-mark-img {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  object-fit: cover;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(120, 234, 255, 0.10);
}

.brand > span {
  display: grid;
  gap: 3px;
}

.brand strong,
.footer__brand {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.55s var(--ease-out);
}

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

.header-cta,
.button,
.text-link {
  font-weight: 900;
  text-decoration: none;
}

.header-cta,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 999px;
  transition: transform 0.7s var(--ease-out), border-color 0.7s var(--ease-out), background 0.7s var(--ease-out);
}

.header-cta::after,
.button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: translateX(-140%);
  animation: shine 4.8s var(--ease-out) infinite;
}

@keyframes shine {
  0%, 46% { transform: translateX(-140%); }
  75%, 100% { transform: translateX(140%); }
}

.header-cta,
.button--primary {
  color: #020203;
  background: linear-gradient(135deg, #fff 0%, #dffbff 52%, #6fe7fb 100%);
  box-shadow:
    0 18px 56px rgba(120, 234, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-cta {
  min-height: 48px;
}

.button--secondary {
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.text-link::after {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: #020203;
  background: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--hairline);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.hero,
.trust-strip,
.section,
.support,
.footer {
  width: var(--page);
  margin: 0 auto;
}

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

.js .reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(42px);
  transition: opacity 0.9s var(--ease-out), filter 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.hero--luxury {
  position: relative;
  min-height: min(710px, calc(100dvh - 110px));
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  background: #020203;
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.84;
}

.hero--luxury::before,
.hero--luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero--luxury::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.86));
}

.hero--luxury::after {
  z-index: 2;
  background: linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 100% 7px;
  opacity: 0.32;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(720px, calc(100% - 48px));
  padding: clamp(50px, 6.4vw, 78px) 0 clamp(44px, 5vw, 68px) clamp(28px, 6vw, 76px);
}

.hero__wordmark {
  display: block;
  width: clamp(220px, 29vw, 430px);
  height: auto;
  margin: 0 0 34px -10px;
  opacity: 0.94;
  filter: drop-shadow(0 18px 34px rgba(255, 255, 255, 0.08));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-brand);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.1vw, 80px);
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.62;
}

.hero__actions,
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: 34px;
}

.hero__proof {
  margin-top: 28px;
}

.hero__proof span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
}

.hero__panel {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 5vw, 62px);
  bottom: clamp(22px, 5vw, 62px);
  width: min(320px, 30vw);
  padding: 22px;
  border: 1px solid var(--hairline);
  border-radius: 26px;
  background: rgba(4, 5, 6, 0.62);
  backdrop-filter: blur(22px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-brand);
  font-size: 34px;
}

.hero__panel p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.trust-strip,
.benefit-main,
.benefit-list article,
.plan-card,
.timeline li,
.apps article,
.roadmap-panel,
.faq-grid details,
.support,
.legal-panel {
  border: 1px solid var(--hairline);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 26px;
  border-radius: var(--radius-lg);
}

.trust-strip div {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid var(--hairline);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 10px;
  font-weight: 950;
}

.trust-strip span {
  color: var(--text-soft);
  line-height: 1.55;
}

.section {
  padding: 108px 0;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.showcase__media {
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  background: #050506;
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showcase__copy {
  padding: clamp(8px, 2vw, 20px) 0;
}

.showcase__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  text-wrap: balance;
}

.showcase__copy p {
  max-width: 520px;
  color: var(--text-soft);
  line-height: 1.66;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.section-heading--split,
.benefit-layout,
.plan-board,
.roadmap-panel,
.support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.section-heading h2,
.roadmap-panel h2,
.support h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  font-weight: 900;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.roadmap-panel p,
.support p,
.benefit-main p,
.benefit-list p,
.plan-card p,
.timeline p,
.apps p,
.faq-grid p,
.legal-panel p,
.legal-panel li,
.footer p {
  color: var(--text-soft);
  line-height: 1.62;
}

.benefit-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.benefit-main,
.benefit-list article,
.plan-card,
.timeline li,
.apps article,
.faq-grid details {
  position: relative;
  overflow: hidden;
}

.benefit-main::before,
.plan-card--featured::before,
.support::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(120, 234, 255, 0.12), transparent 42%, rgba(255, 255, 255, 0.055));
  opacity: 0.9;
}

.benefit-main {
  min-height: 460px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.benefit-main > *,
.plan-card > *,
.support > * {
  position: relative;
}

.benefit-main h3 {
  max-width: 560px;
  margin: 150px 0 16px;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.02;
}

.benefit-list {
  display: grid;
  gap: 18px;
}

.benefit-list article {
  padding: 24px;
  border-radius: 22px;
  transition: transform 0.7s var(--ease-out), border-color 0.7s var(--ease-out);
}

.benefit-list article:hover,
.apps article:hover,
.timeline li:hover,
.faq-grid details:hover {
  transform: translateY(-3px);
  border-color: var(--hairline-strong);
}

.map-card__top span,
.route-meta,
.plan-card__label,
.benefit-main span,
.benefit-list span {
  color: rgba(248, 247, 242, 0.56);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefit-list h3,
.timeline h3,
.apps strong {
  margin: 12px 0 8px;
  font-size: 22px;
}

.plan-board {
  align-items: stretch;
}

.plan-card {
  padding: clamp(26px, 4vw, 36px);
  border-radius: var(--radius-xl);
}

.plan-card__label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.plan-card h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
}

.price {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 36px;
  font-weight: 950;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(120, 234, 255, 0.44);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 250px;
  padding: 24px;
  border-radius: 24px;
}

.timeline li span,
.apps article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 950;
}

.apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.apps article {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  transition: transform 0.7s var(--ease-out), border-color 0.7s var(--ease-out);
}

.apps strong {
  display: block;
}

.roadmap-panel {
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
}

.location-list {
  display: grid;
  gap: 12px;
}

.location-list span {
  padding: 15px 16px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.045);
}

.location-list .is-active {
  border-color: rgba(120, 234, 255, 0.45);
  color: var(--text);
  background: rgba(120, 234, 255, 0.10);
}

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

.faq-grid details {
  padding: 22px 24px;
  border-radius: 22px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.faq-grid summary::marker {
  color: var(--cyan);
}

.faq-grid p {
  margin: 16px 0 0;
}

.support {
  position: relative;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 72px;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 46px;
  border-top: 1px solid var(--hairline);
}

.footer p {
  max-width: 560px;
  margin: 10px 0 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer a {
  color: var(--text-soft);
}

.legal-main {
  width: var(--page);
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 0 90px;
}

.legal-main h1 {
  margin-bottom: 28px;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.02;
}

.legal-panel {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
}

.legal-panel h2 {
  margin: 30px 0 10px;
}

.legal-panel a {
  color: var(--text);
  text-decoration-color: rgba(120, 234, 255, 0.72);
}

.legal-panel ul {
  padding-left: 20px;
}

@media (max-width: 1060px) {
  .section-heading--split,
  .benefit-layout,
  .plan-board,
  .roadmap-panel,
  .support,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(460px, calc(100% - 48px));
    margin: -38px 0 42px clamp(24px, 5vw, 58px);
  }

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

  .benefit-main {
    min-height: 340px;
  }

  .benefit-main h3 {
    margin-top: 90px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 8px;
    grid-template-columns: 1fr auto;
    min-height: 70px;
    margin-top: 8px;
    border-radius: 18px;
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .nav.is-open {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--hairline);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  }

  .nav.is-open a {
    padding: 14px;
    border-bottom: 1px solid var(--hairline);
  }

  .nav.is-open a:last-child {
    border-bottom: 0;
  }

  .hero--luxury {
    min-height: auto;
    margin-top: 18px;
    border-radius: 28px;
  }

  .hero__image {
    object-position: 68% center;
    opacity: 0.58;
  }

  .hero--luxury::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.9));
  }

  .hero__copy {
    width: 100%;
    padding: 46px 20px 36px;
  }

  .hero__wordmark {
    width: min(265px, 72vw);
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions .button,
  .support .button {
    width: 100%;
  }

  .hero__panel {
    width: calc(100% - 40px);
    margin: 0 20px 24px;
  }

  .hero__proof {
    display: none;
  }

  .trust-strip,
  .timeline,
  .apps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .roadmap-panel h2,
  .support h2,
  .showcase__copy h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .benefit-main {
    min-height: auto;
    padding: 24px;
  }

  .benefit-main h3 {
    margin-top: 68px;
  }

  .plan-card,
  .roadmap-panel,
  .support,
  .legal-panel {
    border-radius: 24px;
  }

  .footer {
    display: grid;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand-mark-img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 9px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 43px);
  }

  .hero__lead {
    line-height: 1.58;
  }
}

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

  .js .reveal,
  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
