@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #0d0d0d;
  --ink-soft: #4d4d4d;
  --paper: #ffffff;
  --surface: #f6f6f8;
  --line: #d9d9df;
  --pink: #d932bd;
  --lilac: #9163f2;
  --blue: #400ff2;
  --violet: #553df2;
  --shell: min(1280px, calc(100vw - 64px));
  --header-height: 92px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

::selection {
  background: var(--lilac);
  color: var(--paper);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}

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

.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 32px rgba(13, 13, 13, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  height: 100%;
  gap: 48px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: #eeeeee;
  border-radius: 12px;
}

.brand-mark img {
  width: 22px;
  height: 32px;
  object-fit: contain;
}

.brand-name {
  display: flex;
  align-items: baseline;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-name span {
  margin-left: 3px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.language-switcher a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  content: "";
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switcher a {
  padding: 6px 9px;
  color: var(--ink-soft);
}

.language-switcher a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 220ms var(--ease);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 6vw, 104px);
  padding-block: 80px 112px;
}

.hero::before {
  position: absolute;
  top: 12%;
  left: -6vw;
  width: 1px;
  height: 68%;
  background: var(--line);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.legal-header h1,
.not-found h1 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(64px, 7.3vw, 118px);
}

.hero h1::after {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  margin-left: 0.08em;
  background: var(--pink);
  border-radius: 50%;
  content: "";
}

.hero-body {
  max-width: 620px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.social-links,
.consent-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-actions {
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

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

.button-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--lilac);
}

.button-dark:hover {
  box-shadow: 3px 3px 0 var(--pink);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.32);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--surface);
}

.button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-art {
  --mx: 0px;
  --my: 0px;
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 1 / 1.05;
  justify-self: end;
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  inset: 7%;
  z-index: -2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  -webkit-mask-image: radial-gradient(circle, #000 25%, transparent 72%);
  mask-image: radial-gradient(circle, #000 25%, transparent 72%);
}

.hero-art::after {
  position: absolute;
  inset: 20%;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.shape {
  position: absolute;
  width: 54%;
  filter: saturate(1.08);
  transition: transform 700ms var(--ease);
  will-change: transform;
}

.shape-one {
  top: 1%;
  left: 7%;
  transform: translate(calc(var(--mx) * -0.24), calc(var(--my) * -0.24)) rotate(-5deg);
  animation: shape-one-in 1.2s var(--ease) both;
}

.shape-two {
  right: 2%;
  bottom: 0;
  width: 61%;
  transform: translate(calc(var(--mx) * 0.34), calc(var(--my) * 0.34)) rotate(5deg);
  animation: shape-two-in 1.35s var(--ease) both;
}

.shape-three {
  right: 17%;
  bottom: 11%;
  width: 44%;
  transform: translate(calc(var(--mx) * -0.16), calc(var(--my) * 0.2)) rotate(-2deg);
  animation: shape-three-in 1.5s var(--ease) both;
}

@keyframes shape-one-in {
  from { opacity: 0; transform: translate(-70px, -80px) rotate(-14deg); }
}

@keyframes shape-two-in {
  from { opacity: 0; transform: translate(80px, 90px) rotate(14deg); }
}

@keyframes shape-three-in {
  from { opacity: 0; transform: translate(-20px, 120px) rotate(-10deg); }
}

.art-orbit {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
}

.art-orbit-one {
  top: 16%;
  right: 13%;
}

.art-orbit-two {
  bottom: 17%;
  left: 10%;
  background: var(--pink);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--ink);
}

.section {
  padding-block: clamp(100px, 12vw, 180px);
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 140px);
}

.section-main {
  max-width: 900px;
}

.section h2 {
  max-width: 930px;
  font-size: clamp(48px, 6vw, 88px);
}

.large-copy {
  max-width: 760px;
  margin: 42px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.65;
}

.facts {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--ink);
}

.facts div {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.facts div + div {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.facts strong {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
}

.facts span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.apps-section {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 140px);
}

.featured-app {
  display: grid;
  overflow: hidden;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  margin-top: 88px;
  background: var(--blue);
  border-radius: var(--radius);
  color: var(--paper);
}

.app-visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background: #f0ecff;
}

.app-visual::before,
.app-visual::after {
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(64, 15, 242, 0.22);
  border-radius: 50%;
  content: "";
}

.app-visual::after {
  width: 78%;
}

.app-visual img {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 190px;
  padding: 0;
  background: transparent;
  border-radius: 48px;
  object-fit: cover;
  box-shadow: 22px 26px 0 rgba(145, 99, 242, 0.26);
}

.featured-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 88px);
}

.featured-copy .eyebrow {
  color: #d8ceff;
}

.featured-copy h3 {
  margin: 0;
  font-size: clamp(54px, 6vw, 86px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.featured-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.policy-inline {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.extensions-heading {
  margin: 96px 0 30px;
}

.extension-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.extension-card {
  display: grid;
  min-height: 490px;
  grid-template-rows: auto 1fr auto;
  gap: 36px;
  padding: 42px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.extension-card + .extension-card {
  border-left: 1px solid var(--line);
}

.extension-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border-radius: 18px;
}

.extension-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.extension-card h3 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.extension-card p {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.card-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.card-links > a:last-child {
  color: var(--ink-soft);
  font-size: 12px;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.founder-portrait {
  position: relative;
  max-width: 500px;
  aspect-ratio: 0.87;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.founder-copy .large-copy {
  max-width: 680px;
}

.social-links {
  margin-top: 44px;
}

.support-cta {
  padding-block: clamp(80px, 10vw, 136px);
}

.support-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 112px);
  background: var(--ink);
  color: var(--paper);
}

.support-panel::after {
  position: absolute;
  top: -34%;
  right: -10%;
  width: 48%;
  aspect-ratio: 1;
  background: url("/assets/object2.svg") center / contain no-repeat;
  content: "";
  opacity: 0.78;
}

.support-panel > * {
  position: relative;
  z-index: 2;
}

.support-panel .eyebrow {
  color: #c9b8ff;
}

.support-panel h2 {
  max-width: 800px;
  font-size: clamp(48px, 6.5vw, 90px);
}

.support-panel > p:not(.eyebrow, .support-direct) {
  max-width: 650px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.support-panel .button-dark {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--pink);
}

.support-direct {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.support-direct a {
  color: var(--paper);
}

.site-footer {
  padding-block: 72px 44px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(130px, 0.5fr));
  gap: 48px;
}

.footer-brand p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.footer-brand p + p {
  margin-top: 6px;
}

.site-footer h2 {
  margin: 0 0 19px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer > .footer-grid > div:not(.footer-brand) > a,
.site-footer button,
.footer-languages a {
  display: block;
  width: max-content;
  margin: 9px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--blue);
}

.consent-banner {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: min(680px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--violet);
}

.consent-copy h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.consent-copy p {
  margin: 10px 0 8px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.consent-copy a {
  font-size: 11px;
}

.consent-actions {
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.consent-actions .button {
  min-width: 158px;
  min-height: 44px;
  padding: 10px 14px;
  box-shadow: none;
  font-size: 12px;
}

.legal-main {
  min-height: 70vh;
  padding-block: 72px 140px;
}

.legal-shell {
  max-width: 1080px;
}

.back-link {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--ink-soft);
  font-size: 12px;
}

.legal-header {
  max-width: 900px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--ink);
}

.legal-header h1 {
  font-size: clamp(54px, 7vw, 96px);
}

.legal-header > p:not(.eyebrow) {
  max-width: 760px;
  margin: 32px 0 18px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
}

.legal-header > span {
  color: var(--ink-soft);
  font-size: 11px;
}

.legal-content {
  max-width: 840px;
  margin-left: auto;
}

.legal-content section {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: 56px;
  padding-block: 46px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.legal-content p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-contact {
  align-items: center;
}

.not-found {
  min-height: 70vh;
  padding-block: 130px;
}

.not-found h1 {
  max-width: 800px;
  font-size: clamp(58px, 8vw, 108px);
}

.not-found > p:not(.eyebrow) {
  max-width: 560px;
  margin: 32px 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 40px, 1280px);
    --header-height: 78px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 48px 20px;
    transform: translateY(-12px);
    background: var(--paper);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav a {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 32px;
    letter-spacing: -0.04em;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 88px 100px;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-art {
    width: min(76vw, 600px);
    justify-self: center;
  }

  .scroll-cue {
    display: none;
  }

  .featured-app {
    grid-template-columns: 1fr;
  }

  .app-visual {
    min-height: 450px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.6fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .brand-name span {
    display: none;
  }

  .language-switcher a {
    padding: 5px 7px;
    font-size: 10px;
  }

  .hero {
    gap: 52px;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(53px, 16vw, 78px);
  }

  .hero-art {
    width: 100%;
  }

  .section-grid,
  .section-heading,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section h2 {
    font-size: clamp(45px, 13vw, 68px);
  }

  .facts {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .facts div + div {
    padding-left: 0;
    border-left: 0;
  }

  .featured-app {
    min-height: auto;
    margin-top: 54px;
  }

  .app-visual {
    min-height: 360px;
  }

  .featured-copy {
    padding: 42px 28px 48px;
  }

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

  .extension-card {
    min-height: 440px;
    padding: 30px 24px;
  }

  .extension-card + .extension-card {
    border-left: 0;
  }

  .founder-portrait {
    width: 100%;
    max-width: 470px;
  }

  .support-panel {
    padding: 48px 24px 64px;
  }

  .support-panel::after {
    top: auto;
    right: -28%;
    bottom: -10%;
    width: 78%;
    opacity: 0.38;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
    box-shadow: 6px 6px 0 var(--violet);
  }

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

  .consent-actions .button {
    min-width: 0;
  }

  .legal-main {
    padding-block: 48px 92px;
  }

  .back-link {
    margin-bottom: 48px;
  }

  .legal-content section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .brand-name {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .featured-copy .button,
  .support-panel .button {
    width: 100%;
  }

  .card-links {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

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

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

  .shape {
    transform: none !important;
  }
}
